-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update all non-major dependencies #272
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Container Scanning Status: ❌ Failure
|
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
12 times, most recently
from
December 17, 2024 21:33
4490b51
to
77150da
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
10 times, most recently
from
December 25, 2024 10:06
f455ac5
to
1c41d7d
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
7 times, most recently
from
January 1, 2025 08:28
a66f305
to
0545132
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
10 times, most recently
from
January 9, 2025 22:29
5e07c93
to
4949dca
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 10, 2025 21:47
4949dca
to
a0f754a
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
hackartisan
approved these changes
Jan 13, 2025
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.22.13
->2.22.33
1.4.9
->1.5.0
1.6.3
->1.7.0
3.3.6-browsers
->3.4.1-browsers
1.9.2
->1.10.0
1.6.24
->1.7.0
12.4.1
->12.5.0
2.0.3
->2.1.0
6.1.0
->6.1.1
22.12.0
->22.13.0
0.14.2
->0.15.2
8.0.0
->8.0.1
2.27.0
->2.28.0
3.3.6
->3.4.1
3.3.6-slim
->3.4.1-slim
1.82.0
->1.83.1
6.0.3
->6.0.7
Release Notes
aws/aws-cli (awscli)
v2.22.33
Compare Source
v2.22.32
Compare Source
v2.22.31
Compare Source
v2.22.30
Compare Source
v2.22.29
Compare Source
v2.22.28
Compare Source
v2.22.27
Compare Source
v2.22.26
Compare Source
v2.22.25
Compare Source
v2.22.24
Compare Source
v2.22.23
Compare Source
v2.22.22
Compare Source
v2.22.21
Compare Source
v2.22.20
Compare Source
v2.22.19
Compare Source
v2.22.18
Compare Source
v2.22.17
Compare Source
v2.22.16
Compare Source
v2.22.15
Compare Source
v2.22.14
Compare Source
capistrano/rails (capistrano-rails)
v1.7.0
: 1.7.0Compare Source
✨ New Features
.manifest.json
in default assets_manifests (#265) @taketo1113ruby/debug (debug)
v1.10.0
Compare Source
What's Changed
$FILENAME
in globals by @nyz93 in https://github.com/ruby/debug/pull/1105puts
without argument by @ko1 in https://github.com/ruby/debug/pull/1124port_range
lvar is not defined by @ko1 in https://github.com/ruby/debug/pull/1126New Contributors
Full Changelog: ruby/debug@v1.9.2...v1.10.0
fly-apps/dockerfile-rails (dockerfile-rails)
v1.7.0
Compare Source
What's Changed
Full Changelog: fly-apps/dockerfile-rails@v1.6.25...v1.7.0
v1.6.25
Compare Source
lbeder/health-monitor-rails (health-monitor-rails)
v12.5.0
Compare Source
v12.4.2
Compare Source
rails/importmap-rails (importmap-rails)
v2.1.0
Compare Source
What's Changed
bin/importmap pristine
which redownloads pinned packages by @martinemde in https://github.com/rails/importmap-rails/pull/271New Contributors
Full Changelog: rails/importmap-rails@v2.0.3...v2.1.0
nodejs/node (node)
v22.13.0
Compare Source
rails/rails (rails)
v8.0.1
: 8.0.1Compare Source
Active Support
Fix a bug in
ERB::Util.tokenize
that causes incorrect tokenization when ERB tags are preceeded by multibyte characters.Martin Emde
Restore the ability to decorate methods generated by
class_attribute
.It always has been complicated to use Module#prepend or an alias method chain
to decorate methods defined by
class_attribute
, but became even harder in 8.0.This capability is now supported for both reader and writer methods.
Jean Boussier
Active Model
Active Record
Fix removing foreign keys with :restrict action for MySQ
fatkodima
Fix a race condition in
ActiveRecord::Base#method_missing
when lazily defining attributes.If multiple thread were concurrently triggering attribute definition on the same model,
it could result in a
NoMethodError
being raised.Jean Boussier
Fix MySQL default functions getting dropped when changing a column's nullability.
Bastian Bartmann
Fix
add_unique_constraint
/add_check_constraint
/add_foreign_key
to be revertible when given invalid options.fatkodima
Fix asynchronous destroying of polymorphic
belongs_to
associations.fatkodima
Fix
insert_all
to not update existing records.fatkodima
NOT VALID
constraints should not dump increate_table
.Ryuta Kamizono
Fix finding by nil composite primary key association.
fatkodima
Properly reset composite primary key configuration when setting a primary key.
fatkodima
Fix Mysql2Adapter support for prepared statements
Using prepared statements with MySQL could result in a
NoMethodError
exception.Jean Boussier, Leo Arnold, zzak
Fix parsing of SQLite foreign key names when they contain non-ASCII characters
Zacharias Knudsen
Fix parsing of MySQL 8.0.16+ CHECK constraints when they contain new lines.
Steve Hill
Ensure normalized attribute queries use
IS NULL
consistently fornil
and normalizednil
values.Joshua Young
Fix
sum
when performing a grouped calculation.User.group(:friendly).sum
no longer worked. This is fixed.Edouard Chin
Restore back the ability to pass only database name to
DATABASE_URL
.fatkodima
Action View
Fix a crash in ERB template error highlighting when the error occurs on a
line in the compiled template that is past the end of the source template.
Martin Emde
Improve reliability of ERB template error highlighting.
Fix infinite loops and crashes in highlighting and
improve tolerance for alternate ERB handlers.
Martin Emde
Action Pack
Add
ActionDispatch::Request::Session#store
method to conform Rack spec.Yaroslav
Active Job
Avoid crashing in Active Job logger when logging enqueueing errors
ActiveJob.perform_all_later
could fail with aTypeError
when allprovided jobs failed to be enqueueed.
Efstathios Stivaros
Action Mailer
Action Cable
Ensure the Postgresql adapter always use a dedicated connection even during system tests.
Fix an issue with the Action Cable Postgresql adapter causing deadlock or various weird
pg client error during system tests.
Jean Boussier
Active Storage
Action Mailbox
Action Text
Railties
Skip generation system tests related code for CI when
--skip-system-test
is given.fatkodima
Don't add bin/thrust if thruster is not in Gemfile.
Étienne Barrié
Don't install a package for system test when applications don't use it.
y-yagi
Guides
v8.0.0.1
: 8.0.0.1Compare Source
Active Support
Active Model
Active Record
Action View
Action Pack
Add validation to content security policies to disallow spaces and semicolons.
Developers should use multiple arguments, and different directive methods instead.
[CVE-2024-54133]
Gannon McGibbon
Active Job
Action Mailer
Action Cable
Active Storage
Action Mailbox
Action Text
Update vendored trix version to 2.1.10
John Hawthorn
Railties
Guides
rubocop/rubocop-rails (rubocop-rails)
v2.28.0
Compare Source
New features
AllCops: MigratedSchemaVersion
config. ([@koic][])Bug fixes
Rails/SelectMap
whenselect
has no receiver and method chains are used. ([@masato-bkn][])Rails/RedundantActiveRecordAllMethod
when usingall
method in block. ([@masato-bkn][])Rails/FilePath
cop error onjoin
method with implicit receiver. ([@viralpraxis][])Rails/FilePath
cop error in case of extra operations inRails.root
interpolation. ([@viralpraxis][])Rails/FilePath
cop error with rescuedRails.root
. ([@viralpraxis][])Changes
Rails/Pluck
to ignoremap/collect
when used inside blocks to prevent potential N+1 queries. ([@masato-bkn][])sass/dart-sass (sass)
v1.83.1
Compare Source
Fix a bug where
--quiet-deps
would get deactivated for@content
blocks,even when those blocks were entirely contained within dependencies.
Include deprecation IDs in deprecation warnings to make it easier to determine
what to pass to
--silence-deprecation
or--fatal-deprecation
.v1.83.0
Compare Source
vitejs/vite (vite)
v6.0.7
Compare Source
minify
whenbuilder.sharedPlugins: true
(#19025) (f7b1964), closes #19025vite-ignore
attribute for inline script (#19062) (a492253), closes #19062v6.0.6
Compare Source
fetchModule
-side resolve (#18361) (9f10261), closes #18361build.target
(#19047) (0e9e81f), closes #19047v6.0.5
Compare Source
v6.0.4
Compare Source
this.resolve
skipSelf should not skip for differentid
orimport
(#18903) (4727320), closes #18903pluginContainer.getModuleInfo
(#18895) (258cdd6), closes #18895url()
when lightningcss is used (#18997) (3734f80), closes #18997true
(#18899) (8a6bb4e), closes #18899handleInvoke
(#18902) (27f691b), closes #18902ModuleRunnerTransport
invoke
API (#18865) (e5f5301), closes #18865Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.