Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

# Ref: https://github.com/sigstore/cosign-installer
- name: Install Cosign
uses: sigstore/cosign-installer@v4.1.0
uses: sigstore/cosign-installer@v4.1.1

# Ref: https://github.com/anchore/sbom-action
- name: Generate SBOM via Syft
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG/CHANGELOG-1.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ Date format: `YYYY-MM-DD`

---

## [1.64.1] - 2026-04-08

### Added
### Changed
- **debt:** Upgraded [prng-chacha](http://github.com/sixafter/prng-chacha) to the latest stable version.
- **debt:** Upgraded dependencies to their latest stable versions.

### Deprecated
### Removed
### Fixed
### Security

---

## [1.64.0] - 2026-03-14

### Added
Expand Down Expand Up @@ -1174,7 +1188,8 @@ Date format: `YYYY-MM-DD`
### Fixed
### Security

[Unreleased]: https://github.com/sixafter/nanoid/compare/v1.64.0...HEAD
[Unreleased]: https://github.com/sixafter/nanoid/compare/v1.64.1...HEAD
[1.64.1]: https://github.com/sixafter/nanoid/compare/v1.64.0...v1.64.1
[1.64.0]: https://github.com/sixafter/nanoid/compare/v1.63.1...v1.64.0
[1.63.1]: https://github.com/sixafter/nanoid/compare/v1.63.0...v1.63.1
[1.63.0]: https://github.com/sixafter/nanoid/compare/v1.62.0...v1.63.0
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ module github.com/sixafter/nanoid
go 1.26

require (
github.com/sixafter/aes-ctr-drbg v1.18.0
github.com/sixafter/prng-chacha v1.16.0
github.com/sixafter/aes-ctr-drbg v1.19.0
github.com/sixafter/prng-chacha v1.16.1
github.com/stretchr/testify v1.11.1
golang.org/x/exp v0.0.0-20260112195511-716be5621a96
)
Expand All @@ -18,6 +18,6 @@ require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.49.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/sys v0.43.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/sixafter/aes-ctr-drbg v1.18.0 h1:/tRpQLmZaly3fLDwQ6R9GWkiND4Zi4TiPEMG4gd9D/w=
github.com/sixafter/aes-ctr-drbg v1.18.0/go.mod h1:iOBiPPkiy5Z5cEWm2yCoqEtnkfafxNTokJLL0zOPZeQ=
github.com/sixafter/prng-chacha v1.16.0 h1:WRiccbdSVfkg/1PQzrCltqWduGifmsSfoObBVlwuE+8=
github.com/sixafter/prng-chacha v1.16.0/go.mod h1:oIYuSKShuQrAxebyjdXMphJqM/gqGbcJXZfl20mcQNg=
github.com/sixafter/aes-ctr-drbg v1.19.0 h1:F8hy3L1xcGKWxJZwe/C7xBC8JOqYXwlubrpJpQJ3jWg=
github.com/sixafter/aes-ctr-drbg v1.19.0/go.mod h1:iOBiPPkiy5Z5cEWm2yCoqEtnkfafxNTokJLL0zOPZeQ=
github.com/sixafter/prng-chacha v1.16.1 h1:RI+xcPvunrHw5dBbj/hGDCsyUYyMgcBgKHxAcR0dIhI=
github.com/sixafter/prng-chacha v1.16.1/go.mod h1:mdr4XaoAPm+PnEVbjOBmVhM+1ZS3RdopGCjZyO7OHyQ=
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
golang.org/x/crypto v0.49.0 h1:+Ng2ULVvLHnJ/ZFEq4KdcDd/cfjrrjjNSXNzxg0Y4U4=
golang.org/x/crypto v0.49.0/go.mod h1:ErX4dUh2UM+CFYiXZRTcMpEcN8b/1gxEuv3nODoYtCA=
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 h1:Z/6YuSHTLOHfNFdb8zVZomZr7cqNgTJvA8+Qz75D8gU=
golang.org/x/exp v0.0.0-20260112195511-716be5621a96/go.mod h1:nzimsREAkjBCIEFtHiYkrJyT+2uy9YZJB7H1k68CXZU=
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
Expand Down
2 changes: 2 additions & 0 deletions vendor/golang.org/x/sys/cpu/cpu_darwin_arm64_other.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/golang.org/x/sys/cpu/cpu_other_arm64.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 0 additions & 42 deletions vendor/golang.org/x/sys/cpu/cpu_windows_arm64.go

This file was deleted.

13 changes: 0 additions & 13 deletions vendor/golang.org/x/sys/windows/aliases.go

This file was deleted.

Loading