unleash 5.0.2 → 5.0.4
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 +15 -0
- data/README.md +1 -1
- data/echo_client_spec_version.rb +3 -3
- data/lib/unleash/configuration.rb +0 -3
- data/lib/unleash/spec_version.rb +3 -0
- data/lib/unleash/version.rb +1 -1
- data/lib/unleash.rb +1 -0
- data/unleash-client.gemspec +0 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3621f28c635027008444c50908af24043a632c7939fcde6744d31e4cfc14b87
|
|
4
|
+
data.tar.gz: f1fed021ea24ef7f5543d299255035114e099fb5906eecd351dd2b83554b71f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d333fcfb1f5703ba74f639d4f6c4598c1bcaa1dc51ffa0623b84eac15dac20afd938e5b6830a32484f758dcd6964f493c1232bd701d784bba471a05d370f1dfd
|
|
7
|
+
data.tar.gz: cf732e0fad85caf4043b26bcfea7f71365e47074672c8acaf455fc8059351fd6882e6c188c0bccc4c750f10a6ba7ca235338a96c7bad179f555d5585ae138152
|
data/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,21 @@ Note: These changes are not considered notable:
|
|
|
13
13
|
|
|
14
14
|
## [Unreleased]
|
|
15
15
|
|
|
16
|
+
## [5.0.4] - 2024-07-15
|
|
17
|
+
### Changed
|
|
18
|
+
- Reverted "feat: automatically generated instance_id (#179)" (#185)
|
|
19
|
+
|
|
20
|
+
## [5.0.3] - 2024-07-10
|
|
21
|
+
### Fixed
|
|
22
|
+
- Client spec version should be loaded without touching the gemspec
|
|
23
|
+
|
|
24
|
+
## [5.0.2] - 2024-07-05
|
|
25
|
+
### Changed
|
|
26
|
+
- metrics data now includes information about the core engine (#178)
|
|
27
|
+
- to_s method on the context object now includes current time (#175)
|
|
28
|
+
- drop support for MRI 2.5 and JRuby 9.2 (#174)
|
|
29
|
+
- current_time property on the context now handles DateTimes as well as strings (#173)
|
|
30
|
+
|
|
16
31
|
## [5.0.1] - 2024-03-27
|
|
17
32
|
### Changed
|
|
18
33
|
- make user-agent headers more descriptive (#168)
|
data/README.md
CHANGED
data/echo_client_spec_version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
puts
|
|
1
|
+
require_relative 'lib/unleash/spec_version'
|
|
2
|
+
|
|
3
|
+
puts Unleash::CLIENT_SPECIFICATION_VERSION
|
|
@@ -3,9 +3,6 @@ require 'tmpdir'
|
|
|
3
3
|
require 'unleash/bootstrap/configuration'
|
|
4
4
|
|
|
5
5
|
module Unleash
|
|
6
|
-
gemspec = Gem::Specification.load('unleash-client.gemspec')
|
|
7
|
-
CLIENT_SPECIFICATION_VERSION = gemspec.metadata['client-specification-version'].freeze
|
|
8
|
-
|
|
9
6
|
class Configuration
|
|
10
7
|
attr_accessor \
|
|
11
8
|
:url,
|
data/lib/unleash/version.rb
CHANGED
data/lib/unleash.rb
CHANGED
data/unleash-client.gemspec
CHANGED
|
@@ -31,8 +31,6 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
spec.add_development_dependency "rspec-json_expectations", "~> 2.2"
|
|
32
32
|
spec.add_development_dependency "webmock", "~> 3.18.1"
|
|
33
33
|
|
|
34
|
-
spec.metadata["client-specification-version"] = "5.0.2"
|
|
35
|
-
|
|
36
34
|
# rubocop:disable Gemspec/RubyVersionGlobalsUsage, Style/IfUnlessModifier
|
|
37
35
|
if Gem::Version.new(RUBY_VERSION) > Gem::Version.new('3.0')
|
|
38
36
|
spec.add_development_dependency "rubocop", "~> 1.51.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unleash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Renato Arruda
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-07-
|
|
11
|
+
date: 2024-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: murmurhash3
|
|
@@ -180,6 +180,7 @@ files:
|
|
|
180
180
|
- lib/unleash/metrics.rb
|
|
181
181
|
- lib/unleash/metrics_reporter.rb
|
|
182
182
|
- lib/unleash/scheduled_executor.rb
|
|
183
|
+
- lib/unleash/spec_version.rb
|
|
183
184
|
- lib/unleash/strategies.rb
|
|
184
185
|
- lib/unleash/strategy/application_hostname.rb
|
|
185
186
|
- lib/unleash/strategy/base.rb
|
|
@@ -201,8 +202,7 @@ files:
|
|
|
201
202
|
homepage: https://github.com/unleash/unleash-client-ruby
|
|
202
203
|
licenses:
|
|
203
204
|
- Apache-2.0
|
|
204
|
-
metadata:
|
|
205
|
-
client-specification-version: 5.0.2
|
|
205
|
+
metadata: {}
|
|
206
206
|
post_install_message:
|
|
207
207
|
rdoc_options: []
|
|
208
208
|
require_paths:
|