splitclient-rb 8.11.2-java → 8.11.3.pre.rc1-java
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/.harness/pipeline.yaml +14 -17
- data/CHANGES.txt +3 -0
- data/lib/splitclient-rb/version.rb +1 -1
- data/splitclient-rb.gemspec +1 -2
- metadata +8 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 435dbc4cb2d60ea293596e42978297fed82a92cf8f37372893462795ef1fb1e0
|
|
4
|
+
data.tar.gz: 5040be2f67fa75a8c11161771daccec385656360166e005af9bbe687b5757c29
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8afb6818a82482fd90bdb4a467cfd094473de0b9645e71fff9674724bcf82af26933724e9ecf56c4acc3033745f8fdd4b040f39d01b6f329a5c3a6c88bd7670
|
|
7
|
+
data.tar.gz: 47ad3b4cd85919dd2c994f2cf6fbb779a48aabbbe20e54c466526338f50fef3a67be1adc3a56026c05c142dc7a881aee791824f23f9b2322e469b92183d9ba3c
|
data/.harness/pipeline.yaml
CHANGED
|
@@ -102,7 +102,6 @@ pipeline:
|
|
|
102
102
|
export PATH="$HOME/.local/bin:$PATH"
|
|
103
103
|
eval "$(mise activate bash)"
|
|
104
104
|
cd coverage
|
|
105
|
-
sed -i "s@${HARNESS_WORKSPACE}@/harness/workspace/@g" .resultset.json
|
|
106
105
|
ruby -rjson -e '
|
|
107
106
|
sqube = JSON.load(File.read(".resultset.json"))["RSpec"]["coverage"].transform_values {|lines| lines["lines"]}
|
|
108
107
|
total = { "RSpec" => { "coverage" => sqube, "timestamp" => Time.now.to_i }}
|
|
@@ -110,29 +109,27 @@ pipeline:
|
|
|
110
109
|
' > .resultset.sonarqube.json
|
|
111
110
|
- step:
|
|
112
111
|
type: Run
|
|
113
|
-
name:
|
|
114
|
-
identifier:
|
|
115
|
-
when:
|
|
116
|
-
stageStatus: Success
|
|
117
|
-
condition: <+matrix.rubyVersion> == "3.2.2"
|
|
112
|
+
name: Sonarqube_scan
|
|
113
|
+
identifier: Sonarqube_scan
|
|
118
114
|
spec:
|
|
119
115
|
shell: Sh
|
|
120
116
|
command: |-
|
|
121
117
|
export SONAR_SCANNER_VERSION=5.0.1.3006
|
|
122
118
|
curl -sSLo sonar-scanner.zip \
|
|
123
|
-
|
|
119
|
+
"https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip"
|
|
124
120
|
unzip -q sonar-scanner.zip
|
|
125
121
|
export PATH="$PWD/sonar-scanner-${SONAR_SCANNER_VERSION}-linux/bin:$PATH"
|
|
126
122
|
apt-get install -y openjdk-17-jdk -qq
|
|
127
123
|
sonar-scanner \
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
124
|
+
-Dsonar.projectKey=ruby-client \
|
|
125
|
+
-Dsonar.sources=lib \
|
|
126
|
+
-Dsonar.tests=spec \
|
|
127
|
+
-Dsonar.host.url=https://sonar.harness.io \
|
|
128
|
+
-Dsonar.token=<+secrets.getValue("sonarqube-token")> \
|
|
129
|
+
-Dsonar.ruby.coverage.reportPaths=/harness/coverage/.resultset.sonarqube.json \
|
|
130
|
+
-Dsonar.coverage.exclusions="spec/**,**/vendor/**" \
|
|
131
|
+
-Dsonar.exclusions="**/vendor/**,**/.git/**" \
|
|
132
|
+
-Dsonar.verbose=true
|
|
136
133
|
- step:
|
|
137
134
|
type: Run
|
|
138
135
|
name: Post Quality Gate
|
|
@@ -179,5 +176,5 @@ pipeline:
|
|
|
179
176
|
strategy:
|
|
180
177
|
matrix:
|
|
181
178
|
rubyVersion:
|
|
182
|
-
-
|
|
183
|
-
-
|
|
179
|
+
- 2.7.8
|
|
180
|
+
- 3.2.2
|
data/CHANGES.txt
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
CHANGES
|
|
2
2
|
|
|
3
|
+
8.11.3 (XX, XX, 2026)
|
|
4
|
+
- Updated concurrent-ruby version to higher than 1.0.4, this removed thread_safe, which was merged into concurrent-ruby.
|
|
5
|
+
|
|
3
6
|
8.11.2 (Aug, 25, 2026)
|
|
4
7
|
- Fixed a Streaming client thread leak that may occurs when SDK retries after failed initialization of Streaming connection.
|
|
5
8
|
|
data/splitclient-rb.gemspec
CHANGED
|
@@ -51,7 +51,7 @@ Gem::Specification.new do |spec|
|
|
|
51
51
|
spec.add_development_dependency 'webrick', '~> 1.8.2'
|
|
52
52
|
|
|
53
53
|
spec.add_runtime_dependency 'bitarray', '~> 1.3'
|
|
54
|
-
spec.add_runtime_dependency 'concurrent-ruby', '~> 1.0'
|
|
54
|
+
spec.add_runtime_dependency 'concurrent-ruby', '~> 1.0', '> 1.0.5'
|
|
55
55
|
spec.add_runtime_dependency 'faraday', '>= 1.1', '< 3.0'
|
|
56
56
|
spec.add_runtime_dependency 'faraday-net_http_persistent', '>= 1.0', '< 3.0'
|
|
57
57
|
spec.add_runtime_dependency 'json', '>= 1.8', '< 3.0'
|
|
@@ -59,5 +59,4 @@ Gem::Specification.new do |spec|
|
|
|
59
59
|
spec.add_runtime_dependency 'lru_redux', '~> 1.1'
|
|
60
60
|
spec.add_runtime_dependency 'net-http-persistent', '>= 2.9', '< 5.0'
|
|
61
61
|
spec.add_runtime_dependency 'redis', '>= 4.0.0', '< 6.0'
|
|
62
|
-
spec.add_runtime_dependency 'thread_safe', '~> 0.3'
|
|
63
62
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: splitclient-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.11.
|
|
4
|
+
version: 8.11.3.pre.rc1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Split Software
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-09-01 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: allocation_stats
|
|
@@ -226,6 +226,9 @@ dependencies:
|
|
|
226
226
|
- - "~>"
|
|
227
227
|
- !ruby/object:Gem::Version
|
|
228
228
|
version: '1.0'
|
|
229
|
+
- - ">"
|
|
230
|
+
- !ruby/object:Gem::Version
|
|
231
|
+
version: 1.0.5
|
|
229
232
|
type: :runtime
|
|
230
233
|
prerelease: false
|
|
231
234
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -233,6 +236,9 @@ dependencies:
|
|
|
233
236
|
- - "~>"
|
|
234
237
|
- !ruby/object:Gem::Version
|
|
235
238
|
version: '1.0'
|
|
239
|
+
- - ">"
|
|
240
|
+
- !ruby/object:Gem::Version
|
|
241
|
+
version: 1.0.5
|
|
236
242
|
- !ruby/object:Gem::Dependency
|
|
237
243
|
name: faraday
|
|
238
244
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -361,20 +367,6 @@ dependencies:
|
|
|
361
367
|
- - "<"
|
|
362
368
|
- !ruby/object:Gem::Version
|
|
363
369
|
version: '6.0'
|
|
364
|
-
- !ruby/object:Gem::Dependency
|
|
365
|
-
name: thread_safe
|
|
366
|
-
requirement: !ruby/object:Gem::Requirement
|
|
367
|
-
requirements:
|
|
368
|
-
- - "~>"
|
|
369
|
-
- !ruby/object:Gem::Version
|
|
370
|
-
version: '0.3'
|
|
371
|
-
type: :runtime
|
|
372
|
-
prerelease: false
|
|
373
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
374
|
-
requirements:
|
|
375
|
-
- - "~>"
|
|
376
|
-
- !ruby/object:Gem::Version
|
|
377
|
-
version: '0.3'
|
|
378
370
|
description: Ruby client for using split SDK.
|
|
379
371
|
email:
|
|
380
372
|
- mauro.sanz@split.io
|