Skip to content

Commit

Permalink
Merge pull request #3185 from alphagov/dependabot/bundler/govuk_sidek…
Browse files Browse the repository at this point in the history
…iq-9.0.0

Bump govuk_sidekiq from 8.0.1 to 9.0.0
  • Loading branch information
brucebolt authored Sep 26, 2024
2 parents aa8c9f1 + 495c665 commit 8419bcd
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ gem "pundit"
gem "rack-attack"
gem "rails-html-sanitizer"
gem "rake"
gem "redis"
gem "rotp"
gem "rqrcode"
gem "sentry-sidekiq"
Expand Down
37 changes: 20 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,11 @@ GEM
rouge
sprockets (>= 3)
sprockets-rails
govuk_sidekiq (8.0.1)
govuk_sidekiq (9.0.0)
gds-api-adapters (>= 19.1.0)
govuk_app_config (>= 1.1)
redis (< 5)
redis-namespace (~> 1.6)
sidekiq (~> 6.5, >= 6.5.12)
redis-client (>= 0.22.2)
sidekiq (~> 7.0, < 8)
govuk_test (4.1.0)
brakeman (>= 5.0.2)
capybara (>= 3.36)
Expand Down Expand Up @@ -544,18 +543,18 @@ GEM
pundit (2.4.0)
activesupport (>= 3.0.0)
racc (1.8.1)
rack (2.2.9)
rack (3.1.7)
rack-attack (6.7.0)
rack (>= 1.0, < 4)
rack-proxy (0.7.7)
rack
rack-session (1.0.2)
rack (< 3)
rack-session (2.0.0)
rack (>= 3.0.0)
rack-test (2.1.0)
rack (>= 1.3)
rackup (1.0.0)
rack (< 3)
webrick
rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
rails (7.2.1)
actioncable (= 7.2.1)
actionmailbox (= 7.2.1)
Expand Down Expand Up @@ -597,9 +596,10 @@ GEM
rdoc (6.7.0)
psych (>= 4.0.0)
recursive-open-struct (1.2.2)
redis (4.8.1)
redis-namespace (1.11.0)
redis (>= 4)
redis (5.3.0)
redis-client (>= 0.22.0)
redis-client (0.22.2)
connection_pool
regexp_parser (2.9.2)
reline (0.5.10)
io-console (~> 0.5)
Expand Down Expand Up @@ -680,10 +680,12 @@ GEM
sentry-ruby (~> 5.19.0)
sidekiq (>= 3.0)
shoulda-context (2.0.0)
sidekiq (6.5.12)
connection_pool (>= 2.2.5, < 3)
rack (~> 2.0)
redis (>= 4.5.0, < 5)
sidekiq (7.3.2)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
logger
rack (>= 2.2.4)
redis-client (>= 0.22.2)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
Expand Down Expand Up @@ -775,6 +777,7 @@ DEPENDENCIES
rails-controller-testing
rails-html-sanitizer
rake
redis
rotp
rqrcode
rubocop-govuk
Expand Down
2 changes: 0 additions & 2 deletions config/initializers/sidekiq.rb

This file was deleted.

4 changes: 2 additions & 2 deletions test/integration/cookies_security_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class CookiesSecurityTest < ActionDispatch::IntegrationTest
sign_up_with user.email, user.password
visit new_user_session_path
response_cookies = Capybara.current_session.driver.response.headers["Set-Cookie"]
assert_match "HttpOnly", response_cookies
assert_match "SameSite=Lax", response_cookies
assert_match "httponly", response_cookies
assert_match "samesite=lax", response_cookies
end

def sign_up_with(email, password)
Expand Down

0 comments on commit 8419bcd

Please sign in to comment.