From a88ab2eeef830c88ec69327a843c1ff9c5bd20e8 Mon Sep 17 00:00:00 2001 From: Klaus Zanders Date: Tue, 7 May 2024 09:04:07 +0200 Subject: [PATCH] Bundler 2.5.9 -> 2.5.10 --- Gemfile.lock | 2 +- docker/ci/Dockerfile | 2 +- docker/dev/backend/Dockerfile | 2 +- docker/prod/Dockerfile | 2 +- docs/development/development-environment-osx/README.md | 2 +- docs/development/development-environment-ubuntu/README.md | 2 +- script/github_pr_errors | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 702fb997069..6cdaae82bfd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1362,4 +1362,4 @@ RUBY VERSION ruby 3.3.1p55 BUNDLED WITH - 2.5.9 + 2.5.10 diff --git a/docker/ci/Dockerfile b/docker/ci/Dockerfile index 10fdf441039..0dac605ece8 100644 --- a/docker/ci/Dockerfile +++ b/docker/ci/Dockerfile @@ -3,7 +3,7 @@ ARG RUBY_VERSION FROM ruby:${RUBY_VERSION}-bullseye ENV NODE_VERSION="20.9.0" -ENV BUNDLER_VERSION="2.5.9" +ENV BUNDLER_VERSION="2.5.10" ENV DEBIAN_FRONTEND=noninteractive ENV BUNDLE_WITHOUT="development:production:docker" diff --git a/docker/dev/backend/Dockerfile b/docker/dev/backend/Dockerfile index f029428ba57..b32ebf0c5f9 100644 --- a/docker/dev/backend/Dockerfile +++ b/docker/dev/backend/Dockerfile @@ -8,7 +8,7 @@ ENV USER=dev ENV RAILS_ENV=development ENV NODE_MAJOR=20 -ENV BUNDLER_VERSION "2.5.9" +ENV BUNDLER_VERSION "2.5.10" # `--no-log-init` is required as a workaround to avoid disk exhaustion. # diff --git a/docker/prod/Dockerfile b/docker/prod/Dockerfile index 04435df1c2b..64bcc3c164b 100644 --- a/docker/prod/Dockerfile +++ b/docker/prod/Dockerfile @@ -1,6 +1,6 @@ ARG RUBY_VERSION="3.3.1" ARG NODE_VERSION="20.9.0" -ARG BUNDLER_VERSION="2.5.9" +ARG BUNDLER_VERSION="2.5.10" ARG DEBIAN_FRONTEND=noninteractive # ------------------------------------- diff --git a/docs/development/development-environment-osx/README.md b/docs/development/development-environment-osx/README.md index c128ea8f7c7..47103efbf0e 100644 --- a/docs/development/development-environment-osx/README.md +++ b/docs/development/development-environment-osx/README.md @@ -137,7 +137,7 @@ $ ruby --version ruby 3.3.1 (2024-04-23 revision c56cd86388) [arm64-darwin23] $ bundler --version -Bundler version 2.5.9 +Bundler version 2.5.10 node --version v20.9.0 diff --git a/docs/development/development-environment-ubuntu/README.md b/docs/development/development-environment-ubuntu/README.md index cfec8ee00c4..7d7b70f135f 100644 --- a/docs/development/development-environment-ubuntu/README.md +++ b/docs/development/development-environment-ubuntu/README.md @@ -183,7 +183,7 @@ ruby --version ruby 3.3.1 (2024-04-23 revision c56cd86388) [arm64-darwin23] bundler --version -Bundler version 2.5.9 +Bundler version 2.5.10 node --version v20.9.0 diff --git a/script/github_pr_errors b/script/github_pr_errors index ff2df8f3f01..3bd6042f200 100755 --- a/script/github_pr_errors +++ b/script/github_pr_errors @@ -283,7 +283,7 @@ end # rubocop:disable Layout/LineLength # Looks like this in the job log: -# Process 28: TEST_ENV_NUMBER=28 RUBYOPT=-I/usr/local/bundle/bundler/gems/turbo_tests-3148ae6c3482/lib -r/usr/local/bundle/gems/bundler-2.5.9/lib/bundler/setup -W0 RSPEC_SILENCE_FILTER_ANNOUNCEMENTS=1 /usr/local/bundle/gems/bundler-2.5.9/exe/bundle exec rspec --seed 52674 --format TurboTests::JsonRowsFormatter --out tmp/test-pipes/subprocess-28 --format ParallelTests::RSpec::RuntimeLogger --out spec/support/turbo_runtime_features.log spec/features/api_docs/index_spec.rb spec/features/custom_fields/reorder_options_spec.rb spec/features/projects/projects_portfolio_spec.rb spec/features/projects/template_spec.rb spec/features/versions/edit_spec.rb spec/features/work_packages/details/markdown/description_editor_spec.rb spec/features/work_packages/table/hierarchy/hierarchy_parent_below_spec.rb spec/features/work_packages/table/inline_create/inline_create_refresh_spec.rb spec/features/work_packages/table/invalid_query_spec.rb spec/features/work_packages/tabs/activity_revisions_spec.rb +# Process 28: TEST_ENV_NUMBER=28 RUBYOPT=-I/usr/local/bundle/bundler/gems/turbo_tests-3148ae6c3482/lib -r/usr/local/bundle/gems/bundler-2.5.10/lib/bundler/setup -W0 RSPEC_SILENCE_FILTER_ANNOUNCEMENTS=1 /usr/local/bundle/gems/bundler-2.5.10/exe/bundle exec rspec --seed 52674 --format TurboTests::JsonRowsFormatter --out tmp/test-pipes/subprocess-28 --format ParallelTests::RSpec::RuntimeLogger --out spec/support/turbo_runtime_features.log spec/features/api_docs/index_spec.rb spec/features/custom_fields/reorder_options_spec.rb spec/features/projects/projects_portfolio_spec.rb spec/features/projects/template_spec.rb spec/features/versions/edit_spec.rb spec/features/work_packages/details/markdown/description_editor_spec.rb spec/features/work_packages/table/hierarchy/hierarchy_parent_below_spec.rb spec/features/work_packages/table/inline_create/inline_create_refresh_spec.rb spec/features/work_packages/table/invalid_query_spec.rb spec/features/work_packages/tabs/activity_revisions_spec.rb # rubocop:enable Layout/LineLength class TestsGroup attr_accessor :test_env_number, :seed, :files