flipper 1.0.0.pre → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 157649a8da61471fe5d0a9f88f739f72521a3d78d922650ab40cf36a5c5a6e22
4
- data.tar.gz: 5ab348ba8ac11acc776324997f03ee95ee883e1544452ec1199657cac2ecc53c
3
+ metadata.gz: bef9ba1845ca9f8186c9af57816c94309cdbc138e1e666a0dccbef5fba669682
4
+ data.tar.gz: fbb79ccee4bdfd08e44c7eafe8052076dfd85c59959dd6c812473960bde0b95c
5
5
  SHA512:
6
- metadata.gz: 36eacd774551b1b91d75c7db4978929820918253c05351068471b5f1c9221f0e0333b511715d4baf11191744476b79497d79ab074c2f9c344eaea2002f07a7fa
7
- data.tar.gz: dfa622c2db1a7a9befce00f2e6ce0e12dcff8f32cfb2c8e0d24aa3d9b7daaa83157e2bc2162fe8e444a433dfbec369c6ec66f317f4b3d431a8118be4a60fc3ab
6
+ metadata.gz: 36693111d186b9581ce3b959b951c19db36f1f34dd220aebd1667adcfbf4916382983ccca63a44cdd9db9c0518aea53e6178a09e199db7dd25eee7ee796c07c0
7
+ data.tar.gz: e9b95b9588f7b08ff3ed91db8583877bd087e28b5d5dd7c5ab9b09cd6c9f09b5632b2d6dace06d5d9a209f61b2b86a1f0aa775adea44b42c768294050c7149bd
@@ -2,8 +2,8 @@ name: Examples
2
2
  on: [push, pull_request]
3
3
  jobs:
4
4
  test:
5
- if: github.repository_owner == 'jnunemaker'
6
- name: Test on ruby ${{ matrix.ruby }} and rails ${{ matrix.rails }}
5
+ if: github.repository_owner == 'flippercloud'
6
+ name: Example on ruby ${{ matrix.ruby }} and rails ${{ matrix.rails }}
7
7
  runs-on: ubuntu-latest
8
8
  services:
9
9
  redis:
data/Changelog.md CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## Unreleased
5
+ ## 1.0.0
6
6
 
7
7
  ### Additions/Changes
8
8
 
9
- * ui, api: Allow Rack 3 (https://github.com/jnunemaker/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/jnunemaker/flipper/pull/743)
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
11
  ```diff
12
12
  # Gemfile
13
13
  gem 'flipper'
@@ -27,18 +27,20 @@ All notable changes to this project will be documented in this file.
27
27
 
28
28
  ## 0.28.3
29
29
 
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/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)
31
31
 
32
32
  ## 0.28.2
33
33
 
34
- * 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)
35
37
 
36
38
  ## 0.28.1
37
39
 
38
40
  ### Additions/Changes
39
41
 
40
- * Use new method of making logs bold for rails (https://github.com/jnunemaker/flipper/pull/726)
41
- * 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)
42
44
 
43
45
  ## 0.28.0
44
46
 
@@ -84,141 +86,141 @@ All notable changes to this project will be documented in this file.
84
86
 
85
87
  ## 0.27.0
86
88
 
87
- * 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.
88
90
 
89
91
  ## 0.26.2
90
92
 
91
- * 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).
92
94
 
93
95
  ## 0.26.1
94
96
 
95
- * Improve `Flipper#enabled?` performance by ~37%-55% (https://github.com/jnunemaker/flipper/pull/706)
96
- * Make Memory adapter threadsafe (https://github.com/jnunemaker/flipper/pull/702 and https://github.com/jnunemaker/flipper/pull/703)
97
- * ActiveRecord adapter: wrap all reads/writes in `with_connection` (https://github.com/jnunemaker/flipper/pull/705)
98
- * Improve performance of background polling (https://github.com/jnunemaker/flipper/pull/699)
99
- * 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)
100
102
 
101
103
  ## 0.26.0
102
104
 
103
- * Cloud Background Polling (https://github.com/jnunemaker/flipper/pull/682)
105
+ * Cloud Background Polling (https://github.com/flippercloud/flipper/pull/682)
104
106
  * Changed default branch from master to main
105
- * Allow configuring railtie via ENV vars (https://github.com/jnunemaker/flipper/pull/681)
106
- * 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)
107
109
 
108
110
  ## 0.25.4
109
111
 
110
- * 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)
111
113
 
112
114
  ## 0.25.3
113
115
 
114
- * Added configurable confirm warning for fully enabling a feature (https://github.com/jnunemaker/flipper/pull/665)
115
- * Update rack protection to < 4 (https://github.com/jnunemaker/flipper/pull/675)
116
- * 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)
117
119
 
118
120
  ## 0.25.2
119
121
 
120
- * 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)
121
123
 
122
124
  ## 0.25.1
123
125
 
124
126
  ### Additions/Changes
125
127
 
126
- * ActiveRecord: use provided `gate_class` option when calling `#get_all` (https://github.com/jnunemaker/flipper/pull/647)
127
- * Relaxed the rack-protection version to support latest (https://github.com/jnunemaker/flipper/commit/f4a41c541ccf14c535a61c6bc6fe7eeabbfc7e71).
128
- * 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)
129
131
 
130
132
  ## 0.25.0
131
133
 
132
134
  ### Additions/Changes
133
135
 
134
- * Added a prompt in Flipper UI for the 'Delete' button to prevent accidental delete of features (https://github.com/jnunemaker/flipper/pull/625)
135
- * Added failsafe adapter (https://github.com/jnunemaker/flipper/pull/626)
136
- * 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)
137
- * ActiveRecord: base class for internal models (https://github.com/jnunemaker/flipper/pull/629)
138
- * 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)
139
141
 
140
142
  ## 0.24.1
141
143
 
142
144
  ### Additions/Changes
143
145
 
144
- * flipper-api: `exclude_gates` parameter to exclude gate data in GETs (https://github.com/jnunemaker/flipper/pull/572).
145
- * Make it possible to disable internal memoization (https://github.com/jnunemaker/flipper/pull/612).
146
- * Add Flipper::Actor#hash so actors can be hash keys (https://github.com/jnunemaker/flipper/pull/616).
147
- * Pretty Up `rails routes` again and make rack-protection dependency less strict (https://github.com/jnunemaker/flipper/pull/619).
148
- * Add kwargs for method_missing using ruby 3.0 (https://github.com/jnunemaker/flipper/pull/620).
149
- * 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).
150
152
 
151
153
  ## 0.24.0
152
154
 
153
155
  ### Additions/Changes
154
156
 
155
- * 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)
156
158
  * Removed support for Ruby 2.5 (which was end of line 9 months ago)
157
- * Add (alpha) client side instrumentation of events to cloud (https://github.com/jnunemaker/flipper/pull/602)
158
- * Fix deprecated uses of Redis#pipelined (https://github.com/jnunemaker/flipper/pull/603). redis-rb >= 3 now required.
159
- * 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).
160
162
 
161
163
  ## 0.23.1
162
164
 
163
165
  ### Additions/Changes
164
166
 
165
- * Relax dalli version constraint (https://github.com/jnunemaker/flipper/pull/596)
167
+ * Relax dalli version constraint (https://github.com/flippercloud/flipper/pull/596)
166
168
 
167
169
  ### Bug Fixes
168
170
 
169
- * 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)
170
172
 
171
173
  ## 0.23.0
172
174
 
173
175
  ### Additions/Changes
174
176
 
175
- * Allow some HTML in banner and descriptions (https://github.com/jnunemaker/flipper/pull/570).
176
- * Moved some cloud headers to http client (https://github.com/jnunemaker/flipper/pull/567).
177
- * Update flipper-ui jquery and bootstrap versions (https://github.com/jnunemaker/flipper/issues/565 and https://github.com/jnunemaker/flipper/pull/566).
178
- * Moved docs to www.flippercloud.io/docs (https://github.com/jnunemaker/flipper/pull/574).
179
- * PStore adapter now defaults to thread safe and no longer supports `.thread_safe` (https://github.com/jnunemaker/flipper/commit/4048704fefe41b716015294a19a0b94546637630).
180
- * Add failover adapter (https://github.com/jnunemaker/flipper/pull/584).
181
- * Improve http adapter error message (https://github.com/jnunemaker/flipper/pull/587).
182
- * 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).
183
185
 
184
186
  ## 0.22.2
185
187
 
186
188
  ### Additions/Changes
187
189
 
188
- * 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)
189
191
 
190
192
  ### Bug Fixes
191
193
 
192
- * 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)
193
195
 
194
196
  ## 0.22.1
195
197
 
196
198
  ### Additions/Changes
197
199
 
198
- * Remove Octicons and replace with a pure CSS status circle (https://github.com/jnunemaker/flipper/pull/547)
199
- * Rescue unique errors in AR and Sequel when setting value (https://github.com/jnunemaker/flipper/commit/87f5a98bce7baad7a27b75b5bce3256967769f27)
200
- * Add a Content-Security-Policy to flipper-ui (https://github.com/jnunemaker/flipper/pull/552)
201
- * 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)
202
204
 
203
205
  ## 0.22.0
204
206
 
205
207
  ### Additions/Changes
206
208
 
207
- * Enable log subscriber by default in Rails (https://github.com/jnunemaker/flipper/pull/525)
208
- * 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.
209
- * Fix SQL reserved word use in get_all for ActiveRecord and Sequel (https://github.com/jnunemaker/flipper/pull/536).
210
- * 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).
211
213
 
212
214
  ## 0.21.0
213
215
 
214
216
  ### Additions/Changes
215
217
 
216
- * Default to using memory adapter (https://github.com/jnunemaker/flipper/pull/501)
217
- * Adapters now configured on require when possible (https://github.com/jnunemaker/flipper/pull/502)
218
- * 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)
219
- * Added default `flipper_id` implementation via `Flipper::Identifier` and automatically included it in ActiveRecord and Sequel models (https://github.com/jnunemaker/flipper/pull/505)
220
- * Deprecate superflous sync_method setting (https://github.com/jnunemaker/flipper/pull/511)
221
- * 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)
222
224
 
223
225
  ### Upgrading
224
226
 
@@ -261,9 +263,9 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
261
263
 
262
264
  ### Additions/Changes
263
265
 
264
- * 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)
265
267
  * Change Flipper::Cloud::Middleware to receive webhooks at / in addition to /webhooks.
266
- * 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)
267
269
 
268
270
  ## 0.20.3
269
271
 
@@ -288,29 +290,29 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
288
290
 
289
291
  ### Additions/Changes
290
292
 
291
- * 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).
292
294
 
293
295
  ## 0.19.1
294
296
 
295
297
  ### Additions/Changes
296
298
 
297
- * Bump rack-protection version to < 2.2 (https://github.com/jnunemaker/flipper/pull/487)
298
- * 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)
299
301
 
300
302
  ## 0.19.0
301
303
 
302
304
  ### Additions/Changes
303
305
 
304
- * 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.
305
307
  * Several doc updates.
306
308
 
307
309
  ## 0.18.0
308
310
 
309
311
  ### Additions/Changes
310
312
 
311
- * Add support for feature descriptions to flipper-ui (https://github.com/jnunemaker/flipper/pull/461).
312
- * Remove rubocop (https://github.com/jnunemaker/flipper/pull/469).
313
- * 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).
314
316
  * Removed support for ruby 2.4.
315
317
  * Added support for ruby 2.7.
316
318
  * Removed support for Rails 4.x.x.
@@ -320,69 +322,69 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
320
322
 
321
323
  ### Additions/Changes
322
324
 
323
- * 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)
324
- * ::ActiveRecord::RecordNotUnique > ActiveRecord::RecordNotUnique (https://github.com/jnunemaker/flipper/pull/444)
325
- * Clear gate values on enable (https://github.com/jnunemaker/flipper/pull/454)
326
- * 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)
327
329
 
328
330
  ## 0.17.1
329
331
 
330
- * 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)
331
333
 
332
334
  ## 0.17.0
333
335
 
334
336
  ### Additions/Changes
335
337
 
336
- * Allow shorthand block notation on group types (https://github.com/jnunemaker/flipper/pull/406)
337
- * Relax active record/support constraints to support Rails 6 (https://github.com/jnunemaker/flipper/pull/409)
338
- * Allow disabling fun (https://github.com/jnunemaker/flipper/pull/413)
339
- * Include thing_value in payload of Instrumented#enable and #disable (https://github.com/jnunemaker/flipper/pull/417)
340
- * Replace Erubis with Erubi (https://github.com/jnunemaker/flipper/pull/407)
341
- * Allow customizing Rack::Protection middleware list (https://github.com/jnunemaker/flipper/pull/385)
342
- * Allow setting write_timeout for ruby 2.6+ (https://github.com/jnunemaker/flipper/pull/433)
343
- * Drop support for Ruby 2.1, 2.2, and 2.3 (https://github.com/jnunemaker/flipper/commit/cf58982e70de5e6963b018ceced4f36a275f5b5d)
344
- * Add support for Ruby 2.6 (https://github.com/jnunemaker/flipper/commit/57888311449ec81184d3d47ba9ae5cb1ad4a2f45)
345
- * Remove support for Rails 3.2 (https://github.com/jnunemaker/flipper/commit/177c48c4edf51d4e411e7c673e30e06d1c66fb40)
346
- * Add write_timeout for flipper http adapter for ruby 2.6+ (https://github.com/jnunemaker/flipper/pull/433)
347
- * Relax moneta version to allow for < 1.2 (https://github.com/jnunemaker/flipper/pull/434).
348
- * Improve active record idempotency (https://github.com/jnunemaker/flipper/pull/436).
349
- * 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)
350
352
 
351
353
  ## 0.16.2
352
354
 
353
355
  ### Additions/Changes
354
356
 
355
- * Bump rollout redis dependency to < 5 (https://github.com/jnunemaker/flipper/pull/403)
356
- * Bump redis dependency to < 5 (https://github.com/jnunemaker/flipper/pull/401)
357
- * 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)
358
360
 
359
361
  ## 0.16.1
360
362
 
361
363
  ### Additions/Changes
362
364
 
363
- * Add actors API endpoint (https://github.com/jnunemaker/flipper/pull/372).
364
- * Fix rack body proxy require for those using flipper without rack (https://github.com/jnunemaker/flipper/pull/376).
365
- * Unescapes feature_name in FeatureNameFromRoute (https://github.com/jnunemaker/flipper/pull/377).
366
- * Replace delete_all with destroy_all in ActiveRecord adapter (https://github.com/jnunemaker/flipper/pull/395)
367
- * 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)
368
370
 
369
371
  ## 0.16.0
370
372
 
371
373
  ### Bug Fixes
372
374
 
373
- * 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).
374
376
 
375
377
  ### Additions/Changes
376
378
 
377
- * Re-order gates for improved performance in some cases (https://github.com/jnunemaker/flipper/pull/370).
378
- * 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).
379
381
 
380
382
  ## 0.15.0
381
383
 
382
- * Move Flipper::UI configuration options to Flipper::UI::Configuration (https://github.com/jnunemaker/flipper/pull/345).
383
- * Bug fix in adapter synchronizing and switched DSL#import to use Synchronizer (https://github.com/jnunemaker/flipper/pull/347).
384
- * Fix AR adapter table name prefix/suffix bug (https://github.com/jnunemaker/flipper/pull/350).
385
- * 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).
386
388
 
387
389
  ## 0.14.0
388
390
 
@@ -392,79 +394,79 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
392
394
 
393
395
  ### Additions/Changes
394
396
 
395
- * Update PStore adapter to allow setting thread_safe option (https://github.com/jnunemaker/flipper/pull/334).
396
- * Update Flipper::UI to Bootstrap 4 (https://github.com/jnunemaker/flipper/pull/336).
397
- * Add Flipper::UI configuration to add a banner with customizeable text and background color (https://github.com/jnunemaker/flipper/pull/337).
398
- * Add sync adapter (https://github.com/jnunemaker/flipper/pull/341).
399
- * 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.
400
402
 
401
403
  ## 0.12.2
402
404
 
403
405
  ### Additions/Changes
404
406
 
405
- * 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).
406
408
 
407
409
  ## 0.12.1
408
410
 
409
411
  ### Additions/Changes
410
412
 
411
- * Added rollout adapter documentation (https://github.com/jnunemaker/flipper/pull/328).
413
+ * Added rollout adapter documentation (https://github.com/flippercloud/flipper/pull/328).
412
414
 
413
415
  ### Bug Fixes
414
416
 
415
- * 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).
416
418
 
417
419
  ## 0.12
418
420
 
419
421
  ### Additions/Changes
420
422
 
421
- * Added Flipper.instance= writer method for explicitly setting the default instance (https://github.com/jnunemaker/flipper/pull/309).
422
- * Added Flipper::UI configuration instance for changing text and things (https://github.com/jnunemaker/flipper/pull/306).
423
- * Delegate memoize= and memoizing? for Flipper and Flipper::DSL (https://github.com/jnunemaker/flipper/pull/310).
424
- * Fixed error when enabling the same group or actor more than once (https://github.com/jnunemaker/flipper/pull/313).
425
- * Fixed redis cache adapter key (and thus cache misses) (https://github.com/jnunemaker/flipper/pull/325).
426
- * Added Rollout adapter to make it easy to import rollout data into Flipper (https://github.com/jnunemaker/flipper/pull/319).
427
- * Relaxed redis gem dependency constraint to allow redis-rb 4 (https://github.com/jnunemaker/flipper/pull/317).
428
- * 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).
429
431
 
430
432
  ## 0.11
431
433
 
432
434
  ### Backwards Compatibility Breaks
433
435
 
434
- * 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.
435
- * Drop support for Ruby 2.0 as it is end of lined (https://github.com/jnunemaker/flipper/commit/c2c81ed89938155ce91acb5173ac38580f630e3d).
436
- * 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.
437
- * 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).
438
440
 
439
441
  ### Additions/Changes
440
442
 
441
- * 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.
442
- * 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).
443
445
  * Finish API and HTTP adapter that speaks to API.
444
- * Add flipper cloud adapter (https://github.com/jnunemaker/flipper/pull/249). Nothing to see here yet, but good stuff soon. ;)
445
- * Add importing (https://github.com/jnunemaker/flipper/pull/251).
446
- * 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).
447
449
  * Added :unless option to Flipper::Middleware::Memoizer to allow skipping memoization and preloading for certain requests.
448
- * Made it possible to instrument Flipper::Cloud (https://github.com/jnunemaker/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
449
- * Made it possible to wrap Http adapter when using Flipper::Cloud (https://github.com/jnunemaker/flipper/commit/4b10e4d807772202f63881f5e2c00d11ac58481f).
450
- * Instrument get_multi in instrumented adapter (https://github.com/jnunemaker/flipper/commit/951d25c5ce07d3b56b0b2337adf5f6bcbe4050e7).
451
- * Allow instrumenting Flipper::Cloud http adapter (https://github.com/jnunemaker/flipper/pull/253).
452
- * 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).
453
- * Allow setting debug output of http adapter (https://github.com/jnunemaker/flipper/pull/256 and https://github.com/jnunemaker/flipper/pull/258).
454
- * Allow setting env key for middleware (https://github.com/jnunemaker/flipper/pull/259).
455
- * 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).
456
- * Added support for up to 3 decimal places in percentage based rollouts (https://github.com/jnunemaker/flipper/pull/274).
457
- * Removed Flipper::GroupNotRegistered error as it is now unused (https://github.com/jnunemaker/flipper/pull/270).
458
- * Added get_all to all adapters (https://github.com/jnunemaker/flipper/pull/298).
459
- * Added support for Rails 5.1 (https://github.com/jnunemaker/flipper/pull/299).
460
- * 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).
461
463
 
462
464
  ## 0.10.2
463
465
 
464
- * Add Adapter#get_multi to allow for efficient loading of more than one feature at a time (https://github.com/jnunemaker/flipper/pull/198)
465
- * Add DSL#preload for efficiently loading several features at once using get_mutli (https://github.com/jnunemaker/flipper/pull/198)
466
- * 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)
467
- * 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)
468
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)
469
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.
470
472
 
@@ -476,15 +478,15 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
476
478
 
477
479
  ## 0.10.0
478
480
 
479
- * Added feature check context (https://github.com/jnunemaker/flipper/pull/158)
480
- * 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)
481
483
  * Several documentation improvements
482
- * Make Flipper::UI.app.inspect return a String (https://github.com/jnunemaker/flipper/pull/176)
483
- * changes boolean gate route to api/v1/features/boolean (https://github.com/jnunemaker/flipper/pull/175)
484
- * add api v1 percentage_of_actors endpoint (https://github.com/jnunemaker/flipper/pull/179)
485
- * add api v1 percentage_of_time endpoint (https://github.com/jnunemaker/flipper/pull/180)
486
- * add api v1 actors gate endpoint (https://github.com/jnunemaker/flipper/pull/181)
487
- * 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)
488
490
 
489
491
  ## 0.9.2
490
492
 
@@ -502,19 +504,19 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
502
504
  * Moves SharedAdapterTests module to Flipper::Test::SharedAdapterTests to avoid clobbering anything top level in apps that use Flipper
503
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.
504
506
  * Instrumenting adapters is now off by default. Use Flipper::Adapters::Instrumented.new(adapter) to instrument adapters and maintain the old functionality.
505
- * Added dalli cache adapter (https://github.com/jnunemaker/flipper/pull/132)
507
+ * Added dalli cache adapter (https://github.com/flippercloud/flipper/pull/132)
506
508
 
507
509
  ## 0.8
508
510
 
509
511
  * removed Flipper::Decorator and Flipper::Adapters::Decorator in favor of just calling methods on wrapped adapter
510
- * 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
511
- * 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)
512
- * added readonly adapter (https://github.com/jnunemaker/flipper/pull/111)
513
- * flipper groups now match for truthy values rather than explicitly only true (https://github.com/jnunemaker/flipper/issues/110)
514
- * 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
515
517
  * initial implementation of flipper api - very limited functionality right now (get/delete feature, boolean gate for feature) but more is on the way
516
- * made it easy to remove a feature (https://github.com/jnunemaker/flipper/pull/126)
517
- * 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)
518
520
 
519
521
  ## 0.7.5
520
522
 
@@ -536,7 +538,7 @@ You should be able to upgrade to 0.21 without any breaking changes. However, if
536
538
 
537
539
  ## 0.7.1
538
540
 
539
- * 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)
540
542
 
541
543
  ## 0.7
542
544
 
@@ -2,8 +2,8 @@ module Flipper
2
2
  METADATA = {
3
3
  "documentation_uri" => "https://www.flippercloud.io/docs",
4
4
  "homepage_uri" => "https://www.flippercloud.io",
5
- "source_code_uri" => "https://github.com/jnunemaker/flipper",
6
- "bug_tracker_uri" => "https://github.com/jnunemaker/flipper/issues",
7
- "changelog_uri" => "https://github.com/jnunemaker/flipper/blob/main/Changelog.md",
5
+ "source_code_uri" => "https://github.com/flippercloud/flipper",
6
+ "bug_tracker_uri" => "https://github.com/flippercloud/flipper/issues",
7
+ "changelog_uri" => "https://github.com/flippercloud/flipper/blob/main/Changelog.md",
8
8
  }.freeze
9
9
  end
@@ -58,7 +58,7 @@ module Flipper
58
58
 
59
59
  # Already memoizing. This instance does not need to do anything.
60
60
  if flipper.memoizing?
61
- warn "Flipper::Middleware::Memoizer appears to be running twice. Read how to resolve this at https://github.com/jnunemaker/flipper/pull/523"
61
+ warn "Flipper::Middleware::Memoizer appears to be running twice. Read how to resolve this at https://github.com/flippercloud/flipper/pull/523"
62
62
  return @app.call(env)
63
63
  end
64
64
 
@@ -1,3 +1,3 @@
1
1
  module Flipper
2
- VERSION = '1.0.0.pre'.freeze
2
+ VERSION = '1.0.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flipper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Nunemaker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-02 00:00:00.000000000 Z
11
+ date: 2023-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -49,7 +49,6 @@ files:
49
49
  - ".github/workflows/ci.yml"
50
50
  - ".github/workflows/examples.yml"
51
51
  - ".rspec"
52
- - ".tool-versions"
53
52
  - CODE_OF_CONDUCT.md
54
53
  - Changelog.md
55
54
  - Dockerfile
@@ -236,9 +235,9 @@ licenses:
236
235
  metadata:
237
236
  documentation_uri: https://www.flippercloud.io/docs
238
237
  homepage_uri: https://www.flippercloud.io
239
- source_code_uri: https://github.com/jnunemaker/flipper
240
- bug_tracker_uri: https://github.com/jnunemaker/flipper/issues
241
- changelog_uri: https://github.com/jnunemaker/flipper/blob/main/Changelog.md
238
+ source_code_uri: https://github.com/flippercloud/flipper
239
+ bug_tracker_uri: https://github.com/flippercloud/flipper/issues
240
+ changelog_uri: https://github.com/flippercloud/flipper/blob/main/Changelog.md
242
241
  post_install_message:
243
242
  rdoc_options: []
244
243
  require_paths:
@@ -250,11 +249,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
250
249
  version: '0'
251
250
  required_rubygems_version: !ruby/object:Gem::Requirement
252
251
  requirements:
253
- - - ">"
252
+ - - ">="
254
253
  - !ruby/object:Gem::Version
255
- version: 1.3.1
254
+ version: '0'
256
255
  requirements: []
257
- rubygems_version: 3.3.7
256
+ rubygems_version: 3.4.10
258
257
  signing_key:
259
258
  specification_version: 4
260
259
  summary: Feature flipper for ANYTHING
data/.tool-versions DELETED
@@ -1 +0,0 @@
1
- ruby 3.1.2