@beignet/nuqs 0.0.33 → 0.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @beignet/nuqs
2
2
 
3
+ ## 0.0.35
4
+
5
+ ### Patch Changes
6
+
7
+ - 2a5b224: Preserve idempotency and outbox delivery guarantees on persistence and handler failures, enforce multipart limits from actual bytes, support Date and JSON query serialization, and add bounded MySQL deadlock backoff.
8
+
9
+ ## 0.0.34
10
+
3
11
  ## 0.0.33
4
12
 
5
13
  ## 0.0.32
package/README.md CHANGED
@@ -89,6 +89,8 @@ Converts `nuqs` state into a Beignet query object.
89
89
  - `omitNullish` defaults to `true`
90
90
  - `null` and `undefined` are removed
91
91
  - valid falsy values like `0`, `false`, and `""` are preserved
92
+ - `Date` state is serialized as ISO-8601 and `parseAsJson` object state is
93
+ serialized as JSON by the Beignet client used by `toQueryOptions(...)`
92
94
 
93
95
  ### `.toQueryOptions(rq(contract), state, options?)`
94
96
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beignet/nuqs",
3
- "version": "0.0.33",
3
+ "version": "0.0.35",
4
4
  "type": "module",
5
5
  "description": "nuqs integration for Beignet",
6
6
  "main": "./dist/index.js",