chore(deps): update all non-major dependencies#10
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
300f325 to
b801728
Compare
b801728 to
38cfb5d
Compare
38cfb5d to
48db23d
Compare
48db23d to
2ce4cc3
Compare
2ce4cc3 to
ad8e272
Compare
ee7f087 to
845bcd1
Compare
e82922b to
b6ba756
Compare
b6ba756 to
8e6d0f6
Compare
8e6d0f6 to
5d7ed65
Compare
5d7ed65 to
de8791d
Compare
de8791d to
7b9bd6d
Compare
0b82720 to
7544375
Compare
8849744 to
050c87a
Compare
050c87a to
eba2fef
Compare
eba2fef to
a3023bd
Compare
a3023bd to
95bf77a
Compare
95bf77a to
dd94166
Compare
86c782b to
00d9fe5
Compare
00d9fe5 to
2c558d3
Compare
9b64838 to
3511909
Compare
3511909 to
a784bc3
Compare
92e13d0 to
0a4bd8c
Compare
02e8e44 to
81c8aee
Compare
68f4ad3 to
8b530d8
Compare
44575e0 to
4400180
Compare
880cb6c to
3b266d6
Compare
2e5a48b to
9b48b9a
Compare
9b48b9a to
e699ab7
Compare
e699ab7 to
6f6e010
Compare
6f6e010 to
39f9249
Compare
39f9249 to
a955419
Compare
a955419 to
50f4b61
Compare
643c630 to
b69eaa8
Compare
b69eaa8 to
bb8bf86
Compare
b50ccc0 to
8417e25
Compare
d920a7d to
1b9d5e4
Compare
1b9d5e4 to
33de02d
Compare
58569c5 to
a1d326e
Compare
a1d326e to
6930107
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"from: "0.3.1"→from: "0.4.0"v4.0.0→v4.5.16Release 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
g-mark/SwiftPath (g-mark/SwiftPath)
v0.4.0Compare Source
kubewarden/github-actions (kubewarden/github-actions)
v4.5.16Compare Source
🧰 Maintenance
v4.5.15Compare Source
🧰 Maintenance
v4.5.14Compare Source
🐛 Bug Fixes
v4.5.13Compare Source
🐛 Bug Fixes
🧰 Maintenance
v4.5.12Compare Source
🐛 Bug Fixes
🧰 Maintenance
v4.5.11Compare Source
🐛 Bug Fixes
🧰 Maintenance
v4.5.10Compare Source
🐛 Bug Fixes
🧰 Maintenance
v4.5.9Compare Source
v4.5.8Compare Source
🧰 Maintenance
v4.5.7Compare Source
🐛 Bug Fixes
🧰 Maintenance
v4.5.6Compare Source
v4.5.5Compare Source
🧰 Maintenance
v4.5.4Compare Source
🚀 Features
v4.5.3Compare Source
🧰 Maintenance
v4.5.2Compare Source
🧰 Maintenance
v4.5.1Compare Source
🐛 Bug Fixes
v4.5.0Compare Source
🚀 Features
v4.4.8Compare Source
🐛 Bug Fixes
v4.4.7Compare Source
🐛 Bug Fixes
🧰 Maintenance
v4.4.6Compare Source
🐛 Bug Fixes
v4.4.5Compare Source
🐛 Bug Fixes
🧰 Maintenance
v4.4.4Compare Source
🐛 Bug Fixes
v4.4.3Compare Source
🐛 Bug Fixes
v4.4.2Compare Source
🚀 Features
🐛 Bug Fixes
🧰 Maintenance
v4.4.1Compare Source
v4.4.0Compare Source
🚀 Features
🧰 Maintenance
v4.3.0Compare Source
🚀 Features
🐛 Bug Fixes
v4.2.0Compare Source
v4.1.0Compare Source
🚀 Features
🧰 Maintenance
0aaccfd(#166)Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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.