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.11.1
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.12.0
Choose a head ref
  • 16 commits
  • 12 files changed
  • 3 contributors

Commits on Jan 4, 2025

  1. feat: Add NonZeroUuid type for optimized Option<Uuid> representation

    This commit introduces a new `NonZeroUuid` type that wraps a `Uuid` and guarantees that it is
    not the nil UUID. This allows for a more memory-efficient representation of `Option<Uuid>`,
    as `Option<NonZeroUuid>` takes up the same space as `Uuid`.
    
    This change improves the memory efficiency of representing optional UUIDs and provides a more convenient way to work with non-nil UUIDs.
    
    fixes: #770
    ab22593k committed Jan 4, 2025
    Configuration menu
    Copy the full SHA
    6c7e909 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2025

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

Commits on Jan 13, 2025

  1. Configuration menu
    Copy the full SHA
    853ec46 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4fc89c View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2025

  1. Merge pull request #779 from ab22593k/main

    feat: Add `NonZeroUuid` type for optimized `Option<Uuid>` representation
    KodrAus authored Jan 14, 2025
    Configuration menu
    Copy the full SHA
    618e817 View commit details
    Browse the repository at this point in the history
  2. fill in a few non-nil methods

    KodrAus committed Jan 14, 2025
    Configuration menu
    Copy the full SHA
    402a8be View commit details
    Browse the repository at this point in the history
  3. add a few missing derives

    KodrAus committed Jan 14, 2025
    Configuration menu
    Copy the full SHA
    4ffd872 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f570b57 View commit details
    Browse the repository at this point in the history
  5. fix up zerocopy derives

    KodrAus committed Jan 14, 2025
    Configuration menu
    Copy the full SHA
    4021daa View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    38df005 View commit details
    Browse the repository at this point in the history
  7. fix up non nil docs

    KodrAus committed Jan 14, 2025
    Configuration menu
    Copy the full SHA
    b12c690 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6c5099e View commit details
    Browse the repository at this point in the history
  9. Merge pull request #783 from uuid-rs/feat/non-nil

    Finalize `NonNilUuid`
    KodrAus authored Jan 14, 2025
    Configuration menu
    Copy the full SHA
    358eb34 View commit details
    Browse the repository at this point in the history
  10. prepare for 1.12.0 release

    KodrAus committed Jan 14, 2025
    Configuration menu
    Copy the full SHA
    8f76175 View commit details
    Browse the repository at this point in the history
  11. fix deprecation versions

    KodrAus committed Jan 14, 2025
    Configuration menu
    Copy the full SHA
    4cfbd83 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #784 from uuid-rs/cargo/1.12.0

    Prepare for 1.12.0 release
    KodrAus authored Jan 14, 2025
    Configuration menu
    Copy the full SHA
    c5f1d02 View commit details
    Browse the repository at this point in the history
Loading