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 deps group with 4 updates #1749

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 11, 2024

Bumps the deps group with 4 updates: audited, pagy, aws-sdk-s3 and appsignal.

Updates audited from 5.7.0 to 5.8.0

Changelog

Sourced from audited's changelog.

5.8.0 (2024-11-08)

Commits
  • f935285 Bump version
  • 05b7aad Merge pull request #739 from collectiveidea/rails8
  • e64b4e3 Add Rails 8.0 to build matrix
  • a1847f6 Merge pull request #734 from mohammednasser-32/allow_calling_audited_multiple...
  • b658e95 Merge pull request #738 from BranLiang/main
  • f2c9d7d Relax gemspec to allow Rails 8.1
  • 882d1cb remove log message
  • d1c1b68 return if options did not change
  • e3a9d1c allow calling audited multiple times
  • 8dc7184 Merge pull request #729 from mattbrictson/ci-rails-main
  • Additional commits viewable in compare view

Updates pagy from 9.1.1 to 9.2.1

Release notes

Sourced from pagy's releases.

Version 9.2.1

✴ 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.2.1

  • Improve bin/pagy to dynamically find apps and descriptions
  • Apps refactoring:
    • Update rails to 8.0
    • Replace rails AR keyset apps with sinatra apps
    • Improve consistency

CHANGELOG

Version 9.2.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.2.0

  • Simplify the keyset API:
    • Deprecate the :after_latest variable in favour of :filter_newest
    • Add the keyset argument to the :filter_newest lambda
    • Rename protected after_latest_query > filter_newest_query

CHANGELOG

Changelog

Sourced from pagy's changelog.

Version 9.2.1

  • Improve bin/pagy to dynamically find apps and descriptions
  • Apps refactoring:
    • Update rails to 8.0
    • Replace rails AR keyset apps with sinatra apps
    • Improve consistency

Version 9.2.0

  • Simplify the keyset API:
    • Deprecate the :after_latest variable in favour of :filter_newest
    • Add the keyset argument to the :filter_newest lambda
    • Rename protected after_latest_query > filter_newest_query
Commits
  • 0adb448 Merge branch 'dev'
  • ab6d98e Version 9.2.1
  • 442fab5 Update javascript packages
  • d75de65 Absolute path for pagy in bundle exec command in cy scripts
  • 3843253 Improve bin/pagy to dynamically find apps and descriptions
  • 2a89562 Apps refactoring:
  • f0ee8b6 Add keyset apps to the bump script
  • f4b67d6 Merge branch 'dev'
  • f080628 Version 9.2.0
  • 85c1340 Simplify the keyset API:
  • Additional commits viewable in compare view

Updates aws-sdk-s3 from 1.169.0 to 1.170.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.170.0 (2024-11-06)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.
Commits

Updates appsignal from 4.1.2 to 4.1.3

Changelog

Sourced from appsignal's changelog.

4.1.3

Published on 2024-11-07.

Added

  • Add activate_if_environment helper for Appsignal.configure. Avoid having to add conditionals to your configuration file and use the activate_if_environment helper to specify for which environments AppSignal should become active. AppSignal will automatically detect the environment and activate itself it the environment matches one of the listed environments.

    # Before
    Appsignal.configure do |config|
      config.active = Rails.env.production? || Rails.env.staging?
    end
    After
    Appsignal.configure do |config|
    Activate for one environment
    config.activate_if_environment(:production)
    Activate for multiple environments
    config.activate_if_environment(:production, :staging)
    end

    (patch ff31be88)

  • Add a hostname AppSignal tag automatically, based on the OpenTelemetry host.name resource attribute. (Beta only) (patch 35449268)

  • Add incident error count metric for enriched OpenTelemetry traces. (Beta only) (patch 35449268)

  • Set the app revision config option for Scalingo deploys automatically. If the CONTAINER_VERSION system environment variable is present, it will use used to set the revision config option automatically. Overwrite it's value by configuring the revision config option for your application. (patch 35449268)

Changed

  • Ignore the Rails healthcheck endpoint (Rails::HealthController#show) by default for Rails apps.

    If the ignore_actions option is set in the config/appsignal.yml file, the default is overwritten. If the APPSIGNAL_IGNORE_ACTIONS environment variable is set, the default is overwritten. When using the Appsignal.configure helper, add more actions to the default like so:

    # config/appsignal.rb
    Appsignal.configure do |config|
      # Add more actions to ignore
      config.ignore_actions << "My action"
    end

    To overwrite the default using the Appsignal.configure helper, do either of the following:

    # config/appsignal.rb
    Appsignal.configure do |config|

... (truncated)

Commits
  • bde88e4 Publish package v4.1.3
  • 99884fd Merge pull request #1329 from appsignal/update-agent/0.35.28
  • 79ac5bb Update agent to version 0.35.28
  • 3544926 Update agent to version 0.35.27 (#1326)
  • b2c2499 Lower diagnose log message to info level (#1325)
  • ff31be8 Add Config active_if_environment helper (#1323)
  • a5600bb Refactor same config detection (#1322)
  • eeb5fab Merge pull request #1321 from appsignal/ignore-rails-healthcheck
  • 4aaac06 Fix duplicate Railtie default config in specs
  • af71fb9 Automatically ignore Rails' health-check
  • 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 deps group with 4 updates: [audited](https://github.com/collectiveidea/audited), [pagy](https://github.com/ddnexus/pagy), [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) and [appsignal](https://github.com/appsignal/appsignal-ruby).


Updates `audited` from 5.7.0 to 5.8.0
- [Changelog](https://github.com/collectiveidea/audited/blob/main/CHANGELOG.md)
- [Commits](collectiveidea/audited@v5.7.0...v5.8.0)

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

Updates `aws-sdk-s3` from 1.169.0 to 1.170.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `appsignal` from 4.1.2 to 4.1.3
- [Changelog](https://github.com/appsignal/appsignal-ruby/blob/main/CHANGELOG.md)
- [Commits](appsignal/appsignal-ruby@v4.1.2...v4.1.3)

---
updated-dependencies:
- dependency-name: audited
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: pagy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-sdk-s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: appsignal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added ruby Pull requests that update Ruby code 📦 Dependency Update Updating one or more dependencies labels Nov 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📦 Dependency Update Updating one or more dependencies ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants