sqs-producer 3.1.0 → 3.1.2

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.
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  strategy:
16
16
  matrix:
17
- node-version: [14.x]
17
+ node-version: [18.x]
18
18
 
19
19
  steps:
20
20
  - uses: actions/checkout@v3
@@ -30,6 +30,6 @@ jobs:
30
30
  - name: Report Coverage
31
31
  uses: paambaati/codeclimate-action@v3.2.0
32
32
  env:
33
- CC_TEST_REPORTER_ID: 2ae0377f20bf6db6d94dc02470f60a0dae8cf2862e2fe7fe092472dd4e2978cf
33
+ CC_TEST_REPORTER_ID: b7dd7a17709f29e70a936a1a9482a9d7c0da56915aec94382436d4e8f9bcb78e
34
34
  with:
35
35
  coverageCommand: npm run lcov
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  strategy:
16
16
  matrix:
17
- node-version: [14.x, 16.x, 18.x]
17
+ node-version: [16.x, 18.x]
18
18
 
19
19
  steps:
20
20
  - uses: actions/checkout@v3
package/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  [![NPM downloads](https://img.shields.io/npm/dm/sqs-producer.svg?style=flat)](https://npmjs.org/package/sqs-producer)
4
4
  [![Build Status](https://github.com/bbc/sqs-producer/actions/workflows/test.yml/badge.svg)](https://github.com/bbc/sqs-producer/actions/workflows/test.yml)
5
- [![Code Climate](https://codeclimate.com/github/BBC/sqs-producer/badges/gpa.svg)](https://codeclimate.com/github/BBC/sqs-producer)
6
- [![Test Coverage](https://codeclimate.com/github/BBC/sqs-producer/badges/coverage.svg)](https://codeclimate.com/github/BBC/sqs-producer)
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/5220635a4598c9f1a546/maintainability)](https://codeclimate.com/github/bbc/sqs-producer/maintainability)
6
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/5220635a4598c9f1a546/test_coverage)](https://codeclimate.com/github/bbc/sqs-producer/test_coverage)
7
7
 
8
8
  Enqueues messages onto a given SQS queue
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqs-producer",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "description": "Enqueues messages onto a given SQS queue",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,27 +38,27 @@
38
38
  ],
39
39
  "homepage": "https://github.com/bbc/sqs-producer",
40
40
  "devDependencies": {
41
- "@types/chai": "^4.3.4",
41
+ "@types/chai": "^4.3.5",
42
42
  "@types/debug": "^4.1.7",
43
43
  "@types/mocha": "^10.0.1",
44
- "@types/node": "^18.11.12",
45
- "@types/sinon": "^10.0.13",
44
+ "@types/node": "^18.11.18",
45
+ "@types/sinon": "^10.0.15",
46
46
  "chai": "^4.3.7",
47
- "eslint": "^8.29.0",
48
- "eslint-config-iplayer-ts": "^4.1.0",
49
- "eslint-config-prettier": "^4.3.0",
50
- "mocha": "^10.1.0",
47
+ "eslint": "^8.42.0",
48
+ "eslint-config-iplayer-ts": "^4.1.1",
49
+ "eslint-config-prettier": "^8.8.0",
50
+ "mocha": "^10.2.0",
51
51
  "nyc": "^15.1.0",
52
- "prettier": "^2.8.1",
53
- "sinon": "^15.0.0",
52
+ "prettier": "^2.8.8",
53
+ "sinon": "^15.1.0",
54
54
  "ts-node": "^10.9.1",
55
- "typescript": "^4.9.4"
55
+ "typescript": "^5.1.3"
56
56
  },
57
57
  "dependencies": {
58
- "@aws-sdk/client-sqs": "^3.226.0"
58
+ "@aws-sdk/client-sqs": "^3.348.0"
59
59
  },
60
60
  "peerDependencies": {
61
- "@aws-sdk/client-sqs": "^3.226.0"
61
+ "@aws-sdk/client-sqs": "^3.348.0"
62
62
  },
63
63
  "mocha": {
64
64
  "spec": "test/**/**/*.test.ts",
@@ -80,9 +80,7 @@
80
80
  "eslintConfig": {
81
81
  "extends": [
82
82
  "iplayer-ts",
83
- "prettier",
84
- "prettier/react",
85
- "prettier/@typescript-eslint"
83
+ "prettier"
86
84
  ],
87
85
  "parserOptions": {
88
86
  "sourceType": "module"