Thanks to visit codestin.com
Credit goes to github.com

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-async-algorithms
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0-beta.1
Choose a base ref
...
head repository: apple/swift-async-algorithms
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 20 commits
  • 123 files changed
  • 11 contributors

Commits on Oct 2, 2023

  1. Configuration menu
    Copy the full SHA
    5bbdcc1 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Fix potential deadlocks when resuming a continuation while holding a …

    …lock (#303)
    
    * Fix potential deadlocks in zip
    
    * Fix debounce
    
    * Fix combineLatest
    
    * Fix Channel
    
    * Fix buffer
    FranzBusch authored Nov 17, 2023
    Configuration menu
    Copy the full SHA
    da4e36f View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Update README.md (#306)

    Missing Version Number
    leogdion authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    14729ea View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Depend on specific products from swift-collections (#307)

    * Only depend on OrderedCollections from swift-collections
    
    Before this change, once consumers update to SwiftCollections 1.1.0 they'll pull in all of the new collection dependencies (HashTree, BitCollections, etc.). In our case, this increased our binary size by ~1MB. To fix this, we switch to only depending on what we need.
    
    * Add DequeModule dependency
    erichoracek authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    d162617 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Fix some strict concurrency warnings (#310)

    # Motivation
    
    There were a few new strict concurrency warnings that this PR fixes.
    FranzBusch authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    46b4464 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Add support for SWIFTCI_USE_LOCAL_DEPS convention (#311)

    To use this package in utils/build-script pipeline
    kateinoigakukun authored Apr 10, 2024
    Configuration menu
    Copy the full SHA
    6ae9a05 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Add Musl import, error if unrecognised platform (#325)

    * Add Musl import, error if unrecognised platform
    
    * Add #else #error for all platform checks
    adam-fowler authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    e83857c View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Use Bionic module from new Android overlay in Swift 6 instead (#326)

    The new module and overlay were merged into Swift 6 in swiftlang/swift#74758.
    finagolfin authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    2503842 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Fix a few typos (#329)

    * [DOCS] fix typo: precicely → precisely
    
    * [DOCS] fix typo: ever → every
    
    * [DOCS] fix typo: AsyncBufferSequence, relative
    qwerty3345 authored Sep 2, 2024
    Configuration menu
    Copy the full SHA
    5c8bd18 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Configuration menu
    Copy the full SHA
    4c3ea81 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2025

  1. Format rules

    FranzBusch committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    ba33a22 View commit details
    Browse the repository at this point in the history
  2. Apply formatting

    FranzBusch committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    d5b49aa View commit details
    Browse the repository at this point in the history
  3. Documentation

    FranzBusch committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    ba30f20 View commit details
    Browse the repository at this point in the history
  4. License headers

    FranzBusch committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    552856a View commit details
    Browse the repository at this point in the history
  5. Language check

    FranzBusch committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    5878737 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    08bb1bb View commit details
    Browse the repository at this point in the history
  7. Fix doc paste mistake

    FranzBusch committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    9fcf11d View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2025

  1. Configuration menu
    Copy the full SHA
    57b0814 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2025

  1. Move platform requirements to availability annotations (#348)

    * Move platform requirements to availability annotations
    
    Adding or raising the deployment platforms in the package manifest is a
    SemVer major breaking change as consumers must also add or raise their
    deployment platforms. This is a known limitation of SwiftPM.
    
    Unforunately this means that it's very difficult for non-leaf packages
    to adopt packages which declare their platforms in the manifest. Doing
    so puts the brakes on adoption and ecosystem growth. For 'core' packages
    like this one availability constraints should be expressed on
    declarations rather than in the manifest.
    
    This patch adds equivalent availability annotations to declarations
    across the package and removes platforms from the package manifest.
    
    * Address naming feedback
    glbrntt authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    042e1c4 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2025

  1. Remove the DocC plugin as a dependency (#354)

    When DocC was introduced the DocC plugin was useful for building documentation locally. Nowadays both Xcode and VSCode have built-in support to generate this without the need for the plugin.
    
    This PR removes the direct dependency on the plugin.
    FranzBusch authored Jul 2, 2025
    Configuration menu
    Copy the full SHA
    3997ce3 View commit details
    Browse the repository at this point in the history
Loading