From 92387e641f9eba671c20c6dd15c14fa9b1dc7b96 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 27 Jan 2026 14:39:57 -0500 Subject: [PATCH 1/2] bundle config without needs to be --local --- app/models/shipit/deploy_spec/bundler_discovery.rb | 2 +- lib/shipit/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/shipit/deploy_spec/bundler_discovery.rb b/app/models/shipit/deploy_spec/bundler_discovery.rb index 806cc1cb4..1642b616b 100644 --- a/app/models/shipit/deploy_spec/bundler_discovery.rb +++ b/app/models/shipit/deploy_spec/bundler_discovery.rb @@ -55,7 +55,7 @@ def bundle_config_frozen end def bundle_without_groups - "bundle config set without '#{bundler_without.join(':')}'" + "bundle config set --local without '#{bundler_without.join(':')}'" end def frozen_mode? diff --git a/lib/shipit/version.rb b/lib/shipit/version.rb index f83817535..ce9ff0cc3 100644 --- a/lib/shipit/version.rb +++ b/lib/shipit/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Shipit - VERSION = '0.43.3' + VERSION = '0.43.4' end From f225a2dd6ba78aae4089a3e2311a9949cf8fe621 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 27 Jan 2026 14:40:15 -0500 Subject: [PATCH 2/2] v0.43.4 --- Gemfile.lock | 2 +- test/models/deploy_spec_test.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e2d59c276..819f54253 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - shipit-engine (0.43.3) + shipit-engine (0.43.4) active_model_serializers (~> 0.9.3) ansi_stream (~> 0.0.6) autoprefixer-rails (~> 6.4.1) diff --git a/test/models/deploy_spec_test.rb b/test/models/deploy_spec_test.rb index 128431e17..e492331ec 100644 --- a/test/models/deploy_spec_test.rb +++ b/test/models/deploy_spec_test.rb @@ -71,7 +71,7 @@ class DeploySpecTest < ActiveSupport::TestCase --retry 2 ).gsub(/\s+/, ' ').strip config_command = "bundle config set --local path #{@spec.bundle_path}" - without_command = "bundle config set without 'default:production:development:test:staging:benchmark:debug'" + without_command = "bundle config set --local without 'default:production:development:test:staging:benchmark:debug'" assert_equal command, @spec.bundle_install.last assert @spec.bundle_install.include?(config_command) @@ -87,7 +87,7 @@ class DeploySpecTest < ActiveSupport::TestCase --retry 2 ).gsub(/\s+/, ' ').strip assert_equal command, @spec.bundle_install.last - without_command = "bundle config set without 'some:custom:groups'" + without_command = "bundle config set --local without 'some:custom:groups'" assert @spec.bundle_install.include?(without_command) end