This release is more than just a version number. Read more about this release and the future of Flipper.
Additions/Changes
- ui, api: Allow Rack 3 (#670)
- cloud: The
flipper-cloud
gem has been merged into theflipper
and no longer needs to be added separately. Configure cloud by setting theFLIPPER_CLOUD_TOKEN
environment variable. (#743)# Gemfile gem 'flipper' - gem 'flipper-cloud'
Breaking Changes
- Removed
bool
,actors
,time
,actor
,percentage_of_actors
, andpercentage_of_time
methods onFlipper
andFlipper::DSL
. They are rarely if ever used and conflict with some upcoming features. If you are using them, you can migrate via a search and replace like so:- Change
Flipper.bool
=>Flipper::Types::Boolean.new
- Change
Flipper.boolean
=>Flipper::Types::Boolean.new
- Change
Flipper.actor
=>Flipper::Types::Actor.new
- Change
Flipper.percentage_of_actors
=>Flipper::Types::PercentageOfActors.new
- Change
Flipper.actors
=>Flipper::Types::PercentageOfActors.new
- Change
Flipper.percentage_of_time
=>Flipper::Types::PercentageOfTime.new
- Change
Flipper.time
=>Flipper::Types::PercentageOfTime.new
- Change
Become a Sponsor
If your company uses Flipper and wants to help us make it better, consider becoming a sponsor.