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 rails_default group across 1 directory with 5 updates #46

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

Bumps the rails_default group with 5 updates in the / directory:

Package From To
tailwindcss-rails 2.7.6 2.7.9
stripe 12.6.0 13.0.0
pagy 9.0.9 9.1.0
rubocop-rspec 3.0.5 3.1.0
slim_lint 0.29.0 0.31.0

Updates tailwindcss-rails from 2.7.6 to 2.7.9

Release notes

Sourced from tailwindcss-rails's releases.

v2.7.9 / 2024-10-10

  • Fix the scaffold form template to render text forms and check boxes properly in all versions of Rails. (#418) @​Earlopain

v2.7.8 / 2024-10-08

v2.7.7 / 2024-10-02

Changelog

Sourced from tailwindcss-rails's changelog.

v2.7.9 / 2024-10-10

  • Fix the scaffold form template to render text forms and check boxes properly in all versions of Rails. (#418) @​Earlopain

v2.7.8 / 2024-10-08

v2.7.7 / 2024-10-02

Commits
  • dc3ae9a version bump to v2.7.9
  • 0c6b495 Handle both rails 7.2 and rails 8.0 field types
  • 2a13fdd version bump to v2.7.8
  • dbda064 Fix naming regarding Rails form naming
  • d0c0590 version bump to v2.7.7
  • 21bf2ac Merge pull request #408 from rails/flavorjones-rails8beta1-auth-templates
  • 9dee33a Make copies of the auth templates for Rails 8 beta1
  • bed38c6 test: add coverage for generator templates
  • 4fe7139 Merge pull request #407 from seanpdoyle/authentication-templates
  • 328b96b Rename Authentication template files
  • Additional commits viewable in compare view

Updates stripe from 12.6.0 to 13.0.0

Release notes

Sourced from stripe's releases.

v13.0.0

  • #1458 Support for APIs in the new API version 2024-09-30.acacia

    This release changes the pinned API version to 2024-09-30.acacia. Please read the API Upgrade Guide and carefully review the API changes before upgrading.

    ⚠️ Breaking changes

    Please refer to our migration guide for v13 for more information about the backwards incompatible changes.

    StripeClient and related changes

    • Move StripeClient and requestor logic to APIRequestor.
      • StripeClient#request is still available, but is deprecated and will be removed. We encourage StripeClient#raw_request as a replacement (see other breaking changes for more detail).
    • Repurpose and introduce StripeClient as the the entry-point to the service-based pattern, a new interface for calling the Stripe API with many benefits over the existing resource-based paradigm. Services are available under the v1 and v2 accessors.
      • No global config: you can simultaneously use multiple clients with different configuration options (such as API keys)
      • No extra API calls. All API endpoints can be accessed with a single method call. You don't have to call retrieve before doing an update.
      • No static methods. Much easier mocking.

    Other breaking changes

    • Adjust default values around retries for HTTP requests. You can use the old defaults by setting them explicitly. New values are:
      • max retries: 0 -> 2
      • max retry delay (seconds) 2 -> 5
    • Remove StripeClient#connection_manager. This was a legacy method from years ago.
    • Singleton retrieve method now requires params to be passed as the first argument. Existing calls to singleton retrieve method with only opts argument will have to be updated to account for the addition of params argument.
      params = { expand: ["available"] }
      opts = { stripe_account: "acct_123" }
       No longer works
      Stripe::Balance.retrieve(opts)
       Correct way to call retrieve method
      Stripe::Balance.retrieve(params, opts)

    • Moved the Stripe.raw_request() method that was recently added to StripeClient. This will use the configuration set on the StripeClient instead of the global configuration used before.
    • Remove APIResource.request. Instead, use StripeClient#raw_request now.
      # Instead of
      Stripe::APIResource.request(:get, "/v1/endpoint", params, opts)
      do
      client = Stripe::StripeClient.new(...)
      resp = client.raw_request(:get, "/v1/endpoint", params: params, opts: opts)

    • Add an additional parameter to APIResource.execute_resource_request. However, we discourage use of this in favor of StripeClient#raw_request.
      APIResource.execute_resource_request(method, url, params = {}, opts = {}, usage = [])
      # is now, with base_address being one of [:api, :files, :connect, :meter_events]
      APIResource.execute_resource_request(method, url, base_address = :api, params = {}, opts = {}, usage = [])

... (truncated)

Changelog

Sourced from stripe's changelog.

13.0.0 - 2024-10-01

  • #1458 Support for APIs in the new API version 2024-09-30.acacia

    This release changes the pinned API version to 2024-09-30.acacia. Please read the API Upgrade Guide and carefully review the API changes before upgrading.

    ⚠️ Breaking changes

    Please refer to our migration guide for v13 for more information about the backwards incompatible changes.

    StripeClient and related changes

    • Move StripeClient and requestor logic to APIRequestor.
      • StripeClient#request is still available, but is deprecated and will be removed. We encourage StripeClient#raw_request as a replacement (see other breaking changes for more detail).
    • Repurpose and introduce StripeClient as the the entry-point to the service-based pattern, a new interface for calling the Stripe API with many benefits over the existing resource-based paradigm. Services are available under the v1 and v2 accessors.
      • No global config: you can simultaneously use multiple clients with different configuration options (such as API keys)
      • No extra API calls. All API endpoints can be accessed with a single method call. You don't have to call retrieve before doing an update.
      • No static methods. Much easier mocking.

    Other breaking changes

    • Adjust default values around retries for HTTP requests. You can use the old defaults by setting them explicitly. New values are:
      • max retries: 0 -> 2
      • max retry delay (seconds) 2 -> 5
    • Remove StripeClient#connection_manager. This was a legacy method from years ago.
    • Singleton retrieve method now requires params to be passed as the first argument. Existing calls to singleton retrieve method with only opts argument will have to be updated to account for the addition of params argument.
      params = { expand: ["available"] }
      opts = { stripe_account: "acct_123" }
       No longer works
      Stripe::Balance.retrieve(opts)
       Correct way to call retrieve method
      Stripe::Balance.retrieve(params, opts)

    • Moved the Stripe.raw_request() method that was recently added to StripeClient. This will use the configuration set on the StripeClient instead of the global configuration used before.
    • Remove APIResource.request. Instead, use StripeClient#raw_request now.
      # Instead of
      Stripe::APIResource.request(:get, "/v1/endpoint", params, opts)
      do
      client = Stripe::StripeClient.new(...)
      resp = client.raw_request(:get, "/v1/endpoint", params: params, opts: opts)

    • Add an additional parameter to APIResource.execute_resource_request. However, we discourage use of this in favor of StripeClient#raw_request.
      APIResource.execute_resource_request(method, url, params = {}, opts = {}, usage = [])
      # is now, with base_address being one of [:api, :files, :connect, :meter_events]
      APIResource.execute_resource_request(method, url, base_address = :api, params = {}, opts = {}, usage = [])

... (truncated)

Commits

Updates pagy from 9.0.9 to 9.1.0

Release notes

Sourced from pagy's releases.

Version 9.1.0

✴ What's new in 9.0+ ✴

  • Wicked-fast Keyset Pagination for big data! It works with ActiveRecord::Relation and Sequel::Dataset sets.
  • More Playground Apps to showcase, clone and develop pagy APPs without any setup on your side
  • Lots of refactorings and optimizations
  • See the Changelog for possible breaking changes

Changes in 9.1.0

  • Add Dzongkha (dz locale) (#741)

CHANGELOG

Changelog

Sourced from pagy's changelog.

Version 9.1.0

  • Add Dzongkha (dz locale) (#741)
Commits

Updates rubocop-rspec from 3.0.5 to 3.1.0

Release notes

Sourced from rubocop-rspec's releases.

RuboCop RSpec v3.1.0

  • Add RSpec/StringAsInstanceDoubleConstant to check for and correct strings used as instance_doubles. (@​corsonknowles)
  • Fix false-positive for RSpec/UnspecifiedException when a method is literally named raise_exception. (@​aarestad)
  • Fix false-positive for RSpec/UnspecifiedException when not_to raise_error is used within a block. (@​aarestad, @​G-Rath)
Changelog

Sourced from rubocop-rspec's changelog.

3.1.0 (2024-10-01)

  • Add RSpec/StringAsInstanceDoubleConstant to check for and correct strings used as instance_doubles. ([@​corsonknowles])
  • Fix false-positive for RSpec/UnspecifiedException when a method is literally named raise_exception. ([@​aarestad])
  • Fix false-positive for RSpec/UnspecifiedException when not_to raise_error is used within a block. ([@​aarestad], [@​G-Rath])
Commits
  • 5e06176 Merge pull request #1963 from rubocop/release
  • 34c042e Bump version to v3.1.0
  • dea7de9 Merge pull request #1957 from corsonknowles/master
  • 324552c Add RSpec/StringAsInstanceDoubleConstant
  • 5959ad6 Merge pull request #1962 from G-Rath/add-spec
  • 1f48c7b test: showcase RSpec/UnspecifiedException block/chain confusion is fixed
  • 79e0bf7 Merge pull request #1960 from aarestad/unspecified-exception-fix
  • a59315f fix false positive on UnspecifiedException cop when function is named raise_e...
  • cf0ac65 Merge pull request #1958 from rubocop/cop-config-order
  • 5b91d18 Merge pull request #1959 from rubocop/fix-RedundantSourceRange-offenses
  • Additional commits viewable in compare view

Updates slim_lint from 0.29.0 to 0.31.0

Release notes

Sourced from slim_lint's releases.

0.30.0

  • Speed up load time by preferring require_relative in internal gem file loading
Changelog

Sourced from slim_lint's changelog.

0.31.0

  • Add GitHub reporter

0.30.0

  • Speed up load time by preferring require_relative in internal gem file loading
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 rails_default group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tailwindcss-rails](https://github.com/rails/tailwindcss-rails) | `2.7.6` | `2.7.9` |
| [stripe](https://github.com/stripe/stripe-ruby) | `12.6.0` | `13.0.0` |
| [pagy](https://github.com/ddnexus/pagy) | `9.0.9` | `9.1.0` |
| [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) | `3.0.5` | `3.1.0` |
| [slim_lint](https://github.com/sds/slim-lint) | `0.29.0` | `0.31.0` |



Updates `tailwindcss-rails` from 2.7.6 to 2.7.9
- [Release notes](https://github.com/rails/tailwindcss-rails/releases)
- [Changelog](https://github.com/rails/tailwindcss-rails/blob/v2.7.9/CHANGELOG.md)
- [Commits](rails/tailwindcss-rails@v2.7.6...v2.7.9)

Updates `stripe` from 12.6.0 to 13.0.0
- [Release notes](https://github.com/stripe/stripe-ruby/releases)
- [Changelog](https://github.com/stripe/stripe-ruby/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-ruby@v12.6.0...v13.0.0)

Updates `pagy` from 9.0.9 to 9.1.0
- [Release notes](https://github.com/ddnexus/pagy/releases)
- [Changelog](https://github.com/ddnexus/pagy/blob/master/CHANGELOG.md)
- [Commits](ddnexus/pagy@9.0.9...9.1.0)

Updates `rubocop-rspec` from 3.0.5 to 3.1.0
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec@v3.0.5...v3.1.0)

Updates `slim_lint` from 0.29.0 to 0.31.0
- [Release notes](https://github.com/sds/slim-lint/releases)
- [Changelog](https://github.com/sds/slim-lint/blob/main/CHANGELOG.md)
- [Commits](sds/slim-lint@v0.29.0...v0.31.0)

---
updated-dependencies:
- dependency-name: tailwindcss-rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rails_default
- dependency-name: stripe
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rails_default
- dependency-name: pagy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: rubocop-rspec
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: slim_lint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Oct 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2024

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

@dependabot dependabot bot closed this Oct 21, 2024
@dependabot dependabot bot deleted the dependabot/bundler/rails_default-ed83d3ae90 branch October 21, 2024 19:31
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.

0 participants