@@ -7,6 +7,68 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ unreleased]
9
9
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
+
10
72
## [ cuid2 v0.1.2]
11
73
12
74
### Changed
@@ -17,7 +79,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
79
- Simplified hashing function, no longer adding additional entropy in addition
18
80
to building a hash
19
81
- 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
21
83
a random choice from a static array of prime numbers
22
84
23
85
## [ 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
74
136
75
137
### Changed
76
138
77
- - ~ 10-20% performance improvement overall through optimization of
139
+ - ~ 10-20% performance improvement overall through optimization of
78
140
` pad_with_char() ` ([ b5503d6] )
79
141
80
142
## [ 1.1.0] - 2021-08-03
@@ -136,7 +198,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
136
198
- CUID & CUID slug generation
137
199
- Benchmark suite
138
200
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
140
204
[ cuid2 v0.1.2 ] : https://github.com/mplanchard/cuid-rust/compare/cuid2-v0.1.1...cuid2-v0.1.2
141
205
[ cuid 1.3.2 ] : https://github.com/mplanchard/cuid-rust/compare/cuid-v1.3.1...cuid-v1.3.2
142
206
[ 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
157
221
[ edb22b5 ] : https://github.com/mplanchard/cuid-rust/commit/edb22b5
158
222
[ 8d2c180 ] : https://github.com/mplanchard/cuid-rust/commit/8d2c180
159
223
[ 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
0 commit comments