File tree Expand file tree Collapse file tree 3 files changed +19
-15
lines changed Expand file tree Collapse file tree 3 files changed +19
-15
lines changed Original file line number Diff line number Diff line change 19
19
20
20
### Internal Changes
21
21
22
- * Update the ` BigDecimal ` and ` ActiveSupport ` gems to clean up our ` Gemfile ` and improve future compatibility.
22
+ _ None _
23
23
24
24
## 1.3.1
25
25
Original file line number Diff line number Diff line change 2
2
remote: .
3
3
specs:
4
4
fastlane-plugin-wpmreleasetoolkit (1.3.1 )
5
- activesupport (~> 6.0 )
6
- bigdecimal (~> 2.0 )
5
+ activesupport (~> 5 )
6
+ bigdecimal (~> 1.4 )
7
7
chroma (= 0.2.0 )
8
8
diffy (~> 3.3 )
9
9
git (~> 1.3 )
19
19
remote: https://rubygems.org/
20
20
specs:
21
21
CFPropertyList (3.0.3 )
22
- activesupport (6.1.4 )
22
+ activesupport (5.2.6 )
23
23
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 )
28
27
addressable (2.7.0 )
29
28
public_suffix (>= 2.0.2 , < 5.0 )
30
29
artifactory (3.0.15 )
47
46
aws-sigv4 (1.2.3 )
48
47
aws-eventstream (~> 1 , >= 1.0.2 )
49
48
babosa (1.0.4 )
50
- bigdecimal (2.0.3 )
49
+ bigdecimal (1.4.4 )
51
50
chroma (0.2.0 )
52
51
claide (1.0.3 )
53
52
claide-plugins (0.9.2 )
@@ -313,13 +312,14 @@ GEM
313
312
simplecov-html (0.10.2 )
314
313
terminal-notifier (2.0.0 )
315
314
terminal-table (1.6.0 )
315
+ thread_safe (0.3.6 )
316
316
trailblazer-option (0.1.1 )
317
317
tty-cursor (0.7.1 )
318
318
tty-screen (0.8.1 )
319
319
tty-spinner (0.9.3 )
320
320
tty-cursor (~> 0.7 )
321
- tzinfo (2.0.4 )
322
- concurrent-ruby (~> 1.0 )
321
+ tzinfo (1.2.9 )
322
+ thread_safe (~> 0.1 )
323
323
uber (0.1.0 )
324
324
unf (0.1.4 )
325
325
unf_ext
342
342
xcpretty-travis-formatter (1.0.1 )
343
343
xcpretty (~> 0.2 , >= 0.0.7 )
344
344
yard (0.9.26 )
345
- zeitwerk (2.4.2 )
346
345
347
346
PLATFORMS
348
347
ruby
@@ -366,4 +365,4 @@ DEPENDENCIES
366
365
yard
367
366
368
367
BUNDLED WITH
369
- 2.2.22
368
+ 2.2.16
Original file line number Diff line number Diff line change @@ -43,8 +43,13 @@ Gem::Specification.new do |spec|
43
43
spec . add_dependency 'progress_bar' , '~> 1.3'
44
44
spec . add_dependency 'parallel' , '~> 1.14'
45
45
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'
48
53
49
54
spec . add_development_dependency 'pry' , '~> 0.12.2'
50
55
spec . add_development_dependency 'bundler' , '~> 2.0'
You can’t perform that action at this time.
0 commit comments