Skip to content

Update bundler non-major dependencies to v1.195.0 #1462

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 10, 2025

This PR contains the following updates:

Package Change Age Confidence
aws-sdk-s3 (source, changelog) 1.191.0 -> 1.195.0 age confidence
aws-sdk-sqs (source, changelog) 1.96.0 -> 1.99.0 age confidence
json 2.12.2 -> 2.13.2 age confidence
pg 1.5.9 -> 1.6.0 age confidence
puma 6.6.0 -> 6.6.1 age confidence
rubocop (source, changelog) 1.77.0 -> 1.79.1 age confidence
scout_apm 5.6.4 -> 5.6.5 age confidence
sqlite3 2.7.1 -> 2.7.3 age confidence

Release Notes

aws/aws-sdk-ruby (aws-sdk-s3)

v1.195.0

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

v1.194.0

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

v1.193.0

  • Feature - Amazon S3 Metadata live inventory tables provide a queryable inventory of all the objects in your general purpose bucket so that you can determine the latest state of your data. To help minimize your storage costs, use journal table record expiration to set a retention period for your records.

v1.192.0

  • Feature - Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations
aws/aws-sdk-ruby (aws-sdk-sqs)

v1.99.0

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

v1.98.0

  • Feature - Documentation updates for Amazon SQS fair queues feature.

v1.97.0

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

v1.79.1

Compare Source

Bug fixes
  • #​14390: Fix wrong autocorrect for Style/ArgumentsForwarding when the method arguments contain *, ** or &, and the method call contains self as the first argument. ([@​earlopain][])
  • #​14399: Fix false positives for Layout/EmptyLinesAfterModuleInclusion when prepend is used with block methods. ([@​koic][])
  • #​14396: Fix a false positive for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside a ternary operator. ([@​koic][])
  • #​14383: Fix false positives for Lint/UselessAssignment when duplicate assignments in if branch inside a loop. ([@​koic][])
  • #​14394: Fix false positive for Lint/UselessAssignment with retry in rescue branch. ([@​earlopain][])
  • #​14386: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside array or hash literals. ([@​koic][])
  • #​14395: Fix LSP handling of URI-encoded paths with spaces. ([@​hakanensari][])
Changes

v1.79.0

Compare Source

New features
Bug fixes
  • #​14373: Fix an error for Style/ParallelAssignment when a lambda with parallel assignment is used on the RHS. ([@​koic][])
  • #​14370: Fix comment duplication bug in Style/AccessorGrouping separated autocorrect. ([@​r7kamura][])
  • #​14377: Fix a false positive for Lint/UselessAssignment when the assignment is inside a loop body. ([@​5hun-s][])
  • #​14355: Fix a false negative for Style/RedundantParentheses when using parentheses around a rescue expression on a one-line. ([@​koic][])
  • #​14354: Fix incorrect autocorrect for Style/AccessModifierDeclarations when using a grouped access modifier declaration. ([@​girasquid][])
  • #​14367: Fix an incorrect autocorrect for Style/SingleLineMethods when defining a single-line singleton method. ([@​koic][])
  • #​14344: Fix incorrect autocorrect for Style/SingleLineMethods when a single-line method definition contains a modifier. ([@​koic][])
  • #​14350: Fix Naming/MethodName cop false positives with define_method and operator names. ([@​viralpraxis][])
  • #​14333: Fix Naming/PredicateMethod ignoring the implicit nil from missing else branches. ([@​earlopain][])
  • #​14356: Fix Style/ItBlockParameter cop error on always style and missing block body. ([@​viralpraxis][])
  • #​14362: Update Lint/RequireRangeParentheses to not register false positives when range elements span multiple lines. ([@​dvandersluis][])
  • #​14309: Update Style/SoleNestedConditional to properly correct assignments within and. ([@​dvandersluis][])
Changes
  • #​14358: Add tsort gem to runtime dependency for Ruby 3.5-dev. ([@​koic][])
  • #​14322: Expand the scope of Style/ItAssignment to consider all local variable and method parameter names. ([@​dvandersluis][])
  • #​14378: Change Layout/SpaceAroundKeyword to offend for missing whitespace between return and opening parenthesis. ([@​lovro-bikic][])
  • #​14360: Make Layout/SpaceAroundOperators aware of alternative and as pattern matchings. ([@​koic][])
  • #​14375: Make Lint/RedundantSafeNavigation aware of builtin convert methods to_s, to_i, to_f, to_a, and to_h. ([@​koic][])
  • #​13835: Add InferNonNilReceiver config to Lint/RedundantSafeNavigation to check previous code paths if the receiver is non-nil. ([@​fatkodima][])
  • #​14381: Offend array1.any? { |elem| array2.member?(elem) } and array1.none? { |elem| array2.member?(elem) } in Style/ArrayIntersect. ([@​lovro-bikic][])

v1.78.0

Compare Source

New features
Bug fixes
  • #​14343: Fix autocorrect code for Style/HashConversion to avoid syntax error. ([@​koic][])
  • #​14346: Avoid requiring parentheses for Style/SingleLineMethods. ([@​koic][])
  • #​14339: Fix bug where specifying --format disables parallelization. ([@​r7kamura][])
  • #​14300: Fix false positives for Lint/DuplicateMethods cop when self-alias trick is used. ([@​viralpraxis][])
  • #​14329: Fix false positives for Lint/LiteralAsCondition when a literal is used inside || in case condition. ([@​koic][])
  • #​14326: Fix additional autocorrection errors in Style/HashConversion for nested Hash[] calls. ([@​dvandersluis][])
  • #​14031: Honor --config options on server mode. ([@​steiley][])
  • #​14319: Fix the following incorrect autocorrect for Lint/RedundantTypeConversion when using parentheses with no arguments or any arguments. ([@​koic][])
  • #​14336: Fix incorrect autocorrect for Style/ItBlockParameter when using a single numbered parameter after multiple numbered parameters in a method chain. ([@​koic][])
  • #​11782: Move pending cops warning out of ConfigLoader. ([@​nobuyo][])
Changes
  • #​14318: Add WaywardPredicates config to Naming/PredicateMethod to handle methods that look like predicates but aren't. ([@​dvandersluis][])
scoutapp/scout_apm_ruby (scout_apm)

v5.6.5

Compare Source

  • Improve error capture API (#​555)
  • Add git sha and agent time tracking to error payloads (#​554)
  • Add support for named spaced jobs in sampling (#​549)

Configuration

📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@mitlib mitlib temporarily deployed to thesis-submit-pr-1462 May 10, 2025 16:21 Inactive
@coveralls
Copy link

coveralls commented May 10, 2025

Coverage Status

coverage: 98.312%. remained the same
when pulling 1eeac33 on renovate/bundler-minor-patch
into 3e33fd2 on main.

@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 2ed1888 to 7bfee50 Compare May 15, 2025 04:15
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.185.0 Update bundler non-major dependencies to v1.186.0 May 15, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 7bfee50 to 63befbf Compare May 17, 2025 23:36
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.186.0 Update bundler non-major dependencies to v1.186.1 May 17, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 36c1d51 to 250e0fd Compare May 30, 2025 12:10
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.186.1 Update bundler non-major dependencies to v1.188.0 May 30, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 1532a35 to be43441 Compare June 2, 2025 21:09
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.188.0 Update bundler non-major dependencies to v1.189.0 Jun 2, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from e3a062d to ad80d32 Compare June 10, 2025 23:59
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.189.0 Update bundler non-major dependencies to v1.189.1 Jun 10, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 43ef4a6 to dfa38e9 Compare June 18, 2025 22:59
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.189.1 Update bundler non-major dependencies to v1.190.0 Jun 18, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from b61ee4d to eefd637 Compare June 25, 2025 21:41
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.190.0 Update bundler non-major dependencies to v1.191.0 Jun 25, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from b02da86 to c2615b3 Compare June 30, 2025 15:29
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.191.0 Update bundler non-major dependencies to v1.191.0 - autoclosed Jun 30, 2025
@renovate renovate bot closed this Jun 30, 2025
@renovate renovate bot deleted the renovate/bundler-minor-patch branch June 30, 2025 19:22
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.191.0 - autoclosed Update bundler non-major dependencies to v1.191.0 Jul 3, 2025
@renovate renovate bot reopened this Jul 3, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 1d461c3 to c2615b3 Compare July 3, 2025 03:45
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.191.0 Update dependency aws-sdk-s3 to v1.192.0 Jul 3, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from c2615b3 to 82432e9 Compare July 3, 2025 08:14
@renovate renovate bot changed the title Update dependency aws-sdk-s3 to v1.192.0 Update bundler non-major dependencies to v1.192.0 Jul 5, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from b50d734 to 0349f27 Compare July 8, 2025 08:44
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 0349f27 to 52ce41e Compare July 15, 2025 19:39
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.192.0 Update bundler non-major dependencies to v1.193.0 Jul 15, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from e051809 to 9a8168f Compare July 22, 2025 03:12
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.193.0 Update bundler non-major dependencies to v1.194.0 Jul 22, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 6 times, most recently from 0fc9e0d to 2aa6ef3 Compare July 28, 2025 14:33
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 0d55144 to 7bda389 Compare July 31, 2025 11:03
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 7bda389 to 1eeac33 Compare August 1, 2025 00:43
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.194.0 Update bundler non-major dependencies to v1.195.0 Aug 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants