flipper 1.1.2 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +7 -1
  3. data/.github/workflows/examples.yml +7 -1
  4. data/Changelog.md +1 -647
  5. data/Gemfile +3 -1
  6. data/README.md +1 -1
  7. data/Rakefile +2 -2
  8. data/exe/flipper +5 -0
  9. data/flipper.gemspec +5 -1
  10. data/lib/flipper/adapters/http/client.rb +25 -16
  11. data/lib/flipper/adapters/strict.rb +11 -8
  12. data/lib/flipper/cli.rb +240 -0
  13. data/lib/flipper/cloud/configuration.rb +7 -1
  14. data/lib/flipper/cloud/middleware.rb +5 -5
  15. data/lib/flipper/cloud/telemetry/submitter.rb +2 -2
  16. data/lib/flipper/cloud.rb +1 -1
  17. data/lib/flipper/engine.rb +32 -17
  18. data/lib/flipper/instrumentation/log_subscriber.rb +12 -3
  19. data/lib/flipper/metadata.rb +3 -1
  20. data/lib/flipper/test_help.rb +36 -0
  21. data/lib/flipper/version.rb +11 -1
  22. data/lib/generators/flipper/setup_generator.rb +63 -0
  23. data/spec/fixtures/environment.rb +1 -0
  24. data/spec/flipper/adapter_builder_spec.rb +1 -2
  25. data/spec/flipper/adapters/http/client_spec.rb +61 -0
  26. data/spec/flipper/adapters/http_spec.rb +92 -75
  27. data/spec/flipper/adapters/strict_spec.rb +11 -9
  28. data/spec/flipper/cli_spec.rb +164 -0
  29. data/spec/flipper/cloud/configuration_spec.rb +9 -2
  30. data/spec/flipper/cloud/dsl_spec.rb +5 -5
  31. data/spec/flipper/cloud/middleware_spec.rb +8 -8
  32. data/spec/flipper/cloud/telemetry/submitter_spec.rb +24 -24
  33. data/spec/flipper/cloud/telemetry_spec.rb +1 -1
  34. data/spec/flipper/cloud_spec.rb +4 -4
  35. data/spec/flipper/engine_spec.rb +76 -11
  36. data/spec/flipper/instrumentation/log_subscriber_spec.rb +9 -2
  37. data/spec/flipper_spec.rb +1 -1
  38. data/spec/spec_helper.rb +1 -0
  39. data/spec/support/spec_helpers.rb +10 -4
  40. data/test_rails/generators/flipper/setup_generator_test.rb +64 -0
  41. data/test_rails/system/test_help_test.rb +46 -0
  42. metadata +20 -7
data/Changelog.md CHANGED
@@ -1,649 +1,3 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
4
-
5
- ## 1.1.2
6
-
7
- ### Bug Fixes
8
-
9
- - Fix ActiveRecord adapter when table doesn't exist (https://github.com/flippercloud/flipper/pull/786).
10
- - Fix ActiveRecord adapter when using MySQL with expressions (https://github.com/flippercloud/flipper/pull/790)
11
- - Fix an error where the Rails integration in `Flipper::Engine` was not properly delegating a class method to the instance (https://github.com/flippercloud/flipper/pull/788)
12
-
13
- ### Additions/Changes
14
-
15
- - Added `$ rails generate flipper:update` to generate necessary schema migrations (https://github.com/flippercloud/flipper/pull/787)
16
-
17
- ## 1.1.1
18
-
19
- ### Bug Fixes
20
-
21
- - Whoops! Anyone not using flipper-active_record would hit a missing require because of our fancy gemspecs (https://github.com/flippercloud/flipper/pull/785).
22
-
23
- ## 1.1.0
24
-
25
- ### Additions/Changes
26
-
27
- - Better read-only mode for UI (https://github.com/flippercloud/flipper/pull/772).
28
- - Allow configuring preload via a block similar to memoize (https://github.com/flippercloud/flipper/pull/771).
29
- ```ruby
30
- Rails.application.configure do
31
- # don't preload features for /assets/* but do for everything else
32
- config.flipper.preload = ->(request) { !request.path.start_with?('/assets') }
33
- end
34
- ```
35
- - 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)
36
- ```ruby
37
- Rails.application.configure do
38
- # Setting to `true` or `:raise` will raise error when a feature doesn't exist.
39
- # Use `:warn` to log a warning instead.
40
- config.flipper.strict = !Rails.env.production?
41
- end
42
- ```
43
- - Handle deprecation of Rack::File in Rack 3.1 (https://github.com/flippercloud/flipper/pull/773).
44
- - Human readable actor names in flipper-ui (https://github.com/flippercloud/flipper/pull/737).
45
- - Expressions are now available and considered "alpha". They are not yet documented, but you can see examples in [examples/expressions.rb](examples/expressions.rb). Those using the `flipper-active_record` adapter will want to [migrate the database](See https://github.com/flippercloud/flipper/issues/557) so it can store JSON expressions (https://github.com/flippercloud/flipper/pull/692)
46
- ```
47
- $ rails generate flipper:update && rails db:migrate
48
- ```
49
- - Allow head requests to api (https://github.com/flippercloud/flipper/pull/759)
50
- - Cloud Telemetry alpha (https://github.com/flippercloud/flipper/pull/775).
51
- - Easier statsd setup (https://github.com/flippercloud/flipper/pull/779).
52
- ```ruby
53
- # You can now just do this in your configure block and it'll require the files and configure the client.
54
- Flipper.configure do |conf|
55
- conf.statsd = my_client
56
- end
57
- ```
58
- - Load cloud secrets from Rails credentials (https://github.com/flippercloud/flipper/pull/782)
59
- ```bash
60
- $ rails credentials:edit -e development
61
- ```
62
- ```yaml
63
- flipper:
64
- cloud_token: <your-cloud-token>
65
- cloud_sync_secret: <your-webhook-secret>
66
- ```
67
-
68
- ## 1.0.0
69
-
70
- ### Additions/Changes
71
-
72
- - ui, api: Allow Rack 3 (https://github.com/flippercloud/flipper/pull/670)
73
- - cloud: The `flipper-cloud` gem has been merged into the `flipper` and no longer needs to be added separately. Configure cloud by setting the `FLIPPER_CLOUD_TOKEN` environment variable. (https://github.com/flippercloud/flipper/pull/743)
74
- ```diff
75
- # Gemfile
76
- gem 'flipper'
77
- - gem 'flipper-cloud'
78
- ```
79
-
80
- ### Breaking Changes
81
-
82
- - Removed `bool`, `actors`, `time`, `actor`, `percentage_of_actors`, and `percentage_of_time` methods on `Flipper` and `Flipper::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:
83
- - Change `Flipper.bool` => `Flipper::Types::Boolean.new`
84
- - Change `Flipper.boolean` => `Flipper::Types::Boolean.new`
85
- - Change `Flipper.actor` => `Flipper::Types::Actor.new`
86
- - Change `Flipper.percentage_of_actors` => `Flipper::Types::PercentageOfActors.new`
87
- - Change `Flipper.actors` => `Flipper::Types::PercentageOfActors.new`
88
- - Change `Flipper.percentage_of_time` => `Flipper::Types::PercentageOfTime.new`
89
- - Change `Flipper.time` => `Flipper::Types::PercentageOfTime.new`
90
-
91
- ## 0.28.3
92
-
93
- - Updated cloud config to ensure that poll adapter ONLY syncs from cloud to local adapter (and never back to cloud). Shouldn't affect anyone other than making things more safe if an incorrect response is received from the cloud poll endpoint. (https://github.com/flippercloud/flipper/pull/740)
94
-
95
- ## 0.28.2
96
-
97
- ### Additions/Changes
98
-
99
- - UI: fix path to bundled assets when mounted in another Rack app (https://github.com/flippercloud/flipper/pull/742)
100
-
101
- ## 0.28.1
102
-
103
- ### Additions/Changes
104
-
105
- - Use new method of making logs bold for rails (https://github.com/flippercloud/flipper/pull/726)
106
- - Bundle bootstrap, jquery and poppler with the library. (https://github.com/flippercloud/flipper/pull/731)
107
-
108
- ## 0.28.0
109
-
110
- ### Additions/Changes
111
-
112
- - Allow multiple actors for Flipper.enabled?. Improves performance of feature flags for multiple actors and simplifies code for users of flipper. This likely breaks things for anyone using Flipper internal classes related to actors, but that isn't likely you so you should be fine.
113
- ```diff
114
- - [user, user.team, user.org].any? { |actor| Flipper.enabled?(:my_feature, actor) }
115
- + Flipper.enabled?(:my_feature, user, user.team, user.org)
116
- ```
117
- - If you currently use `actor.thing` in a group, you'll need to change it to `actor.actor`.
118
- ```diff
119
- - Flipper.register(:our_group) do |actor|
120
- - actor.thing.is_a?(OurClassName)
121
- - end
122
- + Flipper.register(:our_group) do |actor|
123
- + actor.actor.is_a?(OurClassName)
124
- + end
125
- ```
126
- - If you currently use `context.thing` in a group or elsewhere, you'll need to change it to `context.actors`.
127
- ```diff
128
- - Flipper.register(:our_group) do |actor, context|
129
- - context.thing.is_a?(OurClassName)
130
- - end
131
- + Flipper.register(:our_group) do |actor, context|
132
- + context.actors.any? { |actor| actor.is_a?(OurClassName) }
133
- + end
134
- ```
135
-
136
- ### Deprecations
137
-
138
- - `:thing` in `enabled?` instrumentation payload. Use `:actors` instead.
139
- ```diff
140
- ActiveSupport::Notifications.subscribe('enabled?.feature_operation.flipper') do |name, start, finish, id, payload|
141
- - payload[:thing]
142
- + payload[:actors]
143
- end
144
- ```
145
-
146
- ## 0.27.1
147
-
148
- - Quick fix for missing require of "flipper/version" that was causing issues with some flipper-ui people.
149
-
150
- ## 0.27.0
151
-
152
- - Easy Import/Export (https://github.com/flippercloud/flipper/pull/709). This has some breaking changes but only if you are using flipper internals. If you are just using Flipper.\* methods, you'll be fine.
153
-
154
- ## 0.26.2
155
-
156
- - Improve Active Record Adapter get/get_multi/get_all performance by 5-10x when dealing with thousands of gate values (https://github.com/flippercloud/flipper/pull/707).
157
-
158
- ## 0.26.1
159
-
160
- - Improve `Flipper#enabled?` performance by ~37%-55% (https://github.com/flippercloud/flipper/pull/706)
161
- - Make Memory adapter threadsafe (https://github.com/flippercloud/flipper/pull/702 and https://github.com/flippercloud/flipper/pull/703)
162
- - ActiveRecord adapter: wrap all reads/writes in `with_connection` (https://github.com/flippercloud/flipper/pull/705)
163
- - Improve performance of background polling (https://github.com/flippercloud/flipper/pull/699)
164
- - Remove executables directive from gem (https://github.com/flippercloud/flipper/pull/693)
165
-
166
- ## 0.26.0
167
-
168
- - Cloud Background Polling (https://github.com/flippercloud/flipper/pull/682)
169
- - Changed default branch from master to main
170
- - Allow configuring railtie via ENV vars (https://github.com/flippercloud/flipper/pull/681)
171
- - flipper-ui: Fix issue preventing feature flags being enabled when confirm_fully_enable is on and feature_removal_enabled is off (https://github.com/flippercloud/flipper/pull/680)
172
-
173
- ## 0.25.4
174
-
175
- - Added read_only UI config option (https://github.com/flippercloud/flipper/pull/679)
176
-
177
- ## 0.25.3
178
-
179
- - Added configurable confirm warning for fully enabling a feature (https://github.com/flippercloud/flipper/pull/665)
180
- - Update rack protection to < 4 (https://github.com/flippercloud/flipper/pull/675)
181
- - Check sadd_returns_boolean on the actual client class rather than ::Redis (https://github.com/flippercloud/flipper/pull/677)
182
-
183
- ## 0.25.2
184
-
185
- - Fix deprecation warnings for Redis >= 4.8.0 (https://github.com/flippercloud/flipper/pull/660)
186
-
187
- ## 0.25.1
188
-
189
- ### Additions/Changes
190
-
191
- - ActiveRecord: use provided `gate_class` option when calling `#get_all` (https://github.com/flippercloud/flipper/pull/647)
192
- - Relaxed the rack-protection version to support latest (https://github.com/flippercloud/flipper/commit/f4a41c541ccf14c535a61c6bc6fe7eeabbfc7e71).
193
- - Configure ActiveRecord adapter immediately upon require of flipper-active_record (https://github.com/flippercloud/flipper/pull/652)
194
-
195
- ## 0.25.0
196
-
197
- ### Additions/Changes
198
-
199
- - Added a prompt in Flipper UI for the 'Delete' button to prevent accidental delete of features (https://github.com/flippercloud/flipper/pull/625)
200
- - Added failsafe adapter (https://github.com/flippercloud/flipper/pull/626)
201
- - Removed previously deprecated options and settings. Those upgrading from `<0.21` should upgrade to `~>0.24` first and fix any deprecation warnings when initializing Flipper. (https://github.com/flippercloud/flipper/pull/627)
202
- - ActiveRecord: base class for internal models (https://github.com/flippercloud/flipper/pull/629)
203
- - Remove use of `Rack::BodyProxy` in the memoizer middleware (https://github.com/flippercloud/flipper/pull/631)
204
-
205
- ## 0.24.1
206
-
207
- ### Additions/Changes
208
-
209
- - flipper-api: `exclude_gates` parameter to exclude gate data in GETs (https://github.com/flippercloud/flipper/pull/572).
210
- - Make it possible to disable internal memoization (https://github.com/flippercloud/flipper/pull/612).
211
- - Add Flipper::Actor#hash so actors can be hash keys (https://github.com/flippercloud/flipper/pull/616).
212
- - Pretty Up `rails routes` again and make rack-protection dependency less strict (https://github.com/flippercloud/flipper/pull/619).
213
- - Add kwargs for method_missing using ruby 3.0 (https://github.com/flippercloud/flipper/pull/620).
214
- - Relax the rack-protection dependency (https://github.com/flippercloud/flipper/commit/c1cb9cd78140c2b09123687642558101e6e5d37d).
215
-
216
- ## 0.24.0
217
-
218
- ### Additions/Changes
219
-
220
- - Add Ruby 3.0 and 3.1 to the CI matrix and fix groups block arity check for ruby 3 (https://github.com/flippercloud/flipper/pull/601)
221
- - Removed support for Ruby 2.5 (which was end of line 9 months ago)
222
- - Add (alpha) client side instrumentation of events to cloud (https://github.com/flippercloud/flipper/pull/602)
223
- - Fix deprecated uses of Redis#pipelined (https://github.com/flippercloud/flipper/pull/603). redis-rb >= 3 now required.
224
- - Fix Flipper UI Rack application when `Rack::Session::Pool` is used to build it (https://github.com/flippercloud/flipper/pull/606).
225
-
226
- ## 0.23.1
227
-
228
- ### Additions/Changes
229
-
230
- - Relax dalli version constraint (https://github.com/flippercloud/flipper/pull/596)
231
-
232
- ### Bug Fixes
233
-
234
- - Fix railtie initialization to mount middleware after config/intializers/\* (https://github.com/flippercloud/flipper/pull/586)
235
-
236
- ## 0.23.0
237
-
238
- ### Additions/Changes
239
-
240
- - Allow some HTML in banner and descriptions (https://github.com/flippercloud/flipper/pull/570).
241
- - Moved some cloud headers to http client (https://github.com/flippercloud/flipper/pull/567).
242
- - Update flipper-ui jquery and bootstrap versions (https://github.com/flippercloud/flipper/issues/565 and https://github.com/flippercloud/flipper/pull/566).
243
- - Moved docs to www.flippercloud.io/docs (https://github.com/flippercloud/flipper/pull/574).
244
- - PStore adapter now defaults to thread safe and no longer supports `.thread_safe` (https://github.com/flippercloud/flipper/commit/4048704fefe41b716015294a19a0b94546637630).
245
- - Add failover adapter (https://github.com/flippercloud/flipper/pull/584).
246
- - Improve http adapter error message (https://github.com/flippercloud/flipper/pull/587).
247
- - Rails 7 support (mostly in https://github.com/flippercloud/flipper/pull/592).
248
-
249
- ## 0.22.2
250
-
251
- ### Additions/Changes
252
-
253
- - Allow adding multiple actors at once in flipper-ui via comma separation (configurable via `Flipper::UI.configuration.actors_separator`) (https://github.com/flippercloud/flipper/pull/556)
254
-
255
- ### Bug Fixes
256
-
257
- - Fix railtie initialization to avoid altering middleware order (https://github.com/flippercloud/flipper/pull/563)
258
-
259
- ## 0.22.1
260
-
261
- ### Additions/Changes
262
-
263
- - Remove Octicons and replace with a pure CSS status circle (https://github.com/flippercloud/flipper/pull/547)
264
- - Rescue unique errors in AR and Sequel when setting value (https://github.com/flippercloud/flipper/commit/87f5a98bce7baad7a27b75b5bce3256967769f27)
265
- - Add a Content-Security-Policy to flipper-ui (https://github.com/flippercloud/flipper/pull/552)
266
- - Fix Synchronizer issue that occurs for ActiveRecord adapter (https://github.com/flippercloud/flipper/pull/554)
267
-
268
- ## 0.22.0
269
-
270
- ### Additions/Changes
271
-
272
- - Enable log subscriber by default in Rails (https://github.com/flippercloud/flipper/pull/525)
273
- - Remove memoizer from API and UI (https://github.com/flippercloud/flipper/pull/527). If you are using the UI or API without configuring the default instance of Flipper, you'll need to enable memoization if you want it. For examples, see the examples/ui and examples/api directories.
274
- - Fix SQL reserved word use in get_all for ActiveRecord and Sequel (https://github.com/flippercloud/flipper/pull/536).
275
- - Handle spaces in names gracefully in UI (https://github.com/flippercloud/flipper/pull/541).
276
-
277
- ## 0.21.0
278
-
279
- ### Additions/Changes
280
-
281
- - Default to using memory adapter (https://github.com/flippercloud/flipper/pull/501)
282
- - Adapters now configured on require when possible (https://github.com/flippercloud/flipper/pull/502)
283
- - Added cloud recommendation to flipper-ui. Can be disabled with `Flipper::UI.configure { |config| config.cloud_recommendation = false }`. Just want to raise awareness that more is available if people want it (https://github.com/flippercloud/flipper/pull/504)
284
- - Added default `flipper_id` implementation via `Flipper::Identifier` and automatically included it in ActiveRecord and Sequel models (https://github.com/flippercloud/flipper/pull/505)
285
- - Deprecate superflous sync_method setting (https://github.com/flippercloud/flipper/pull/511)
286
- - Flipper is now pre-configured when used with Rails. By default, it will [memoize and preload all features for each request](https://flippercloud.io/docs/optimization#memoization). (https://github.com/flippercloud/flipper/pull/506)
287
-
288
- ### Upgrading
289
-
290
- You should be able to upgrade to 0.21 without any breaking changes. However, if you want to simplify your setup, you can remove some configuration that is now handled automatically:
291
-
292
- 1. Adapters are configured when on require, so unless you are using caching or other customizations, you can remove adapter configuration.
293
-
294
- ```diff
295
- # config/initializers/flipper.rb
296
- - Flipper.configure do |config|
297
- - config.default { Flipper.new(Flipper::Adapters::ActiveRecord.new) }
298
- - end
299
- ```
300
-
301
- 2. `Flipper::Middleware::Memoizer` will be enabled by default -- including preloading. **Note**: You may want to disable preloading (see below) if you have > 100 features.
302
-
303
- ```diff
304
- # config/initializers/flipper.rb
305
- - Rails.configuration.middleware.use Flipper::Middleware::Memoizer,
306
- - preload: [:stats, :search, :some_feature]
307
- + Rails.application.configure do
308
- + # Uncomment to configure which features to preload on all requests
309
- + # config.flipper.preload = [:stats, :search, :some_feature]
310
- + #
311
- + # Or, you may want to disable preloading entirely:
312
- + # config.flipper.preload = false
313
- + end
314
- ```
315
-
316
- 3. `#flipper_id`, which is used to enable features for specific actors, is now defined by [Flipper::Identifier](lib/flipper/identifier.rb) on all ActiveRecord and Sequel models. You can remove your implementation if it is in the form of `ModelName;id`.
317
-
318
- 4. When using `flipper-cloud`, The `Flipper::Cloud.app` webhook receiver is now mounted at `/_flipper` by default.
319
-
320
- ```diff
321
- # config/routes.rb
322
- - mount Flipper::Cloud.app, at: "/_flipper"
323
- ```
324
-
325
- ## 0.20.4
326
-
327
- ### Additions/Changes
328
-
329
- - Allow actors and time gates to deal with decimal percentages (https://github.com/flippercloud/flipper/pull/492)
330
- - Change Flipper::Cloud::Middleware to receive webhooks at / in addition to /webhooks.
331
- - Add `write_through` option to ActiveSupportCacheStore adapter to support write-through caching (https://github.com/flippercloud/flipper/pull/512)
332
-
333
- ## 0.20.3
334
-
335
- ### Additions/Changes
336
-
337
- - Changed the internal structure of how the memory adapter stores things.
338
-
339
- ## 0.20.2
340
-
341
- ### Additions/Changes
342
-
343
- - Http adapter now raises error when enable/disable/add/remove/clear fail.
344
- - Cloud adapter sends some extra info like hostname, ruby version, etc. for debugging and decision making.
345
-
346
- ## 0.20.1
347
-
348
- ### Additions/Changes
349
-
350
- - Just a minor tweak to cloud webhook middleware to provide more debugging information about why a hook wasn't successful.
351
-
352
- ## 0.20.0
353
-
354
- ### Additions/Changes
355
-
356
- - Add support for webhooks to `Flipper::Cloud` (https://github.com/flippercloud/flipper/pull/489).
357
-
358
- ## 0.19.1
359
-
360
- ### Additions/Changes
361
-
362
- - Bump rack-protection version to < 2.2 (https://github.com/flippercloud/flipper/pull/487)
363
- - Add memoizer_options to Flipper::Api.app (https://github.com/flippercloud/flipper/commit/174ad4bb94046a25c432d3c53fe1ff9f5a76d838)
364
-
365
- ## 0.19.0
366
-
367
- ### Additions/Changes
368
-
369
- - 100% of actors is now considered conditional. Feature#on?, Feature#conditional?, Feature#state would all be affected. See https://github.com/flippercloud/flipper/issues/463 for more.
370
- - Several doc updates.
371
-
372
- ## 0.18.0
373
-
374
- ### Additions/Changes
375
-
376
- - Add support for feature descriptions to flipper-ui (https://github.com/flippercloud/flipper/pull/461).
377
- - Remove rubocop (https://github.com/flippercloud/flipper/pull/469).
378
- - flipper-ui redesign (https://github.com/flippercloud/flipper/pull/470).
379
- - Removed support for ruby 2.4.
380
- - Added support for ruby 2.7.
381
- - Removed support for Rails 4.x.x.
382
- - Removed support for customizing actors, groups, % of actors and % of time text in flipper-ui in favor of automatic and more descriptive text.
383
-
384
- ## 0.17.2
385
-
386
- ### Additions/Changes
387
-
388
- - Avoid errors on import when there are no features and shared specs/tests for get all with no features (https://github.com/flippercloud/flipper/pull/441 and https://github.com/flippercloud/flipper/pull/442)
389
- - ::ActiveRecord::RecordNotUnique > ActiveRecord::RecordNotUnique (https://github.com/flippercloud/flipper/pull/444)
390
- - Clear gate values on enable (https://github.com/flippercloud/flipper/pull/454)
391
- - Remove use of multi from redis adapter (https://github.com/flippercloud/flipper/pull/451)
392
-
393
- ## 0.17.1
394
-
395
- - Fix require in flipper-active_record (https://github.com/flippercloud/flipper/pull/437)
396
-
397
- ## 0.17.0
398
-
399
- ### Additions/Changes
400
-
401
- - Allow shorthand block notation on group types (https://github.com/flippercloud/flipper/pull/406)
402
- - Relax active record/support constraints to support Rails 6 (https://github.com/flippercloud/flipper/pull/409)
403
- - Allow disabling fun (https://github.com/flippercloud/flipper/pull/413)
404
- - Include thing_value in payload of Instrumented#enable and #disable (https://github.com/flippercloud/flipper/pull/417)
405
- - Replace Erubis with Erubi (https://github.com/flippercloud/flipper/pull/407)
406
- - Allow customizing Rack::Protection middleware list (https://github.com/flippercloud/flipper/pull/385)
407
- - Allow setting write_timeout for ruby 2.6+ (https://github.com/flippercloud/flipper/pull/433)
408
- - Drop support for Ruby 2.1, 2.2, and 2.3 (https://github.com/flippercloud/flipper/commit/cf58982e70de5e6963b018ceced4f36a275f5b5d)
409
- - Add support for Ruby 2.6 (https://github.com/flippercloud/flipper/commit/57888311449ec81184d3d47ba9ae5cb1ad4a2f45)
410
- - Remove support for Rails 3.2 (https://github.com/flippercloud/flipper/commit/177c48c4edf51d4e411e7c673e30e06d1c66fb40)
411
- - Add write_timeout for flipper http adapter for ruby 2.6+ (https://github.com/flippercloud/flipper/pull/433)
412
- - Relax moneta version to allow for < 1.2 (https://github.com/flippercloud/flipper/pull/434).
413
- - Improve active record idempotency (https://github.com/flippercloud/flipper/pull/436).
414
- - Allow customizing add actor placeholder text (https://github.com/flippercloud/flipper/commit/5faa1e9cf66b68f8227d2f8408fb448a14676c45)
415
-
416
- ## 0.16.2
417
-
418
- ### Additions/Changes
419
-
420
- - Bump rollout redis dependency to < 5 (https://github.com/flippercloud/flipper/pull/403)
421
- - Bump redis dependency to < 5 (https://github.com/flippercloud/flipper/pull/401)
422
- - Bump sequel dependency to < 6 (https://github.com/flippercloud/flipper/pull/399 and https://github.com/flippercloud/flipper/commit/edc767e69b4ce8daead9801f38e0e8bf6b238765)
423
-
424
- ## 0.16.1
425
-
426
- ### Additions/Changes
427
-
428
- - Add actors API endpoint (https://github.com/flippercloud/flipper/pull/372).
429
- - Fix rack body proxy require for those using flipper without rack (https://github.com/flippercloud/flipper/pull/376).
430
- - Unescapes feature_name in FeatureNameFromRoute (https://github.com/flippercloud/flipper/pull/377).
431
- - Replace delete_all with destroy_all in ActiveRecord adapter (https://github.com/flippercloud/flipper/pull/395)
432
- - Target correct bootstrap breakpoints in flipper UI (https://github.com/flippercloud/flipper/pull/396)
433
-
434
- ## 0.16.0
435
-
436
- ### Bug Fixes
437
-
438
- - Support slashes in feature names (https://github.com/flippercloud/flipper/pull/362).
439
-
440
- ### Additions/Changes
441
-
442
- - Re-order gates for improved performance in some cases (https://github.com/flippercloud/flipper/pull/370).
443
- - Add Feature#exist?, DSL#exist? and Flipper#exist? (https://github.com/flippercloud/flipper/pull/371).
444
-
445
- ## 0.15.0
446
-
447
- - Move Flipper::UI configuration options to Flipper::UI::Configuration (https://github.com/flippercloud/flipper/pull/345).
448
- - Bug fix in adapter synchronizing and switched DSL#import to use Synchronizer (https://github.com/flippercloud/flipper/pull/347).
449
- - Fix AR adapter table name prefix/suffix bug (https://github.com/flippercloud/flipper/pull/350).
450
- - Allow feature names to end with "features" in UI (https://github.com/flippercloud/flipper/pull/353).
451
-
452
- ## 0.14.0
453
-
454
- - Changed sync_interval to be seconds instead of milliseconds.
455
-
456
- ## 0.13.0
457
-
458
- ### Additions/Changes
459
-
460
- - Update PStore adapter to allow setting thread_safe option (https://github.com/flippercloud/flipper/pull/334).
461
- - Update Flipper::UI to Bootstrap 4 (https://github.com/flippercloud/flipper/pull/336).
462
- - Add Flipper::UI configuration to add a banner with customizeable text and background color (https://github.com/flippercloud/flipper/pull/337).
463
- - Add sync adapter (https://github.com/flippercloud/flipper/pull/341).
464
- - Make cloud use sync adapter (https://github.com/flippercloud/flipper/pull/342). This makes local flipper operations resilient to cloud failures.
465
-
466
- ## 0.12.2
467
-
468
- ### Additions/Changes
469
-
470
- - Improvements/fixes/examples for rollout adapter (https://github.com/flippercloud/flipper/pull/332).
471
-
472
- ## 0.12.1
473
-
474
- ### Additions/Changes
475
-
476
- - Added rollout adapter documentation (https://github.com/flippercloud/flipper/pull/328).
477
-
478
- ### Bug Fixes
479
-
480
- - Fixed ActiveRecord and Sequel adapters to include disabled features for `get_all` (https://github.com/flippercloud/flipper/pull/327).
481
-
482
- ## 0.12
483
-
484
- ### Additions/Changes
485
-
486
- - Added Flipper.instance= writer method for explicitly setting the default instance (https://github.com/flippercloud/flipper/pull/309).
487
- - Added Flipper::UI configuration instance for changing text and things (https://github.com/flippercloud/flipper/pull/306).
488
- - Delegate memoize= and memoizing? for Flipper and Flipper::DSL (https://github.com/flippercloud/flipper/pull/310).
489
- - Fixed error when enabling the same group or actor more than once (https://github.com/flippercloud/flipper/pull/313).
490
- - Fixed redis cache adapter key (and thus cache misses) (https://github.com/flippercloud/flipper/pull/325).
491
- - Added Rollout adapter to make it easy to import rollout data into Flipper (https://github.com/flippercloud/flipper/pull/319).
492
- - Relaxed redis gem dependency constraint to allow redis-rb 4 (https://github.com/flippercloud/flipper/pull/317).
493
- - Added configuration option for Flipper::UI to disable feature removal (https://github.com/flippercloud/flipper/pull/322).
494
-
495
- ## 0.11
496
-
497
- ### Backwards Compatibility Breaks
498
-
499
- - Set flipper from env for API and UI (https://github.com/flippercloud/flipper/pull/223 and https://github.com/flippercloud/flipper/pull/229). It is documented, but now the memoizing middleware requires that the SetupEnv middleware is used first, unless you are configuring a Flipper default instance.
500
- - Drop support for Ruby 2.0 as it is end of lined (https://github.com/flippercloud/flipper/commit/c2c81ed89938155ce91acb5173ac38580f630e3d).
501
- - Allow unregistered groups (https://github.com/flippercloud/flipper/pull/244). Only break in compatibility is that previously unregistered groups could not be enabled and now they can be.
502
- - Removed support for metriks (https://github.com/flippercloud/flipper/pull/291).
503
-
504
- ### Additions/Changes
505
-
506
- - Use primary keys with sequel adapter (https://github.com/flippercloud/flipper/pull/210). Should be backwards compatible, but if you want it to work this way you will need to migrate your database to the new schema.
507
- - Add redis cache adapter (https://github.com/flippercloud/flipper/pull/211).
508
- - Finish API and HTTP adapter that speaks to API.
509
- - Add flipper cloud adapter (https://github.com/flippercloud/flipper/pull/249). Nothing to see here yet, but good stuff soon. ;)
510
- - Add importing (https://github.com/flippercloud/flipper/pull/251).
511
- - Added Adapter#get_all to allow for more efficient preload_all (https://github.com/flippercloud/flipper/pull/255).
512
- - Added :unless option to Flipper::Middleware::Memoizer to allow skipping memoization and preloading for certain requests.
513
- - Made it possible to instrument Flipper::Cloud (https://github.com/flippercloud/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
514
- - Made it possible to wrap Http adapter when using Flipper::Cloud (https://github.com/flippercloud/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
515
- - Instrument get_multi in instrumented adapter (https://github.com/flippercloud/flipper/commit/951d25c5ce07d3b56b0b2337adf5f6bcbe4050e7).
516
- - Allow instrumenting Flipper::Cloud http adapter (https://github.com/flippercloud/flipper/pull/253).
517
- - Add DSL#preload_all and Adapter#get_all to allow for making even more efficient loading of features (https://github.com/flippercloud/flipper/pull/255).
518
- - Allow setting debug output of http adapter (https://github.com/flippercloud/flipper/pull/256 and https://github.com/flippercloud/flipper/pull/258).
519
- - Allow setting env key for middleware (https://github.com/flippercloud/flipper/pull/259).
520
- - Added ActiveSupport cache store adapter for use with Rails.cache (https://github.com/flippercloud/flipper/pull/265 and https://github.com/flippercloud/flipper/pull/297).
521
- - Added support for up to 3 decimal places in percentage based rollouts (https://github.com/flippercloud/flipper/pull/274).
522
- - Removed Flipper::GroupNotRegistered error as it is now unused (https://github.com/flippercloud/flipper/pull/270).
523
- - Added get_all to all adapters (https://github.com/flippercloud/flipper/pull/298).
524
- - Added support for Rails 5.1 (https://github.com/flippercloud/flipper/pull/299).
525
- - Added Flipper default instance generation (https://github.com/flippercloud/flipper/pull/279).
526
-
527
- ## 0.10.2
528
-
529
- - Add Adapter#get_multi to allow for efficient loading of more than one feature at a time (https://github.com/flippercloud/flipper/pull/198)
530
- - Add DSL#preload for efficiently loading several features at once using get_mutli (https://github.com/flippercloud/flipper/pull/198)
531
- - Add :preload and :preload_all options to memoizer as a way of efficiently loading several features for a request in one network call instead of N where N is the number of features checked (https://github.com/flippercloud/flipper/pull/198)
532
- - Strip whitespace out of feature/actor/group values posted by UI (https://github.com/flippercloud/flipper/pull/205)
533
- - Fix bug with dalli adapter where deleting a feature using the UI or API was not clearing the cache in the dalli adapter which meant the feature would continue to use whatever cached enabled state was present until the TTL was hit (1cd96f6)
534
- - Change cache keys for dalli adapter. Backwards compatible in that it will just repopulate new keys on first check with this version, but old keys are not expired, so if you used the default ttl of 0, you'll have to expire them on your own. The primary reason for the change was safer namespacing of the cache keys to avoid collisions.
535
-
536
- ## 0.10.1
537
-
538
- - Add docker compose support for contributing
539
- - Add sequel adapter
540
- - Show confirmation dialog when deleting a feature in flipper-ui
541
-
542
- ## 0.10.0
543
-
544
- - Added feature check context (https://github.com/flippercloud/flipper/pull/158)
545
- - Do not use mass assignment for active record adapter (https://github.com/flippercloud/flipper/pull/171)
546
- - Several documentation improvements
547
- - Make Flipper::UI.app.inspect return a String (https://github.com/flippercloud/flipper/pull/176)
548
- - changes boolean gate route to api/v1/features/boolean (https://github.com/flippercloud/flipper/pull/175)
549
- - add api v1 percentage_of_actors endpoint (https://github.com/flippercloud/flipper/pull/179)
550
- - add api v1 percentage_of_time endpoint (https://github.com/flippercloud/flipper/pull/180)
551
- - add api v1 actors gate endpoint (https://github.com/flippercloud/flipper/pull/181)
552
- - wait for activesupport to tell us when active record is loaded for active record adapter (https://github.com/flippercloud/flipper/pull/192)
553
-
554
- ## 0.9.2
555
-
556
- - GET /api/v1/features
557
- - POST /api/v1/features - add feature endpoint
558
- - rack-protection 2.0.0 support
559
- - pretty rake output
560
-
561
- ## 0.9.1
562
-
563
- - bump flipper-active_record to officially support rails 5
564
-
565
- ## 0.9.0
566
-
567
- - Moves SharedAdapterTests module to Flipper::Test::SharedAdapterTests to avoid clobbering anything top level in apps that use Flipper
568
- - Memoizable, Instrumented and OperationLogger now delegate any missing methods to the original adapter. This was lost with the removal of the official decorator in 0.8, but is actually useful functionality for these "wrapping" adapters.
569
- - Instrumenting adapters is now off by default. Use Flipper::Adapters::Instrumented.new(adapter) to instrument adapters and maintain the old functionality.
570
- - Added dalli cache adapter (https://github.com/flippercloud/flipper/pull/132)
571
-
572
- ## 0.8
573
-
574
- - removed Flipper::Decorator and Flipper::Adapters::Decorator in favor of just calling methods on wrapped adapter
575
- - fix bug where certain versions of AR left off quotes for key column which caused issues with MySQL https://github.com/flippercloud/flipper/issues/120
576
- - fix bug where AR would store multiple gate values for percentage gates for each enable/disable and then nondeterministically pick one on read (https://github.com/flippercloud/flipper/pull/122 and https://github.com/flippercloud/flipper/pull/124)
577
- - added readonly adapter (https://github.com/flippercloud/flipper/pull/111)
578
- - flipper groups now match for truthy values rather than explicitly only true (https://github.com/flippercloud/flipper/issues/110)
579
- - removed gate operation instrumentation (https://github.com/flippercloud/flipper/commit/32f14ed1fb25c64961b23c6be3dc6773143a06c8); I don't think it was useful and never found myself instrumenting it in reality
580
- - initial implementation of flipper api - very limited functionality right now (get/delete feature, boolean gate for feature) but more is on the way
581
- - made it easy to remove a feature (https://github.com/flippercloud/flipper/pull/126)
582
- - add minitest shared tests for adapters that work the same as the shared specs for rspec (https://github.com/flippercloud/flipper/pull/127)
583
-
584
- ## 0.7.5
585
-
586
- - support for rails 5 beta/ rack 2 alpha
587
- - fix uninitialized constant in rails generators
588
- - fix adapter test for clear to ensure that feature is not deleted, only gates
589
-
590
- ## 0.7.4
591
-
592
- - Add missing migration file to gemspec for flipper-active_record
593
-
594
- ## 0.7.3
595
-
596
- - Add Flipper ActiveRecord adapter
597
-
598
- ## 0.7.2
599
-
600
- - Add Flipper::UI.application_breadcrumb_href for setting breadcrumb back to original app from Flipper UI
601
-
602
- ## 0.7.1
603
-
604
- - Fix bug where features with names that match static file routes were incorrectly routing to the file action (https://github.com/flippercloud/flipper/issues/80)
605
-
606
- ## 0.7
607
-
608
- - Added Flipper.groups and Flipper.group_names
609
- - Changed percentage_of_random to percentage_of_time
610
- - Added enable/disable convenience methods for all gates (enable_group, enable_actor, enable_percentage_of_actors, enable_percentage_of_time)
611
- - Added value convenience methods (boolean_value, groups_value, actors_value, etc.)
612
- - Added Feature#gate_values for getting typecast adapter gate values
613
- - Added Feature#enabled_gates and #disabled_gates for getting the gates that are enabled/disabled for the feature
614
- - Remove Feature#description
615
- - Added Flipper::Adapters::PStore
616
- - Moved memoizable decorator to instance variable storage from class level thread local stuff. Now not thread safe, but we can make a thread safe version later.
617
-
618
- UI
619
-
620
- - Totally new. Works like a charm.
621
-
622
- Mongo
623
-
624
- - Updated to latest driver (~> 2.0)
625
-
626
- ## 0.6.3
627
-
628
- - Minor bug fixes
629
-
630
- ## 0.6.2
631
-
632
- - Added Flipper.group_exists?
633
-
634
- ## 0.6.1
635
-
636
- - Added statsd support for instrumentation.
637
-
638
- ## 0.4.0
639
-
640
- - No longer use #id for detecting actors. You must now define #flipper_id on
641
- anything that you would like to behave as an actor.
642
- - Strings are now used instead of Integers for Actor identifiers. More flexible
643
- and the only reason I used Integers was to do modulo for percentage of actors.
644
- Since percentage of actors now uses hashing, integer is no longer needed.
645
- - Easy integration of instrumentation with AS::Notifications or anything similar.
646
- - A bunch of stuff around inspecting and getting names/descriptions out of
647
- things to more easily figure out what is going on.
648
- - Percentage of actors hash is now also seeded with feature name so the same
649
- actors don't get all features instantly.
3
+ All notable [changes since 1.0 are documented in GitHub Releases](https://github.com/flippercloud/flipper/releases). View [0.x Changelog](https://github.com/flippercloud/flipper/blob/v0.28.3/Changelog.md).