@fedify/postgres 0.3.0-dev.21 → 0.3.0
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/README.md +4 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -66,11 +66,14 @@ Changelog
|
|
|
66
66
|
|
|
67
67
|
### Version 0.3.0
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
Released on March 28, 2025.
|
|
70
70
|
|
|
71
71
|
- Added `PostgresMessageQueue.enqueueMany()` method for efficiently enqueuing
|
|
72
72
|
multiple messages at once.
|
|
73
73
|
|
|
74
|
+
- Updated *@js-temporal/polyfill* to 0.5.0 for Node.js and Bun. On Deno,
|
|
75
|
+
there is no change because the polyfill is not used.
|
|
76
|
+
|
|
74
77
|
- Added some logging using [LogTape] for the sake of debugging. The following
|
|
75
78
|
categories are used:
|
|
76
79
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/postgres",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "PostgreSQL drivers for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fedify",
|
|
@@ -57,14 +57,15 @@
|
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"funding": [
|
|
60
|
+
"https://opencollective.com/fedify",
|
|
60
61
|
"https://github.com/sponsors/dahlia"
|
|
61
62
|
],
|
|
62
63
|
"dependencies": {
|
|
63
|
-
"@fedify/fedify": "1.5.0
|
|
64
|
+
"@fedify/fedify": "1.5.0",
|
|
64
65
|
"@logtape/logtape": "^0.9.0",
|
|
65
66
|
"postgres": "^3.4.5",
|
|
66
67
|
"@deno/shim-deno": "~0.18.0",
|
|
67
|
-
"@js-temporal/polyfill": "^0.
|
|
68
|
+
"@js-temporal/polyfill": "^0.5.0"
|
|
68
69
|
},
|
|
69
70
|
"devDependencies": {
|
|
70
71
|
"@types/node": "^20.9.0"
|