Skip to content

Commit

Permalink
Add strict options to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Dec 5, 2023
1 parent 443742b commit 6587369
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ All notable changes to this project will be documented in this file.
config.flipper.preload = ->(request) { !request.path.start_with?('/assets') }
end
```
* Added `strict` configuration to warn when accessing a feature that doesn't exist (https://github.com/flippercloud/flipper/pull/760, https://github.com/flippercloud/flipper/pull/763)
```ruby
Rails.application.configure do
# Setting to `true` or `:raise` will raise error when a feature doesn't exist.
# Use `:warn` to log a warning instead.
config.flipper.strict = !Rails.env.production?
end
```
* Handle deprecation of Rack::File in Rack 3.1 (https://github.com/flippercloud/flipper/pull/773).
* Human readable actor names in flipper-ui (https://github.com/flippercloud/flipper/pull/737).
* Expressions are now available and considered "alpha". They are not yet documented, but you can see examples in [examples/expressions.rb](examples/expressions.rb). (https://github.com/flippercloud/flipper/pull/692)
Expand Down

0 comments on commit 6587369

Please sign in to comment.