flipper 0.25.1 → 0.25.3

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: 8e68f84bdcc12fad64f830ad9f6bc0ab3c8c3bff0cfddcd892d854578fcd4c3a
4
- data.tar.gz: 218f8b4e67048e6d1fcf8d1b62225f75ef1910d7975a8fa17ad5eda266af51dc
3
+ metadata.gz: 867d803ee2a6d83e2b779ec0396d3e41eba732273ac8cb60fa6188628018449e
4
+ data.tar.gz: 5330daddefc9c04dc728119d7f0c8d8f4e3a2054714e00c7e8c778d11433b722
5
5
  SHA512:
6
- metadata.gz: 404267d0e94b8924b1b7f45c1b97552a1d5c2cdff2edb0590da35b75580a04206a94ce693f983c34e3b88050cc6efeb6d90f823d779fab1954c1d145b18b730b
7
- data.tar.gz: 2ce9fd6b8bf6efd66cab2438986ea1a5783bb9c65b3a00a43b881f73346f2e42042082cf40a5e64061fa98cfa4d7bd097f93adb9bb03638385fb23d9f12e824c
6
+ metadata.gz: ee465d3f3bf14ce1c7ece8f305c2f77acaed940a2f48013c0c46ba808f915805690f1b205a8f447b864a14f95ba51b8cc8f219c4ce6d01d54c1e22e2b7c88b39
7
+ data.tar.gz: 991001108a2e480752132b7cdab8d85778ad6fb783bd8b39650abbeafaa37a118ebcf75c9ab6cac081f7730c53ea4a0f45cd5959956e5e0850de56e06a1f4167
@@ -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.7.0
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.7.0
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
@@ -0,0 +1,44 @@
1
+ # https://andrewm.codes/blog/automating-ruby-gem-releases-with-github-actions/
2
+ name: release
3
+
4
+ on:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ jobs:
10
+ release-please:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: google-github-actions/release-please-action@v3
14
+ id: release
15
+ with:
16
+ release-type: ruby
17
+ package-name: flipper
18
+ bump-minor-pre-major: true
19
+ version-file: "lib/flipper/version.rb"
20
+ # Checkout code if release was created
21
+ - uses: actions/checkout@v3
22
+ if: ${{ steps.release.outputs.release_created }}
23
+ # Setup ruby if a release was created
24
+ - uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: 3.0.0
27
+ if: ${{ steps.release.outputs.release_created }}
28
+ # Bundle install
29
+ - run: bundle install
30
+ if: ${{ steps.release.outputs.release_created }}
31
+ # Publish
32
+ - name: publish gem
33
+ run: |
34
+ mkdir -p $HOME/.gem
35
+ touch $HOME/.gem/credentials
36
+ chmod 0600 $HOME/.gem/credentials
37
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
38
+ gem build *.gemspec
39
+ gem push *.gem
40
+ env:
41
+ # Make sure to update the secret name
42
+ # if yours isn't named RUBYGEMS_AUTH_TOKEN
43
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
44
+ if: ${{ steps.release.outputs.release_created }}
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 3.1.2
data/Changelog.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 0.25.3
2
+
3
+ * Added configurable confirm warning for fully enabling a feature (https://github.com/jnunemaker/flipper/pull/665)
4
+ * Update rack protection to < 4 (https://github.com/jnunemaker/flipper/pull/675)
5
+ * Check sadd_returns_boolean on the actual client class rather than ::Redis (https://github.com/jnunemaker/flipper/pull/677)
6
+
7
+ ## 0.25.2
8
+
9
+ * Fix deprecation warnings for Redis >= 4.8.0 (https://github.com/jnunemaker/flipper/pull/660)
10
+
1
11
  ## 0.25.1
2
12
 
3
13
  ### Additions/Changes
@@ -1,3 +1,3 @@
1
1
  module Flipper
2
- VERSION = '0.25.1'.freeze
2
+ VERSION = '0.25.3'.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: 0.25.1
4
+ version: 0.25.3
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-08-19 00:00:00.000000000 Z
11
+ date: 2022-11-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -21,7 +21,9 @@ files:
21
21
  - ".github/dependabot.yml"
22
22
  - ".github/workflows/ci.yml"
23
23
  - ".github/workflows/examples.yml"
24
+ - ".github/workflows/release.yml"
24
25
  - ".rspec"
26
+ - ".tool-versions"
25
27
  - CODE_OF_CONDUCT.md
26
28
  - Changelog.md
27
29
  - Dockerfile