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

Dependabot: Bump the ruby group with 9 updates #44

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2023

Bumps the ruby group with 9 updates:

Package From To
rake 13.0.1 13.1.0
pry-byebug 3.9.0 3.10.1
rspec 3.9.0 3.12.0
rack-test 1.1.0 2.1.0
database_cleaner 1.8.5 2.0.2
commander 4.5.2 4.6.0
better_errors 2.8.0 2.10.1
nio4r 2.6.1 2.7.0
sequel 5.53.0 5.75.0

Updates rake from 13.0.1 to 13.1.0

Changelog

Sourced from rake's changelog.

=== 13.0.6

  • Additional fix for #389 Pull request #390 by hsbt

=== 13.0.5

  • Fixed the regression of #388 Pull request #389 by hsbt

=== 13.0.4

  • Fix rake test loader swallowing useful error information. Pull request #367 by deivid-rodriguez
  • Add -C/--directory option the same as GNU make. Pull request #376 by nobu

=== 13.0.3

  • Fix breaking change of execution order on TestTask. Pull request #368 by ysakasin

=== 13.0.2

==== Enhancements

  • Fix tests to work with current FileUtils Pull Request #358 by jeremyevans
  • Simplify default rake test loader Pull Request #357 by deivid-rodriguez
  • Update rdoc Pull Request #366 by bahasalien
  • Update broken links to rake articles from Avdi in README Pull Request #360 by svl7
Commits
  • 5476cda Bump up v13.1.0
  • 1b6afad Merge pull request #521 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 8b2a01c Bump ruby/setup-ruby from 1.156.0 to 1.157.0
  • 1607fbf Merge pull request #520 from ruby/dependabot/github_actions/actions/checkout-...
  • 6594585 Bump actions/checkout from 4.1.0 to 4.1.1
  • 6717ce8 Merge pull request #519 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 4b4b211 Bump ruby/setup-ruby from 1.155.0 to 1.156.0
  • 5e76ef6 Merge pull request #518 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 8d39c6b Bump ruby/setup-ruby from 1.154.0 to 1.155.0
  • 191a9d7 Merge pull request #517 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • Additional commits viewable in compare view

Updates pry-byebug from 3.9.0 to 3.10.1

Release notes

Sourced from pry-byebug's releases.

3.10.1

Fixed

  • Rails console loading a debugger REPL instead of the standard Pry REPL (#392)

3.10.0

Added

  • Support for pry 0.14 (#346, #386). NOTE: pry-byebug now needs to be explicitly required from ~/.pryrc since plugin autoloading has been removed from Pry.

Removed

  • Support for Ruby 2.4, 2.5, and 2.6. Pry-byebug no longer installs on these platforms (#380).
Changelog

Sourced from pry-byebug's changelog.

3.10.1 (2022-08-16)

Fixed

  • Rails console loading a debugger REPL instead of the standard Pry REPL (#392)

3.10.0 (2022-08-15)

Added

  • Support for pry 0.14 (#346, #386). NOTE: pry-byebug now needs to be explicitly required from ~/.pryrc since plugin autoloading has been removed from Pry.

Removed

  • Support for Ruby 2.4, 2.5, and 2.6. Pry-byebug no longer installs on these platforms (#380).
Commits

Updates rspec from 3.9.0 to 3.12.0

Commits

Updates rack-test from 1.1.0 to 2.1.0

Changelog

Sourced from rack-test's changelog.

2.1.0 / 2023-03-14

  • Breaking changes:

    • Digest authentication support, deprecated in 2.0.0, has been removed (Jeremy Evans #307)
    • requiring rack/mock_session, deprecated in 2.0.0, has been removed (Jeremy Evans #307)
  • Minor enhancements:

    • The original_filename for Rack::Test::UploadedFile can now be set even if the content of the file comes from a file path (Stuart Chinery #314)
    • Add Rack::Test::Session#restore_state, for executing a block and restoring current state (last request, last response, and cookies) after the block (Jeremy Evans #316)
    • Make Rack::Test::Methods support default_host method similar to app, which will set the default host used for requests to the app (Jeremy Evans #317 #318)
    • Allow responses to set cookie paths not matching the current request URI. Such cookies will only be sent for paths matching the cookie path (Chris Waters #322)
    • Ignore leading dot for cookie domains, per RFC 6265 (Stephen Crosby #329)
    • Avoid creating empty multipart body if params is empty in Rack::Test::Session#env_for (Ryunosuke Sato #331)

2.0.2 / 2022-06-28

  • Bug fixes:
    • Fix additional incompatible character encodings error when building uploaded bodies (Jeremy Evans #311)

2.0.1 / 2022-06-27

  • Bug fixes:
    • Fix incompatible character encodings error when building uploaded file bodies (Jeremy Evans #308 #309)

2.0.0 / 2022-06-24

  • Breaking changes:
    • Digest authentication support is now deprecated, as it relies on digest authentication support in rack, which has been deprecated (Jeremy Evans #294)
    • Rack::Test::Utils.build_primitive_part no longer handles array values (Jeremy Evans #292)
    • Rack::Test::Utils module methods other than build_nested_query and build_multipart are now private methods (Jeremy Evans #297)
    • Rack::MockSession has been combined into Rack::Test::Session, and remains as an alias to Rack::Test::Session, but to keep some

... (truncated)

Commits
  • 867a6f1 Release 2.1.0
  • 44e8be4 Update History.md
  • 5a2a3bf Don't raise error with empty params and multipart header
  • febbea4 Update CHANGELOG
  • 79c5077 Fix tests when rack master branch is used
  • 70f4db2 Ignore leading dot when merging cookies
  • 73c7174 Bump cgi version in Ruby 3.1 CI test
  • 8fb4fb2 Add CI for Ruby 3.2
  • 10e7040 Test JRuby 9.4 in CI
  • 2036831 change order of arguments for assert_equal example in README
  • Additional commits viewable in compare view

Updates database_cleaner from 1.8.5 to 2.0.2

Changelog

Sourced from database_cleaner's changelog.

== 2.0.2 2023-03-10

== Bugfixes

== 2.0.1 2021-02-04

== Bugfixes

== 2.0.0 2021-01-31

=== Changes

  • Rename url_whitelist to url_allowlist
  • Allowlist now supports regular expressions
  • Fixed Ruby 2.7 deprecation warnings

=== Breaking changes

  • Failed checks against the allowlist now raise UrlNotAllowed rather than NotWhitelistedUrl

== 2.0.0.beta2 2020-05-30

=== Features

=== Breaking changes

== 2.0.0.beta 2020-04-05

=== Breaking changes

  • Replace old shared RSpec examples with new "database_cleaner adapter" example: DatabaseCleaner/database_cleaner#629
  • split gem into database_cleaner-core and database_cleaner metagem.
  • Support Ruby versions 2.4, 2.5, 2.6, and 2.7, and drop support for older Rubies.
  • remove all deprecated code and get the specs passing again.
  • Split off all adapter gems into their own repos: DatabaseCleaner/database_cleaner#620

== 1.99.0 2021-01-31

== Changes

== Deprecations

... (truncated)

Commits
  • 64e2ef7 Merge pull request #699 from DatabaseCleaner/feature/relax-dependency
  • 7edc507 Relax dependency on database_cleaner-active_record
  • c5c62ee Document version 2.0.2
  • 0ff5d01 Merge pull request #697 from petergoldstein/feature/add_ruby_3_2_to_ci
  • b1434d2 Tweak safeguard so that empty strings are handled correctly
  • ead2f5a Add explicit hashes to avoid ambiguity with keyword arguments
  • 5e7c43f Add Ruby 3.2 to the CI matrix. Also update checkout action version.
  • c57ab08 Added a CHANGELOG section to the README
  • 20cfcea Merge pull request #689 from petergoldstein/feature/switch_to_github_actions
  • a1f150f Switch to GitHub Actions
  • Additional commits viewable in compare view

Updates commander from 4.5.2 to 4.6.0

Changelog

Sourced from commander's changelog.

=== 4.6.0 / 2021-04-09

  • Fix error with SortedSet on Ruby 3.0 (#98).
  • Remove #reset_io as it didn't do anything.
  • Drop support for Ruby < 2.4.
Commits
  • 40d06bf Version 4.6.0
  • 203dae3 Update rubocop, drop support for Ruby < 2.4
  • 8c5b75f Rescue Ruby 3 errors for SortedSet
  • 4969096 Remove dependencies for Ruby < 2
  • 4dbce3d Add ruby 3 to Travis
  • 83c255e Merge pull request #95 from orien/help-after-command-argument
  • ea4d912 Use --help after command and argument
  • See full diff in compare view

Updates better_errors from 2.8.0 to 2.10.1

Release notes

Sourced from better_errors's releases.

v2.10.1

v2.10.0

v2.10.0.beta2

  • Use SASS to build CSS #498
  • Syntax highlighter uses classes, style-src locked down #499
  • Switch to Rouge for syntax highlighting and add dark syntax-highlighting theme #500

v2.10.0.beta1

  • Add Rails 6.1 to CI matrix #493
  • Add Content Security Policy #497

v2.9.1

  • Fix setting editor with symbol #492

v2.9.0

  • Mention path in text response #487
  • Use Github Actions for CI #489
  • Exception Hints #302
  • Hide "live shell" hint after console has been used #490
  • Improve editor support for virtual environments #488
  • Fix "live shell" hint reappearing when frame changed #491

v2.8.3

  • Fix 'uninitialized constant BetterErrors::Middleware::VERSION' #480
  • Fix CSRF_TOKEN_COOKIE_NAME wrong reference to VERSION constant #481

v2.8.2

  • Fix path of CSRF Token cookie #478

v2.8.1

  • Show real cause of ActionView::Template::Error with Rails 6 #477
  • Add TruffleRuby to CI builds #473
Commits

Updates nio4r from 2.6.1 to 2.7.0

Release notes

Sourced from nio4r's releases.

v2.7.0

What's Changed

New Contributors

Full Changelog: socketry/nio4r@v2.6.1...v2.7.0

Changelog

Sourced from nio4r's changelog.

2.7.0

  • Convert NIO objects to TypedData API.
Commits

Updates sequel from 5.53.0 to 5.75.0

Changelog

Sourced from sequel's changelog.

=== 5.75.0 (2023-12-01)

  • Make any_not_empty? extension support passing pattern argument to any? (jeremyevans) (#2100)

  • Respect :skip_transaction option in PostgreSQL Dataset#paged_each (jeremyevans) (#2097)

  • Add TimestampMigrator.run_single to run a single migration file up or down (opya, jeremyevans) (#2093)

  • Support INSERT RETURNING on MariaDB 10.5+, and use it when saving new model objects (jeremyevans)

  • Add Database#{defer,immediate}_constraints on PostgreSQL for changing handling of deferrable constraints in a transaction (jeremyevans)

=== 5.74.0 (2023-11-01)

  • Make generated columns show up in Database#schema when using SQLite 3.37+ (jeremyevans) (#2087)

  • Add revert method for Sequel.migration blocks, to revert changes inside the block on up, and apply the changes on down (jeremyevans)

  • Re-add is_json and is_not_json methods to the pg_json_ops extension, as the support was re-added in PostgreSQL 16 (jeremyevans)

  • Avoid infinite loop when handling exceptions with a cause loop in jdbc adapter (jeremyevans)

=== 5.73.0 (2023-10-01)

  • Handle disconnect errors in ibmdb and jdbc/db2 adapters (jeremyevans) (#2083)

  • Support skipping transactions in Dataset#{import,paged_each} using :skip_transaction option (jeremyevans)

  • Add Database#transaction :skip_transaction option to skip creating a transaction or savepoint (jeremyevans)

  • Stop using a transaction for a single query if calling Dataset#import with a dataset (jeremyevans)

  • Add paged_operations plugin for paged deletes and updates and other custom operations (jeremyevans) (#2080)

  • Support to_tsquery: :websearch option to Dataset#full_text_search on PostgreSQL 11+ (jeremyevans) (#2075)

  • Add MassAssignmentRestriction#model and #column for getting the model instance and related column for mass assignment errors (artofhuman, jeremyevans) (#2079)

  • Stop using base64 library in column_encryption plugin (jeremyevans)

=== 5.72.0 (2023-09-01)

  • Sort caches before marshalling when using schema_caching, index_caching, static_cache_cache, and pg_auto_constraint_validations (jeremyevans)

  • Change the defaults_setter plugin do a deep-copy of database default hash/array values and delegates (jeremyevans) (#2069)

  • Add pg_auto_parameterize_in_array extension, for converting IN/NOT IN to = ANY or != ALL for more types (jeremyevans)

  • Fix literalization of infinite and NaN float values in PostgreSQL array bound variables (jeremyevans)

... (truncated)

Commits
  • 5b78ac7 Bump version to 5.75.0
  • e728617 Make any_not_empty? extension support passing pattern argument to any?
  • 9099201 Fix Ruby syntax in column encryption constraint example
  • 0239207 Respect :skip_transaction option in PostgreSQL Dataset#paged_each (Fixes #2097)
  • 4637356 Minor refactors and add documentation for TimestampMigrator.run_single
  • 422f160 Added run_single method to run migration by version and direction
  • 730970e Remove unused Rake tasks
  • 0d509ad Support INSERT RETURNING on MariaDB 10.5+, and use it when saving new model o...
  • 5e5f703 Add Database#{defer,immediate}_constraints on PostgreSQL for changing handlin...
  • 96e6d46 Bump version to 5.74.0
  • Additional commits viewable in compare view

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 ruby group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [rake](https://github.com/ruby/rake) | `13.0.1` | `13.1.0` |
| [pry-byebug](https://github.com/deivid-rodriguez/pry-byebug) | `3.9.0` | `3.10.1` |
| [rspec](https://github.com/rspec/rspec-metagem) | `3.9.0` | `3.12.0` |
| [rack-test](https://github.com/rack/rack-test) | `1.1.0` | `2.1.0` |
| [database_cleaner](https://github.com/DatabaseCleaner/database_cleaner) | `1.8.5` | `2.0.2` |
| [commander](https://github.com/commander-rb/commander) | `4.5.2` | `4.6.0` |
| [better_errors](https://github.com/BetterErrors/better_errors) | `2.8.0` | `2.10.1` |
| [nio4r](https://github.com/socketry/nio4r) | `2.6.1` | `2.7.0` |
| [sequel](https://github.com/jeremyevans/sequel) | `5.53.0` | `5.75.0` |


Updates `rake` from 13.0.1 to 13.1.0
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.0.1...v13.1.0)

Updates `pry-byebug` from 3.9.0 to 3.10.1
- [Release notes](https://github.com/deivid-rodriguez/pry-byebug/releases)
- [Changelog](https://github.com/deivid-rodriguez/pry-byebug/blob/master/CHANGELOG.md)
- [Commits](deivid-rodriguez/pry-byebug@v3.9.0...v3.10.1)

Updates `rspec` from 3.9.0 to 3.12.0
- [Commits](rspec/rspec-metagem@v3.9.0...v3.12.0)

Updates `rack-test` from 1.1.0 to 2.1.0
- [Release notes](https://github.com/rack/rack-test/releases)
- [Changelog](https://github.com/rack/rack-test/blob/main/History.md)
- [Commits](rack/rack-test@v1.1.0...v2.1.0)

Updates `database_cleaner` from 1.8.5 to 2.0.2
- [Changelog](https://github.com/DatabaseCleaner/database_cleaner/blob/main/History.rdoc)
- [Commits](DatabaseCleaner/database_cleaner@v1.8.5...v2.0.2)

Updates `commander` from 4.5.2 to 4.6.0
- [Changelog](https://github.com/commander-rb/commander/blob/master/History.rdoc)
- [Commits](commander-rb/commander@v4.5.2...v4.6.0)

Updates `better_errors` from 2.8.0 to 2.10.1
- [Release notes](https://github.com/BetterErrors/better_errors/releases)
- [Commits](BetterErrors/better_errors@v2.8.0...v2.10.1)

Updates `nio4r` from 2.6.1 to 2.7.0
- [Release notes](https://github.com/socketry/nio4r/releases)
- [Changelog](https://github.com/socketry/nio4r/blob/main/changes.md)
- [Commits](socketry/nio4r@v2.6.1...v2.7.0)

Updates `sequel` from 5.53.0 to 5.75.0
- [Changelog](https://github.com/jeremyevans/sequel/blob/master/CHANGELOG)
- [Commits](jeremyevans/sequel@5.53.0...5.75.0)

---
updated-dependencies:
- dependency-name: rake
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: pry-byebug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: rspec
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: rack-test
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: ruby
- dependency-name: database_cleaner
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: ruby
- dependency-name: commander
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: better_errors
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: nio4r
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: sequel
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 8, 2023
@github-actions github-actions bot enabled auto-merge (squash) December 8, 2023 22:11
@orien orien closed this Dec 8, 2023
auto-merge was automatically disabled December 8, 2023 22:26

Pull request was closed

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2023

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

@dependabot dependabot bot deleted the dependabot/bundler/ruby-553380cf04 branch December 8, 2023 22:26
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant