Skip to content

Commit b703eb9

Browse files
authored
Merge pull request #153 from pact-foundation/deps/json_2_10
fix(deps): bump json version
2 parents fcd662a + a1a1eef commit b703eb9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN apk update \
2525
&& bundle config build.nokogiri --use-system-libraries \
2626
&& bundle config git.allow_insecure true \
2727
&& gem update --system 3.5.23 \
28-
&& gem install json -v "~>2.9" \
28+
&& gem install json -v "~>2.10" \
2929
&& gem install bigdecimal -v "~>3.1" \
3030
&& gem install racc -v "~>1.8" \
3131
&& gem uninstall rubygems-update \

Dockerfile-node

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG NODE_VERSION=18
2-
FROM node:${NODE_VERSION}-alpine3.20
2+
FROM node:${NODE_VERSION}-alpine3.21
33

44
LABEL maintainer="Beth Skurrie <beth@bethesque.com>"
55

@@ -32,8 +32,8 @@ RUN apk update \
3232
&& bundler -v \
3333
&& bundle config build.nokogiri --use-system-libraries \
3434
&& bundle config git.allow_insecure true \
35-
&& gem update --system 3.5.20 \
36-
&& gem install json -v "~>2.7.6" \
35+
&& gem update --system 3.5.23 \
36+
&& gem install json -v "~>2.10" \
3737
&& gem install bigdecimal -v "~>3.1" \
3838
&& gem install racc -v "~>1.8" \
3939
&& gem uninstall rubygems-update \

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ PATH
2020
specs:
2121
pact-cli (1.4.0)
2222
bigdecimal (~> 3.1)
23-
json (~> 2.9)
23+
json (~> 2.10)
2424
pact-mock_service
2525
pact-provider-verifier
2626
pact_broker-client (~> 1.28)
@@ -52,7 +52,7 @@ GEM
5252
csv
5353
mini_mime (>= 1.0.0)
5454
multi_xml (>= 0.5.2)
55-
json (2.9.1)
55+
json (2.10.1)
5656
jsonpath (1.1.5)
5757
multi_json
5858
logger (1.6.5)

pact-cli.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Gem::Specification.new do |spec|
4444
spec.add_dependency "pact-mock_service"
4545
spec.add_dependency "pact-provider-verifier"
4646
spec.add_dependency "pact_broker-client", "~> 1.28"
47-
spec.add_dependency "json", "~>2.9" # must match native lib install in the Dockerfile
47+
spec.add_dependency "json", "~>2.10" # must match native lib install in the Dockerfile
4848
spec.add_dependency "bigdecimal", "~>3.1" # must match native lib install in the Dockerfile
4949

5050
spec.add_dependency "rack-test", ">= 0.6.3", "< 3.0.0"

0 commit comments

Comments
 (0)