Skip to content

chore(deps): update all non-major dependencies#10

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#10
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link

@renovate renovate bot commented Mar 20, 2023

This PR contains the following updates:

Package Type Update Change
apple/swift-log minor from: "1.4.2"from: "1.10.1"
g-mark/SwiftPath minor from: "0.3.1"from: "0.4.0"
kubewarden/github-actions action minor v4.0.0v4.5.16

Release Notes

apple/swift-log (apple/swift-log)

v1.10.1

Compare Source

What's Changed

SemVer Minor

Full Changelog: apple/swift-log@1.10.0...1.10.1

v1.10.0

Compare 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.1

Compare Source

What's Changed

SemVer Patch
Other Changes
  • Change document title to 'SLG-0001: Metadata Providers' by @​ktoso in #​400

New Contributors

Full Changelog: apple/swift-log@1.9.0...1.9.1

v1.9.0

Compare Source

What's Changed

SemVer Minor
Other Changes

New Contributors

Full Changelog: apple/swift-log@1.8.0...1.9.0

v1.8.0

Compare Source

What's Changed

SemVer Minor
  • Conform Logger.Level to CustomStringConvertible and LosslessStringConvertible by @​fpseverino in #​395
Other Changes

New Contributors

Full Changelog: apple/swift-log@1.7.1...1.8.0

v1.7.1

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-log@1.7.0...1.7.1

v1.7.0

Compare 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.4

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-log@1.6.3...1.6.4

v1.6.3

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-log@1.6.2...1.6.3

v1.6.2

Compare 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.1

Compare Source

SemVer Patch
  • Disable existential any build setting (#​312)

v1.6.0

Compare Source

SemVer Minor

  • Add Sendability annotations in #​308
  • Fix deprecation warnings around default log implementations on handlers in #​310
  • Drop Swift versions earlier than 5.8 in #​299
  • Implement Copy-On-Write (CoW) behavior for Logger struct by @​ayushi2103 in #​297
SemVer Patch
  • Replace standardOutput to standardError by @​ayushi2103 in #​295
  • Use Set to spot duplicated log handler warnings in #​306
  • Make protocol usage obvious using any and some keywords in #​307
  • Remove documentation for non-existent arguments by @​b1ackturtle in #​309
  • Remove Docc plugin which is no longer required in #​311
Other Changes

v1.5.4

Compare 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.3

Compare 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.2

Compare 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

  • Avoid logging warnings when handler does not support metadataproviders by @​ktoso in #​252
  • Handle providers properly in multiplex log handler by @​ktoso in #​254
  • Add CI for Swift 5.8 and update nightly to Ubuntu 22.04 by @​yim-lee in #​255

Full Changelog: apple/swift-log@1.5.1...1.5.2

v1.5.1

Compare 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.0

Compare 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:

import Logging

enum Namespace { 
  @​TaskLocal static var simpleTraceID: String?
}

let simpleTraceIDMetadataProvider = Logger.MetadataProvider { 
    guard let traceID = Namespace.simpleTraceID else {
        return [:]
    }
    return ["simple-trace-id": .string(traceID)]
 }

LoggingSystem.bootstrap({ label, metadataProvider in
    myCoolLogHandler(label: label, metadataProvider: metadataProvider)
}, metadataProvider: simpleTraceIDMetadataProvider)

which in turn makes every Logger on this LoggingSystem add this contextual metadata to log statements automatically:

let log = Logger(label: "hello")

Namespace.$simpleTraceID.withValue("1234-5678") {
  test()
}

func test() {
  log.info("test log statement")
}

// [info] [simple-trace-id: 1234-5678] test log statement
Adoption in LogHandlers

In order to support this new feature in your log handlers, please make it accept a MetadataProvider? at creation, and store it as:

struct MyHandler: LogHandler {
    // ... 
    public var metadataProvider: Logger.MetadataProvider?
    // ...
}

What's Changed

Highlight
  • Metadata Providers (e.g. for Distributed Tracing) in LogHandlers by @​ktoso in #​238
Other changes

New Contributors

Full Changelog: apple/swift-log@1.4.4...1.5.0

v1.4.4

Compare Source

Sendable fixup for 1.4.3

The 1.4.3 release carefully introduced Sendable across the library; sadly we missed that 5.6.x Swift 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.stringConvertible must 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

  • [sendable] Sendable conformance checks cause errors on 5.6 but warnings on 5.7 by @​ktoso in #​229

Full Changelog: apple/swift-log@1.4.3...1.4.4

v1.4.3

Compare 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

New Contributors

Full Changelog: apple/swift-log@1.4.2...1.4.3

g-mark/SwiftPath (g-mark/SwiftPath)

v0.4.0

Compare Source

kubewarden/github-actions (kubewarden/github-actions)

v4.5.16

Compare Source

  • container build actions (#​261)
🧰 Maintenance
  • chore(deps): update updatecli/updatecli-action action to v2.98.0 (#​260)
  • chore(deps): update actions/cache action to v5 (#​258)
  • chore(deps): update actions/upload-artifact action to v6 (#​259)
  • chore(deps): update all non-major dependencies (#​257)
  • chore(deps): update all non-major dependencies (#​255)
  • chore(deps): update actions/checkout action to v6 (#​256)
  • chore(deps): update updatecli/updatecli-action action to v2.96.0 (#​254)
  • chore(deps): update softprops/action-gh-release action to v2.4.2 (#​252)
  • chore(deps): update golangci/golangci-lint-action action to v9 (#​253)

v4.5.15

Compare Source

🧰 Maintenance

  • chore(deps): Consume kwctl 1.30 in kwctl-installer (#​251)

v4.5.14

Compare Source

🐛 Bug Fixes

  • fix: Use --bundle when signing with cosign v3 (#​250)

v4.5.13

Compare Source

🐛 Bug Fixes

  • fix(ci): add second cosign signature for compatibility (#​247)
  • fix(ci): disable new cosign signature bundle format. (#​244)

🧰 Maintenance

  • chore: prepare v4.5.13 release. (#​248)
  • chore(deps): update actions/upload-artifact action to v5 (#​246)
  • chore(deps): update updatecli/updatecli-action action to v2.94.0 (#​245)
  • chore(deps): update softprops/action-gh-release action to v2.4.1 (#​240)
  • chore(deps): update sigstore/cosign-installer action to v4 (#​243)
  • chore(deps): update actions/setup-node action to v6 (#​242)

v4.5.12

Compare Source

🐛 Bug Fixes
  • fix(renovate): group dependencies updates all together. (#​238)
🧰 Maintenance
  • chore(deps): update softprops/action-gh-release action to v2.3.4 (#​239)

v4.5.11

Compare Source

🐛 Bug Fixes
  • fix(kwctl): updates kwctl version (#​236)
🧰 Maintenance
  • chore(deps): update all non-major dependencies (#​230)

v4.5.10

Compare Source

🐛 Bug Fixes
  • fix(build-rust): override current toolchain. (#​233)
🧰 Maintenance
  • chore: prepare v4.5.10 release. (#​235)

v4.5.9

Compare Source

  • Revert "deps: Build rust policies against wasip2" (#​232)

v4.5.8

Compare Source

  • deps: Build rust policies against wasip2 (#​229)
🧰 Maintenance
  • chore(deps): update actions/setup-node action to v5 (#​228)
  • chore(deps): update all non-major dependencies (#​226)
  • chore(deps): update actions/setup-go action to v6 (#​227)

v4.5.7

Compare Source

🐛 Bug Fixes
  • fix(kwctl): updates kwctl version in use. (#​224)
🧰 Maintenance
  • chore: update github actions version. (#​225)
  • chore(deps): update all non-major dependencies (#​222)
  • chore(deps): update actions/github-script action to v8 (#​223)

v4.5.6

Compare Source

  • build: Bump version to 4.5.6 (#​220)
  • deps: Bump tinygo to 0.39.0, for go 1.25 support (#​219)

v4.5.5

Compare Source

🧰 Maintenance
  • chore(deps): update all non-major dependencies (#​217)
  • chore(deps): update actions/checkout action to v5 (#​218)
  • chore(deps): update all non-major dependencies (#​216)

v4.5.4

Compare Source

  • chore(deps): update sigstore/cosign-installer action to v3.9.2 (#​214)
🚀 Features
  • feat: support rust projects that make use of workspaces (#​215)

v4.5.3

Compare Source

  • deps: Consume kwctl 1.27.0-alpha3 (#​213)
🧰 Maintenance
  • Replace SBOM generator tool (#​212)
  • fix(kwctl-installer): install v1.27.0-alpha2 (#​211)
  • chore(deps): update all non-major dependencies (#​210)

v4.5.2

Compare Source

  • chore: update kwctl version (#​209)
🧰 Maintenance
  • chore(deps): update updatecli/updatecli-action action to v2.84.0 (#​208)

v4.5.1

Compare Source

🐛 Bug Fixes
  • fix: Remove duplicated id on policy-release action, bump to 4.5.1 (#​206)

v4.5.0

Compare Source

🚀 Features
  • feat: Add a new expect-sbom to policy-release action, and set it , bump to 4.5.0 (#​205)

v4.4.8

Compare Source

🐛 Bug Fixes
  • fix: Correctly set payload on reusable-release-policy-catalog, release 4.4.8 (#​204)

v4.4.7

Compare Source

  • ci: Pin GHA to semver on renovate configs (#​202)
  • chore: remove actions-rs github actions. (#​199)
🐛 Bug Fixes
  • fix: release-policy-catalog, re-include spdx artifacts on policy-release (#​203)
🧰 Maintenance
  • chore(deps): update all non-major dependencies (#​201)
  • chore(deps): update golangci/golangci-lint-action action to v8 (#​197)
  • chore(deps): update all non-major dependencies (#​196)

v4.4.6

Compare Source

🐛 Bug Fixes
  • fix: add missing "shell" configuration. (#​195)

v4.4.5

Compare Source

  • build: prepare release v4.4.5. (#​194)
  • ci: Substitute peter-evans/repository-dispatch with gh cli (#​192)
  • Install bats npm from official package (#​189)
🐛 Bug Fixes
  • fix: syntax error in policy-release action. (#​193)
🧰 Maintenance
  • chore(deps): update sigstore/cosign-installer action to v3.8.2 (#​191)
  • chore(deps): update all non-major dependencies (#​190)

v4.4.4

Compare Source

🐛 Bug Fixes
  • fix: Don't use GH draft releases on monorepos (#​187)

v4.4.3

Compare Source

🐛 Bug Fixes
  • fix: Correctly use policy-working-dir on policy-release, release v4.4.3 (#​186)

v4.4.2

Compare Source

  • build: Prepare release v4.4.2 (#​185)
  • ci(release-policy-catalog): replace artifacthub_pkg_path with policy_working_dir (#​184)
⚠️ Breaking changes
  • chore(deps): update golangci/golangci-lint-action action to v7 (update to golangci-lint v2) (#​183)
🚀 Features
  • chore(deps): update golangci/golangci-lint-action action to v7 (update to golangci-lint v2) (#​183)
🐛 Bug Fixes
  • chore(deps): update golangci/golangci-lint-action action to v7 (update to golangci-lint v2) (#​183)
🧰 Maintenance
  • chore(deps): update golangci/golangci-lint-action action to v7 (update to golangci-lint v2) (#​183)

v4.4.1

Compare Source

  • build: Bump version to v4.4.1 (#​182)
  • ci: Reuse GH draft release when creating GH release (#​181)

v4.4.0

Compare Source

  • chore: update kwctl version (#​179)
  • build: Bump version to v4.4.0 (#​176)
  • ci: stricter pinning of GHA (#​174)
⚠️ Breaking changes
  • chore(deps): update all non-major dependencies (#​173)
🚀 Features
  • feat: Add reusable-release-pr, reusable-release-tag worfklows (#​175)
🧰 Maintenance
  • chore(deps): update actions/create-github-app-token action to v2 (#​178)
  • chore(deps): update all non-major dependencies (#​177)
  • chore(deps): update all non-major dependencies (#​173)

v4.3.0

Compare Source

⚠️ Breaking changes
  • feat!(release-policy-catalog): generate token programmatically (#​171)
🚀 Features
  • feat!(release-policy-catalog): generate token programmatically (#​171)
🐛 Bug Fixes
  • fix: skip release catalog if ref is not a tag (#​170)

v4.2.0

Compare Source

⚠️ Breaking changes
  • refactor!: convert policy release catalog composite action to reusable workflow (#​169)

v4.1.0

Compare Source

  • Add support for arm runners in kwctl (#​167)
🚀 Features
  • feat: add policy catalog repository dispatch (#​168)
🧰 Maintenance

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 300f325 to b801728 Compare April 5, 2023 09:04
@renovate renovate bot changed the title chore(deps): update dependency apple/swift-log to from: "1.5.2" chore(deps): update all non-major dependencies Apr 5, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b801728 to 38cfb5d Compare April 12, 2023 18:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 38cfb5d to 48db23d Compare April 25, 2023 14:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 48db23d to 2ce4cc3 Compare May 3, 2023 09:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2ce4cc3 to ad8e272 Compare July 9, 2023 05:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ee7f087 to 845bcd1 Compare August 1, 2023 02:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e82922b to b6ba756 Compare August 8, 2023 17:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b6ba756 to 8e6d0f6 Compare August 11, 2023 08:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e6d0f6 to 5d7ed65 Compare October 14, 2023 05:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5d7ed65 to de8791d Compare November 1, 2023 02:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from de8791d to 7b9bd6d Compare December 20, 2023 08:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0b82720 to 7544375 Compare January 23, 2024 05:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8849744 to 050c87a Compare February 6, 2024 05:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 050c87a to eba2fef Compare February 14, 2024 05:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eba2fef to a3023bd Compare March 14, 2024 20:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a3023bd to 95bf77a Compare May 1, 2024 02:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 95bf77a to dd94166 Compare June 6, 2024 05:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 86c782b to 00d9fe5 Compare July 1, 2024 14:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 00d9fe5 to 2c558d3 Compare July 26, 2024 02:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9b64838 to 3511909 Compare August 29, 2024 20:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3511909 to a784bc3 Compare September 5, 2024 20:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 92e13d0 to 0a4bd8c Compare March 6, 2025 00:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 02e8e44 to 81c8aee Compare March 20, 2025 17:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 68f4ad3 to 8b530d8 Compare March 28, 2025 23:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 44575e0 to 4400180 Compare April 18, 2025 23:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 880cb6c to 3b266d6 Compare May 3, 2025 15:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2e5a48b to 9b48b9a Compare May 24, 2025 04:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9b48b9a to e699ab7 Compare July 13, 2025 16:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e699ab7 to 6f6e010 Compare July 27, 2025 12:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f6e010 to 39f9249 Compare August 9, 2025 07:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 39f9249 to a955419 Compare August 23, 2025 16:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a955419 to 50f4b61 Compare September 11, 2025 15:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 643c630 to b69eaa8 Compare October 3, 2025 03:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b69eaa8 to bb8bf86 Compare October 13, 2025 20:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b50ccc0 to 8417e25 Compare November 8, 2025 20:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d920a7d to 1b9d5e4 Compare December 5, 2025 11:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1b9d5e4 to 33de02d Compare December 12, 2025 19:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 58569c5 to a1d326e Compare January 20, 2026 19:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a1d326e to 6930107 Compare February 17, 2026 00:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: No status

Development

Successfully merging this pull request may close these issues.

2 participants