Commit cc8ca91 1 parent d7c916f commit cc8ca91 Copy full SHA for cc8ca91
File tree 3 files changed +13
-7
lines changed
3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
1
# kv-toolbox change log
2
2
3
+ ## Version 0.21.1
4
+
5
+ - fix: add ` .watch() ` method to toolbox (d7c916f)
6
+
3
7
## Version 0.21.0
4
8
5
9
- feat: make sizeOf public (738b6bf)
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @kitsonk/kv-toolbox" ,
3
- "version" : " 0.21.0 " ,
3
+ "version" : " 0.21.1 " ,
4
4
"exports" : {
5
5
"." : " ./toolbox.ts" ,
6
6
"./batched_atomic" : " ./batched_atomic.ts" ,
Original file line number Diff line number Diff line change 51
51
* capabilities of the toolbox are provided by additional exports of the
52
52
* library:
53
53
*
54
- * - [batched_atomic](../ doc/batched_atomic/~ ) - Provides a way to perform
54
+ * - [batched_atomic](https://jsr.io/@kitsonk/kv-toolbox/ doc/batched_atomic) - Provides a way to perform
55
55
* atomic operations in batches while working around the limitations of
56
56
* Deno KV.
57
- * - [blob](../ doc/blob/~ ) - Provides a way to store arbitrarily large binary
57
+ * - [blob](https://jsr.io/@kitsonk/kv-toolbox/ doc/blob) - Provides a way to store arbitrarily large binary
58
58
* data in Deno KV.
59
- * - [crypto](../ doc/crypto/~ ) - Provides a way to encrypt and decrypt data in
59
+ * - [crypto](https://jsr.io/@kitsonk/kv-toolbox/ doc/crypto) - Provides a way to encrypt and decrypt data in
60
60
* Deno KV.
61
- * - [json](../ doc/json/~ ) - Provides utilities for handling Deno KV entries,
61
+ * - [json](https://jsr.io/@kitsonk/kv-toolbox/ doc/json) - Provides utilities for handling Deno KV entries,
62
62
* keys, and values as structures which can be serialized and deserialized to
63
63
* JSON.
64
- * - [keys](../ doc/keys/~ ) - Provides convenience functions for working with
64
+ * - [keys](https://jsr.io/@kitsonk/kv-toolbox/ doc/keys) - Provides convenience functions for working with
65
65
* keys in Deno KV.
66
- * - [ndjson](../ doc/ndjson/~ ) - Utilities for handling NDJSON which is a method
66
+ * - [ndjson](https://jsr.io/@kitsonk/kv-toolbox/ doc/ndjson) - Utilities for handling NDJSON which is a method
67
67
* for encoding JSON in a way that supports streaming, where each JSON entity
68
68
* is separated with a newline.
69
+ * - [size_of](https://jsr.io/@kitsonk/kv-toolbox/doc/size_of) - Provides a way to calculate the size of a
70
+ * JavaScript object in bytes.
69
71
*
70
72
* @module
71
73
*/
You can’t perform that action at this time.
0 commit comments