openfeature-go-feature-flag-provider 0.1.1 → 0.1.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/CHANGELOG.md +7 -0
- data/Gemfile.lock +10 -9
- data/lib/openfeature/go-feature-flag/version.rb +1 -1
- data/openfeature-go-feature-flag-provider.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 116cdf1f3d6b2f17ff01c42064fec29636c9921dfbd717d5e8d6293f2293f758
|
|
4
|
+
data.tar.gz: c5ea59e6c8ea088c343e2381b1937356e59073af4e83487896e4e3505f644faa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df7549c061a20dd165473ae02eb7cb41dc1e8f5224b7c62ab45bb9dd6af0f38eb55b84959f4710d80b69a96b348a3be6f6ab98feb1799d2565ca3b649e648bc8
|
|
7
|
+
data.tar.gz: 6387510e2e62c7542a40ce60eacb2d47f7a789836b2524ac48eb91ea37e01fa29674053bfb6b9e2402e9e980ace3385436799f174023035c0b63dc9875e19aaf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2](https://github.com/open-feature/ruby-sdk-contrib/compare/openfeature-go-feature-flag-provider/v0.1.1...openfeature-go-feature-flag-provider/v0.1.2) (2024-12-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* loosen faraday version requirements ([#43](https://github.com/open-feature/ruby-sdk-contrib/issues/43)) ([df65efc](https://github.com/open-feature/ruby-sdk-contrib/commit/df65efc5c3c55536e2aa964fc075d89da8c19108))
|
|
9
|
+
|
|
3
10
|
## [0.1.1](https://github.com/open-feature/ruby-sdk-contrib/compare/openfeature-go-feature-flag-provider-v0.1.0...openfeature-go-feature-flag-provider/v0.1.1) (2024-08-13)
|
|
4
11
|
|
|
5
12
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
openfeature-go-feature-flag-provider (0.1.
|
|
5
|
-
faraday (~> 2.10
|
|
4
|
+
openfeature-go-feature-flag-provider (0.1.2)
|
|
5
|
+
faraday (~> 2.10)
|
|
6
6
|
openfeature-sdk (~> 0.3.1)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
@@ -17,17 +17,18 @@ GEM
|
|
|
17
17
|
rexml
|
|
18
18
|
diff-lcs (1.5.1)
|
|
19
19
|
docile (1.4.1)
|
|
20
|
-
faraday (2.
|
|
21
|
-
faraday-net_http (>= 2.0, < 3.
|
|
20
|
+
faraday (2.12.1)
|
|
21
|
+
faraday-net_http (>= 2.0, < 3.5)
|
|
22
|
+
json
|
|
22
23
|
logger
|
|
23
|
-
faraday-net_http (3.
|
|
24
|
-
net-http
|
|
24
|
+
faraday-net_http (3.4.0)
|
|
25
|
+
net-http (>= 0.5.0)
|
|
25
26
|
hashdiff (1.1.1)
|
|
26
27
|
json (2.7.2)
|
|
27
28
|
language_server-protocol (3.17.0.3)
|
|
28
29
|
lint_roller (1.1.0)
|
|
29
|
-
logger (1.6.
|
|
30
|
-
net-http (0.
|
|
30
|
+
logger (1.6.1)
|
|
31
|
+
net-http (0.5.0)
|
|
31
32
|
uri
|
|
32
33
|
openfeature-sdk (0.3.1)
|
|
33
34
|
parallel (1.24.0)
|
|
@@ -91,7 +92,7 @@ GEM
|
|
|
91
92
|
rubocop-performance (~> 1.20.2)
|
|
92
93
|
strscan (3.1.0)
|
|
93
94
|
unicode-display_width (2.5.0)
|
|
94
|
-
uri (0.
|
|
95
|
+
uri (1.0.2)
|
|
95
96
|
webmock (3.23.1)
|
|
96
97
|
addressable (>= 2.8.0)
|
|
97
98
|
crack (>= 0.3.2)
|
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.require_paths = ["lib"]
|
|
31
31
|
|
|
32
32
|
spec.add_runtime_dependency "openfeature-sdk", "~> 0.3.1"
|
|
33
|
-
spec.add_runtime_dependency "faraday", "~> 2.10
|
|
33
|
+
spec.add_runtime_dependency "faraday", "~> 2.10"
|
|
34
34
|
|
|
35
35
|
spec.add_development_dependency "rake", "~> 13.0"
|
|
36
36
|
spec.add_development_dependency "rspec", "~> 3.12.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openfeature-go-feature-flag-provider
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas Poignant
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: openfeature-sdk
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.10
|
|
33
|
+
version: '2.10'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.10
|
|
40
|
+
version: '2.10'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
168
|
version: '0'
|
|
169
169
|
requirements: []
|
|
170
|
-
rubygems_version: 3.5.
|
|
170
|
+
rubygems_version: 3.5.22
|
|
171
171
|
signing_key:
|
|
172
172
|
specification_version: 4
|
|
173
173
|
summary: The GO Feature Flag provider for the OpenFeature Ruby SDK
|