Skip to content

Commit 5024e19

Browse files
committedOct 29, 2021
Publish
- @node-ts/bus-class-serializer@1.0.4 - @node-ts/bus-core@1.0.4 - @node-ts/bus-messages@1.0.1 - @node-ts/bus-postgres@1.0.4 - @node-ts/bus-rabbitmq@1.0.6 - @node-ts/bus-sqs@1.0.6 - @node-ts/bus-test@0.0.6
1 parent d068216 commit 5024e19

File tree

13 files changed

+36
-25
lines changed

13 files changed

+36
-25
lines changed
 

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
*A library for building message-based, distributed node applications.*
44

5-
🔥 📒 👉 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 👈 📒 🔥
5+
🔥 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 🔥
66

7+
🤔 Have a question? [Join our Discord](https://discord.gg/Gg7v4xt82X) 🤔
78
## Components
89

910
* [@node-ts/bus-core](https://github.com/node-ts/bus/tree/master/packages/bus-core) - Core bus library for sending and receiving messages and managing workflows

‎packages/bus-class-serializer/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@node-ts/bus-class-serializer",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "A JSON serializer for @node-ts/bus based on class-transformer for strong marshalling of messages",
55
"homepage": "https://github.com/node-ts/bus#readme",
66
"license": "MIT",
@@ -16,7 +16,7 @@
1616
"access": "public"
1717
},
1818
"devDependencies": {
19-
"@node-ts/bus-core": "^1.0.3",
19+
"@node-ts/bus-core": "^1.0.4",
2020
"class-transformer": "^0.3.1",
2121
"reflect-metadata": "^0.1.13"
2222
},

‎packages/bus-core/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
The core messaging framework. This package provides an in-memory queue and persistence by default, but is designed to be used with other @node-ts/bus-* packages that provide compatibility with other transports (SQS, RabbitMQ, Azure Queues) and persistence technologies (PostgreSQL, SQL Server, Oracle).
44

5-
🔥 📒 👉 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 👈 📒 🔥
5+
🔥 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 🔥
6+
7+
🤔 Have a question? [Join our Discord](https://discord.gg/Gg7v4xt82X) 🤔
68

79
## Installation
810

‎packages/bus-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@node-ts/bus-core",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "A service bus for message-based, distributed node applications",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -14,7 +14,7 @@
1414
"access": "public"
1515
},
1616
"dependencies": {
17-
"@node-ts/bus-messages": "^1.0.0",
17+
"@node-ts/bus-messages": "^1.0.1",
1818
"debug": "^4.3.1",
1919
"reflect-metadata": "^0.1.13",
2020
"serialize-error": "^8.1.0",

‎packages/bus-messages/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
This package should be consumed wherever your application defines message contracts. Messages are small pieces of data that get passed around between services. They can define an instruction to perform an action, or report that something has just occurred.
44

5-
🔥 📒 👉 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 👈 📒 🔥
5+
🔥 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 🔥
6+
7+
🤔 Have a question? [Join our Discord](https://discord.gg/Gg7v4xt82X) 🤔
68

79
## Installation
810

‎packages/bus-messages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-ts/bus-messages",
33
"description": "A core set of message definitions for distributed applications.",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"license": "MIT",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",

‎packages/bus-postgres/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
A Postgres based persistence for workflow storage in [@node-ts/bus](https://node-ts.gitbook.io/bus/)
44

5-
🔥 📒 👉 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 👈 📒 🔥
5+
🔥 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 🔥
6+
7+
🤔 Have a question? [Join our Discord](https://discord.gg/Gg7v4xt82X) 🤔
68

79
## Installation
810

‎packages/bus-postgres/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-ts/bus-postgres",
33
"description": "A Postgres persistence adapter for workflow storage in @node-ts/bus-workflow.",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"license": "MIT",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",
@@ -17,13 +17,13 @@
1717
"access": "public"
1818
},
1919
"dependencies": {
20-
"@node-ts/bus-messages": "^1.0.0",
20+
"@node-ts/bus-messages": "^1.0.1",
2121
"pg": "^8.2.1",
2222
"tslib": "^1.9.3",
2323
"uuid": "^3.3.2"
2424
},
2525
"devDependencies": {
26-
"@node-ts/bus-core": "^1.0.3",
26+
"@node-ts/bus-core": "^1.0.4",
2727
"@node-ts/code-standards": "^0.0.10",
2828
"@types/amqplib": "^0.5.11",
2929
"@types/pg": "^7.14.3",

‎packages/bus-rabbitmq/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
A Rabbit MQ transport adapter for [@node-ts/bus](https://node-ts.gitbook.io/bus/)
44

5-
🔥 📒 👉 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 👈 📒 🔥
5+
🔥 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 🔥
6+
7+
🤔 Have a question? [Join our Discord](https://discord.gg/Gg7v4xt82X) 🤔
68

79
## Installation
810

‎packages/bus-rabbitmq/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-ts/bus-rabbitmq",
33
"description": "A RabbitMQ transport adapter for @node-ts/bus-core.",
4-
"version": "1.0.5",
4+
"version": "1.0.6",
55
"license": "MIT",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",
@@ -17,15 +17,15 @@
1717
"access": "public"
1818
},
1919
"dependencies": {
20-
"@node-ts/bus-messages": "^1.0.0",
20+
"@node-ts/bus-messages": "^1.0.1",
2121
"@types/amqplib": "^0.8.2",
2222
"amqplib": "^0.6.0",
2323
"tslib": "^1.9.3",
2424
"uuid": "^3.3.2"
2525
},
2626
"devDependencies": {
27-
"@node-ts/bus-core": "^1.0.3",
28-
"@node-ts/bus-test": "^0.0.5",
27+
"@node-ts/bus-core": "^1.0.4",
28+
"@node-ts/bus-test": "^0.0.6",
2929
"@node-ts/code-standards": "^0.0.10",
3030
"@types/faker": "^4.1.5",
3131
"@types/uuid": "^3.4.4",

‎packages/bus-sqs/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
An Amazon SQS transport adapter for [@node-ts/bus](https://node-ts.gitbook.io/bus/)
44

5-
🔥 📒 👉 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 👈 📒 🔥
5+
🔥 View our docs at [https://node-ts.gitbook.io/bus/](https://node-ts.gitbook.io/bus/) 🔥
6+
7+
🤔 Have a question? [Join our Discord](https://discord.gg/Gg7v4xt82X) 🤔
68

79
## Installation
810

‎packages/bus-sqs/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-ts/bus-sqs",
33
"description": "An AWS SQS transport adapter for @node-ts/bus-core.",
4-
"version": "1.0.5",
4+
"version": "1.0.6",
55
"license": "MIT",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",
@@ -17,14 +17,14 @@
1717
"access": "public"
1818
},
1919
"dependencies": {
20-
"@node-ts/bus-messages": "^1.0.0",
20+
"@node-ts/bus-messages": "^1.0.1",
2121
"aws-sdk": "^2.834.0",
2222
"tslib": "^1.9.3",
2323
"uuid": "^3.3.2"
2424
},
2525
"devDependencies": {
26-
"@node-ts/bus-core": "^1.0.3",
27-
"@node-ts/bus-test": "^0.0.5",
26+
"@node-ts/bus-core": "^1.0.4",
27+
"@node-ts/bus-test": "^0.0.6",
2828
"@node-ts/code-standards": "^0.0.10",
2929
"@types/amqplib": "^0.5.11",
3030
"@types/faker": "^4.1.5",

‎packages/bus-test/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@node-ts/bus-test",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "A dev-dependency package used to test transport and persistence implementations.",
55
"homepage": "https://github.com/node-ts/bus#readme",
66
"main": "./dist/index.js",
@@ -18,8 +18,8 @@
1818
"url": "https://github.com/node-ts/bus/issues"
1919
},
2020
"dependencies": {
21-
"@node-ts/bus-core": "^1.0.3",
22-
"@node-ts/bus-messages": "^1.0.0",
21+
"@node-ts/bus-core": "^1.0.4",
22+
"@node-ts/bus-messages": "^1.0.1",
2323
"@node-ts/code-standards": "^0.0.10",
2424
"@types/faker": "^5.5.7",
2525
"@types/node": "^14.14.31",

0 commit comments

Comments
 (0)
Please sign in to comment.