Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group with 10 updates #557

Merged
merged 1 commit into from
Jan 8, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 8, 2024

Bumps the dependencies group with 10 updates:

Package From To
brakeman 6.1.0 6.1.1
factory_bot_rails 6.4.2 6.4.3
puma 6.4.0 6.4.1
sentry-rails 5.15.0 5.15.2
shoulda-matchers 5.3.0 6.0.0
sqlite3 1.6.9 1.7.0
importmap-rails 1.2.3 2.0.1
stimulus-rails 1.3.0 1.3.3
webauthn 3.0.0 3.1.0
view_component 3.8.0 3.9.0

Updates brakeman from 6.1.0 to 6.1.1

Release notes

Sourced from brakeman's releases.

6.1.1

  • Handle racc as a default gem in Ruby 3.3.0
Changelog

Sourced from brakeman's changelog.

6.1.1 - 2023-12-24

  • Handle racc as a default gem in Ruby 3.3.0
Commits

Updates factory_bot_rails from 6.4.2 to 6.4.3

Release notes

Sourced from factory_bot_rails's releases.

6.4.3

  • Changed: allow sequence definitions for ActiveRecord primary keys (Mike Burns).
  • Changed: Support Ruby 3.0+, Rails 6.1+ (Mike Burns)
  • Documentation improvements (obregonia1).
  • Internal: GitHub Actions improvements (Lorenzo Zabot, ydah).
  • Internal: RubyGems points to changelog (Tilo Sloboda).
  • Internal: Bump standard, rake, activerecord, appraisal, rspec-rails (Mike Burns).
Changelog

Sourced from factory_bot_rails's changelog.

6.4.3 (December 29, 2023)

  • Changed: allow sequence definitions for ActiveRecord primary keys (Mike Burns).
  • Changed: Support Ruby 3.0+, Rails 6.1+ (Mike Burns)
  • Documentation improvements (obregonia1).
  • Internal: GitHub Actions improvements (Lorenzo Zabot, ydah).
  • Internal: RubyGems points to changelog (Tilo Sloboda).
  • Internal: Bump standard, rake, activerecord, appraisal, rspec-rails (Mike Burns).
Commits
  • 6b350d1 Bump to 6.4.3 [ci skip]
  • d7d5ae8 Bump rspec-rails from 6.0.1 to 6.1.0
  • 4f13aa8 Bump appraisal from 2.4.1 to 2.5.0
  • ea1ff34 Bump activerecord from 7.0.4.3 to 7.1.2
  • 64a2188 Bump rake from 13.0.6 to 13.1.0
  • 43bba38 Bump standard from 1.27.0 to 1.32.1
  • 7be631f Allow primary key attributes
  • c4638f6 Remove code path for Rails 5.2 support
  • 499635f Be clear about supported Rails and Ruby versions
  • db1aae5 Added dependabot for GitHub Actions and bundler
  • Additional commits viewable in compare view

Updates puma from 6.4.0 to 6.4.1

Changelog

Sourced from puma's changelog.

6.4.1 / 2024-01-03

  • Bugfixes

    • DSL#warn_if_in_single_mode - fixup when workers set via CLI (#3256)
    • Fix idle-timeout not working in cluster mode (#3235, #3228, #3282, #3283)
    • Fix worker 0 timing out during phased restart (#3225, #2786)
    • context_builder.rb - require openssl if verify_mode != 'none' (#3179)
    • Make puma cluster process suitable as PID 1 (#3255)
    • Improve Puma::NullIO consistency with real IO (#3276)
    • extconf.rb - fixup to detect openssl info in Ruby build (#3271, #3266)
    • MiniSSL.java - set serialVersionUID, fix RaiseException deprecation (#3270)
    • dsl.rb - fix warn_if_in_single_mode when WEB_CONCURRENCY is set (#3265, #3264)
  • Maintenance

    • LOTS of test refactoring to make tests more stable and easier to write - thanks to @​MSP-Greg!
    • Fix bug in tests re: TestPuma::HOST4 (#3254)
    • Dockerfile for minimal repros: use Ruby 3.2, expect bundler installed (#3245)
    • fix define_method calls, use Symbol parameter instead of String (#3293)
  • Docs

    • README.md - add the puma-acme plugin (#3301)
    • Remove --keep-file-descriptors flag from systemd docs (#3248)
    • Note symlink mechanism in restart documentation for hot restart (#3298)
Commits
  • a287025 6.4.1 version tick!
  • 32a629d 6.4.1
  • 7e17826 [Fix #3282] idle-timeout not waiting on all workers in cluster mode (#3283)
  • 437142e README.md - add the puma-acme plugin (#3301)
  • e9125fa [CI] Change all workflow file extensions to '.yml' (#3300)
  • d49dec9 [CI] Add Ruby 3.3, use 'rubygems: latest' in tests.yaml MRI (#3299)
  • 2d27225 Note symlink mechanism in restart documentation for hot restart (#3298)
  • b747a65 ragel.yml - remove Windows due to incorrect line directives (#3294)
  • d158981 Bump actions/upload-artifact from 3 to 4 (#3291)
  • 14fc84b fix define_method calls, use Symbol parameter instead of String (#3293)
  • Additional commits viewable in compare view

Updates sentry-rails from 5.15.0 to 5.15.2

Changelog

Sourced from sentry-rails's changelog.

5.15.2

Bug Fixes

  • Fix sample_rate applying to check-in events #2203

5.15.1

Features

  • Expose configuration.background_worker_max_queue to control thread pool queue size #2195

Bug Fixes

  • Fix Sentry::Cron::MonitorCheckIns monkeypatch keyword arguments #2199
Commits

Updates shoulda-matchers from 5.3.0 to 6.0.0

Release notes

Sourced from shoulda-matchers's releases.

v6.0.0

Backward-incompatible changes

#1521: thoughtbot/shoulda-matchers#1521 #1522: thoughtbot/shoulda-matchers#1522 #1547: thoughtbot/shoulda-matchers#1547 #1548: thoughtbot/shoulda-matchers#1548

Bug fixes

  • Fix validate_uniqueness_of matcher not supporting column of the type timestampz by @​callahat. (#1544)
  • Ensure that validation specs work for ActiveModel without ActiveRecord by @​stonefield. (#1580)

#1544: thoughtbot/shoulda-matchers#1544 #1580: thoughtbot/shoulda-matchers#1580

Features

#1536: thoughtbot/shoulda-matchers#1536 #1542: thoughtbot/shoulda-matchers#1542 #1552: thoughtbot/shoulda-matchers#1552 #1555: thoughtbot/shoulda-matchers#1555 #1558: thoughtbot/shoulda-matchers#1558 #1560: thoughtbot/shoulda-matchers#1560 #1569: thoughtbot/shoulda-matchers#1569 #1573: thoughtbot/shoulda-matchers#1573 #1578: thoughtbot/shoulda-matchers#1578 #1588: thoughtbot/shoulda-matchers#1588

Improvements

  • When an unrelated error is seen with negated allow_value, give a hint by @​matsales28. (#1570)

#1570: thoughtbot/shoulda-matchers#1570

Thanks everyone for the contributions!

Changelog

Sourced from shoulda-matchers's changelog.

6.0.0 - 2023-12-22

Backward-incompatible changes

#1521: thoughtbot/shoulda-matchers#1521 #1522: thoughtbot/shoulda-matchers#1522 #1547: thoughtbot/shoulda-matchers#1547 #1548: thoughtbot/shoulda-matchers#1548

Bug fixes

  • Fix validate_uniqueness_of matcher not supporting column of the type timestampz by @​callahat. (#1544)
  • Ensure that validation specs work for ActiveModel without ActiveRecord by @​stonefield. (#1580)

#1544: thoughtbot/shoulda-matchers#1544 #1580: thoughtbot/shoulda-matchers#1580

Features

#1536: thoughtbot/shoulda-matchers#1536 #1542: thoughtbot/shoulda-matchers#1542 #1552: thoughtbot/shoulda-matchers#1552 #1555: thoughtbot/shoulda-matchers#1555 #1558: thoughtbot/shoulda-matchers#1558 #1560: thoughtbot/shoulda-matchers#1560 #1569: thoughtbot/shoulda-matchers#1569 #1573: thoughtbot/shoulda-matchers#1573 #1578: thoughtbot/shoulda-matchers#1578 #1588: thoughtbot/shoulda-matchers#1588

Improvements

  • When an unrelated error is seen with negated allow_value, give a hint by @​matsales28. (#1570)

#1570: thoughtbot/shoulda-matchers#1570

Commits

Updates sqlite3 from 1.6.9 to 1.7.0

Release notes

Sourced from sqlite3's releases.

1.7.0 / 2023-12-27

Ruby

This release introduces native gem support for Ruby 3.3.

This release ends native gem support for Ruby 2.7, for which upstream support ended 2023-03-31. Ruby 2.7 is still generally supported, but will not be shipped in the native gems.

This release ends support for Ruby 1.9.3, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, and 2.6.

Improved


sha256 checksums:

eaff7c58c5bfc82c0ebc522d9991615fd8f98c4556d3160f90ae8c89fb6501ce  sqlite3-1.7.0-aarch64-linux.gem
46d27b7079e63c852afbfb888355c7137f240a5c9106a4ef6e2df9791a1ff485  sqlite3-1.7.0-arm-linux.gem
b5a384f382099e2d09c2f05b9618c1177a5ecb19798ce1e65a50d84d49377451  sqlite3-1.7.0-arm64-darwin.gem
0fe774367f7d52e85e83c9b30f01bbedbb7d6fcaf5b7a0b119a2af196a6c1ddb  sqlite3-1.7.0-x64-mingw-ucrt.gem
e0f4a8be499ef6cdd3511f521c68c6145f53370040315c4d0e4ecaa1bb3b1ee1  sqlite3-1.7.0-x64-mingw32.gem
1ade17be3ca7c9ca3a8fa6313101bcf578c3e10e139f4249b222f6fd7e4cb450  sqlite3-1.7.0-x86-linux.gem
1bedf29318e01d7fc77ca398ce36f57feefb45a291d86069c1fc0e7d19770af0  sqlite3-1.7.0-x86_64-darwin.gem
6cf008a7a81eb54c99db0f06a958372512f2f8c24fbe59e76c49fd4bf4135161  sqlite3-1.7.0-x86_64-linux.gem
894b5965591fb2db7d95572e93942f4fddd1762d37ec4fbc198b36426fcdae3c  sqlite3-1.7.0.gem
Changelog

Sourced from sqlite3's changelog.

1.7.0 / 2023-12-27

Ruby

This release introduces native gem support for Ruby 3.3.

This release ends native gem support for Ruby 2.7, for which upstream support ended 2023-03-31. Ruby 2.7 is still generally supported, but will not be shipped in the native gems.

This release ends support for Ruby 1.9.3, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, and 2.6.

Improved

Commits
  • 4f8ff6f version bump to v1.7.0
  • 63f22d1 Merge pull request #448 from sparklemotion/flavorjones-dep-rcd-1.4.0
  • 51f4862 dep: update to rake-compiler-dock 1.4.0 final
  • 5801ebe Merge pull request #447 from sparklemotion/flavorjones-ci-ruby-3.3.0
  • 740ea09 Merge pull request #444 from sparklemotion/dependabot/bundler/ruby_memcheck-2...
  • 63dc974 ci: update pipelines to test with ruby 3.3.0 final
  • 4ac1832 build(deps): update ruby_memcheck requirement from 2.2.1 to 2.3.0
  • 28047db Merge pull request #441 from sparklemotion/flavorjones-pin-alpine-to-3.18
  • 14cb673 Revert "build(deps): bump actions/download-artifact from 3 to 4"
  • 8d87322 Revert "build(deps): bump actions/upload-artifact from 3 to 4"
  • Additional commits viewable in compare view

Updates importmap-rails from 1.2.3 to 2.0.1

Release notes

Sourced from importmap-rails's releases.

v2.0.1

What's Changed

  • Ensure update only runs when there are outdated packages by @​dhh

Full Changelog: rails/importmap-rails@v2.0.0...v2.0.1

v2.0.0

What's Changed

This major release includes two potentially backwards-incompatible changes:

  • The compatibility shim is no longer included, since all major browsers now natively support import maps. But if you need to support old browsers, like Safari 15, Firefox 75, Chrome 88, you should continue using the 1.x series of this gem.
  • Preloading is now the default. So if you have pins that you intend to lazy load, you need to specifically call preload: false as part of the pin.

All changes:

Full Changelog: rails/importmap-rails@v1.2.3...v2.0.0

Commits
  • be74dea Bump version for 2.0.1
  • 31b0f16 Ensure update only runs when there are outdated packages
  • 61727c4 Bump version for 2.0.0
  • 9b379c0 spike basic update command. (#214)
  • 25e9166 Update Impoortmaps::Command#puts_table to be markdown compatible (#222)
  • 59b6862 Fix some paths
  • 5d20b21 Fix wording in preloading pinned modules docs (#220)
  • f27ec14 Spell out Rails dependencies manually
  • 30868a8 Remove remaining reference in README to deleted --download CLI option (#219)
  • a4d915b No more support EOL Rubys or near-EOL
  • Additional commits viewable in compare view

Updates stimulus-rails from 1.3.0 to 1.3.3

Release notes

Sourced from stimulus-rails's releases.

v1.3.3

What's Changed

Full Changelog: hotwired/stimulus-rails@v1.3.2...v1.3.3

v1.3.2

What's Changed

Full Changelog: hotwired/stimulus-rails@v1.3.0...v1.3.2

Commits

Updates webauthn from 3.0.0 to 3.1.0

Changelog

Sourced from webauthn's changelog.

[v3.1.0] - 2023-12-26

Added

  • Add support for optional authenticator_attachment in PublicKeyCredential. #370 [@​8ma10s]

Fixed

  • Fix circular require warning between webauthn/relying_party and webauthn/credential. #389 [@​bdewater]
  • Correctly verify attestation that contains just a batch certificate that is present in the attestation root certificates. #406 [@​santiagorodriguez96]

Changed

Commits
  • 486c43d build: prepare new 3.1.0 release
  • 6a5d7e9 Suppressing unexpected error with `WebAuthn::PublicKeyCredentialWithAttestati...
  • 43a491b Merge pull request #410 from cedarcode/sr--packed-attestation-verification-wi...
  • 2f1e315 feat: correctly verify "packed" attestation with self referenced cert
  • d897c1a Merge pull request #402 from olleolleolle/add-base64-dependency
  • e4e0c13 Inline base64 implementation
  • 6db9596 Merge pull request #404 from cedarcode/dependabot/github_actions/actions/chec...
  • a2c6f04 build(deps): bump actions/checkout from 3 to 4
  • 54ec025 Merge pull request #403 from olleolleolle/patch-1
  • 2ebaff8 Configure Dependabot to update GitHub Actions
  • Additional commits viewable in compare view

Updates view_component from 3.8.0 to 3.9.0

Release notes

Sourced from view_component's releases.

v3.9.0

  • Don’t break rails stats if ViewComponent path is missing.

    Claudio Baccigalupo

  • Add deprecation warnings for EOL ruby and Rails versions and patches associated with them.

    Reegan Viljoen

  • Add support for Ruby 3.3.

    *Reegan Viljoen*
    
  • Allow translations to be inherited and overridden in subclasses.

    Elia Schito

  • Resolve console warnings when running test suite.

    Joel Hawksley

  • Fix spelling in a local variable.

    Olle Jonsson

  • Avoid duplicating rendered string when output_postamble is blank.

    Mitchell Henke

  • Ensure HTML output safety.

    Cameron Dutro

Changelog

Sourced from view_component's changelog.

3.9.0

  • Don’t break rails stats if ViewComponent path is missing.

    Claudio Baccigalupo

  • Add deprecation warnings for EOL ruby and Rails versions and patches associated with them.

    Reegan Viljoen

  • Add support for Ruby 3.3.

    *Reegan Viljoen*
    
  • Allow translations to be inherited and overridden in subclasses.

    Elia Schito

  • Resolve console warnings when running test suite.

    Joel Hawksley

  • Fix spelling in a local variable.

    Olle Jonsson

  • Avoid duplicating rendered string when output_postamble is blank.

    Mitchell Henke

  • Ensure HTML output safety.

    Cameron Dutro

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [brakeman](https://github.com/presidentbeef/brakeman) | `6.1.0` | `6.1.1` |
| [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails) | `6.4.2` | `6.4.3` |
| [puma](https://github.com/puma/puma) | `6.4.0` | `6.4.1` |
| [sentry-rails](https://github.com/getsentry/sentry-ruby) | `5.15.0` | `5.15.2` |
| [shoulda-matchers](https://github.com/thoughtbot/shoulda-matchers) | `5.3.0` | `6.0.0` |
| [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) | `1.6.9` | `1.7.0` |
| [importmap-rails](https://github.com/rails/importmap-rails) | `1.2.3` | `2.0.1` |
| [stimulus-rails](https://github.com/hotwired/stimulus-rails) | `1.3.0` | `1.3.3` |
| [webauthn](https://github.com/cedarcode/webauthn-ruby) | `3.0.0` | `3.1.0` |
| [view_component](https://github.com/viewcomponent/view_component) | `3.8.0` | `3.9.0` |


Updates `brakeman` from 6.1.0 to 6.1.1
- [Release notes](https://github.com/presidentbeef/brakeman/releases)
- [Changelog](https://github.com/presidentbeef/brakeman/blob/main/CHANGES.md)
- [Commits](presidentbeef/brakeman@v6.1.0...v6.1.1)

Updates `factory_bot_rails` from 6.4.2 to 6.4.3
- [Release notes](https://github.com/thoughtbot/factory_bot_rails/releases)
- [Changelog](https://github.com/thoughtbot/factory_bot_rails/blob/main/NEWS.md)
- [Commits](thoughtbot/factory_bot_rails@v6.4.2...v6.4.3)

Updates `puma` from 6.4.0 to 6.4.1
- [Release notes](https://github.com/puma/puma/releases)
- [Changelog](https://github.com/puma/puma/blob/master/History.md)
- [Commits](puma/puma@v6.4.0...v6.4.1)

Updates `sentry-rails` from 5.15.0 to 5.15.2
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.15.0...5.15.2)

Updates `shoulda-matchers` from 5.3.0 to 6.0.0
- [Release notes](https://github.com/thoughtbot/shoulda-matchers/releases)
- [Changelog](https://github.com/thoughtbot/shoulda-matchers/blob/main/CHANGELOG.md)
- [Commits](thoughtbot/shoulda-matchers@v5.3.0...v6.0.0)

Updates `sqlite3` from 1.6.9 to 1.7.0
- [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases)
- [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/sqlite3-ruby@v1.6.9...v1.7.0)

Updates `importmap-rails` from 1.2.3 to 2.0.1
- [Release notes](https://github.com/rails/importmap-rails/releases)
- [Commits](rails/importmap-rails@v1.2.3...v2.0.1)

Updates `stimulus-rails` from 1.3.0 to 1.3.3
- [Release notes](https://github.com/hotwired/stimulus-rails/releases)
- [Commits](hotwired/stimulus-rails@v1.3.0...v1.3.3)

Updates `webauthn` from 3.0.0 to 3.1.0
- [Changelog](https://github.com/cedarcode/webauthn-ruby/blob/master/CHANGELOG.md)
- [Commits](cedarcode/webauthn-ruby@v3.0.0...v3.1.0)

Updates `view_component` from 3.8.0 to 3.9.0
- [Release notes](https://github.com/viewcomponent/view_component/releases)
- [Changelog](https://github.com/ViewComponent/view_component/blob/main/docs/CHANGELOG.md)
- [Commits](ViewComponent/view_component@v3.8.0...v3.9.0)

---
updated-dependencies:
- dependency-name: brakeman
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: factory_bot_rails
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: puma
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sentry-rails
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: shoulda-matchers
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: sqlite3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: importmap-rails
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: stimulus-rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: webauthn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: view_component
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Jan 8, 2024
@sfnelson sfnelson merged commit ff94816 into main Jan 8, 2024
1 check passed
@sfnelson sfnelson deleted the dependabot/bundler/dependencies-a2f6fe27bb branch January 8, 2024 03:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant