Skip to content

Commit d8d61f0

Browse files
committed
Revert "Update dependencies"
This reverts commit 1722c13. See #289
1 parent ab3d6db commit d8d61f0

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ _None_
1919

2020
### Internal Changes
2121

22-
* Update the `BigDecimal` and `ActiveSupport` gems to clean up our `Gemfile` and improve future compatibility.
22+
_None_
2323

2424
## 1.3.1
2525

Gemfile.lock

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ PATH
22
remote: .
33
specs:
44
fastlane-plugin-wpmreleasetoolkit (1.3.1)
5-
activesupport (~> 6.0)
6-
bigdecimal (~> 2.0)
5+
activesupport (~> 5)
6+
bigdecimal (~> 1.4)
77
chroma (= 0.2.0)
88
diffy (~> 3.3)
99
git (~> 1.3)
@@ -19,12 +19,11 @@ GEM
1919
remote: https://rubygems.org/
2020
specs:
2121
CFPropertyList (3.0.3)
22-
activesupport (6.1.4)
22+
activesupport (5.2.6)
2323
concurrent-ruby (~> 1.0, >= 1.0.2)
24-
i18n (>= 1.6, < 2)
25-
minitest (>= 5.1)
26-
tzinfo (~> 2.0)
27-
zeitwerk (~> 2.3)
24+
i18n (>= 0.7, < 2)
25+
minitest (~> 5.1)
26+
tzinfo (~> 1.1)
2827
addressable (2.7.0)
2928
public_suffix (>= 2.0.2, < 5.0)
3029
artifactory (3.0.15)
@@ -47,7 +46,7 @@ GEM
4746
aws-sigv4 (1.2.3)
4847
aws-eventstream (~> 1, >= 1.0.2)
4948
babosa (1.0.4)
50-
bigdecimal (2.0.3)
49+
bigdecimal (1.4.4)
5150
chroma (0.2.0)
5251
claide (1.0.3)
5352
claide-plugins (0.9.2)
@@ -313,13 +312,14 @@ GEM
313312
simplecov-html (0.10.2)
314313
terminal-notifier (2.0.0)
315314
terminal-table (1.6.0)
315+
thread_safe (0.3.6)
316316
trailblazer-option (0.1.1)
317317
tty-cursor (0.7.1)
318318
tty-screen (0.8.1)
319319
tty-spinner (0.9.3)
320320
tty-cursor (~> 0.7)
321-
tzinfo (2.0.4)
322-
concurrent-ruby (~> 1.0)
321+
tzinfo (1.2.9)
322+
thread_safe (~> 0.1)
323323
uber (0.1.0)
324324
unf (0.1.4)
325325
unf_ext
@@ -342,7 +342,6 @@ GEM
342342
xcpretty-travis-formatter (1.0.1)
343343
xcpretty (~> 0.2, >= 0.0.7)
344344
yard (0.9.26)
345-
zeitwerk (2.4.2)
346345

347346
PLATFORMS
348347
ruby
@@ -366,4 +365,4 @@ DEPENDENCIES
366365
yard
367366

368367
BUNDLED WITH
369-
2.2.22
368+
2.2.16

fastlane-plugin-wpmreleasetoolkit.gemspec

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,13 @@ Gem::Specification.new do |spec|
4343
spec.add_dependency 'progress_bar', '~> 1.3'
4444
spec.add_dependency 'parallel', '~> 1.14'
4545
spec.add_dependency 'chroma', '0.2.0'
46-
spec.add_dependency 'activesupport', '~> 6.0'
47-
spec.add_dependency 'bigdecimal', '~> 2.0'
46+
spec.add_dependency 'activesupport', '~> 5'
47+
# Some of the upstream code uses `BigDecimal.new` which version 2.0 of the
48+
# `bigdecimal` gem removed. Until we'll find the time to identify the
49+
# dependencies and see if we can move them to something compatible with
50+
# modern `bigdecimal`, let's constrain the gem to a version still supporting
51+
# `.new` but which warns about it deprecation.
52+
spec.add_dependency 'bigdecimal', '~> 1.4'
4853

4954
spec.add_development_dependency 'pry', '~> 0.12.2'
5055
spec.add_development_dependency 'bundler', '~> 2.0'

0 commit comments

Comments
 (0)