@fedify/amqp 1.8.0-dev.932 → 1.8.0-dev.934
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 +5 -50
- package/deno.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
[![JSR][JSR badge]][JSR]
|
|
7
7
|
[![npm][npm badge]][npm]
|
|
8
|
-
[![GitHub Actions][GitHub Actions badge]][GitHub Actions]
|
|
9
8
|
|
|
10
9
|
> [!NOTE]
|
|
11
10
|
>
|
|
@@ -45,8 +44,6 @@ For more details, please refer to the docs of [`AmqpMessageQueueOptions`].
|
|
|
45
44
|
[JSR badge]: https://jsr.io/badges/@fedify/amqp
|
|
46
45
|
[npm]: https://www.npmjs.com/package/@fedify/amqp
|
|
47
46
|
[npm badge]: https://img.shields.io/npm/v/@fedify/amqp?logo=npm
|
|
48
|
-
[GitHub Actions]: https://github.com/fedify-dev/amqp/actions/workflows/main.yaml
|
|
49
|
-
[GitHub Actions badge]: https://github.com/fedify-dev/amqp/actions/workflows/main.yaml/badge.svg
|
|
50
47
|
[RabbitMQ]: https://www.rabbitmq.com/
|
|
51
48
|
[Fedify]: https://fedify.dev/
|
|
52
49
|
[`KvStore`]: https://jsr.io/@fedify/fedify/doc/federation/~/KvStore
|
|
@@ -58,52 +55,10 @@ For more details, please refer to the docs of [`AmqpMessageQueueOptions`].
|
|
|
58
55
|
Installation
|
|
59
56
|
------------
|
|
60
57
|
|
|
61
|
-
### Deno
|
|
62
|
-
|
|
63
|
-
~~~~ sh
|
|
64
|
-
deno add @fedify/amqp
|
|
65
|
-
~~~~
|
|
66
|
-
|
|
67
|
-
### Node.js
|
|
68
|
-
|
|
69
|
-
~~~~ sh
|
|
70
|
-
npm install @fedify/amqp
|
|
71
|
-
~~~~
|
|
72
|
-
|
|
73
|
-
### Bun
|
|
74
|
-
|
|
75
58
|
~~~~ sh
|
|
76
|
-
|
|
59
|
+
deno add jsr:@fedify/amqp # Deno
|
|
60
|
+
npm add @fedify/amqp # npm
|
|
61
|
+
pnpm add @fedify/amqp # pnpm
|
|
62
|
+
yarn add @fedify/amqp # Yarn
|
|
63
|
+
bun add @fedify/amqp # Bun
|
|
77
64
|
~~~~
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
Changelog
|
|
81
|
-
---------
|
|
82
|
-
|
|
83
|
-
### Version 0.4.0
|
|
84
|
-
|
|
85
|
-
To be released.
|
|
86
|
-
|
|
87
|
-
### Version 0.3.0
|
|
88
|
-
|
|
89
|
-
Released on June 25, 2025.
|
|
90
|
-
|
|
91
|
-
- Added `nativeRetrial` option to `AmqpMessageQueueOptions` to enable
|
|
92
|
-
native retrial of messages.
|
|
93
|
-
|
|
94
|
-
- The type of the `AmqpMessageQueue()` constructor's first parameter has been
|
|
95
|
-
changed from `Connection` to `ChannelModel`.
|
|
96
|
-
|
|
97
|
-
### Version 0.2.0
|
|
98
|
-
|
|
99
|
-
Released on March 28, 2025.
|
|
100
|
-
|
|
101
|
-
- Added `AmqpMessageQueue.enqueueMany()` method for efficiently enqueuing
|
|
102
|
-
multiple messages at once.
|
|
103
|
-
|
|
104
|
-
- Updated *@js-temporal/polyfill* to 0.5.0 for Node.js and Bun. On Deno,
|
|
105
|
-
there is no change because the polyfill is not used.
|
|
106
|
-
|
|
107
|
-
### Version 0.1.0
|
|
108
|
-
|
|
109
|
-
Initial release. Released on October 14, 2024.
|
package/deno.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/amqp",
|
|
3
|
-
"version": "1.8.0-dev.
|
|
3
|
+
"version": "1.8.0-dev.934+a4daf718",
|
|
4
4
|
"description": "AMQP/RabbitMQ driver for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fedify",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"amqplib": "^0.10.8",
|
|
42
|
-
"@fedify/fedify": "1.8.0-dev.
|
|
42
|
+
"@fedify/fedify": "1.8.0-dev.934+a4daf718"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@alinea/suite": "^0.6.3",
|