Skip to content

Commit 67fe545

Browse files
ojabfacebook-github-bot
authored andcommitted
Allow faraday-multipart-1.1.0 (#221)
Summary: Released in Dec 2024 [0]. Version constrain was more lax before 290d57e, but was needlessly tightened instead of setting the minimal accepted version. Relax it back. [0] https://github.com/lostisland/faraday-multipart/releases/tag/v1.1.0 And drive-by commit to update bundler version in `Gemfile.lock` to fix `bundle` w/ latest rubies (see commit message), could extract to the separate PR if needed. Also GHA uses `bundler-1` (which is not realistic since minimal supported ruby is `3.0` that ships w/ `bundler-2.2.3`) and only rubies `3.0` & `3.2`, I'd like to create a PR to use all supported rubies w/o `bundler` version override, but wanna have this PR merged first to work without annoying `First-time contributors need a maintainer to approve running workflows.`. Pull Request resolved: #221 Reviewed By: satwikareddy3 Differential Revision: D73123301 Pulled By: stcheng fbshipit-source-id: 61199ee773cbe573e5bf1727c5dddc88967acae0
1 parent 48cc1c0 commit 67fe545

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PATH
22
remote: .
33
specs:
4-
facebookbusiness (20.0.0)
4+
facebookbusiness (22.0.0)
55
concurrent-ruby (~> 1.1)
66
countries (>= 3, < 7)
77
faraday (~> 2.6)
8-
faraday-multipart (~> 1.0.4)
8+
faraday-multipart (~> 1.0, >= 1.0.4)
99
json (~> 2.6)
1010
money (~> 6.13)
1111

@@ -103,4 +103,4 @@ DEPENDENCIES
103103
rubocop (~> 0.71)
104104

105105
BUNDLED WITH
106-
2.2.33
106+
2.5.23

facebookbusiness.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Gem::Specification.new do |s|
3636

3737
s.add_dependency 'concurrent-ruby', '~> 1.1'
3838
s.add_dependency 'faraday', '~> 2.6'
39-
s.add_dependency 'faraday-multipart', '~> 1.0.4'
39+
s.add_dependency 'faraday-multipart', '>= 1.0.4', '~> 1.0'
4040
s.add_dependency 'json', '~> 2.6'
4141
s.add_dependency 'countries', '>= 3', '< 7'
4242
s.add_dependency 'money', '~> 6.13'

0 commit comments

Comments
 (0)