@parse/sqs-mq-adapter 2.3.0 → 3.1.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/.github/workflows/ci.yml +10 -10
- package/CHANGELOG.md +19 -0
- package/package.json +8 -8
package/.github/workflows/ci.yml
CHANGED
|
@@ -23,24 +23,24 @@ jobs:
|
|
|
23
23
|
strategy:
|
|
24
24
|
matrix:
|
|
25
25
|
include:
|
|
26
|
-
- name: Parse Server 8, Node.js 18
|
|
27
|
-
NODE_VERSION: 18.20.4
|
|
28
|
-
PARSE_SERVER_VERSION: 8
|
|
29
26
|
- name: Parse Server 8, Node.js 20
|
|
30
27
|
NODE_VERSION: 20.15.1
|
|
31
28
|
PARSE_SERVER_VERSION: 8
|
|
32
29
|
- name: Parse Server 8, Node.js 22
|
|
33
30
|
NODE_VERSION: 22.4.1
|
|
34
31
|
PARSE_SERVER_VERSION: 8
|
|
35
|
-
- name: Parse Server
|
|
36
|
-
NODE_VERSION:
|
|
37
|
-
PARSE_SERVER_VERSION:
|
|
38
|
-
- name: Parse Server
|
|
32
|
+
- name: Parse Server 8, Node.js 24
|
|
33
|
+
NODE_VERSION: 24
|
|
34
|
+
PARSE_SERVER_VERSION: 8
|
|
35
|
+
- name: Parse Server 9, Node.js 20
|
|
39
36
|
NODE_VERSION: 20.15.1
|
|
40
|
-
PARSE_SERVER_VERSION:
|
|
41
|
-
- name: Parse Server
|
|
37
|
+
PARSE_SERVER_VERSION: 9
|
|
38
|
+
- name: Parse Server 9, Node.js 22
|
|
42
39
|
NODE_VERSION: 22.4.1
|
|
43
|
-
PARSE_SERVER_VERSION:
|
|
40
|
+
PARSE_SERVER_VERSION: 9
|
|
41
|
+
- name: Parse Server 9, Node.js 24
|
|
42
|
+
NODE_VERSION: 24
|
|
43
|
+
PARSE_SERVER_VERSION: 9
|
|
44
44
|
fail-fast: false
|
|
45
45
|
name: ${{ matrix.name }}
|
|
46
46
|
timeout-minutes: 15
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [3.1.0](https://github.com/parse-community/parse-server-sqs-mq-adapter/compare/3.0.0...3.1.0) (2026-03-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Add support for Parse Server 9 and Node.js 24 ([#341](https://github.com/parse-community/parse-server-sqs-mq-adapter/issues/341)) ([be3241e](https://github.com/parse-community/parse-server-sqs-mq-adapter/commit/be3241ecd1e3a67e694b030f147e5c45e59a723a))
|
|
7
|
+
|
|
8
|
+
# [3.0.0](https://github.com/parse-community/parse-server-sqs-mq-adapter/compare/2.3.0...3.0.0) (2026-03-30)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Remove support for Node.js 18, Parse Server 7 ([#340](https://github.com/parse-community/parse-server-sqs-mq-adapter/issues/340)) ([66bfc1a](https://github.com/parse-community/parse-server-sqs-mq-adapter/commit/66bfc1a286dc8168f48b3ca0e124f84c425c7a41))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* Removes support for Node.js 18, Parse Server 7. ([66bfc1a](66bfc1a))
|
|
19
|
+
|
|
1
20
|
# [2.3.0](https://github.com/parse-community/parse-server-sqs-mq-adapter/compare/2.2.0...2.3.0) (2026-02-11)
|
|
2
21
|
|
|
3
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parse/sqs-mq-adapter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Spread work queue across cluster of parse servers using SQS",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -10,28 +10,28 @@
|
|
|
10
10
|
"author": "Parse Platform",
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@aws-sdk/client-sqs": "3.
|
|
13
|
+
"@aws-sdk/client-sqs": "3.1019.0",
|
|
14
14
|
"sqs-consumer": "14.2.1",
|
|
15
15
|
"sqs-producer": "8.0.3"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"parse-server": "
|
|
18
|
+
"parse-server": ">=8.0.0 <10.0.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@eslint/js": "9.
|
|
21
|
+
"@eslint/js": "9.39.2",
|
|
22
22
|
"@semantic-release/changelog": "6.0.3",
|
|
23
23
|
"@semantic-release/commit-analyzer": "13.0.1",
|
|
24
24
|
"@semantic-release/git": "10.0.1",
|
|
25
|
-
"@semantic-release/github": "12.0.
|
|
25
|
+
"@semantic-release/github": "12.0.6",
|
|
26
26
|
"@semantic-release/npm": "13.1.4",
|
|
27
27
|
"@semantic-release/release-notes-generator": "14.1.0",
|
|
28
28
|
"eslint": "9.39.2",
|
|
29
29
|
"globals": "17.3.0",
|
|
30
30
|
"jasmine": "6.0.0",
|
|
31
31
|
"jasmine-spec-reporter": "7.0.0",
|
|
32
|
-
"mongodb-runner": "6.
|
|
32
|
+
"mongodb-runner": "6.7.1",
|
|
33
33
|
"nyc": "17.1.0",
|
|
34
|
-
"parse-server": "9.
|
|
34
|
+
"parse-server": "9.7.0",
|
|
35
35
|
"semantic-release": "25.0.3"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"coverage": "nyc jasmine"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
|
-
"node": ">=18.
|
|
49
|
+
"node": ">=20.18.0 <21.0.0 || >=22.12.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
50
50
|
}
|
|
51
51
|
}
|