8000 Comparing v2.1.0...v2.1.1 · oklog/ulid · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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: oklog/ulid
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.0
Choose a base ref
...
head repository: oklog/ulid
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.1.1
Choose a head ref
  • 11 commits
  • 4 files changed
  • 8 contributors

Commits on Jul 19, 2022

  1. README fix broken pkg.go.dev links (#82)

    Co-authored-by: Peter Aba <zsolt.peter.aba@zalando.de>
    peteraba and Peter Aba authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    9b11cd4 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

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

Commits on Oct 21, 2022

  1. README: fix small typos (#88)

    Craig Pastro authored Oct 21, 2022
    Configuration menu
    Copy the full SHA
    1dfe33a View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2022

  1. Add fmt, vet, staticcheck to CI and lint accordingly (#89)

    * typos: "an ulid" --> "a ulid"
    
    * go fmt
    
    * Add lint to ci
    
    * whoops, need to check out first
    
    * revert and add fmt, vet, staticcheck
    
    * bash not fish
    
    * apply suggestion
    Craig Pastro authored Nov 8, 2022
    Configuration menu
    Copy the full SHA
    ab86345 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. ulid: add MakeFromTime helper function (#87)

    * ulid: add MakeFromTime helper function
    
    * fix typo and add comment
    
    * Use must as it may panic
    
    * Update based on feedback
    Craig Pastro authored Nov 23, 2022
    Configuration menu
    Copy the full SHA
    6222989 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2023

  1. Refactor default entropy and fix test (#98)

    * Refactor default entropy and fix test
    
    * Update staticcheck in test action
    
    * Another fix to the test action
    
    * Update comments
    peterbourgon authored Mar 27, 2023
    Configuration menu
    Copy the full SHA
    99f5976 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

10000
  1. README: println -> fmt.Println

    Fixes #104
    tsenart committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    b4f9914 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

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

Commits on Mar 2, 2024

  1. Configuration menu
    Copy the full SHA
    1d53f5d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8b543f4 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2024

  1. Add ulid.Zero and .IsZero() method (#112)

    * Add `uuid.Nil` and `.IsZero()` method
    
    This simplifies comparisons with empty ULIDs.  Right now, most people
    are doing something like the following to check if a ULID is non-zero:
    
    ```go
    id.Compare(ulid.ULID{}) == 0
    ```
    
    This requires allocating a new empty ULID each time.  Some packages
    avoid this by creating their own global (or private) nil ULIDs on
    initialization.
    
    This should be built in and simple for better perf & a cleaner API.
    
    * Update ulid.go
    
    * Update ulid.go
    
    * Update ulid.go
    
    * Update ulid_test.go
    
    * Update ulid_test.go
    
    ---------
    
    Co-authored-by: Peter Bourgon <peterbourgon@users.noreply.github.com>
    tonyhb and peterbourgon authored Apr 13, 2024
    Configuration menu
    Copy the full SHA
    96c4edf View commit details
    Browse the repository at this point in the history
Loading
0