Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apple/swift-log
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.9.0
Choose a base ref
...
head repository: apple/swift-log
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.9.1
Choose a head ref
  • 3 commits
  • 3 files changed
  • 4 contributors

Commits on Jan 15, 2026

  1. Configuration menu
    Copy the full SHA
    a92ccc6 View commit details
    Browse the repository at this point in the history
  2. Change document title to 'SLG-0001: Metadata Providers' (#400)

    Co-authored-by: Vladimir Kukushkin <kukushechkin@mac.com>
    ktoso and kukushechkin authored Jan 15, 2026
    Configuration menu
    Copy the full SHA
    0d9c9ae View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2026

  1. Reinstate InMemoryLogging product in Swift 6.0 manifest (#403)

    ### Motivation:
    
    In the latest release (1.9.0) the package manifest was split for Swift
    6.0 and 6.1+. The 6.0 manifest lost the `InMemoryLogging` library
    product, causing API breakage for adopters using Swift 6.0:
    
    ```diff
    % diff -u <(git show 1.8.0:Package.swift) <(git show 1.9.0:Package@swift-6.0.swift)
    --- /dev/fd/63  2026-01-19 10:30:21
    +++ /dev/fd/62  2026-01-19 10:30:21
    @@ -18,25 +18,16 @@
     let package = Package(
         name: "swift-log",
         products: [
    -        .library(name: "Logging", targets: ["Logging"]),
    -        .library(name: "InMemoryLogging", targets: ["InMemoryLogging"]),
    +        .library(name: "Logging", targets: ["Logging"])
         ],
         targets: [
             .target(
                 name: "Logging",
                 dependencies: []
             ),
    -        .target(
    -            name: "InMemoryLogging",
    -            dependencies: ["Logging"]
    -        ),
             .testTarget(
                 name: "LoggingTests",
                 dependencies: ["Logging"]
    -        ),
    -        .testTarget(
    -            name: "InMemoryLoggingTests",
    -            dependencies: ["InMemoryLogging", "Logging"]
             ),
         ]
     )
    
    ```
    
    ### Modifications:
    
    Reinstate InMemoryLogging product in Swift 6.0 manifest
    
    ### Result:
    
    Adopters using `InMemoryLogging` on Swift 6.0 are unbroken.
    
    ### Related issues:
    
    Fixes #402
    simonjbeaumont authored Jan 19, 2026
    Configuration menu
    Copy the full SHA
    2778fd4 View commit details
    Browse the repository at this point in the history
Loading