chore(deps): update dependency apple/swift-log to from: "1.12.1"#106
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency apple/swift-log to from: "1.12.1"#106renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
452d113 to
57fffbd
Compare
dd-oleksii
suggested changes
Feb 17, 2026
Contributor
dd-oleksii
left a comment
There was a problem hiding this comment.
This seems counter-productive as it bumps the minimum required version, reducing the compatibility range for the application author.
57fffbd to
6e6ba24
Compare
6e6ba24 to
0d223a2
Compare
83291b4 to
c4086dd
Compare
c4086dd to
96602e7
Compare
96602e7 to
9637348
Compare
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:
from: "1.0.0"→from: "1.12.1"Release Notes
apple/swift-log (apple/swift-log)
v1.12.1Compare Source
What's Changed
SemVer Patch
MaxLogLevelNoneby @rnro in #465Other Changes
New Contributors
Full Changelog: apple/swift-log@1.12.0...1.12.1
v1.12.0Compare Source
What's Changed
SemVer Minor
Other Changes
Full Changelog: apple/swift-log@1.11.0...1.12.0
v1.11.0Compare Source
What's Changed
SemVer Minor
SemVer Patch
Other Changes
New Contributors
Full Changelog: apple/swift-log@1.10.1...1.11.0
v1.10.1Compare Source
What's Changed
SemVer Minor
Full Changelog: apple/swift-log@1.10.0...1.10.1
v1.10.0Compare Source
What's Changed
SemVer Minor
SemVer Patch
Other Changes
New Contributors
Full Changelog: apple/swift-log@1.9.1...1.10.0
v1.9.1Compare Source
What's Changed
SemVer Patch
Other Changes
New Contributors
Full Changelog: apple/swift-log@1.9.0...1.9.1
v1.9.0Compare Source
What's Changed
SemVer Minor
Other Changes
New Contributors
Full Changelog: apple/swift-log@1.8.0...1.9.0
v1.8.0Compare Source
What's Changed
SemVer Minor
Logger.LeveltoCustomStringConvertibleandLosslessStringConvertibleby @fpseverino in #395Other Changes
New Contributors
Full Changelog: apple/swift-log@1.7.1...1.8.0
v1.7.1Compare Source
What's Changed
SemVer Patch
@preconcurrency import Androidby @MaxDesiatov in #393Other Changes
pull_request.ymlby @MaxDesiatov in #371Full Changelog: apple/swift-log@1.7.0...1.7.1
v1.7.0Compare Source
What's Changed
SemVer Minor
SemVer Patch
Other Changes
New Contributors
Full Changelog: apple/swift-log@1.6.4...1.7.0
v1.6.4Compare Source
What's Changed
SemVer Patch
Other Changes
READMEand documentation catalog to introduce best practices by @FranzBusch in #363New Contributors
Full Changelog: apple/swift-log@1.6.3...1.6.4
v1.6.3Compare Source
What's Changed
SemVer Patch
Other Changes
New Contributors
Full Changelog: apple/swift-log@1.6.2...1.6.3
v1.6.2Compare Source
What's Changed
SemVer Patch
Other Changes
New Contributors
Full Changelog: apple/swift-log@1.6.1...1.6.2
v1.6.1: Swift Log 1.6.1Compare Source
SemVer Patch
v1.6.0Compare Source
SemVer Minor
SemVer Patch
Other Changes
v1.5.4Compare Source
What's Changed
Cleanups & minor compatibility improvements
Non code changes
New Contributors
Full Changelog: apple/swift-log@1.5.3...1.5.4
v1.5.3Compare Source
What's Changed
Cleanups & minor compatibility improvements
Non code changes
New Contributors
Full Changelog: apple/swift-log@1.5.2...1.5.3
v1.5.2Compare Source
Primary change
Address too aggressive warning logging on LogHandlers that do not support
MetadataProvider. The warning would be emitted too frequently, resulting in flooding logs with warnings. Instead, the warning is now emitted once per log handler type.What's Changed
Full Changelog: apple/swift-log@1.5.1...1.5.2
v1.5.1Compare Source
Summary
This patch release focuses on minor cleanups to ergonomics of setting metadata providers with the default stream log handlers, and fixes a bug in the default handler not printing the provided extra metadata by default (it does now).
Thank you to @slashmo for quickly noticing and providing a patch for the latter!
What's Changed
Full Changelog: apple/swift-log@1.5.0...1.5.1
v1.5.0Compare Source
Changes
Swift version support
This release drops support for Swift 5.0.
Swift 5.1+ remain supported for the time being.
Logger.MetadataProvider
This release introduces metadata providers!
They are an additional way to add metadata to your log statements automatically whenever a log statement is about to be made. This works extremely well with systems like distributed tracing, that may pick up trace identifiers and other information from the task-local context from where the log statement is being made.
The feature came with a swift evolution style proposal introduction to the "why?" and "how?" of this feature you may find interesting.
Metadata providers are used like this:
which in turn makes every
Loggeron thisLoggingSystemadd this contextual metadata to log statements automatically:Adoption in
LogHandlersIn order to support this new feature in your log handlers, please make it accept a
MetadataProvider?at creation, and store it as:What's Changed
Highlight
Other changes
New Contributors
Full Changelog: apple/swift-log@1.4.4...1.5.0
v1.4.4Compare Source
Sendable fixup for 1.4.3
The 1.4.3 release carefully introduced
Sendableacross the library; sadly we missed that5.6.xSwift series treat a "missing marker protocol conformance for Sendable" as an error while it is intended to be a warning as which it is correctly reported in Swift 5.7.This release fixes this by not requiring that values stored in
Logger.MetadataValue.stringConvertiblemust be Sendable, however practically speaking they should be thread-safe in any case, as it is not guaranteed in any way when/where this string convertible value will be invoked from.This release contains no other changes from 1.4.3.
What's Changed
Full Changelog: apple/swift-log@1.4.3...1.4.4
v1.4.3Compare Source
Highlights
Loggers and all related types are now
Sendable, including metadata values which have to be Sendable as well.When using from Swift that is concurrency aware, you may be getting warnings where you didn't before, these are all correct though - you need to be ready for e.g. logger metadata to be accessed from another thread. Thankfully values logged this way should usually be sendable to begin with, preferably value types.
For more details see: #218
What's Changed
SwiftLogNoOpLogHandler.init(_: String)by @glbrntt in #194New Contributors
Full Changelog: apple/swift-log@1.4.2...1.4.3
v1.4.2Compare Source
This release fixes a single bug in the propagation of the
functionparameter in the source-lessLogger.tracefunction.For more details refer to #185 - thank you noticing and fixing the issue @saulbaro!
You can find additional details on all changes in this release in the 1.4.2 milestone.
v1.4.1Compare Source
This patch release fixes some compatibility issues, including a Windows compatibility issue as well as wrongly removed APIs in the 1.3.0->1.4.0 transition.
No new features were added in this release.
You can refer to the detailed changes by inspecting the issues linked form the 1.4.1 milestone.
v1.4.0: SwiftLog 1.4.0Compare Source
Highlights
This release addresses a missing
public initin the newly introducedNoOpLogHandler. Please use 1.4.0 rather than 1.3.0 to be able to actually instantiate the that handler.SemVer Minor
public inittoNoOpLogHandlerintroduced in 1.3.0 #142Credits
This release contains a single PR: #146
The complete change-list is available on the 1.4.0 milestone.
Thank you @adam-fowler for spotting and fixing the mistake!
v1.3.0: SwiftLog 1.3.0Compare Source
Highlights
LogHandlerimplementations should take care adjust their implementations moving forward to implement the followinglogfunction:rather than the previous function:
Compatibility shims are provided and existing implementations will continue to work as-is. However in order to reap benefits of the new
source(which will contain the "module name from which this log message originates") parameter, they will have to change whichlogoverload they implement. We suggest moving to implementing the new overload (withsource:) as soon as possible, allowing the logging ecosystem to make use of this new capability.For details see:
SemVer Minor
MultiplexLogHandlerwas very surprising and this change makes it more consistent, see the PR for details if you are using multiplex handlersSemVer Patch
Credits
This release includes 15 issues/PRs, which were made possible with the help of 18 contributors 🎉
We would like to thank all everyone for their feedback and contributions:
Tomer Doron, Johannes Weiss, Konrad
ktosoMalawski, Saleem Abdulrasool, Gwynne Raskind, prafsoni, Adam Fowler, Neal Lester, Artur Dryomov, Franz Busch, Shiva Huang, zach wick, Ravi Kandhadai, YR Chen, Jeremy Greenwood, Will Lisac, Mattt, TannerThank you!
v1.2.0: SwiftLog 1.2.0Compare Source
SemVer Major
SemVer Minor
v1.1.1: SwiftLog 1.1.1Compare Source
SemVer Patch
v1.1.0: SwiftLog 1.1.0Compare Source
SemVer Minor
SemVer Patch
Configuration
📅 Schedule: (UTC)
🚦 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 this update again.
This PR was generated by Mend Renovate. View the repository job log.