Skip to content

Commit 91fc284

Browse files
committed
Update changelog, versions
1 parent d58d859 commit 91fc284

File tree

5 files changed

+75
-10
lines changed

5 files changed

+75
-10
lines changed

CHANGELOG.md

+69-5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,68 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [cuid2 v0.1.3], [cuid 1.3.3]
11+
12+
### Upcoming
13+
14+
- The next major release will be a breaking release, dropping the
15+
top-level `cuid()`, `slug()`, and `is_cuid()` functions in favor of
16+
their version-specific counterparts (see below).
17+
- I also intend to split the v1 CUID functionality out into its own
18+
crate and publish it independently, like I have done for `cuid2`.
19+
The top-level `cuid` crate will then pull in the sub-crates depending
20+
on features, making it easy to just pull the CUID version you need.
21+
22+
### Added
23+
24+
- Provide new top-level functions from the `cuid` library to disambiguate
25+
CUID versions:
26+
- `cuid::cuid1()`: generate a v1 CUID, replacement for deprecated `cuid()`
27+
- `cuid::cuid1_slug()`: generate a v1 CUID slug, replacement for deprecated `slug()`
28+
- `cuid::is_cuid1()` - check whether a string looks like it could be a v1 CUID,
29+
replacement for deprecated `is_cuid()`
30+
- `cuid::is_cuid1_slug()` - check whether a string looks like it could be a v1 CUID
31+
slug, replacement for deprecated `is_cuid()`
32+
- `cuid::cuid2_slug()` - generate a v2 CUID of length 10
33+
- `cuid::is_cuid2_slug()` - check whether a string looks like could be a v2 CUID
34+
slug
35+
- `cuid::Cuid2Constructor` - expose the v2 CUID constructor interface
36+
- Added a couple of functions to `cuid2` for parity with v1 functions:
37+
- `cuid2::slug()` - generate a v2 CUID of length 10
38+
- `cuid2::is_slug()` - check whether a string looks like could be a v2 CUID
39+
slug
40+
- Added support for webassembly builds. Builds are tested for `wasm32-unknown-unknown`
41+
and `wasm32-wasi` targets. I intend to add Javascript bindings and publish
42+
npm packages in an upcoming update.
43+
- The system hostname is not available to WASM, so for the CUID v1
44+
fingerprint algorithm, we instead use a v4 UUID. This does mean the
45+
fingerprint will not be consistent on a host over time, which slightly
46+
diverges from the behavior of CUIDs on other targets. Please open an
47+
issue if this is a problem for you.
48+
49+
### Changed
50+
51+
- CUID v1 functions are no longer marked as deprecated. The original JS
52+
library was marked as insecure and deprecated by its creators, but this
53+
was merely due to their personal stance that any k-sortable IDs are
54+
insecure and should not be used. This library's author does not share
55+
the same view. New functions have been provided to better disambiguate
56+
creating v1 vs v2 IDs, and functions that do not explicitly specify
57+
a version are still marked as deprecated.
58+
- The CUID binaries now randomize the counter prior to generating an ID,
59+
rather than always starting at 0. This ensures that commandline-generated
60+
CUIDs do not lose entropy relative to library-generated CUIDs due to
61+
always having the same counter value.
62+
- The `cuid2::is_cuid()`/`cuid::is_cuid2()` function has been improved and
63+
now rejects more strings that are invalid CUIDs (contribution by @stormshield-kg)
64+
- The `cuid2` binary now supports an optional `--length|-l` argument, which
65+
enables specifying the length of the generated CUID (contribution by @der-fruhling)
66+
67+
### Removed
68+
69+
- Removed old benchmarks and `#[cfg(nightly)]` blocks. Criterion benchmarks
70+
are the important ones, and those remain.
71+
1072
## [cuid2 v0.1.2]
1173

1274
### Changed
@@ -17,7 +79,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1779
- Simplified hashing function, no longer adding additional entropy in addition
1880
to building a hash
1981
- Increased range of possible values for counter initialization
20-
- Random numbers for entropy are now random numbers from [0, 36), rather than
82+
- Random numbers for entropy are now random numbers from [0, 36), rather than
2183
a random choice from a static array of prime numbers
2284

2385
## [cuid 1.3.2], [cuid2 0.1.1]
@@ -74,7 +136,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74136

75137
### Changed
76138

77-
- ~10-20% performance improvement overall through optimization of
139+
- ~10-20% performance improvement overall through optimization of
78140
`pad_with_char()`([b5503d6])
79141

80142
## [1.1.0] - 2021-08-03
@@ -136,7 +198,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
136198
- CUID & CUID slug generation
137199
- Benchmark suite
138200

139-
[unreleased]: https://github.com/mplanchard/cuid-rust/compare/cuid2-v0.1.2...HEAD
201+
[unreleased]: https://github.com/mplanchard/cuid-rust/compare/cuid2-v0.1.3...HEAD
202+
[cuid2 v0.1.3]: https://github.com/mplanchard/cuid-rust/compare/cuid2-v0.1.2...cuid2-v0.1.3
203+
[cuid 1.3.3]: https://github.com/mplanchard/cuid-rust/compare/cuid-v1.3.2...cuid-v1.3.3
140204
[cuid2 v0.1.2]: https://github.com/mplanchard/cuid-rust/compare/cuid2-v0.1.1...cuid2-v0.1.2
141205
[cuid 1.3.2]: https://github.com/mplanchard/cuid-rust/compare/cuid-v1.3.1...cuid-v1.3.2
142206
[cuid2 0.1.1]: https://github.com/mplanchard/cuid-rust/compare/cuid2-v0.1.0...cuid2-v0.1.1
@@ -157,5 +221,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
157221
[edb22b5]: https://github.com/mplanchard/cuid-rust/commit/edb22b5
158222
[8d2c180]: https://github.com/mplanchard/cuid-rust/commit/8d2c180
159223
[a4fca2f]: https://github.com/mplanchard/cuid-rust/commit/a4fca2f
160-
[b5503d6]: https://github.com/mplanchard/cuid-rust/commit/b5503d6
161-
[b93b5b3]: https://github.com/mplanchard/cuid-rust/commit/b93b5b3
224+
[b5503d6]: https://github.com/mplanchard/cuid-rust/commit/b5503d6
225+
[b93b5b3]: https://github.com/mplanchard/cuid-rust/commit/b93b5b3

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ homepage = "https://github.com/mplanchard/cuid-rust"
1010
repository = "https://github.com/mplanchard/cuid-rust"
1111

1212
[workspace.dependencies]
13-
cuid-util.path = "./crates/cuid-util"
13+
cuid-util = { path = "./crates/cuid-util", version = "0.1.1" }
14+
cuid2 = { path = "./crates/cuid2", version = "0.1.3" }
1415
criterion = "0.5.0"
1516
proptest = "1.0.0"
1617
rand = "0.8"

crates/cuid-util/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cuid-util"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Shared utilities for the cuid and cuid2 crates"
55
resolver = "2"
66
edition.workspace = true

crates/cuid1/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cuid"
3-
version = "1.3.2"
3+
version = "1.3.3"
44
description = "An ipmlementation of CUID protocol in rust"
55
documentation = "https://docs.rs/cuid/latest/cuid/"
66
resolver = "2"
@@ -16,7 +16,7 @@ maintenance = { status = "deprecated" }
1616
[dependencies]
1717
base36 = "0.0.1"
1818
cuid-util.workspace = true
19-
cuid2.path = "../cuid2"
19+
cuid2.workspace = true
2020
num = { version = "0.4.0", features = ["num-bigint"] }
2121
once_cell = "1.19.0"
2222
rand.workspace = true

crates/cuid2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cuid2"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "An implementation of the CUID2 protocol in rust"
55
documentation = "https://docs.rs/cuid/latest/cuid2/"
66
resolver = "2"

0 commit comments

Comments
 (0)