katalyst / kpop

MIT License
5 stars 1 forks source link

Bump the ruby group with 4 updates #46

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

Bumps the ruby group with 4 updates: faker, rspec-rails, shoulda-matchers and sqlite3.

Updates faker from 3.2.3 to 3.3.0

Release notes

Sourced from faker's releases.

v3.3.0

v3.3.0 (2024-03-25)

Bug Fixes

Features

What's changed

Update local dependencies

New Contributors

Full Changelog: https://github.com/faker-ruby/faker/compare/v3.2.3...v3.3.0

Changelog

Sourced from faker's changelog.

v3.3.0 (2024-03-25)

Bug Fixes

Features

What's changed

Update local dependencies

New Contributors

Full Changelog: https://github.com/faker-ruby/faker/compare/v3.2.3...v3.3.0


Commits


Updates rspec-rails from 6.1.1 to 6.1.2

Changelog

Sourced from rspec-rails's changelog.

6.1.2 / 2024-03-19

Full Changelog

Bug Fixes:

  • Fix generated mailer paths to match Rails convention. (Patrício dos Santos, #2735)
  • Fix class in template for generator specs. (Nicolas Buduroi, #2744)
Commits


Updates shoulda-matchers from 6.1.0 to 6.2.0

Release notes

Sourced from shoulda-matchers's releases.

v6.2.0

6.2.0 - 2024-03-15

Bug fixes

Features

Improvements

#1543: thoughtbot/shoulda-matchers#1543 #1606: thoughtbot/shoulda-matchers#1606 #1607: thoughtbot/shoulda-matchers#1607 #1609: thoughtbot/shoulda-matchers#1609 #1610: thoughtbot/shoulda-matchers#1610 #1611: thoughtbot/shoulda-matchers#1611 #1612: thoughtbot/shoulda-matchers#1612 #1613: thoughtbot/shoulda-matchers#1613 #1615: thoughtbot/shoulda-matchers#1615 #1616: thoughtbot/shoulda-matchers#1616 #1617: thoughtbot/shoulda-matchers#1617

Changelog

Sourced from shoulda-matchers's changelog.

6.2.0 - 2024-03-15

Bug fixes

Features

Improvements

#1543: thoughtbot/shoulda-matchers#1543 #1606: thoughtbot/shoulda-matchers#1606 #1607: thoughtbot/shoulda-matchers#1607 #1609: thoughtbot/shoulda-matchers#1609 #1610: thoughtbot/shoulda-matchers#1610 #1611: thoughtbot/shoulda-matchers#1611 #1612: thoughtbot/shoulda-matchers#1612 #1613: thoughtbot/shoulda-matchers#1613 #1615: thoughtbot/shoulda-matchers#1615 #1616: thoughtbot/shoulda-matchers#1616 #1617: thoughtbot/shoulda-matchers#1617

Commits
  • efd1b39 feat: Add support for foreign_type qualifier on AssociationMatcher (#1609)
  • 6fb56db feat: Add have_delegated_type matcher (#1606)
  • d65c54b docs: update readme file with markdown templates [skip ci]
  • 2793b9b Lazy load ActionController::TestCase (#1613)
  • b18c50c docs: update readme file with markdown templates [skip ci]
  • 05f2c6f Call dynamic-readme reusable workflow (#1617)
  • 30407f2 Support association strict_loading option (#1607)
  • 6488e3a [skip ci] fix inline documentation about is_greater_than in validate_comparis...
  • a078b46 Allow beginless and endless ranges in validates_inclusion_of (#1615)
  • e2a6677 [skip ci] fix forgotten colon (#1612)
  • Additional commits viewable in compare view


Updates sqlite3 from 1.7.2 to 1.7.3

Release notes

Sourced from sqlite3's releases.

1.7.3 / 2024-03-15

Dependencies


sha256 checksums:

0ccb8c001cd2617f4801a2c816142d3c9bc299e3f3e0f49e03812f3610b0891c  sqlite3-1.7.3-aarch64-linux.gem
eb653026d44f8502b74564e585245485a5667d72f8888854e53c561f816541b0  sqlite3-1.7.3-arm-linux.gem
b956160cc882d2568f332f915c9fe27cae9a4521b202d6e7ea540171c88e4600  sqlite3-1.7.3-arm64-darwin.gem
8304a254e4fb0692e651b6f783e009415085f885d940c51c77981b8523511f45  sqlite3-1.7.3-x64-mingw-ucrt.gem
dde57850e92a7da0c7833dd904e666fe7baf382f1c7cabbec8e28a0005a4beea  sqlite3-1.7.3-x64-mingw32.gem
95543cad6bbdf1ba822526bcd0aba4a378887d9da906b8bfa250002745f3847e  sqlite3-1.7.3-x86-linux.gem
b88e117ae14b2c5b61a7eb14da24b3b0e93cd3e1c17774ff3b6e5a03ffe4e5b7  sqlite3-1.7.3-x86_64-darwin.gem
522a3285660dec8253465880c97980e873db0d79060900be8d14194217a3ee73  sqlite3-1.7.3-x86_64-linux.gem
fa77f63c709548f46d4e9b6bb45cda52aa3881aa12cc85991132758e8968701c  sqlite3-1.7.3.gem
Changelog

Sourced from sqlite3's changelog.

sqlite3-ruby Changelog

next / unreleased

(will be 2.0.0)

Ruby

This release drops support for Ruby 2.7. #453 @​flavorjones

Added

  • Database#busy_handler_timeout= introduced as an alternative to #busy_timeout= that can be used when it's desired to release the GVL between retries. [#443, #456] @​fractaledmind
  • Support the SUPER_JOURNAL flag which is an alias for MASTER_JOURNAL as of sqlite 3.33.0. #467 @​flavorjones
  • Statement#stat and Statement#memused introduced to report statistics. #461 @​fractaledmind
  • Statement#sql and Statement#expanded_sql introduced to retrieve the SQL statement associated with the Statement object. [#293, #498] @​tenderlove

Improved

Changed

  • Consistently use SQLite3::Exception or subclasses. Previously some Pragmas methods raised Exception, and Database#execute_batch2 and Database#load_extension raised RuntimeError. [#467, #490] @​flavorjones
  • Database#columns returns a list of internal frozen strings. [#155, #474, #486] @​tenderlove
  • Freeze results that come from the database. #480 @​tenderlove
  • The encoding of a Database is no longer cached. #485 @​tenderlove
  • Database#transaction returns the result of the block when used with a block. #508 @​alexcwatt
  • Database#execute_batch returns the result of the last statement executed. #512 @​alexcwatt

Removed

  • Removed class SQLite3::VersionProxy which has been deprecated since v1.3.2. #453 @​flavorjones
  • Removed class SQLite3::Translator and all related type translation methods. If you need to do type translation on values returned from the statement object, please wrap it with a delegate object. Here is an example of using a delegate class to implement type translation:
require "sqlite3"
require "delegate"
</tr></table> 

... (truncated)

Commits
  • bcba930 version bump to v1.7.3
  • f821184 ci: run gem-install and sqlite3-ruby workflows on stable branches
  • c203fa2 Merge pull request #514 from sparklemotion/flavorjones-sqlite-3.45.2_1-7-stable
  • faf32b5 doc: update CHANGELOG
  • 7445a37 dep: update vendored sqlite to v3.45.2
  • 10cbc45 doc: fix date in CHANGELOG
  • See full diff 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 5 months ago

Looks like these dependencies are no longer updatable, so this is no longer needed.