Update all non-major dependencies#300
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Container Scanning Status: ❌ Failure |
e342687 to
f06ce3f
Compare
51d8585 to
528af0d
Compare
dacd859 to
ec9a89a
Compare
3f808f3 to
049f448
Compare
049f448 to
3d3bb36
Compare
Contributor
Author
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in 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.6.5→2.7.50.4.2→0.5.10.6.01.23.0→1.24.31.24.5(+1)2.3.7→2.3.8"6.5.5"→"6.6.0"6.6.17.6.2→7.7.18.5.13→8.5.148.5.154.0.2→4.0.44.0.54.0.2-slim→4.0.3-slim4.0.5-slim(+1)0.48.0→0.58.30.59.2(+2)4.4.2→4.5.02.9.3-aarch64-linux-gnu→2.9.48.0.10→8.0.118.0.14(+2)5.2.1→5.2.23.10.0→3.11.03.5.32→3.5.34Release Notes
ctran/annotate_models (annotate)
v2.7.5Compare Source
See https://github.com/ctran/annotate_models/releases/tag/v2.7.5
v2.7.4Compare Source
v2.7.3Compare Source
See https://github.com/ctran/annotate_models/releases/tag/v2.7.3
v2.7.2Compare Source
See https://github.com/ctran/annotate_models/releases/tag/v2.7.2
v2.7.1Compare Source
See https://github.com/ctran/annotate_models/releases/tag/v2.7.1
v2.7.0Compare Source
See https://github.com/ctran/annotate_models/releases/tag/v2.7.0
v2.6.10: Revert incompatible changeCompare Source
Revert "Prefer SQL column type over normalized AR type"
v2.6.9Compare Source
v2.6.8Compare Source
options[:model_dir]is specified, #234v2.6.7Compare Source
options[:model_dir]is specified, #234v2.6.6Compare Source
rails/bootsnap (bootsnap)
v1.24.3Compare Source
1.24.2workaround to parse Ruby files with UTF-8 even when theLANGenvironment variableis unset or set to
C.v1.24.2Compare Source
RubyVM::InstructionSequence.compile_file, that were causingfiles to be loaded with the old Ruby parser instead of Prism, causing issues with some pattern matching syntax.
Ref: https://bugs.ruby-lang.org/issues/22023
v1.24.1Compare Source
BOOTSNAP_READONLYis set.Files would incorectly be loaded in
ASCII-8BITcausing literal strings outsidethe pure ASCII range to have
ASCII-8BITencoding instead ofUTF-8.This bug was introduced in
1.24.0.v1.24.0Compare Source
DataTables/Dist-DataTables-Bootstrap4 (datatables.net-bs4)
v2.3.8Compare Source
DataTables Bootstrap4 2.3.8
honeybadger-io/honeybadger-ruby (honeybadger)
v6.6.0Compare Source
Features
v6.5.6Compare Source
Bug Fixes
postcss/postcss (postcss)
v8.5.14Compare Source
ruby/ruby (ruby)
v4.0.4: 4.0.4Compare Source
What's Changed
Fiber#transfer: machine stack not released when fiber terminates, causingFiberError: can't set a guard page- Ruby - Ruby Issue Tracking SystemRubyVM::InstructionSequence.compiledon't support coverage - Ruby - Ruby Issue Tracking Systemif- Ruby - Ruby Issue Tracking System$_returns stale value due to gvar_tbl caching - Ruby - Ruby Issue Tracking Systemwhile true || truecondition - Ruby - Ruby Issue Tracking Systemfiddle/importis required in multiple boxes - Ruby - Ruby Issue Tracking SystemNote: This list is automatically generated by tool/gen-github-release.rb. Because of this, some commits may be missing.
Full Changelog
v4.0.3: 4.0.3Compare Source
What's Changed
Full Changelog
castwide/solargraph (solargraph)
v0.58.3Compare Source
v0.58.2Compare Source
v0.58.1Compare Source
v0.58.0Compare Source
v0.57.0Compare Source
v0.56.2Compare Source
v0.56.1Compare Source
v0.56.0Compare Source
v0.55.5Compare Source
v0.55.4Compare Source
v0.55.3Compare Source
v0.55.2Compare Source
v0.55.1Compare Source
v0.55.0Compare Source
v0.54.5Compare Source
v0.54.4Compare Source
v0.54.3Compare Source
v0.54.2Compare Source
v0.54.1Compare Source
v0.54.0Compare Source
warntodebug(#897)v0.53.4Compare Source
v0.53.3Compare Source
v0.53.2Compare Source
v0.53.1Compare Source
v0.53.0Compare Source
v0.52.0Compare Source
v0.51.2Compare Source
v0.51.1Compare Source
v0.51.0Compare Source
v0.50.0Compare Source
v0.49.0Compare Source
rails/spring (spring)
v4.5.0Compare Source
Skip spring without error if spring is not in installed bundler groups.
Adds a Spring.after_environment_load hook that runs immediately after the Rails application environment is
loaded in the Spring server process, but before GC.compact/Process.warmup and before the server enters its
wait loop. This hook enables applications to preload expensive test infrastructure (e.g. test helpers, fixture
caches, datastore connections) into the Spring server so that forked test workers inherit that work via
copy-on-write instead of paying it on every invocation.
Fixed crashes when a client disconnects mid-handshake (e.g. on connect timeout). Previously,
Errno::EPIPEraised in
Spring::Server#serveorSpring::Application#servewould propagate up through the accept loop andkill the process, leaving a stale socket that broke every subsequent client. Both crash sites are now rescued,
including writes that happen inside the
rescue Exceptionhandler inApplication#servewhile reporting an earlier failure to the gone client.Eagerly autoload framework base classes (
ActionMailer::Base,ActionController::Base,ActionController::API) at the end of preload so theirActiveSupport.on_loadhooks fire in the parentprocess. Without this, the reloader probe in
#servematerializes Rails internals (notably Action View'sCacheExpiry::ViewReloader) in aConfiguration
📅 Schedule: (UTC)
🚦 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.