Skip to content

Commit

Permalink
Update Changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker authored Nov 17, 2023
1 parent d4e5f88 commit 1bb1040
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ All notable changes to this project will be documented in this file.

### Additions/Changes

* Handle deprecation of Rack::File in Rack 3.1 (https://github.com/flippercloud/flipper/pull/773)
* Allow configuring preload via a block similar to memoize (https://github.com/flippercloud/flipper/pull/771).
```ruby
Rails.application.configure do
# don't preload features for /assets/* but do for everything else
config.flipper.preload = ->(request) { !request.path.start_with?('/assets') }
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)
* Allow head requests to api (https://github.com/flippercloud/flipper/pull/759)
Expand Down

0 comments on commit 1bb1040

Please sign in to comment.