- Version 1.0.5 may be used with Rails version 6 only.
- Update rspec syntax to work with more modern versions
- Bump Ruby version to 2.7.5
- changed rails dependency to '>= 5.0'
- remove crossdomain.xml see https://www.openbugbounty.org/reports/1519953/
- This version fixes a bug with FrontEndBuilds::AppsController#index where it would not show the
/frontends
.
- This bug was introduced in 1.0.0 (rails 5 updates).
- The controller should return "10 builds for each app", instead it was returning "10 builds for all apps". This and issue when one of your apps has a really old "live build" that is older than your 10 most recent (for any app)
FrontEndBuilds::App.live_build
is now optional. This resolves issues with Rails 5 clients that haveRails.application.config.active_record.belongs_to_required_by_default
enabled.
- Support for Rails 5
- Dropping support for < Rails 5
- Support for OpenSSL Ver 2
- If a user uses a key that is not RSA an exception will now be raised
To upgrade front_end_builds
just set the appropriate version in your
Gemfile
and run bundle update front_end_builds
.
Once you upgrade make sure you install the latest migrations.
rake front_end_builds:install:migrations
rake db:migrate
And that's it, you now have the latest version of front_end_builds
.
Check the log below to see all the new features.
- Asymmetrical keys used to verify builds.
Front end builds no longer uses API keys, instead a public key is used
to verify the build. To set this up login to your admin area and add a
public key, for example your SSH pubkey. Make sure you update your
ember-cli-front-end-builds
to use version0.1.0
as well.