Skip to content

Commit ac07691

Browse files
Always explicitly call bundle config without (#1453)
* Always explicitly call bundle config without * 0.43.3
1 parent df0437d commit ac07691

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

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

3+
# 0.43.3
4+
* (bugfix) Ensure we always call `bundle config set without`, even if the without group is empty
5+
36
# 0.43.0
47
* Use `bundle config set frozen true` instead of deprecated `--frozen` flag
58

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
shipit-engine (0.43.2)
4+
shipit-engine (0.43.3)
55
active_model_serializers (~> 0.9.3)
66
ansi_stream (~> 0.0.6)
77
autoprefixer-rails (~> 6.4.1)

app/models/shipit/deploy_spec/bundler_discovery.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def bundle_install
3131
remove_ruby_version_from_gemfile,
3232
(bundle_config_frozen if frozen_mode?),
3333
bundle_config_path,
34-
(bundle_without_groups unless bundler_without.empty?),
34+
bundle_without_groups,
3535
install_command
3636
].compact
3737
end

lib/shipit/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Shipit
4-
VERSION = '0.43.2'
4+
VERSION = '0.43.3'
55
end

0 commit comments

Comments
 (0)