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: gyscos/zstd-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.13.2
Choose a base ref
...
head repository: gyscos/zstd-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.13.3
Choose a head ref
  • 20 commits
  • 27 files changed
  • 10 contributors

Commits on Jul 5, 2024

  1. Bump zstd-safe to 7.2.0

    gyscos committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    fcf7949 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Update need_wasm_shim logic for wasm32-wasip1 (#289)

    * fix unexpected cfg
    
    --> src/stream/functions.rs:58:7
       |
    58 | #[cfg(tests)]
       |       ^^^^^ help: there is a config with a similar name: `test`
    
    * update `need_wasm_shim` logic for `wasm32-wasip1`
    
    The `wasm32-wasi` target is being renamed to `wasm32-wasip1` and the
    `wasm32-wasi` target will be removed in the future. It looks like the
    shim will also be useful (required?) for `wasm32-wasip2`.
    Mrmaxmeier authored Jul 9, 2024
    Configuration menu
    Copy the full SHA
    fc3a731 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Bump zstd-safe to 7.2.1

    gyscos committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    03bc5c3 View commit details
    Browse the repository at this point in the history
  2. Bump zstd-sys to 2.0.13

    gyscos committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    d698082 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Update bindgen requirement from 0.69 to 0.70 in /zstd-safe/zstd-sys (#…

    …298)
    
    Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version.
    - [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
    - [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
    - [Commits](rust-lang/rust-bindgen@v0.69.0...v0.70.0)
    
    ---
    updated-dependencies:
    - dependency-name: bindgen
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    74250a2 View commit details
    Browse the repository at this point in the history
  2. Don't allow writing to finished Encoder (#297)

    If an Encoder is finished, it will swallow writes without error but never let you flush or finish those.
    anacrolix authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9c44e8f View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    7f73dec View commit details
    Browse the repository at this point in the history
  2. Update bindgen to 0.70

    gyscos committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    59e1da7 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

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

Commits on Oct 21, 2024

  1. OSS-Fuzz: Add fuzzer for OSS-Fuzz integration (#308)

    * OSS-Fuzz: Add fuzzer for OSS-Fuzz integration
    
    Signed-off-by: Arthur Chan <[email protected]>
    
    * Fix size
    
    Signed-off-by: Arthur Chan <[email protected]>
    
    ---------
    
    Signed-off-by: Arthur Chan <[email protected]>
    arthurscchan authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    bfe1e34 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2025

  1. Update Cargo.toml (#317)

    Require a more recent version of pkg-config, since "0.3.0" doesn't actually compile using recent versions of rustc.
    andersmusikkahs authored Jan 9, 2025
    Configuration menu
    Copy the full SHA
    72752a4 View commit details
    Browse the repository at this point in the history
  2. Update bindgen requirement from 0.70 to 0.71 in /zstd-safe/zstd-sys (#…

    …312)
    
    Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version.
    - [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
    - [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
    - [Commits](rust-lang/rust-bindgen@v0.70.0...v0.71.0)
    
    ---
    updated-dependencies:
    - dependency-name: bindgen
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 9, 2025
    Configuration menu
    Copy the full SHA
    1ff414d View commit details
    Browse the repository at this point in the history
  3. Make the buffer size configurable (#307)

    * Add new_with_capacity to allow users to create Writers with custom capacity.
    
    * Add test for buffer_with_capacity
    ksolana authored Jan 9, 2025
    Configuration menu
    Copy the full SHA
    03e955d View commit details
    Browse the repository at this point in the history
  4. Fix new_with_capacity

    gyscos committed Jan 9, 2025
    Configuration menu
    Copy the full SHA
    e515961 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2025

  1. Add support for the seekable format (#310)

    Support the seekable format through bindings to the upstream
    functionality in zstd-safe. The seekable format can be activated with
    the `seekable` feature flag.
    rorosen authored Jan 17, 2025
    Configuration menu
    Copy the full SHA
    21d79e8 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2025

  1. Configuration menu
    Copy the full SHA
    cb2b5cc View commit details
    Browse the repository at this point in the history
  2. Update zstd library to v1.5.7

    JakubOnderka authored and gyscos committed Feb 20, 2025
    Configuration menu
    Copy the full SHA
    f4fed57 View commit details
    Browse the repository at this point in the history
  3. Update constants

    gyscos committed Feb 20, 2025
    Configuration menu
    Copy the full SHA
    c25e64f View commit details
    Browse the repository at this point in the history
  4. zstd-safe 7.2.2

    gyscos committed Feb 20, 2025
    Configuration menu
    Copy the full SHA
    59ed359 View commit details
    Browse the repository at this point in the history
  5. zstd 0.13.3

    gyscos committed Feb 20, 2025
    Configuration menu
    Copy the full SHA
    52e9d41 View commit details
    Browse the repository at this point in the history
Loading