Skip to content

Commit 20016bf

Browse files
committed
Bump gems and refresh Gemfile.lock
Regenerate Gemfile.lock to pick up multiple dependency updates and patches. Notable bumps include activemodel/activesupport 8.0.3 -> 8.1.2, bigdecimal, byebug, connection_pool, json, mongo, net-http, net-http-persistent, rack, rake, redis-client, and several smaller gems. Also adds/updates transitive deps (reline, prism, io-console) for compatibility with the upgraded gems.
1 parent b8f4ff2 commit 20016bf

3 files changed

Lines changed: 37 additions & 28 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Parse-Stack Changelog
22

3+
### 3.3.1
4+
- Bundle update
5+
36
### 3.3.0
47

58
#### Breaking Changes

Gemfile.lock

Lines changed: 33 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -13,65 +13,69 @@ PATH
1313
GEM
1414
remote: https://rubygems.org/
1515
specs:
16-
activemodel (8.0.3)
17-
activesupport (= 8.0.3)
18-
activesupport (8.0.3)
16+
activemodel (8.1.2)
17+
activesupport (= 8.1.2)
18+
activesupport (8.1.2)
1919
base64
20-
benchmark (>= 0.3)
2120
bigdecimal
2221
concurrent-ruby (~> 1.0, >= 1.3.1)
2322
connection_pool (>= 2.2.5)
2423
drb
2524
i18n (>= 1.6, < 2)
25+
json
2626
logger (>= 1.4.2)
2727
minitest (>= 5.1)
2828
securerandom (>= 0.3)
2929
tzinfo (~> 2.0, >= 2.0.5)
3030
uri (>= 0.13.1)
3131
ansi (1.5.0)
3232
base64 (0.3.0)
33-
benchmark (0.4.1)
34-
bigdecimal (3.3.0)
33+
bigdecimal (4.0.1)
3534
binding_of_caller (1.0.1)
3635
debug_inspector (>= 1.2.0)
3736
bson (5.2.0)
3837
builder (3.3.0)
39-
byebug (12.0.0)
38+
byebug (13.0.0)
39+
reline (>= 0.6.0)
4040
coderay (1.1.3)
41-
concurrent-ruby (1.3.5)
42-
connection_pool (2.5.4)
41+
concurrent-ruby (1.3.6)
42+
connection_pool (3.0.2)
4343
debug_inspector (1.2.0)
44-
dotenv (3.1.8)
44+
dotenv (3.2.0)
4545
drb (2.2.3)
46-
faraday (2.14.0)
46+
faraday (2.14.1)
4747
faraday-net_http (>= 2.0, < 3.5)
4848
json
4949
logger
50-
faraday-net_http (3.4.1)
51-
net-http (>= 0.5.0)
50+
faraday-net_http (3.4.2)
51+
net-http (~> 0.5)
5252
faraday-net_http_persistent (2.3.1)
5353
faraday (~> 2.5)
5454
net-http-persistent (>= 4.0.4, < 5)
55-
i18n (1.14.7)
55+
i18n (1.14.8)
5656
concurrent-ruby (~> 1.0)
57-
json (2.15.1)
57+
io-console (0.8.2)
58+
json (2.19.1)
5859
logger (1.7.0)
5960
method_source (1.1.0)
60-
minitest (5.26.0)
61+
minitest (6.0.2)
62+
drb (~> 2.0)
63+
prism (~> 1.5)
6164
minitest-reporters (1.7.1)
6265
ansi
6366
builder
6467
minitest (>= 5.0)
6568
ruby-progressbar
6669
moneta (1.6.0)
67-
mongo (2.22.0)
70+
mongo (2.23.0)
6871
base64
6972
bson (>= 4.14.1, < 6.0.0)
70-
net-http (0.6.0)
71-
uri
72-
net-http-persistent (4.0.6)
73-
connection_pool (~> 2.2, >= 2.2.4)
73+
net-http (0.9.1)
74+
uri (>= 0.11.1)
75+
net-http-persistent (4.0.8)
76+
connection_pool (>= 2.2.4, < 4)
7477
parallel (1.27.0)
78+
prism (1.9.0)
7579
pry (0.14.2)
7680
coderay (~> 1.1)
7781
method_source (~> 1.0)
@@ -80,20 +84,22 @@ GEM
8084
pry-stack_explorer (0.6.1)
8185
binding_of_caller (~> 1.0)
8286
pry (~> 0.13)
83-
rack (3.2.4)
84-
rake (13.3.0)
87+
rack (3.2.5)
88+
rake (13.3.1)
8589
redcarpet (3.6.1)
8690
redis (5.4.1)
8791
redis-client (>= 0.22.0)
88-
redis-client (0.26.1)
92+
redis-client (0.27.0)
8993
connection_pool
94+
reline (0.6.3)
95+
io-console (~> 0.5)
9096
ruby-progressbar (1.13.0)
91-
rufo (0.18.1)
97+
rufo (0.18.2)
9298
securerandom (0.4.1)
9399
tzinfo (2.0.6)
94100
concurrent-ruby (~> 1.0)
95-
uri (1.0.4)
96-
yard (0.9.37)
101+
uri (1.1.1)
102+
yard (0.9.38)
97103

98104
PLATFORMS
99105
aarch64-linux-gnu

lib/parse/stack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ module Parse
66
# The Parse Server SDK for Ruby
77
module Stack
88
# The current version.
9-
VERSION = "3.3.0"
9+
VERSION = "3.3.1"
1010
end
1111
end

0 commit comments

Comments
 (0)