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: uuid-rs/uuid
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.3.3
Choose a base ref
...
head repository: uuid-rs/uuid
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.3.4
Choose a head ref
  • 11 commits
  • 17 files changed
  • 4 contributors

Commits on May 27, 2023

  1. Add wasm32-wasi support with tests

    @sunfishcode added `wasm32-wasi` support in #477, but somewhere along the way it appears to have
    been broken or dropped. Thankfully, the reason for the breakage doesn't appear too deep: the
    `wasm-bindgen` support was enabled for all `wasm32` architectures, rather than just the
    `wasm32-unknown-unknown` target triple that [`wasm-bindgen`
    supports](https://rustwasm.github.io/wasm-bindgen/reference/rust-targets.html).
    
    This PR fixes the `cfg` expressions for `wasm-bindgen`-specific code so that they no longer catch
    `wasm32-wasi`, and now `wasm32-wasi` just works 🎉
    
    To guard against future breakage, I added some `wasm32-wasi` testing infrastructure. A new CI
    target modeled on the `wasm-bindgen` target tests the `wasm32-wasi` implementation against
    `wasmtime`. Since test runners can't be specified at the command line, this requires a
    `.cargo/config` addition as well.
    
    I also noticed and fixed a typo in the existing `wasm-bindgen` CI target that I believe has been
    causing the tests to not run with any of the version features enabled.
    acfoltzer committed May 27, 2023
    Configuration menu
    Copy the full SHA
    f2ca3d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f74e05e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    403f845 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2023

  1. Merge pull request #677 from acfoltzer/wasm32-wasi

    Add `wasm32-wasi` support with tests
    KodrAus authored May 28, 2023
    Configuration menu
    Copy the full SHA
    a0d6eb6 View commit details
    Browse the repository at this point in the history
  2. fix up MSRV build in CI

    KodrAus committed May 28, 2023
    Configuration menu
    Copy the full SHA
    b466522 View commit details
    Browse the repository at this point in the history
  3. Just check v4 for MSRV

    KodrAus authored May 28, 2023
    Configuration menu
    Copy the full SHA
    e582a3d View commit details
    Browse the repository at this point in the history
  4. Merge pull request #679 from uuid-rs/ci/msrv-build

    Fix up MSRV build in CI
    KodrAus authored May 28, 2023
    Configuration menu
    Copy the full SHA
    6188ecf View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2023

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

Commits on Jun 13, 2023

  1. Merge pull request #682 from Hanaasagi/fix-index

    fix: keep the order when filling random bytes
    KodrAus authored Jun 13, 2023
    Configuration menu
    Copy the full SHA
    4297536 View commit details
    Browse the repository at this point in the history
  2. prepare for 1.3.4 release

    KodrAus committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    80ec18c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #683 from uuid-rs/cargo/1.3.4

    Prepare for 1.3.4 release
    KodrAus authored Jun 13, 2023
    Configuration menu
    Copy the full SHA
    07052be View commit details
    Browse the repository at this point in the history
Loading