rb_snowflake_client 1.6.0 → 1.6.1

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: 8d4e6f5f28c211ce79c5c049125008efdbddca46ecb670f7bc724a10c11eb5ef
4
- data.tar.gz: 42378b7321d2ce549b347b5f882d85af33f393a4a34e3032fa22e5bbbaa264e7
3
+ metadata.gz: 57d979564fce1cdc8fb8b92043e89b631f4f1ca35db2cc2d4601a1739506e89a
4
+ data.tar.gz: ecfd25eb94ae8e5767e49c7b3b5dd33f02905e09c839ba0bd59be81f629f1390
5
5
  SHA512:
6
- metadata.gz: 33be4299bb251eb3be2ddef2301ab6e471c1a312d3a35dab3a2067d757125eec473aecf230bd84544992714e4dc7ab23b4a2129c8a460c5654eadb68de5f0109
7
- data.tar.gz: 71ed8816683f48ed434fdb44515a3e92d0121d8935cc1e89c41a4accef4431ef5448c2feed0355df66cc04d17a1e88afcc7732a5a56af915d85e8345b84bd49a
6
+ metadata.gz: 906470b3b67d6a102bbe25bc02e42c2178a4a9fc7a1eb6785398a1bfc45d6e47e9b5dc392aebc4dc35dbd0c6a2263c30c39c3ce522396a6584629f8d8e7ad43e
7
+ data.tar.gz: d767e9956def03c80dd8eb66d24649c54c987f37dc07870a319a55ac9455821b330e4d5a59e89246282899f40d76222c6a07b90dc6882a5e89ba3c410a6c1f95
data/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## [1.6.1] - 2026-08-18
11
+ ### Security
12
+ - Bumped `json` to patch a format-string injection CVE (#169)
13
+ - Bumped `concurrent-ruby` and `jwt` to patch CVEs (#182)
14
+ ### Changed
15
+ - `Gemfile.lock` is no longer shipped inside the published gem. It has no function in a
16
+ consumer's dependency resolution, but image scanners read it as a manifest and reported our
17
+ development pins as CRITICAL findings against every consumer (#186)
18
+
10
19
  ## [1.6.0] - 2026-04-13
11
20
  ### Added
12
21
  - Support for passing a passphrase when using an encrypted private key for JWT authentication (#166)
@@ -1,3 +1,3 @@
1
1
  module RubySnowflake
2
- VERSION = "1.6.0"
2
+ VERSION = "1.6.1"
3
3
  end
@@ -14,8 +14,23 @@ Gem::Specification.new do |s|
14
14
  s.homepage = "https://github.com/rinsed-org/rb-snowflake-client"
15
15
  s.license = "MIT"
16
16
 
17
+ # Gemfile.lock is excluded deliberately, and it is a security fix rather than tidiness.
18
+ #
19
+ # A lockfile has no function inside a published gem -- Bundler resolves a consumer's tree from the
20
+ # dependency constraints below, never from a lockfile shipped in a dependency -- but container image
21
+ # scanners read any Gemfile.lock they find on disk as a manifest of what is installed. So our
22
+ # DEVELOPMENT lock became a vulnerability report against every consumer: an image that installs this
23
+ # gem gets .../gems/rb_snowflake_client-1.6.0/Gemfile.lock scanned, and the pinned
24
+ # concurrent-ruby 1.3.6, jwt 3.1.2 and json 2.15.1 are reported as CRITICAL findings on the consumer.
25
+ #
26
+ # That is all three CRITICAL findings on the DataExtract Lambda image, and they are unfixable there:
27
+ # the versions are ours, in our published artifact, and no bump on the consumer's side can move them.
28
+ # The runtime constraints (concurrent-ruby >= 1.2, json >= 2.1.0, jwt >= 2.7) are open-ended, so
29
+ # consumers already resolve their own versions and lose nothing by not receiving this file.
17
30
  s.files = Dir.chdir(File.expand_path(__dir__)) do
18
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features|vendor)/}) }
31
+ `git ls-files -z`.split("\x0").reject do |f|
32
+ f.match(%r{\A(?:test|spec|features|vendor)/}) || f == "Gemfile.lock"
33
+ end
19
34
  end
20
35
 
21
36
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb_snowflake_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rinsed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-04-13 00:00:00.000000000 Z
11
+ date: 2026-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal
@@ -127,7 +127,6 @@ files:
127
127
  - CHANGELOG.md
128
128
  - CODE_OF_CONDUCT.md
129
129
  - Gemfile
130
- - Gemfile.lock
131
130
  - LICENSE.txt
132
131
  - README.md
133
132
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,87 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- rb_snowflake_client (1.6.0)
5
- bigdecimal (>= 3.0)
6
- concurrent-ruby (>= 1.2)
7
- connection_pool (>= 2.4)
8
- dotenv (>= 2.8)
9
- json (>= 2.1.0)
10
- jwt (>= 2.7)
11
- retryable (>= 3.0)
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- activesupport (8.0.5)
17
- base64
18
- benchmark (>= 0.3)
19
- bigdecimal
20
- concurrent-ruby (~> 1.0, >= 1.3.1)
21
- connection_pool (>= 2.2.5)
22
- drb
23
- i18n (>= 1.6, < 2)
24
- logger (>= 1.4.2)
25
- minitest (>= 5.1)
26
- securerandom (>= 0.3)
27
- tzinfo (~> 2.0, >= 2.0.5)
28
- uri (>= 0.13.1)
29
- base64 (0.3.0)
30
- benchmark (0.5.0)
31
- bigdecimal (4.1.1)
32
- coderay (1.1.3)
33
- concurrent-ruby (1.3.6)
34
- connection_pool (3.0.2)
35
- diff-lcs (1.6.2)
36
- dotenv (3.1.8)
37
- drb (2.2.3)
38
- i18n (1.14.8)
39
- concurrent-ruby (~> 1.0)
40
- json (2.15.1)
41
- jwt (3.1.2)
42
- base64
43
- logger (1.7.0)
44
- method_source (1.1.0)
45
- minitest (6.0.3)
46
- drb (~> 2.0)
47
- prism (~> 1.5)
48
- parallel (1.27.0)
49
- prism (1.9.0)
50
- pry (0.15.2)
51
- coderay (~> 1.1)
52
- method_source (~> 1.0)
53
- rake (13.3.0)
54
- retryable (3.0.5)
55
- rspec (3.13.1)
56
- rspec-core (~> 3.13.0)
57
- rspec-expectations (~> 3.13.0)
58
- rspec-mocks (~> 3.13.0)
59
- rspec-core (3.13.5)
60
- rspec-support (~> 3.13.0)
61
- rspec-expectations (3.13.5)
62
- diff-lcs (>= 1.2.0, < 2.0)
63
- rspec-support (~> 3.13.0)
64
- rspec-mocks (3.13.5)
65
- diff-lcs (>= 1.2.0, < 2.0)
66
- rspec-support (~> 3.13.0)
67
- rspec-support (3.13.6)
68
- securerandom (0.4.1)
69
- tzinfo (2.0.6)
70
- concurrent-ruby (~> 1.0)
71
- uri (1.1.1)
72
-
73
- PLATFORMS
74
- arm64-darwin-22
75
- ruby
76
-
77
- DEPENDENCIES
78
- activesupport (~> 8.0.4, >= 8.0.4.1)
79
- bundler
80
- parallel
81
- pry
82
- rake
83
- rb_snowflake_client!
84
- rspec
85
-
86
- BUNDLED WITH
87
- 4.0.3