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
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.65.0] - 2026-08-22

### Added
### Changed
- **debt:** Upgraded to [Go 1.27](https://go.dev/doc/go1.27).
- **debt:** Upgraded dependencies to their latest stable versions.

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

---

## [1.64.6] - 2026-08-13

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

[Unreleased]: https://github.com/sixafter/nanoid/compare/v1.64.6...HEAD
[Unreleased]: https://github.com/sixafter/nanoid/compare/v1.65.0...HEAD
[1.65.0]: https://github.com/sixafter/nanoid/compare/v1.64.6...v1.65.0
[1.64.6]: https://github.com/sixafter/nanoid/compare/v1.64.5...v1.64.6
[1.64.5]: https://github.com/sixafter/nanoid/compare/v1.64.4...v1.64.5
[1.64.4]: https://github.com/sixafter/nanoid/compare/v1.64.3...v1.64.4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ Please see the [nanoid-cli](https://github.com/sixafter/nanoid-cli) for a comman
To verify the integrity of the release, follow these steps:

```sh
# Fetch the latest release tag from GitHub API (e.g., "v1.64.6")
# Fetch the latest release tag from GitHub API (e.g., "v1.65.0")
TAG=$(curl -s https://api.github.com/repos/sixafter/nanoid/releases/latest | jq -r .tag_name)

# Remove leading "v" for filenames (e.g., "v1.64.6" -> "1.64.6")
# Remove leading "v" for filenames (e.g., "v1.65.0" -> "1.65.0")
VERSION=${TAG#v}

# ---------------------------------------------------------------------
Expand Down
12 changes: 5 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@

module github.com/sixafter/nanoid

go 1.26
go 1.27

require (
github.com/sixafter/aes-ctr-drbg v1.19.3
github.com/sixafter/prng-chacha v1.16.6
github.com/stretchr/testify v1.11.1
github.com/sixafter/aes-ctr-drbg v1.20.0
github.com/sixafter/prng-chacha v1.17.0
github.com/stretchr/testify v1.12.1
golang.org/x/exp v0.0.0-20260112195511-716be5621a96
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.yaml.in/yaml/v3 v3.0.5 // indirect
golang.org/x/crypto v0.55.0 // indirect
golang.org/x/sys v0.47.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
22 changes: 8 additions & 14 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
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.19.3 h1:7LcjQVgHFR4J7WBDT3NnNT0XmBhHlVc3plHlKHdpQ9Y=
github.com/sixafter/aes-ctr-drbg v1.19.3/go.mod h1:iOBiPPkiy5Z5cEWm2yCoqEtnkfafxNTokJLL0zOPZeQ=
github.com/sixafter/prng-chacha v1.16.6 h1:A2fUNHRN90YppgixoTjK9pFyzGQ6iN8gh2ZVXGUj9ms=
github.com/sixafter/prng-chacha v1.16.6/go.mod h1:/IP/MaNTXj3bhcZQApGtF5pLyehYWAbkkiQJaZ+FoXk=
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
github.com/sixafter/aes-ctr-drbg v1.20.0 h1:O3VbI8XFoQOqsvSfo+KYTnDz1A7cAzcHaAg0lDnXvng=
github.com/sixafter/aes-ctr-drbg v1.20.0/go.mod h1:cM+89w3S8+AfWLVX+Pv0mffPmi2lkRVLIWIfTmxT4x8=
github.com/sixafter/prng-chacha v1.17.0 h1:jDmy8RUOHv1mMDX/vHlnj/V6nwIWIe3d1yzQBGeFW2o=
github.com/sixafter/prng-chacha v1.17.0/go.mod h1:FmglEI3IjFfFOCFLKHpkv1jVCw6WmZI2JPnaSJAiZ5w=
github.com/stretchr/testify v1.12.1 h1:EuwCh5fleGS7H32xRwO3wRGT7DxrDhLAT6FF8MpWDWE=
github.com/stretchr/testify v1.12.1/go.mod h1:MDEgiDPPsNp5cuIrHPPCyornHKgEVbtFUmoNlxoYthg=
go.yaml.in/yaml/v3 v3.0.5 h1:N6y/pJk8buWs9NY5ERU2HSMfm+IuD/OtfdAnq6kESPw=
go.yaml.in/yaml/v3 v3.0.5/go.mod h1:HVTZu1O7/Vkt2N+BFy8Zza+lnLsABggaTM2ZpNIGuKg=
golang.org/x/crypto v0.55.0 h1:+KWHjbgOaAQ66dh/YlkZKHlz9ZUlq61AFirAR9ntP8M=
golang.org/x/crypto v0.55.0/go.mod h1:uq0V9dE/fzQuJtbnL+2EhWOE63vo164FY8xqEnV9xis=
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.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
golang.org/x/sys v0.47.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=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
4 changes: 2 additions & 2 deletions vendor/github.com/sixafter/aes-ctr-drbg/README.md

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

4 changes: 2 additions & 2 deletions vendor/github.com/sixafter/prng-chacha/README.md

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

2 changes: 1 addition & 1 deletion vendor/github.com/sixafter/prng-chacha/prng.go

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

28 changes: 20 additions & 8 deletions vendor/github.com/stretchr/testify/assert/assertion_format.go

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

52 changes: 38 additions & 14 deletions vendor/github.com/stretchr/testify/assert/assertion_forward.go

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

14 changes: 13 additions & 1 deletion vendor/github.com/stretchr/testify/assert/assertion_order.go

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

Loading