flipper 0.25.2 → 0.25.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/examples.yml +1 -1
- data/.github/workflows/release.yml +1 -1
- data/Changelog.md +10 -0
- data/Rakefile +3 -1
- 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: a857af3f65cd468bfeeadab8c94c8ca5bf4c27cad345d93f05e5993a8f53a57d
|
4
|
+
data.tar.gz: dcbe82968b60be3a46b66e0f19ddf3416c8830bd63c3926fd6ca77b45e404e02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09914ec0d548868bf62ba0c3fe07cdaf4f773897d1416ec499c0a2f2355e6d38db96689c24d80a26b32ad2ecfbd6f380dd5da3e7cd44248c461826287252a487'
|
7
|
+
data.tar.gz: 4518fa261e1f265bdf1718e52606bf0b25b1e84fa0431bbe64359797f073dc3cbb1d075b9961bfc054bab19e32e1edbcd2bdce37eb2d988853684bbbcf43c621
|
data/.github/workflows/ci.yml
CHANGED
@@ -34,7 +34,7 @@ jobs:
|
|
34
34
|
- name: Setup memcached
|
35
35
|
uses: KeisukeYamashita/memcached-actions@v1
|
36
36
|
- name: Start MongoDB
|
37
|
-
uses: supercharge/mongodb-github-action@1.
|
37
|
+
uses: supercharge/mongodb-github-action@1.8.0
|
38
38
|
with:
|
39
39
|
mongodb-version: 4.0
|
40
40
|
- name: Check out repository code
|
@@ -36,7 +36,7 @@ jobs:
|
|
36
36
|
- name: Setup memcached
|
37
37
|
uses: KeisukeYamashita/memcached-actions@v1
|
38
38
|
- name: Start MongoDB
|
39
|
-
uses: supercharge/mongodb-github-action@1.
|
39
|
+
uses: supercharge/mongodb-github-action@1.8.0
|
40
40
|
with:
|
41
41
|
mongodb-version: 4.0
|
42
42
|
- name: Check out repository code
|
@@ -18,7 +18,7 @@ jobs:
|
|
18
18
|
bump-minor-pre-major: true
|
19
19
|
version-file: "lib/flipper/version.rb"
|
20
20
|
# Checkout code if release was created
|
21
|
-
- uses: actions/checkout@
|
21
|
+
- uses: actions/checkout@v3
|
22
22
|
if: ${{ steps.release.outputs.release_created }}
|
23
23
|
# Setup ruby if a release was created
|
24
24
|
- uses: ruby/setup-ruby@v1
|
data/Changelog.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 0.25.4
|
2
|
+
|
3
|
+
* Added read_only UI config option (https://github.com/jnunemaker/flipper/pull/679)
|
4
|
+
|
5
|
+
## 0.25.3
|
6
|
+
|
7
|
+
* Added configurable confirm warning for fully enabling a feature (https://github.com/jnunemaker/flipper/pull/665)
|
8
|
+
* Update rack protection to < 4 (https://github.com/jnunemaker/flipper/pull/675)
|
9
|
+
* Check sadd_returns_boolean on the actual client class rather than ::Redis (https://github.com/jnunemaker/flipper/pull/677)
|
10
|
+
|
1
11
|
## 0.25.2
|
2
12
|
|
3
13
|
* Fix deprecation warnings for Redis >= 4.8.0 (https://github.com/jnunemaker/flipper/pull/660)
|
data/Rakefile
CHANGED
@@ -20,7 +20,9 @@ task release: :build do
|
|
20
20
|
sh 'git', 'tag', "v#{Flipper::VERSION}"
|
21
21
|
sh 'git push origin master'
|
22
22
|
sh "git push origin v#{Flipper::VERSION}"
|
23
|
-
|
23
|
+
puts "\nWhat OTP code should be used?"
|
24
|
+
otp_code = STDIN.gets.chomp
|
25
|
+
sh "ls pkg/*.gem | xargs -n 1 gem push --otp #{otp_code}"
|
24
26
|
end
|
25
27
|
|
26
28
|
require 'rspec/core/rake_task'
|
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.25.
|
4
|
+
version: 0.25.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Nunemaker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|