Skip to content

Commit f6302cf

Browse files
authored
Merge branch 'main' into 4678_add_package_count_option_to_distribution_export
2 parents 2b5cea6 + b5b634d commit f6302cf

File tree

110 files changed

+2812
-361
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+2812
-361
lines changed

.devcontainer/docker-compose.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ services:
2828
POSTGRES_USER: postgres
2929
POSTGRES_DB: postgres
3030
POSTGRES_PASSWORD: postgres
31-
# Note that these ports are ignored by the devcontainer.
32-
# Instead, the ports are specified in .devcontainer/devcontainer.json.
33-
# ports:
34-
# - "5432:5432"
31+
ports:
32+
- "5432:5432" # For non-devcontainer local usage
3533
volumes:
3634
postgres-data:

.github/workflows/rspec-system.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
if: ${{ failure() }}
8787
uses: actions/upload-artifact@v4
8888
with:
89-
name: failed-browser-tests
89+
name: failed-browser-tests-${{ matrix.ci_node_index }}
9090
path: |
9191
tmp/screenshots
9292
tmp/capybara

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ group :development, :test do
151151
# Debugger which supports rdbg and Shopify Ruby LSP VSCode extension
152152
gem "debug", ">= 1.0.0"
153153
# RSpec behavioral testing framework for Rails.
154-
gem "rspec-rails", "~> 8.0.0"
154+
gem "rspec-rails", "~> 8.0.2"
155155
# Static analysis / linter.
156156
gem "rubocop"
157157
# Rails add-on for static analysis.
@@ -208,7 +208,7 @@ group :test do
208208
# Show code coverage.
209209
gem 'simplecov'
210210
# Mock HTTP requests and ensure they are not called during tests.
211-
gem "webmock", "~> 3.25"
211+
gem "webmock", "~> 3.26"
212212
# Interface capybara to chrome headless
213213
gem "cuprite"
214214
# Read PDF files for tests

0 commit comments

Comments
 (0)