Skip to content

Commit cb6748e

Browse files
committed
Fix double-quoted JSON values in the database
1 parent 330f9ae commit cb6748e

File tree

7 files changed

+416
-431
lines changed

7 files changed

+416
-431
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ Changelog
6868

6969
To be released.
7070

71+
- Fixed a bug where JSON values are double-quoted in the database. Since it's
72+
a breaking change data-wise, the default values of the following options
73+
are also changed:
74+
75+
- `PostgresKvStoreOptions.tableName` defaults to `"fedify_kv_v2"`.
76+
- `PostgresMessageQueueOptions.tableName` defaults to
77+
`"fedify_message_v2"`.
78+
7179
### Version 0.1.0
7280

7381
Initial release. Released on September 26, 2024.

deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
"./mq": "./src/mq.ts"
99
},
1010
"imports": {
11-
"@deno/dnt": "jsr:@deno/dnt@^0.41.2",
11+
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
1212
"@fedify/fedify": "jsr:@fedify/fedify@^1.0.0",
1313
"@std/assert": "jsr:@std/assert@^0.226.0",
1414
"@std/async": "jsr:@std/async@^1.0.5",
15-
"postgres": "npm:postgres@^3.4.4"
15+
"postgres": "npm:postgres@^3.4.5"
1616
},
1717
"unstable": [
1818
"temporal"

0 commit comments

Comments
 (0)