flipper 0.22.1 → 0.22.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.codeclimate.yml +1 -0
- data/Changelog.md +12 -2
- data/lib/flipper/railtie.rb +2 -2
- data/lib/flipper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11758f40e5798d6592a7f810a32a501593f7a2a59322f8261b8d366c1686fc25
|
|
4
|
+
data.tar.gz: b0f7713f289ef976328f12c31d3e9249251cb2bb196c7b324dcd952eafe00c88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35d55048b48cb80c10f8242cef4494224858d9bcbd7e8fb934fb12c6348ebb5538d239dad5eddfbf13fcc6cefe1e4e9eddaffecd053628d1390081b4bdf79857
|
|
7
|
+
data.tar.gz: bf145e26dbf12f788d708a4a1b50b3684ce8d53b32a148ee8fde1b697e008ddd0a903a81f20a83b2b78bc270faa9470255e4700e1e8d08b01c905ae4906a8040
|
data/.codeclimate.yml
CHANGED
data/Changelog.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
+
## 0.22.2
|
|
2
|
+
|
|
3
|
+
### Additions/Changes
|
|
4
|
+
|
|
5
|
+
* 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)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* Fix railtie initialization to avoid altering middleware order (https://github.com/jnunemaker/flipper/pull/563)
|
|
10
|
+
|
|
1
11
|
## 0.22.1
|
|
2
12
|
|
|
3
|
-
|
|
13
|
+
### Additions/Changes
|
|
4
14
|
|
|
5
15
|
* Remove Octicons and replace with a pure CSS status circle (https://github.com/jnunemaker/flipper/pull/547)
|
|
6
16
|
* Rescue unique errors in AR and Sequel when setting value (https://github.com/jnunemaker/flipper/commit/87f5a98bce7baad7a27b75b5bce3256967769f27)
|
|
@@ -9,7 +19,7 @@
|
|
|
9
19
|
|
|
10
20
|
## 0.22.0
|
|
11
21
|
|
|
12
|
-
|
|
22
|
+
### Additions/Changes
|
|
13
23
|
|
|
14
24
|
* Enable log subscriber by default in Rails (https://github.com/jnunemaker/flipper/pull/525)
|
|
15
25
|
* 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.
|
data/lib/flipper/railtie.rb
CHANGED
|
@@ -18,7 +18,7 @@ module Flipper
|
|
|
18
18
|
end
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
initializer "flipper.memoizer"
|
|
21
|
+
initializer "flipper.memoizer" do |app|
|
|
22
22
|
config = app.config.flipper
|
|
23
23
|
|
|
24
24
|
if config.memoize
|
|
@@ -30,7 +30,7 @@ module Flipper
|
|
|
30
30
|
end
|
|
31
31
|
end
|
|
32
32
|
|
|
33
|
-
initializer "flipper.log"
|
|
33
|
+
initializer "flipper.log" do |app|
|
|
34
34
|
config = app.config.flipper
|
|
35
35
|
if config.log && config.instrumenter == ActiveSupport::Notifications
|
|
36
36
|
require "flipper/instrumentation/log_subscriber"
|
data/lib/flipper/version.rb
CHANGED
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: 0.22.
|
|
4
|
+
version: 0.22.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Nunemaker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email:
|