chore(deps): update dependency apple/swift-log to from: "1.10.1"#25
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update dependency apple/swift-log to from: "1.10.1"#25renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
d36197e to
c9af319
Compare
c9af319 to
57a7e5d
Compare
57a7e5d to
6cbb0c1
Compare
6cbb0c1 to
90686fa
Compare
90686fa to
f23e5f3
Compare
f23e5f3 to
bcddce0
Compare
bcddce0 to
d8f524a
Compare
d8f524a to
d1fe341
Compare
e134b2a to
dd55cf3
Compare
dd55cf3 to
9b0de42
Compare
9b0de42 to
516c2b2
Compare
516c2b2 to
e683299
Compare
e683299 to
ac3acb6
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.4.2"→from: "1.10.1"Release Notes
apple/swift-log (apple/swift-log)
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
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.