splitclient-rb 8.11.2.pre.rc1-java → 8.11.3-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7933a7724a5e819fc27a3cab218ccdf752d8d487daee86c2dbab719c4846f784
4
- data.tar.gz: 76d948cd06f24fc10ccd0030542864360d250d0e6526bd78cdb4441e4dde3aef
3
+ metadata.gz: 85d58883d96b6e7e9e2a318bc964bf6982e8e467662ea44b2586bf29ff1ccc13
4
+ data.tar.gz: 2822d748979befbaa6dcbcc3ce4f3bd842d1d3924e9366282617474de21cdd81
5
5
  SHA512:
6
- metadata.gz: e17c51fb4bd3aeb092542d33d8fa87543c59347343eab05e29729c95f6a6104a09b4ffcf65ba09027094d7cd3afecc3be4add56ed27dc8b5dd1b1d1225f73520
7
- data.tar.gz: 227a956b6f6a67b3eb4567d134dacc1156d547faad08cd2f4d0392ed655d26e6a6a4575b7c15cbe7dc99ebf867284e1967cc4f2825bd8a2bdcd195ce9d45027f
6
+ metadata.gz: 25ed837bed832a8f74f92b251da0c7bb1b6439b14a18f1c4de198afca1ed8fa297dc928531d867031fd63f4930237421dfef05e583e7884223b583f99ce0cd13
7
+ data.tar.gz: 481dba7675e4958dc87b578b2eeb225fcddd1ed04c0727d31688044fc4cb55c05ced4e77c59092ab306d7edeae1ec6d55f85559fbd998db4378f185fc699777d
@@ -52,6 +52,7 @@ pipeline:
52
52
  spec:
53
53
  shell: Sh
54
54
  command: |-
55
+ apt-get update
55
56
  apt-get install -y redis-server -qq
56
57
  redis-server --daemonize yes --port 6379
57
58
  redis-cli ping
@@ -101,7 +102,6 @@ pipeline:
101
102
  export PATH="$HOME/.local/bin:$PATH"
102
103
  eval "$(mise activate bash)"
103
104
  cd coverage
104
- sed -i "s@${HARNESS_WORKSPACE}@/harness/workspace/@g" .resultset.json
105
105
  ruby -rjson -e '
106
106
  sqube = JSON.load(File.read(".resultset.json"))["RSpec"]["coverage"].transform_values {|lines| lines["lines"]}
107
107
  total = { "RSpec" => { "coverage" => sqube, "timestamp" => Time.now.to_i }}
@@ -109,29 +109,27 @@ pipeline:
109
109
  ' > .resultset.sonarqube.json
110
110
  - step:
111
111
  type: Run
112
- name: SonarQube Scan
113
- identifier: SonarQube_Scan
114
- when:
115
- stageStatus: Success
116
- condition: <+matrix.rubyVersion> == "3.2.2"
112
+ name: Sonarqube_scan
113
+ identifier: Sonarqube_scan
117
114
  spec:
118
115
  shell: Sh
119
116
  command: |-
120
117
  export SONAR_SCANNER_VERSION=5.0.1.3006
121
118
  curl -sSLo sonar-scanner.zip \
122
- "https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip"
119
+ "https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip"
123
120
  unzip -q sonar-scanner.zip
124
121
  export PATH="$PWD/sonar-scanner-${SONAR_SCANNER_VERSION}-linux/bin:$PATH"
125
122
  apt-get install -y openjdk-17-jdk -qq
126
123
  sonar-scanner \
127
- -Dsonar.projectKey=ruby-client \
128
- -Dsonar.sources=lib \
129
- -Dsonar.tests=spec \
130
- -Dsonar.host.url=https://sonar.harness.io \
131
- -Dsonar.token=<+secrets.getValue("sonarqube-token")> \
132
- -Dsonar.ruby.coverage.reportPaths=coverage/.resultset.sonarqube.json \
133
- -Dsonar.coverage.exclusions="spec/**,**/vendor/**" \
134
- -Dsonar.exclusions="**/vendor/**,**/.git/**"
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
135
133
  - step:
136
134
  type: Run
137
135
  name: Post Quality Gate
@@ -178,5 +176,5 @@ pipeline:
178
176
  strategy:
179
177
  matrix:
180
178
  rubyVersion:
181
- - "2.7.8"
182
- - "3.2.2"
179
+ - 2.7.8
180
+ - 3.2.2
data/CHANGES.txt CHANGED
@@ -1,5 +1,11 @@
1
1
  CHANGES
2
2
 
3
+ 8.11.3 (Sep, 3, 2026)
4
+ - Updated concurrent-ruby version to higher than 1.0.4, this removed thread_safe, which was merged into concurrent-ruby.
5
+
6
+ 8.11.2 (Aug, 25, 2026)
7
+ - Fixed a Streaming client thread leak that may occurs when SDK retries after failed initialization of Streaming connection.
8
+
3
9
  8.11.1 (Jul, 23, 2026)
4
10
  - Added a retry mechanism in case the initial SSE socket connection failed, and extended the list of retryable errors when socket exceptions are caught during streaming.
5
11
  - Fixed debug logging in rule-based segment matcher class when debug_enabled parameter is not set in configuration .
@@ -1,3 +1,3 @@
1
1
  module SplitIoClient
2
- VERSION = '8.11.2.pre.rc1'
2
+ VERSION = '8.11.3'
3
3
  end
@@ -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.2.pre.rc1
4
+ version: 8.11.3
5
5
  platform: java
6
6
  authors:
7
7
  - Split Software
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-08-21 00:00:00.000000000 Z
10
+ date: 2026-09-03 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