Skip to content

Commit ff620d0

Browse files
committed
Bump minimum ruby version to 3.2 & parsestack version
1 parent 571b36d commit ff620d0

3 files changed

Lines changed: 50 additions & 6 deletions

File tree

Gemfile.lock

Lines changed: 48 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
parse-stack (1.11.3)
4+
parse-stack (1.12.2)
55
active_model_serializers (>= 0.9, < 1)
66
activemodel (>= 5, < 9)
77
activesupport (>= 5, < 9)
@@ -13,9 +13,27 @@ PATH
1313
GEM
1414
remote: https://rubygems.org/
1515
specs:
16-
active_model_serializers (0.9.13)
17-
activemodel (>= 3.2)
18-
concurrent-ruby (~> 1.0)
16+
actionpack (8.0.2.1)
17+
actionview (= 8.0.2.1)
18+
activesupport (= 8.0.2.1)
19+
nokogiri (>= 1.8.5)
20+
rack (>= 2.2.4)
21+
rack-session (>= 1.0.1)
22+
rack-test (>= 0.6.3)
23+
rails-dom-testing (~> 2.2)
24+
rails-html-sanitizer (~> 1.6)
25+
useragent (~> 0.16)
26+
actionview (8.0.2.1)
27+
activesupport (= 8.0.2.1)
28+
builder (~> 3.1)
29+
erubi (~> 1.11)
30+
rails-dom-testing (~> 2.2)
31+
rails-html-sanitizer (~> 1.6)
32+
active_model_serializers (0.10.15)
33+
actionpack (>= 4.1)
34+
activemodel (>= 4.1)
35+
case_transform (>= 0.2)
36+
jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
1937
activemodel (8.0.2.1)
2038
activesupport (= 8.0.2.1)
2139
activesupport (8.0.2.1)
@@ -39,12 +57,16 @@ GEM
3957
debug_inspector (>= 0.0.1)
4058
builder (3.3.0)
4159
byebug (11.1.3)
60+
case_transform (0.2)
61+
activesupport
4262
coderay (1.1.3)
4363
concurrent-ruby (1.3.5)
4464
connection_pool (2.5.3)
65+
crass (1.0.6)
4566
debug_inspector (1.1.0)
4667
dotenv (2.8.1)
4768
drb (2.2.3)
69+
erubi (1.13.1)
4870
faraday (2.13.4)
4971
faraday-net_http (>= 2.0, < 3.5)
5072
json
@@ -54,8 +76,13 @@ GEM
5476
i18n (1.14.7)
5577
concurrent-ruby (~> 1.0)
5678
json (2.13.2)
79+
jsonapi-renderer (0.2.2)
5780
logger (1.7.0)
81+
loofah (2.24.1)
82+
crass (~> 1.0.2)
83+
nokogiri (>= 1.12.0)
5884
method_source (1.0.0)
85+
mini_portile2 (2.8.9)
5986
minitest (5.25.5)
6087
minitest-reporters (1.7.1)
6188
ansi
@@ -65,6 +92,9 @@ GEM
6592
moneta (1.6.0)
6693
net-http (0.6.0)
6794
uri
95+
nokogiri (1.18.9)
96+
mini_portile2 (~> 2.8.2)
97+
racc (~> 1.4)
6898
parallel (1.27.0)
6999
pry (0.14.2)
70100
coderay (~> 1.1)
@@ -74,7 +104,20 @@ GEM
74104
pry-stack_explorer (0.6.1)
75105
binding_of_caller (~> 1.0)
76106
pry (~> 0.13)
107+
racc (1.8.1)
77108
rack (3.2.0)
109+
rack-session (2.1.1)
110+
base64 (>= 0.1.0)
111+
rack (>= 3.0.0)
112+
rack-test (2.2.0)
113+
rack (>= 1.3)
114+
rails-dom-testing (2.3.0)
115+
activesupport (>= 5.0.0)
116+
minitest
117+
nokogiri (>= 1.6)
118+
rails-html-sanitizer (1.6.2)
119+
loofah (~> 2.21)
120+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
78121
rake (13.0.6)
79122
redcarpet (3.5.1)
80123
redis (5.0.6)
@@ -87,6 +130,7 @@ GEM
87130
tzinfo (2.0.6)
88131
concurrent-ruby (~> 1.0)
89132
uri (1.0.3)
133+
useragent (0.16.11)
90134
webrick (1.7.0)
91135
yard (0.9.28)
92136
webrick (~> 1.7.0)

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 = "1.11.3"
9+
VERSION = "1.12.2"
1010
end
1111
end

parse-stack.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
2525
spec.bindir = "bin"
2626
spec.executables = ["parse-console"] #spec.files.grep(%r{^bin/pstack/}) { |f| File.basename(f) }
2727
spec.require_paths = ["lib"]
28-
spec.required_ruby_version = ">= 2.6"
28+
spec.required_ruby_version = ">= 3.2"
2929

3030
spec.add_runtime_dependency "activemodel", [">= 5", "< 9"]
3131
spec.add_runtime_dependency "active_model_serializers", [">= 0.9", "< 1"]

0 commit comments

Comments
 (0)