flipper 0.28.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/examples.yml +2 -2
  3. data/Changelog.md +190 -165
  4. data/Gemfile +5 -3
  5. data/docs/images/flipper_cloud.png +0 -0
  6. data/examples/cloud/app.ru +12 -0
  7. data/examples/cloud/basic.rb +22 -0
  8. data/examples/cloud/cloud_setup.rb +4 -0
  9. data/examples/cloud/forked.rb +31 -0
  10. data/examples/cloud/import.rb +17 -0
  11. data/examples/cloud/threaded.rb +36 -0
  12. data/examples/dsl.rb +0 -14
  13. data/flipper-cloud.gemspec +19 -0
  14. data/flipper.gemspec +3 -2
  15. data/lib/flipper/cloud/configuration.rb +189 -0
  16. data/lib/flipper/cloud/dsl.rb +27 -0
  17. data/lib/flipper/cloud/instrumenter.rb +48 -0
  18. data/lib/flipper/cloud/message_verifier.rb +95 -0
  19. data/lib/flipper/cloud/middleware.rb +63 -0
  20. data/lib/flipper/cloud/routes.rb +14 -0
  21. data/lib/flipper/cloud.rb +53 -0
  22. data/lib/flipper/dsl.rb +0 -46
  23. data/lib/flipper/{railtie.rb → engine.rb} +19 -3
  24. data/lib/flipper/metadata.rb +5 -1
  25. data/lib/flipper/middleware/memoizer.rb +1 -1
  26. data/lib/flipper/spec/shared_adapter_specs.rb +43 -43
  27. data/lib/flipper/test/shared_adapter_test.rb +43 -43
  28. data/lib/flipper/version.rb +1 -1
  29. data/lib/flipper.rb +3 -5
  30. data/spec/flipper/adapters/dual_write_spec.rb +2 -2
  31. data/spec/flipper/adapters/instrumented_spec.rb +1 -1
  32. data/spec/flipper/adapters/memoizable_spec.rb +6 -6
  33. data/spec/flipper/adapters/operation_logger_spec.rb +2 -2
  34. data/spec/flipper/adapters/read_only_spec.rb +6 -6
  35. data/spec/flipper/cloud/configuration_spec.rb +269 -0
  36. data/spec/flipper/cloud/dsl_spec.rb +82 -0
  37. data/spec/flipper/cloud/message_verifier_spec.rb +104 -0
  38. data/spec/flipper/cloud/middleware_spec.rb +289 -0
  39. data/spec/flipper/cloud_spec.rb +180 -0
  40. data/spec/flipper/dsl_spec.rb +0 -75
  41. data/spec/flipper/engine_spec.rb +190 -0
  42. data/spec/flipper_integration_spec.rb +12 -12
  43. data/spec/flipper_spec.rb +0 -30
  44. data/spec/spec_helper.rb +0 -12
  45. data/spec/support/climate_control.rb +7 -0
  46. metadata +54 -11
  47. data/.tool-versions +0 -1
  48. data/spec/flipper/railtie_spec.rb +0 -109
data/Changelog.md CHANGED
@@ -2,20 +2,45 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## 1.0.0
6
+
7
+ ### Additions/Changes
8
+
9
+ * ui, api: Allow Rack 3 (https://github.com/flippercloud/flipper/pull/670)
10
+ * 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)
11
+ ```diff
12
+ # Gemfile
13
+ gem 'flipper'
14
+ - gem 'flipper-cloud'
15
+ ```
16
+
17
+ ### Breaking Changes
18
+
19
+ * 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:
20
+ * Change `Flipper.bool` => `Flipper::Types::Boolean.new`
21
+ * Change `Flipper.boolean` => `Flipper::Types::Boolean.new`
22
+ * Change `Flipper.actor` => `Flipper::Types::Actor.new`
23
+ * Change `Flipper.percentage_of_actors` => `Flipper::Types::PercentageOfActors.new`
24
+ * Change `Flipper.actors` => `Flipper::Types::PercentageOfActors.new`
25
+ * Change `Flipper.percentage_of_time` => `Flipper::Types::PercentageOfTime.new`
26
+ * Change `Flipper.time` => `Flipper::Types::PercentageOfTime.new`
27
+
5
28
  ## 0.28.3
6
29
 
7
- * 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/jnunemaker/flipper/pull/740)
30
+ * 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)
8
31
 
9
32
  ## 0.28.2
10
33
 
11
- * UI: fix path to bundled assets when mounted in another Rack app (https://github.com/jnunemaker/flipper/pull/742)
34
+ ### Additions/Changes
35
+
36
+ * UI: fix path to bundled assets when mounted in another Rack app (https://github.com/flippercloud/flipper/pull/742)
12
37
 
13
38
  ## 0.28.1
14
39
 
15
40
  ### Additions/Changes
16
41
 
17
- * Use new method of making logs bold for rails (https://github.com/jnunemaker/flipper/pull/726)
18
- * Bundle bootstrap, jquery and poppler with the library. (https://github.com/jnunemaker/flipper/pull/731)
42
+ * Use new method of making logs bold for rails (https://github.com/flippercloud/flipper/pull/726)
43
+ * Bundle bootstrap, jquery and poppler with the library. (https://github.com/flippercloud/flipper/pull/731)
19
44
 
20
45
  ## 0.28.0
21
46
 
@@ -61,141 +86,141 @@ All notable changes to this project will be documented in this file.
61
86
 
62
87
  ## 0.27.0
63
88
 
64
- * Easy Import/Export (https://github.com/jnunemaker/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.
89
+ * 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.
65
90
 
66
91
  ## 0.26.2
67
92
 
68
- * Improve Active Record Adapter get/get_multi/get_all performance by 5-10x when dealing with thousands of gate values (https://github.com/jnunemaker/flipper/pull/707).
93
+ * 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).
69
94
 
70
95
  ## 0.26.1
71
96
 
72
- * Improve `Flipper#enabled?` performance by ~37%-55% (https://github.com/jnunemaker/flipper/pull/706)
73
- * Make Memory adapter threadsafe (https://github.com/jnunemaker/flipper/pull/702 and https://github.com/jnunemaker/flipper/pull/703)
74
- * ActiveRecord adapter: wrap all reads/writes in `with_connection` (https://github.com/jnunemaker/flipper/pull/705)
75
- * Improve performance of background polling (https://github.com/jnunemaker/flipper/pull/699)
76
- * Remove executables directive from gem (https://github.com/jnunemaker/flipper/pull/693)
97
+ * Improve `Flipper#enabled?` performance by ~37%-55% (https://github.com/flippercloud/flipper/pull/706)
98
+ * Make Memory adapter threadsafe (https://github.com/flippercloud/flipper/pull/702 and https://github.com/flippercloud/flipper/pull/703)
99
+ * ActiveRecord adapter: wrap all reads/writes in `with_connection` (https://github.com/flippercloud/flipper/pull/705)
100
+ * Improve performance of background polling (https://github.com/flippercloud/flipper/pull/699)
101
+ * Remove executables directive from gem (https://github.com/flippercloud/flipper/pull/693)
77
102
 
78
103
  ## 0.26.0
79
104
 
80
- * Cloud Background Polling (https://github.com/jnunemaker/flipper/pull/682)
105
+ * Cloud Background Polling (https://github.com/flippercloud/flipper/pull/682)
81
106
  * Changed default branch from master to main
82
- * Allow configuring railtie via ENV vars (https://github.com/jnunemaker/flipper/pull/681)
83
- * flipper-ui: Fix issue preventing feature flags being enabled when confirm_fully_enable is on and feature_removal_enabled is off (https://github.com/jnunemaker/flipper/pull/680)
107
+ * Allow configuring railtie via ENV vars (https://github.com/flippercloud/flipper/pull/681)
108
+ * 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)
84
109
 
85
110
  ## 0.25.4
86
111
 
87
- * Added read_only UI config option (https://github.com/jnunemaker/flipper/pull/679)
112
+ * Added read_only UI config option (https://github.com/flippercloud/flipper/pull/679)
88
113
 
89
114
  ## 0.25.3
90
115
 
91
- * Added configurable confirm warning for fully enabling a feature (https://github.com/jnunemaker/flipper/pull/665)
92
- * Update rack protection to < 4 (https://github.com/jnunemaker/flipper/pull/675)
93
- * Check sadd_returns_boolean on the actual client class rather than ::Redis (https://github.com/jnunemaker/flipper/pull/677)
116
+ * Added configurable confirm warning for fully enabling a feature (https://github.com/flippercloud/flipper/pull/665)
117
+ * Update rack protection to < 4 (https://github.com/flippercloud/flipper/pull/675)
118
+ * Check sadd_returns_boolean on the actual client class rather than ::Redis (https://github.com/flippercloud/flipper/pull/677)
94
119
 
95
120
  ## 0.25.2
96
121
 
97
- * Fix deprecation warnings for Redis >= 4.8.0 (https://github.com/jnunemaker/flipper/pull/660)
122
+ * Fix deprecation warnings for Redis >= 4.8.0 (https://github.com/flippercloud/flipper/pull/660)
98
123
 
99
124
  ## 0.25.1
100
125
 
101
126
  ### Additions/Changes
102
127
 
103
- * ActiveRecord: use provided `gate_class` option when calling `#get_all` (https://github.com/jnunemaker/flipper/pull/647)
104
- * Relaxed the rack-protection version to support latest (https://github.com/jnunemaker/flipper/commit/f4a41c541ccf14c535a61c6bc6fe7eeabbfc7e71).
105
- * Configure ActiveRecord adapter immediately upon require of flipper-active_record (https://github.com/jnunemaker/flipper/pull/652)
128
+ * ActiveRecord: use provided `gate_class` option when calling `#get_all` (https://github.com/flippercloud/flipper/pull/647)
129
+ * Relaxed the rack-protection version to support latest (https://github.com/flippercloud/flipper/commit/f4a41c541ccf14c535a61c6bc6fe7eeabbfc7e71).
130
+ * Configure ActiveRecord adapter immediately upon require of flipper-active_record (https://github.com/flippercloud/flipper/pull/652)
106
131
 
107
132
  ## 0.25.0
108
133
 
109
134
  ### Additions/Changes
110
135
 
111
- * Added a prompt in Flipper UI for the 'Delete' button to prevent accidental delete of features (https://github.com/jnunemaker/flipper/pull/625)
112
- * Added failsafe adapter (https://github.com/jnunemaker/flipper/pull/626)
113
- * 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/jnunemaker/flipper/pull/627)
114
- * ActiveRecord: base class for internal models (https://github.com/jnunemaker/flipper/pull/629)
115
- * Remove use of `Rack::BodyProxy` in the memoizer middleware (https://github.com/jnunemaker/flipper/pull/631)
136
+ * Added a prompt in Flipper UI for the 'Delete' button to prevent accidental delete of features (https://github.com/flippercloud/flipper/pull/625)
137
+ * Added failsafe adapter (https://github.com/flippercloud/flipper/pull/626)
138
+ * 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)
139
+ * ActiveRecord: base class for internal models (https://github.com/flippercloud/flipper/pull/629)
140
+ * Remove use of `Rack::BodyProxy` in the memoizer middleware (https://github.com/flippercloud/flipper/pull/631)
116
141
 
117
142
  ## 0.24.1
118
143
 
119
144
  ### Additions/Changes
120
145
 
121
- * flipper-api: `exclude_gates` parameter to exclude gate data in GETs (https://github.com/jnunemaker/flipper/pull/572).
122
- * Make it possible to disable internal memoization (https://github.com/jnunemaker/flipper/pull/612).
123
- * Add Flipper::Actor#hash so actors can be hash keys (https://github.com/jnunemaker/flipper/pull/616).
124
- * Pretty Up `rails routes` again and make rack-protection dependency less strict (https://github.com/jnunemaker/flipper/pull/619).
125
- * Add kwargs for method_missing using ruby 3.0 (https://github.com/jnunemaker/flipper/pull/620).
126
- * Relax the rack-protection dependency (https://github.com/jnunemaker/flipper/commit/c1cb9cd78140c2b09123687642558101e6e5d37d).
146
+ * flipper-api: `exclude_gates` parameter to exclude gate data in GETs (https://github.com/flippercloud/flipper/pull/572).
147
+ * Make it possible to disable internal memoization (https://github.com/flippercloud/flipper/pull/612).
148
+ * Add Flipper::Actor#hash so actors can be hash keys (https://github.com/flippercloud/flipper/pull/616).
149
+ * Pretty Up `rails routes` again and make rack-protection dependency less strict (https://github.com/flippercloud/flipper/pull/619).
150
+ * Add kwargs for method_missing using ruby 3.0 (https://github.com/flippercloud/flipper/pull/620).
151
+ * Relax the rack-protection dependency (https://github.com/flippercloud/flipper/commit/c1cb9cd78140c2b09123687642558101e6e5d37d).
127
152
 
128
153
  ## 0.24.0
129
154
 
130
155
  ### Additions/Changes
131
156
 
132
- * Add Ruby 3.0 and 3.1 to the CI matrix and fix groups block arity check for ruby 3 (https://github.com/jnunemaker/flipper/pull/601)
157
+ * 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)
133
158
  * Removed support for Ruby 2.5 (which was end of line 9 months ago)
134
- * Add (alpha) client side instrumentation of events to cloud (https://github.com/jnunemaker/flipper/pull/602)
135
- * Fix deprecated uses of Redis#pipelined (https://github.com/jnunemaker/flipper/pull/603). redis-rb >= 3 now required.
136
- * Fix Flipper UI Rack application when `Rack::Session::Pool` is used to build it (https://github.com/jnunemaker/flipper/pull/606).
159
+ * Add (alpha) client side instrumentation of events to cloud (https://github.com/flippercloud/flipper/pull/602)
160
+ * Fix deprecated uses of Redis#pipelined (https://github.com/flippercloud/flipper/pull/603). redis-rb >= 3 now required.
161
+ * Fix Flipper UI Rack application when `Rack::Session::Pool` is used to build it (https://github.com/flippercloud/flipper/pull/606).
137
162
 
138
163
  ## 0.23.1
139
164
 
140
165
  ### Additions/Changes
141
166
 
142
- * Relax dalli version constraint (https://github.com/jnunemaker/flipper/pull/596)
167
+ * Relax dalli version constraint (https://github.com/flippercloud/flipper/pull/596)
143
168
 
144
169
  ### Bug Fixes
145
170
 
146
- * Fix railtie initialization to mount middleware after config/intializers/* (https://github.com/jnunemaker/flipper/pull/586)
171
+ * Fix railtie initialization to mount middleware after config/intializers/* (https://github.com/flippercloud/flipper/pull/586)
147
172
 
148
173
  ## 0.23.0
149
174
 
150
175
  ### Additions/Changes
151
176
 
152
- * Allow some HTML in banner and descriptions (https://github.com/jnunemaker/flipper/pull/570).
153
- * Moved some cloud headers to http client (https://github.com/jnunemaker/flipper/pull/567).
154
- * Update flipper-ui jquery and bootstrap versions (https://github.com/jnunemaker/flipper/issues/565 and https://github.com/jnunemaker/flipper/pull/566).
155
- * Moved docs to www.flippercloud.io/docs (https://github.com/jnunemaker/flipper/pull/574).
156
- * PStore adapter now defaults to thread safe and no longer supports `.thread_safe` (https://github.com/jnunemaker/flipper/commit/4048704fefe41b716015294a19a0b94546637630).
157
- * Add failover adapter (https://github.com/jnunemaker/flipper/pull/584).
158
- * Improve http adapter error message (https://github.com/jnunemaker/flipper/pull/587).
159
- * Rails 7 support (mostly in https://github.com/jnunemaker/flipper/pull/592).
177
+ * Allow some HTML in banner and descriptions (https://github.com/flippercloud/flipper/pull/570).
178
+ * Moved some cloud headers to http client (https://github.com/flippercloud/flipper/pull/567).
179
+ * Update flipper-ui jquery and bootstrap versions (https://github.com/flippercloud/flipper/issues/565 and https://github.com/flippercloud/flipper/pull/566).
180
+ * Moved docs to www.flippercloud.io/docs (https://github.com/flippercloud/flipper/pull/574).
181
+ * PStore adapter now defaults to thread safe and no longer supports `.thread_safe` (https://github.com/flippercloud/flipper/commit/4048704fefe41b716015294a19a0b94546637630).
182
+ * Add failover adapter (https://github.com/flippercloud/flipper/pull/584).
183
+ * Improve http adapter error message (https://github.com/flippercloud/flipper/pull/587).
184
+ * Rails 7 support (mostly in https://github.com/flippercloud/flipper/pull/592).
160
185
 
161
186
  ## 0.22.2
162
187
 
163
188
  ### Additions/Changes
164
189
 
165
- * Allow adding multiple actors at once in flipper-ui via comma separation (configurable via `Flipper::UI.configuration.actors_separator`) (https://github.com/jnunemaker/flipper/pull/556)
190
+ * 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)
166
191
 
167
192
  ### Bug Fixes
168
193
 
169
- * Fix railtie initialization to avoid altering middleware order (https://github.com/jnunemaker/flipper/pull/563)
194
+ * Fix railtie initialization to avoid altering middleware order (https://github.com/flippercloud/flipper/pull/563)
170
195
 
171
196
  ## 0.22.1
172
197
 
173
198
  ### Additions/Changes
174
199
 
175
- * Remove Octicons and replace with a pure CSS status circle (https://github.com/jnunemaker/flipper/pull/547)
176
- * Rescue unique errors in AR and Sequel when setting value (https://github.com/jnunemaker/flipper/commit/87f5a98bce7baad7a27b75b5bce3256967769f27)
177
- * Add a Content-Security-Policy to flipper-ui (https://github.com/jnunemaker/flipper/pull/552)
178
- * Fix Synchronizer issue that occurs for ActiveRecord adapter (https://github.com/jnunemaker/flipper/pull/554)
200
+ * Remove Octicons and replace with a pure CSS status circle (https://github.com/flippercloud/flipper/pull/547)
201
+ * Rescue unique errors in AR and Sequel when setting value (https://github.com/flippercloud/flipper/commit/87f5a98bce7baad7a27b75b5bce3256967769f27)
202
+ * Add a Content-Security-Policy to flipper-ui (https://github.com/flippercloud/flipper/pull/552)
203
+ * Fix Synchronizer issue that occurs for ActiveRecord adapter (https://github.com/flippercloud/flipper/pull/554)
179
204
 
180
205
  ## 0.22.0
181
206
 
182
207
  ### Additions/Changes
183
208
 
184
- * Enable log subscriber by default in Rails (https://github.com/jnunemaker/flipper/pull/525)
185
- * Remove memoizer from API and UI (https://github.com/jnunemaker/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.
186
- * Fix SQL reserved word use in get_all for ActiveRecord and Sequel (https://github.com/jnunemaker/flipper/pull/536).
187
- * Handle spaces in names gracefully in UI (https://github.com/jnunemaker/flipper/pull/541).
209
+ * Enable log subscriber by default in Rails (https://github.com/flippercloud/flipper/pull/525)
210
+ * 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.
211
+ * Fix SQL reserved word use in get_all for ActiveRecord and Sequel (https://github.com/flippercloud/flipper/pull/536).
212
+ * Handle spaces in names gracefully in UI (https://github.com/flippercloud/flipper/pull/541).
188
213
 
189
214
  ## 0.21.0
190
215
 
191
216
  ### Additions/Changes
192
217
 
193
- * Default to using memory adapter (https://github.com/jnunemaker/flipper/pull/501)
194
- * Adapters now configured on require when possible (https://github.com/jnunemaker/flipper/pull/502)
195
- * 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/jnunemaker/flipper/pull/504)
196
- * Added default `flipper_id` implementation via `Flipper::Identifier` and automatically included it in ActiveRecord and Sequel models (https://github.com/jnunemaker/flipper/pull/505)
197
- * Deprecate superflous sync_method setting (https://github.com/jnunemaker/flipper/pull/511)
198
- * 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/jnunemaker/flipper/pull/506)
218
+ * Default to using memory adapter (https://github.com/flippercloud/flipper/pull/501)
219
+ * Adapters now configured on require when possible (https://github.com/flippercloud/flipper/pull/502)
220
+ * 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)
221
+ * Added default `flipper_id` implementation via `Flipper::Identifier` and automatically included it in ActiveRecord and Sequel models (https://github.com/flippercloud/flipper/pull/505)
222
+ * Deprecate superflous sync_method setting (https://github.com/flippercloud/flipper/pull/511)
223
+ * 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)
199
224
 
200
225
  ### Upgrading
201
226
 
@@ -238,9 +263,9 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
238
263
 
239
264
  ### Additions/Changes
240
265
 
241
- * Allow actors and time gates to deal with decimal percentages (https://github.com/jnunemaker/flipper/pull/492)
266
+ * Allow actors and time gates to deal with decimal percentages (https://github.com/flippercloud/flipper/pull/492)
242
267
  * Change Flipper::Cloud::Middleware to receive webhooks at / in addition to /webhooks.
243
- * Add `write_through` option to ActiveSupportCacheStore adapter to support write-through caching (https://github.com/jnunemaker/flipper/pull/512)
268
+ * Add `write_through` option to ActiveSupportCacheStore adapter to support write-through caching (https://github.com/flippercloud/flipper/pull/512)
244
269
 
245
270
  ## 0.20.3
246
271
 
@@ -265,29 +290,29 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
265
290
 
266
291
  ### Additions/Changes
267
292
 
268
- * Add support for webhooks to `Flipper::Cloud` (https://github.com/jnunemaker/flipper/pull/489).
293
+ * Add support for webhooks to `Flipper::Cloud` (https://github.com/flippercloud/flipper/pull/489).
269
294
 
270
295
  ## 0.19.1
271
296
 
272
297
  ### Additions/Changes
273
298
 
274
- * Bump rack-protection version to < 2.2 (https://github.com/jnunemaker/flipper/pull/487)
275
- * Add memoizer_options to Flipper::Api.app (https://github.com/jnunemaker/flipper/commit/174ad4bb94046a25c432d3c53fe1ff9f5a76d838)
299
+ * Bump rack-protection version to < 2.2 (https://github.com/flippercloud/flipper/pull/487)
300
+ * Add memoizer_options to Flipper::Api.app (https://github.com/flippercloud/flipper/commit/174ad4bb94046a25c432d3c53fe1ff9f5a76d838)
276
301
 
277
302
  ## 0.19.0
278
303
 
279
304
  ### Additions/Changes
280
305
 
281
- * 100% of actors is now considered conditional. Feature#on?, Feature#conditional?, Feature#state would all be affected. See https://github.com/jnunemaker/flipper/issues/463 for more.
306
+ * 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.
282
307
  * Several doc updates.
283
308
 
284
309
  ## 0.18.0
285
310
 
286
311
  ### Additions/Changes
287
312
 
288
- * Add support for feature descriptions to flipper-ui (https://github.com/jnunemaker/flipper/pull/461).
289
- * Remove rubocop (https://github.com/jnunemaker/flipper/pull/469).
290
- * flipper-ui redesign (https://github.com/jnunemaker/flipper/pull/470).
313
+ * Add support for feature descriptions to flipper-ui (https://github.com/flippercloud/flipper/pull/461).
314
+ * Remove rubocop (https://github.com/flippercloud/flipper/pull/469).
315
+ * flipper-ui redesign (https://github.com/flippercloud/flipper/pull/470).
291
316
  * Removed support for ruby 2.4.
292
317
  * Added support for ruby 2.7.
293
318
  * Removed support for Rails 4.x.x.
@@ -297,69 +322,69 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
297
322
 
298
323
  ### Additions/Changes
299
324
 
300
- * Avoid errors on import when there are no features and shared specs/tests for get all with no features (https://github.com/jnunemaker/flipper/pull/441 and https://github.com/jnunemaker/flipper/pull/442)
301
- * ::ActiveRecord::RecordNotUnique > ActiveRecord::RecordNotUnique (https://github.com/jnunemaker/flipper/pull/444)
302
- * Clear gate values on enable (https://github.com/jnunemaker/flipper/pull/454)
303
- * Remove use of multi from redis adapter (https://github.com/jnunemaker/flipper/pull/451)
325
+ * 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)
326
+ * ::ActiveRecord::RecordNotUnique > ActiveRecord::RecordNotUnique (https://github.com/flippercloud/flipper/pull/444)
327
+ * Clear gate values on enable (https://github.com/flippercloud/flipper/pull/454)
328
+ * Remove use of multi from redis adapter (https://github.com/flippercloud/flipper/pull/451)
304
329
 
305
330
  ## 0.17.1
306
331
 
307
- * Fix require in flipper-active_record (https://github.com/jnunemaker/flipper/pull/437)
332
+ * Fix require in flipper-active_record (https://github.com/flippercloud/flipper/pull/437)
308
333
 
309
334
  ## 0.17.0
310
335
 
311
336
  ### Additions/Changes
312
337
 
313
- * Allow shorthand block notation on group types (https://github.com/jnunemaker/flipper/pull/406)
314
- * Relax active record/support constraints to support Rails 6 (https://github.com/jnunemaker/flipper/pull/409)
315
- * Allow disabling fun (https://github.com/jnunemaker/flipper/pull/413)
316
- * Include thing_value in payload of Instrumented#enable and #disable (https://github.com/jnunemaker/flipper/pull/417)
317
- * Replace Erubis with Erubi (https://github.com/jnunemaker/flipper/pull/407)
318
- * Allow customizing Rack::Protection middleware list (https://github.com/jnunemaker/flipper/pull/385)
319
- * Allow setting write_timeout for ruby 2.6+ (https://github.com/jnunemaker/flipper/pull/433)
320
- * Drop support for Ruby 2.1, 2.2, and 2.3 (https://github.com/jnunemaker/flipper/commit/cf58982e70de5e6963b018ceced4f36a275f5b5d)
321
- * Add support for Ruby 2.6 (https://github.com/jnunemaker/flipper/commit/57888311449ec81184d3d47ba9ae5cb1ad4a2f45)
322
- * Remove support for Rails 3.2 (https://github.com/jnunemaker/flipper/commit/177c48c4edf51d4e411e7c673e30e06d1c66fb40)
323
- * Add write_timeout for flipper http adapter for ruby 2.6+ (https://github.com/jnunemaker/flipper/pull/433)
324
- * Relax moneta version to allow for < 1.2 (https://github.com/jnunemaker/flipper/pull/434).
325
- * Improve active record idempotency (https://github.com/jnunemaker/flipper/pull/436).
326
- * Allow customizing add actor placeholder text (https://github.com/jnunemaker/flipper/commit/5faa1e9cf66b68f8227d2f8408fb448a14676c45)
338
+ * Allow shorthand block notation on group types (https://github.com/flippercloud/flipper/pull/406)
339
+ * Relax active record/support constraints to support Rails 6 (https://github.com/flippercloud/flipper/pull/409)
340
+ * Allow disabling fun (https://github.com/flippercloud/flipper/pull/413)
341
+ * Include thing_value in payload of Instrumented#enable and #disable (https://github.com/flippercloud/flipper/pull/417)
342
+ * Replace Erubis with Erubi (https://github.com/flippercloud/flipper/pull/407)
343
+ * Allow customizing Rack::Protection middleware list (https://github.com/flippercloud/flipper/pull/385)
344
+ * Allow setting write_timeout for ruby 2.6+ (https://github.com/flippercloud/flipper/pull/433)
345
+ * Drop support for Ruby 2.1, 2.2, and 2.3 (https://github.com/flippercloud/flipper/commit/cf58982e70de5e6963b018ceced4f36a275f5b5d)
346
+ * Add support for Ruby 2.6 (https://github.com/flippercloud/flipper/commit/57888311449ec81184d3d47ba9ae5cb1ad4a2f45)
347
+ * Remove support for Rails 3.2 (https://github.com/flippercloud/flipper/commit/177c48c4edf51d4e411e7c673e30e06d1c66fb40)
348
+ * Add write_timeout for flipper http adapter for ruby 2.6+ (https://github.com/flippercloud/flipper/pull/433)
349
+ * Relax moneta version to allow for < 1.2 (https://github.com/flippercloud/flipper/pull/434).
350
+ * Improve active record idempotency (https://github.com/flippercloud/flipper/pull/436).
351
+ * Allow customizing add actor placeholder text (https://github.com/flippercloud/flipper/commit/5faa1e9cf66b68f8227d2f8408fb448a14676c45)
327
352
 
328
353
  ## 0.16.2
329
354
 
330
355
  ### Additions/Changes
331
356
 
332
- * Bump rollout redis dependency to < 5 (https://github.com/jnunemaker/flipper/pull/403)
333
- * Bump redis dependency to < 5 (https://github.com/jnunemaker/flipper/pull/401)
334
- * Bump sequel dependency to < 6 (https://github.com/jnunemaker/flipper/pull/399 and https://github.com/jnunemaker/flipper/commit/edc767e69b4ce8daead9801f38e0e8bf6b238765)
357
+ * Bump rollout redis dependency to < 5 (https://github.com/flippercloud/flipper/pull/403)
358
+ * Bump redis dependency to < 5 (https://github.com/flippercloud/flipper/pull/401)
359
+ * Bump sequel dependency to < 6 (https://github.com/flippercloud/flipper/pull/399 and https://github.com/flippercloud/flipper/commit/edc767e69b4ce8daead9801f38e0e8bf6b238765)
335
360
 
336
361
  ## 0.16.1
337
362
 
338
363
  ### Additions/Changes
339
364
 
340
- * Add actors API endpoint (https://github.com/jnunemaker/flipper/pull/372).
341
- * Fix rack body proxy require for those using flipper without rack (https://github.com/jnunemaker/flipper/pull/376).
342
- * Unescapes feature_name in FeatureNameFromRoute (https://github.com/jnunemaker/flipper/pull/377).
343
- * Replace delete_all with destroy_all in ActiveRecord adapter (https://github.com/jnunemaker/flipper/pull/395)
344
- * Target correct bootstrap breakpoints in flipper UI (https://github.com/jnunemaker/flipper/pull/396)
365
+ * Add actors API endpoint (https://github.com/flippercloud/flipper/pull/372).
366
+ * Fix rack body proxy require for those using flipper without rack (https://github.com/flippercloud/flipper/pull/376).
367
+ * Unescapes feature_name in FeatureNameFromRoute (https://github.com/flippercloud/flipper/pull/377).
368
+ * Replace delete_all with destroy_all in ActiveRecord adapter (https://github.com/flippercloud/flipper/pull/395)
369
+ * Target correct bootstrap breakpoints in flipper UI (https://github.com/flippercloud/flipper/pull/396)
345
370
 
346
371
  ## 0.16.0
347
372
 
348
373
  ### Bug Fixes
349
374
 
350
- * Support slashes in feature names (https://github.com/jnunemaker/flipper/pull/362).
375
+ * Support slashes in feature names (https://github.com/flippercloud/flipper/pull/362).
351
376
 
352
377
  ### Additions/Changes
353
378
 
354
- * Re-order gates for improved performance in some cases (https://github.com/jnunemaker/flipper/pull/370).
355
- * Add Feature#exist?, DSL#exist? and Flipper#exist? (https://github.com/jnunemaker/flipper/pull/371).
379
+ * Re-order gates for improved performance in some cases (https://github.com/flippercloud/flipper/pull/370).
380
+ * Add Feature#exist?, DSL#exist? and Flipper#exist? (https://github.com/flippercloud/flipper/pull/371).
356
381
 
357
382
  ## 0.15.0
358
383
 
359
- * Move Flipper::UI configuration options to Flipper::UI::Configuration (https://github.com/jnunemaker/flipper/pull/345).
360
- * Bug fix in adapter synchronizing and switched DSL#import to use Synchronizer (https://github.com/jnunemaker/flipper/pull/347).
361
- * Fix AR adapter table name prefix/suffix bug (https://github.com/jnunemaker/flipper/pull/350).
362
- * Allow feature names to end with "features" in UI (https://github.com/jnunemaker/flipper/pull/353).
384
+ * Move Flipper::UI configuration options to Flipper::UI::Configuration (https://github.com/flippercloud/flipper/pull/345).
385
+ * Bug fix in adapter synchronizing and switched DSL#import to use Synchronizer (https://github.com/flippercloud/flipper/pull/347).
386
+ * Fix AR adapter table name prefix/suffix bug (https://github.com/flippercloud/flipper/pull/350).
387
+ * Allow feature names to end with "features" in UI (https://github.com/flippercloud/flipper/pull/353).
363
388
 
364
389
  ## 0.14.0
365
390
 
@@ -369,79 +394,79 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
369
394
 
370
395
  ### Additions/Changes
371
396
 
372
- * Update PStore adapter to allow setting thread_safe option (https://github.com/jnunemaker/flipper/pull/334).
373
- * Update Flipper::UI to Bootstrap 4 (https://github.com/jnunemaker/flipper/pull/336).
374
- * Add Flipper::UI configuration to add a banner with customizeable text and background color (https://github.com/jnunemaker/flipper/pull/337).
375
- * Add sync adapter (https://github.com/jnunemaker/flipper/pull/341).
376
- * Make cloud use sync adapter (https://github.com/jnunemaker/flipper/pull/342). This makes local flipper operations resilient to cloud failures.
397
+ * Update PStore adapter to allow setting thread_safe option (https://github.com/flippercloud/flipper/pull/334).
398
+ * Update Flipper::UI to Bootstrap 4 (https://github.com/flippercloud/flipper/pull/336).
399
+ * Add Flipper::UI configuration to add a banner with customizeable text and background color (https://github.com/flippercloud/flipper/pull/337).
400
+ * Add sync adapter (https://github.com/flippercloud/flipper/pull/341).
401
+ * Make cloud use sync adapter (https://github.com/flippercloud/flipper/pull/342). This makes local flipper operations resilient to cloud failures.
377
402
 
378
403
  ## 0.12.2
379
404
 
380
405
  ### Additions/Changes
381
406
 
382
- * Improvements/fixes/examples for rollout adapter (https://github.com/jnunemaker/flipper/pull/332).
407
+ * Improvements/fixes/examples for rollout adapter (https://github.com/flippercloud/flipper/pull/332).
383
408
 
384
409
  ## 0.12.1
385
410
 
386
411
  ### Additions/Changes
387
412
 
388
- * Added rollout adapter documentation (https://github.com/jnunemaker/flipper/pull/328).
413
+ * Added rollout adapter documentation (https://github.com/flippercloud/flipper/pull/328).
389
414
 
390
415
  ### Bug Fixes
391
416
 
392
- * Fixed ActiveRecord and Sequel adapters to include disabled features for `get_all` (https://github.com/jnunemaker/flipper/pull/327).
417
+ * Fixed ActiveRecord and Sequel adapters to include disabled features for `get_all` (https://github.com/flippercloud/flipper/pull/327).
393
418
 
394
419
  ## 0.12
395
420
 
396
421
  ### Additions/Changes
397
422
 
398
- * Added Flipper.instance= writer method for explicitly setting the default instance (https://github.com/jnunemaker/flipper/pull/309).
399
- * Added Flipper::UI configuration instance for changing text and things (https://github.com/jnunemaker/flipper/pull/306).
400
- * Delegate memoize= and memoizing? for Flipper and Flipper::DSL (https://github.com/jnunemaker/flipper/pull/310).
401
- * Fixed error when enabling the same group or actor more than once (https://github.com/jnunemaker/flipper/pull/313).
402
- * Fixed redis cache adapter key (and thus cache misses) (https://github.com/jnunemaker/flipper/pull/325).
403
- * Added Rollout adapter to make it easy to import rollout data into Flipper (https://github.com/jnunemaker/flipper/pull/319).
404
- * Relaxed redis gem dependency constraint to allow redis-rb 4 (https://github.com/jnunemaker/flipper/pull/317).
405
- * Added configuration option for Flipper::UI to disable feature removal (https://github.com/jnunemaker/flipper/pull/322).
423
+ * Added Flipper.instance= writer method for explicitly setting the default instance (https://github.com/flippercloud/flipper/pull/309).
424
+ * Added Flipper::UI configuration instance for changing text and things (https://github.com/flippercloud/flipper/pull/306).
425
+ * Delegate memoize= and memoizing? for Flipper and Flipper::DSL (https://github.com/flippercloud/flipper/pull/310).
426
+ * Fixed error when enabling the same group or actor more than once (https://github.com/flippercloud/flipper/pull/313).
427
+ * Fixed redis cache adapter key (and thus cache misses) (https://github.com/flippercloud/flipper/pull/325).
428
+ * Added Rollout adapter to make it easy to import rollout data into Flipper (https://github.com/flippercloud/flipper/pull/319).
429
+ * Relaxed redis gem dependency constraint to allow redis-rb 4 (https://github.com/flippercloud/flipper/pull/317).
430
+ * Added configuration option for Flipper::UI to disable feature removal (https://github.com/flippercloud/flipper/pull/322).
406
431
 
407
432
  ## 0.11
408
433
 
409
434
  ### Backwards Compatibility Breaks
410
435
 
411
- * Set flipper from env for API and UI (https://github.com/jnunemaker/flipper/pull/223 and https://github.com/jnunemaker/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.
412
- * Drop support for Ruby 2.0 as it is end of lined (https://github.com/jnunemaker/flipper/commit/c2c81ed89938155ce91acb5173ac38580f630e3d).
413
- * Allow unregistered groups (https://github.com/jnunemaker/flipper/pull/244). Only break in compatibility is that previously unregistered groups could not be enabled and now they can be.
414
- * Removed support for metriks (https://github.com/jnunemaker/flipper/pull/291).
436
+ * 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.
437
+ * Drop support for Ruby 2.0 as it is end of lined (https://github.com/flippercloud/flipper/commit/c2c81ed89938155ce91acb5173ac38580f630e3d).
438
+ * 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.
439
+ * Removed support for metriks (https://github.com/flippercloud/flipper/pull/291).
415
440
 
416
441
  ### Additions/Changes
417
442
 
418
- * Use primary keys with sequel adapter (https://github.com/jnunemaker/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.
419
- * Add redis cache adapter (https://github.com/jnunemaker/flipper/pull/211).
443
+ * 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.
444
+ * Add redis cache adapter (https://github.com/flippercloud/flipper/pull/211).
420
445
  * Finish API and HTTP adapter that speaks to API.
421
- * Add flipper cloud adapter (https://github.com/jnunemaker/flipper/pull/249). Nothing to see here yet, but good stuff soon. ;)
422
- * Add importing (https://github.com/jnunemaker/flipper/pull/251).
423
- * Added Adapter#get_all to allow for more efficient preload_all (https://github.com/jnunemaker/flipper/pull/255).
446
+ * Add flipper cloud adapter (https://github.com/flippercloud/flipper/pull/249). Nothing to see here yet, but good stuff soon. ;)
447
+ * Add importing (https://github.com/flippercloud/flipper/pull/251).
448
+ * Added Adapter#get_all to allow for more efficient preload_all (https://github.com/flippercloud/flipper/pull/255).
424
449
  * Added :unless option to Flipper::Middleware::Memoizer to allow skipping memoization and preloading for certain requests.
425
- * Made it possible to instrument Flipper::Cloud (https://github.com/jnunemaker/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
426
- * Made it possible to wrap Http adapter when using Flipper::Cloud (https://github.com/jnunemaker/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
427
- * Instrument get_multi in instrumented adapter (https://github.com/jnunemaker/flipper/commit/951d25c5ce07d3b56b0b2337adf5f6bcbe4050e7).
428
- * Allow instrumenting Flipper::Cloud http adapter (https://github.com/jnunemaker/flipper/pull/253).
429
- * Add DSL#preload_all and Adapter#get_all to allow for making even more efficient loading of features (https://github.com/jnunemaker/flipper/pull/255).
430
- * Allow setting debug output of http adapter (https://github.com/jnunemaker/flipper/pull/256 and https://github.com/jnunemaker/flipper/pull/258).
431
- * Allow setting env key for middleware (https://github.com/jnunemaker/flipper/pull/259).
432
- * Added ActiveSupport cache store adapter for use with Rails.cache (https://github.com/jnunemaker/flipper/pull/265 and https://github.com/jnunemaker/flipper/pull/297).
433
- * Added support for up to 3 decimal places in percentage based rollouts (https://github.com/jnunemaker/flipper/pull/274).
434
- * Removed Flipper::GroupNotRegistered error as it is now unused (https://github.com/jnunemaker/flipper/pull/270).
435
- * Added get_all to all adapters (https://github.com/jnunemaker/flipper/pull/298).
436
- * Added support for Rails 5.1 (https://github.com/jnunemaker/flipper/pull/299).
437
- * Added Flipper default instance generation (https://github.com/jnunemaker/flipper/pull/279).
450
+ * Made it possible to instrument Flipper::Cloud (https://github.com/flippercloud/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
451
+ * Made it possible to wrap Http adapter when using Flipper::Cloud (https://github.com/flippercloud/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
452
+ * Instrument get_multi in instrumented adapter (https://github.com/flippercloud/flipper/commit/951d25c5ce07d3b56b0b2337adf5f6bcbe4050e7).
453
+ * Allow instrumenting Flipper::Cloud http adapter (https://github.com/flippercloud/flipper/pull/253).
454
+ * 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).
455
+ * Allow setting debug output of http adapter (https://github.com/flippercloud/flipper/pull/256 and https://github.com/flippercloud/flipper/pull/258).
456
+ * Allow setting env key for middleware (https://github.com/flippercloud/flipper/pull/259).
457
+ * 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).
458
+ * Added support for up to 3 decimal places in percentage based rollouts (https://github.com/flippercloud/flipper/pull/274).
459
+ * Removed Flipper::GroupNotRegistered error as it is now unused (https://github.com/flippercloud/flipper/pull/270).
460
+ * Added get_all to all adapters (https://github.com/flippercloud/flipper/pull/298).
461
+ * Added support for Rails 5.1 (https://github.com/flippercloud/flipper/pull/299).
462
+ * Added Flipper default instance generation (https://github.com/flippercloud/flipper/pull/279).
438
463
 
439
464
  ## 0.10.2
440
465
 
441
- * Add Adapter#get_multi to allow for efficient loading of more than one feature at a time (https://github.com/jnunemaker/flipper/pull/198)
442
- * Add DSL#preload for efficiently loading several features at once using get_mutli (https://github.com/jnunemaker/flipper/pull/198)
443
- * 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/jnunemaker/flipper/pull/198)
444
- * Strip whitespace out of feature/actor/group values posted by UI (https://github.com/jnunemaker/flipper/pull/205)
466
+ * Add Adapter#get_multi to allow for efficient loading of more than one feature at a time (https://github.com/flippercloud/flipper/pull/198)
467
+ * Add DSL#preload for efficiently loading several features at once using get_mutli (https://github.com/flippercloud/flipper/pull/198)
468
+ * 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)
469
+ * Strip whitespace out of feature/actor/group values posted by UI (https://github.com/flippercloud/flipper/pull/205)
445
470
  * 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)
446
471
  * 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.
447
472
 
@@ -453,15 +478,15 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
453
478
 
454
479
  ## 0.10.0
455
480
 
456
- * Added feature check context (https://github.com/jnunemaker/flipper/pull/158)
457
- * Do not use mass assignment for active record adapter (https://github.com/jnunemaker/flipper/pull/171)
481
+ * Added feature check context (https://github.com/flippercloud/flipper/pull/158)
482
+ * Do not use mass assignment for active record adapter (https://github.com/flippercloud/flipper/pull/171)
458
483
  * Several documentation improvements
459
- * Make Flipper::UI.app.inspect return a String (https://github.com/jnunemaker/flipper/pull/176)
460
- * changes boolean gate route to api/v1/features/boolean (https://github.com/jnunemaker/flipper/pull/175)
461
- * add api v1 percentage_of_actors endpoint (https://github.com/jnunemaker/flipper/pull/179)
462
- * add api v1 percentage_of_time endpoint (https://github.com/jnunemaker/flipper/pull/180)
463
- * add api v1 actors gate endpoint (https://github.com/jnunemaker/flipper/pull/181)
464
- * wait for activesupport to tell us when active record is loaded for active record adapter (https://github.com/jnunemaker/flipper/pull/192)
484
+ * Make Flipper::UI.app.inspect return a String (https://github.com/flippercloud/flipper/pull/176)
485
+ * changes boolean gate route to api/v1/features/boolean (https://github.com/flippercloud/flipper/pull/175)
486
+ * add api v1 percentage_of_actors endpoint (https://github.com/flippercloud/flipper/pull/179)
487
+ * add api v1 percentage_of_time endpoint (https://github.com/flippercloud/flipper/pull/180)
488
+ * add api v1 actors gate endpoint (https://github.com/flippercloud/flipper/pull/181)
489
+ * wait for activesupport to tell us when active record is loaded for active record adapter (https://github.com/flippercloud/flipper/pull/192)
465
490
 
466
491
  ## 0.9.2
467
492
 
@@ -479,19 +504,19 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
479
504
  * Moves SharedAdapterTests module to Flipper::Test::SharedAdapterTests to avoid clobbering anything top level in apps that use Flipper
480
505
  * 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.
481
506
  * Instrumenting adapters is now off by default. Use Flipper::Adapters::Instrumented.new(adapter) to instrument adapters and maintain the old functionality.
482
- * Added dalli cache adapter (https://github.com/jnunemaker/flipper/pull/132)
507
+ * Added dalli cache adapter (https://github.com/flippercloud/flipper/pull/132)
483
508
 
484
509
  ## 0.8
485
510
 
486
511
  * removed Flipper::Decorator and Flipper::Adapters::Decorator in favor of just calling methods on wrapped adapter
487
- * fix bug where certain versions of AR left off quotes for key column which caused issues with MySQL https://github.com/jnunemaker/flipper/issues/120
488
- * 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/jnunemaker/flipper/pull/122 and https://github.com/jnunemaker/flipper/pull/124)
489
- * added readonly adapter (https://github.com/jnunemaker/flipper/pull/111)
490
- * flipper groups now match for truthy values rather than explicitly only true (https://github.com/jnunemaker/flipper/issues/110)
491
- * removed gate operation instrumentation (https://github.com/jnunemaker/flipper/commit/32f14ed1fb25c64961b23c6be3dc6773143a06c8); I don't think it was useful and never found myself instrumenting it in reality
512
+ * 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
513
+ * 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)
514
+ * added readonly adapter (https://github.com/flippercloud/flipper/pull/111)
515
+ * flipper groups now match for truthy values rather than explicitly only true (https://github.com/flippercloud/flipper/issues/110)
516
+ * 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
492
517
  * initial implementation of flipper api - very limited functionality right now (get/delete feature, boolean gate for feature) but more is on the way
493
- * made it easy to remove a feature (https://github.com/jnunemaker/flipper/pull/126)
494
- * add minitest shared tests for adapters that work the same as the shared specs for rspec (https://github.com/jnunemaker/flipper/pull/127)
518
+ * made it easy to remove a feature (https://github.com/flippercloud/flipper/pull/126)
519
+ * add minitest shared tests for adapters that work the same as the shared specs for rspec (https://github.com/flippercloud/flipper/pull/127)
495
520
 
496
521
  ## 0.7.5
497
522
 
@@ -513,7 +538,7 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
513
538
 
514
539
  ## 0.7.1
515
540
 
516
- * Fix bug where features with names that match static file routes were incorrectly routing to the file action (https://github.com/jnunemaker/flipper/issues/80)
541
+ * 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)
517
542
 
518
543
  ## 0.7
519
544