sqs-consumer 15.0.0 → 15.0.1
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/CHANGELOG.md +21 -0
- package/package.json +8 -8
- package/release.config.cjs +48 -0
- package/vitest.config.ts +1 -1
- package/.releaserc.json +0 -93
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [15.0.1](https://github.com/bbc/sqs-consumer/compare/v15.0.0...v15.0.1) (2026-05-02)
|
|
2
|
+
|
|
3
|
+
### Chores
|
|
4
|
+
|
|
5
|
+
* begin the move to a single branch ([fbc9359](https://github.com/bbc/sqs-consumer/commit/fbc93596c972b53aa645907a2dbe00780dad4bbc))
|
|
6
|
+
* change to direct from main ([c38a324](https://github.com/bbc/sqs-consumer/commit/c38a324e97ea0ebd9dbb16e79f2edb2434bc75d4))
|
|
7
|
+
* **deps-dev:** bump @vitest/coverage-v8 from 3.2.4 to 4.1.2 ([#780](https://github.com/bbc/sqs-consumer/issues/780)) ([94ca92c](https://github.com/bbc/sqs-consumer/commit/94ca92c9fc46cf8467114b72ed2151190c49cc63))
|
|
8
|
+
* **deps-dev:** bump oxfmt from 0.41.0 to 0.44.0 ([#779](https://github.com/bbc/sqs-consumer/issues/779)) ([59c2c44](https://github.com/bbc/sqs-consumer/commit/59c2c44034c306c6387ee3dafbb195447cd43be4))
|
|
9
|
+
* **deps-dev:** bump oxlint from 1.56.0 to 1.61.0 ([#778](https://github.com/bbc/sqs-consumer/issues/778)) ([2bf69ca](https://github.com/bbc/sqs-consumer/commit/2bf69ca640265af6697a368347d828141e676ee4))
|
|
10
|
+
* **deps-dev:** bump vitest from 3.2.4 to 4.1.2 ([#775](https://github.com/bbc/sqs-consumer/issues/775)) ([6c4b384](https://github.com/bbc/sqs-consumer/commit/6c4b3849890d058e4f9580608041fc18364d02ed))
|
|
11
|
+
* **deps:** bump @aws-sdk/client-sqs from 3.1018.0 to 3.1034.0 ([#777](https://github.com/bbc/sqs-consumer/issues/777)) ([25ddb5f](https://github.com/bbc/sqs-consumer/commit/25ddb5f9d8a688eb065e6b1cfd703951cf1d9626))
|
|
12
|
+
* **deps:** bump actions/setup-node from 6.3.0 to 6.4.0 ([#781](https://github.com/bbc/sqs-consumer/issues/781)) ([0f21cb2](https://github.com/bbc/sqs-consumer/commit/0f21cb2f8c02f1f976e55a1dac4bb08fee0314c8))
|
|
13
|
+
* **deps:** bump dependabot/fetch-metadata from 3.0.0 to 3.1.0 ([#782](https://github.com/bbc/sqs-consumer/issues/782)) ([ae4e35a](https://github.com/bbc/sqs-consumer/commit/ae4e35a84e0f642a6c77b67f26beb5e0f4b4920e))
|
|
14
|
+
* **deps:** bump the npm_and_yarn group across 1 directory with 2 updates ([#784](https://github.com/bbc/sqs-consumer/issues/784)) ([215e5c8](https://github.com/bbc/sqs-consumer/commit/215e5c81c24e247244c677ad0d6c1835d94d688a))
|
|
15
|
+
* force to commonjs ([bf4b2b8](https://github.com/bbc/sqs-consumer/commit/bf4b2b895f5d4e7f704fa55e71bee49f75d9d762))
|
|
16
|
+
* formatting ([1be111c](https://github.com/bbc/sqs-consumer/commit/1be111ce94c9e81c78e750cee4e8583e2ab5039d))
|
|
17
|
+
* formatting ([c4aa528](https://github.com/bbc/sqs-consumer/commit/c4aa528fee9e054c30af8cb9da5366be7cbc91a1))
|
|
18
|
+
* **release:** 15.0.0-canary.2 [skip ci] ([9a7ff7e](https://github.com/bbc/sqs-consumer/commit/9a7ff7eb4e3cc9349fefcf0882f7bd0e5785d0bf)), closes [#779](https://github.com/bbc/sqs-consumer/issues/779) [#781](https://github.com/bbc/sqs-consumer/issues/781) [#782](https://github.com/bbc/sqs-consumer/issues/782) [#784](https://github.com/bbc/sqs-consumer/issues/784)
|
|
19
|
+
* update ([481239f](https://github.com/bbc/sqs-consumer/commit/481239fff50ff47f8f8fab474ceec0f336fb41ec))
|
|
20
|
+
* update vitest config ([ebca9fa](https://github.com/bbc/sqs-consumer/commit/ebca9fac69355a388492fc97f476566bdf130fdb))
|
|
21
|
+
|
|
1
22
|
## [15.0.0](https://github.com/bbc/sqs-consumer/compare/v14.2.8...v15.0.0) (2026-05-02)
|
|
2
23
|
|
|
3
24
|
### Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sqs-consumer",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.1",
|
|
4
4
|
"description": "Build SQS-based Node applications without the boilerplate",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aws-sqs",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"generate-docs": "typedoc"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@aws-sdk/client-sqs": "^3.
|
|
66
|
+
"@aws-sdk/client-sqs": "^3.1034.0",
|
|
67
67
|
"debug": "^4.4.3"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
"@types/chai": "^5.2.2",
|
|
79
79
|
"@types/node": "^25.5.0",
|
|
80
80
|
"@types/sinon": "^17.0.4",
|
|
81
|
-
"@vitest/coverage-v8": "^
|
|
81
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
82
82
|
"chai": "^6.2.2",
|
|
83
83
|
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
84
84
|
"jsr": "^0.14.3",
|
|
85
|
-
"oxfmt": "^0.
|
|
86
|
-
"oxlint": "^1.
|
|
85
|
+
"oxfmt": "^0.44.0",
|
|
86
|
+
"oxlint": "^1.61.0",
|
|
87
87
|
"p-event": "^7.1.0",
|
|
88
88
|
"semantic-release": "^25.0.3",
|
|
89
89
|
"sinon": "^21.0.0",
|
|
@@ -91,15 +91,15 @@
|
|
|
91
91
|
"ts-node": "^10.9.2",
|
|
92
92
|
"typedoc": "^0.28.17",
|
|
93
93
|
"typescript": "^5.9.3",
|
|
94
|
-
"vitest": "^
|
|
94
|
+
"vitest": "^4.1.2"
|
|
95
95
|
},
|
|
96
96
|
"peerDependencies": {
|
|
97
|
-
"@aws-sdk/client-sqs": "^3.
|
|
97
|
+
"@aws-sdk/client-sqs": "^3.1034.0"
|
|
98
98
|
},
|
|
99
99
|
"overrides": {
|
|
100
100
|
"cross-spawn": "^7.0.3"
|
|
101
101
|
},
|
|
102
102
|
"engines": {
|
|
103
|
-
"node": ">=
|
|
103
|
+
"node": ">=22.0.0"
|
|
104
104
|
}
|
|
105
105
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/** @type {import('semantic-release').GlobalConfig} */
|
|
2
|
+
module.exports = {
|
|
3
|
+
branches: ["main"],
|
|
4
|
+
plugins: [
|
|
5
|
+
[
|
|
6
|
+
"@semantic-release/commit-analyzer",
|
|
7
|
+
{
|
|
8
|
+
preset: "conventionalcommits",
|
|
9
|
+
releaseRules: [
|
|
10
|
+
{ type: "breaking", release: "major" },
|
|
11
|
+
{ type: "feat", release: "minor" },
|
|
12
|
+
{ type: "chore", release: "patch" },
|
|
13
|
+
{ type: "fix", release: "patch" },
|
|
14
|
+
{ type: "docs", release: "patch" },
|
|
15
|
+
{ type: "refactor", release: "patch" },
|
|
16
|
+
{ type: "test", release: "patch" },
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
],
|
|
20
|
+
[
|
|
21
|
+
"@semantic-release/release-notes-generator",
|
|
22
|
+
{
|
|
23
|
+
preset: "conventionalcommits",
|
|
24
|
+
presetConfig: {
|
|
25
|
+
types: [
|
|
26
|
+
{ type: "feat", section: "Features" },
|
|
27
|
+
{ type: "fix", section: "Bug Fixes" },
|
|
28
|
+
{ type: "chore", section: "Chores" },
|
|
29
|
+
{ type: "docs", section: "Documentation" },
|
|
30
|
+
{ type: "refactor", section: "Refactors" },
|
|
31
|
+
{ type: "test", section: "Tests" },
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
|
+
"@semantic-release/changelog",
|
|
37
|
+
"@semantic-release/npm",
|
|
38
|
+
[
|
|
39
|
+
"@semantic-release/git",
|
|
40
|
+
{
|
|
41
|
+
assets: ["package.json", "package-lock.json", "CHANGELOG.md"],
|
|
42
|
+
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
"@semantic-release/github",
|
|
46
|
+
"@sebbo2002/semantic-release-jsr",
|
|
47
|
+
],
|
|
48
|
+
};
|
package/vitest.config.ts
CHANGED
package/.releaserc.json
DELETED
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"branches": [
|
|
3
|
-
"main",
|
|
4
|
-
"*.x",
|
|
5
|
-
{
|
|
6
|
-
"name": "canary",
|
|
7
|
-
"prerelease": true
|
|
8
|
-
}
|
|
9
|
-
],
|
|
10
|
-
"plugins": [
|
|
11
|
-
[
|
|
12
|
-
"@semantic-release/commit-analyzer",
|
|
13
|
-
{
|
|
14
|
-
"preset": "conventionalcommits",
|
|
15
|
-
"releaseRules": [
|
|
16
|
-
{
|
|
17
|
-
"type": "breaking",
|
|
18
|
-
"release": "major"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"type": "feat",
|
|
22
|
-
"release": "minor"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"type": "chore",
|
|
26
|
-
"release": "patch"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"type": "fix",
|
|
30
|
-
"release": "patch"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"type": "docs",
|
|
34
|
-
"release": "patch"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"type": "refactor",
|
|
38
|
-
"release": "patch"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"type": "test",
|
|
42
|
-
"release": "patch"
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
[
|
|
48
|
-
"@semantic-release/release-notes-generator",
|
|
49
|
-
{
|
|
50
|
-
"preset": "conventionalcommits",
|
|
51
|
-
"presetConfig": {
|
|
52
|
-
"types": [
|
|
53
|
-
{
|
|
54
|
-
"type": "feat",
|
|
55
|
-
"section": "Features"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"type": "fix",
|
|
59
|
-
"section": "Bug Fixes"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"type": "chore",
|
|
63
|
-
"section": "Chores"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"type": "docs",
|
|
67
|
-
"section": "Documentation"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"type": "refactor",
|
|
71
|
-
"section": "Refactors"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"type": "test",
|
|
75
|
-
"section": "Tests"
|
|
76
|
-
}
|
|
77
|
-
]
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
],
|
|
81
|
-
"@semantic-release/changelog",
|
|
82
|
-
"@semantic-release/npm",
|
|
83
|
-
[
|
|
84
|
-
"@semantic-release/git",
|
|
85
|
-
{
|
|
86
|
-
"assets": ["package.json", "package-lock.json", "CHANGELOG.md"],
|
|
87
|
-
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
88
|
-
}
|
|
89
|
-
],
|
|
90
|
-
"@semantic-release/github",
|
|
91
|
-
"@sebbo2002/semantic-release-jsr"
|
|
92
|
-
]
|
|
93
|
-
}
|