@eresearchqut/ddb-repository 1.5.0 → 1.5.4
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/release.yml +4 -12
- package/CHANGELOG.md +30 -0
- package/README.md +1 -1
- package/package.json +18 -14
|
@@ -18,25 +18,17 @@ jobs:
|
|
|
18
18
|
uses: actions/checkout@v4
|
|
19
19
|
with:
|
|
20
20
|
fetch-depth: 0
|
|
21
|
-
persist-credentials: false
|
|
22
|
-
|
|
23
21
|
- name: Setup Node.js
|
|
24
22
|
uses: actions/setup-node@v4
|
|
25
23
|
with:
|
|
26
24
|
node-version: 'lts/*'
|
|
27
|
-
|
|
28
25
|
- name: Install dependencies
|
|
29
|
-
run: npm
|
|
30
|
-
|
|
31
|
-
- name: Run tests
|
|
32
|
-
run: npm test
|
|
33
|
-
|
|
34
|
-
- name: Build
|
|
26
|
+
run: npm clean-install
|
|
27
|
+
- name: Build package
|
|
35
28
|
run: npm run build
|
|
36
|
-
|
|
29
|
+
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
|
|
30
|
+
run: npm audit signatures
|
|
37
31
|
- name: Release
|
|
38
32
|
env:
|
|
39
33
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
40
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
41
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
42
34
|
run: npx semantic-release
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## [1.5.4](https://github.com/eresearchqut/ddb-repository/compare/v1.5.3...v1.5.4) (2025-12-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* adding build to release action ([a396d9f](https://github.com/eresearchqut/ddb-repository/commit/a396d9f507ec7da3ebac7664f1d0641f8897280d))
|
|
7
|
+
|
|
8
|
+
## [1.5.3](https://github.com/eresearchqut/ddb-repository/compare/v1.5.2...v1.5.3) (2025-12-10)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* adding repository to package.json ([94961d2](https://github.com/eresearchqut/ddb-repository/commit/94961d22bd371742b4ed4309cfe118e95ea09958))
|
|
14
|
+
|
|
15
|
+
## [1.5.2](https://github.com/eresearchqut/ddb-repository/compare/v1.5.1...v1.5.2) (2025-12-10)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* release to npm ([274ef77](https://github.com/eresearchqut/ddb-repository/commit/274ef77b079d644571066e5c05a9edf3e4cf7396))
|
|
21
|
+
|
|
22
|
+
## [1.5.1](https://github.com/eresearchqut/ddb-repository/compare/v1.5.0...v1.5.1) (2025-12-10)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* Module type ([52a2a07](https://github.com/eresearchqut/ddb-repository/commit/52a2a07295bafcfa8b621fd59d085d7dfd567402))
|
|
28
|
+
* package updates ([79d5672](https://github.com/eresearchqut/ddb-repository/commit/79d56725628a6ea0216b86a5c2d8f158fc008de6))
|
|
29
|
+
* Updated installation instructions ([282e1fd](https://github.com/eresearchqut/ddb-repository/commit/282e1fd0d6ffe24a3caefa5e2c1e7067a348a3ce))
|
|
30
|
+
|
|
1
31
|
# [1.5.0](https://github.com/eresearchqut/ddb-repository/compare/v1.4.1...v1.5.0) (2025-11-21)
|
|
2
32
|
|
|
3
33
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eresearchqut/ddb-repository",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "",
|
|
5
|
-
"type": "
|
|
5
|
+
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -16,31 +16,35 @@
|
|
|
16
16
|
"lint:fix": "eslint . --ext .ts --fix"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@aws-sdk/client-dynamodb": "^3.
|
|
20
|
-
"@aws-sdk/util-dynamodb": "^3.
|
|
19
|
+
"@aws-sdk/client-dynamodb": "^3.948.0",
|
|
20
|
+
"@aws-sdk/util-dynamodb": "^3.948.0",
|
|
21
21
|
"@eslint/js": "^9.39.1",
|
|
22
22
|
"@semantic-release/changelog": "^6.0.3",
|
|
23
23
|
"@semantic-release/git": "^10.0.1",
|
|
24
24
|
"@semantic-release/github": "^12.0.2",
|
|
25
25
|
"@semantic-release/npm": "^13.1.2",
|
|
26
26
|
"@smithy/types": "^4.9.0",
|
|
27
|
-
"@testcontainers/localstack": "^10.
|
|
28
|
-
"@types/jest": "^
|
|
29
|
-
"@types/lodash": "^4.17.
|
|
30
|
-
"@types/node": "^
|
|
27
|
+
"@testcontainers/localstack": "^11.10.0",
|
|
28
|
+
"@types/jest": "^30.0.0",
|
|
29
|
+
"@types/lodash": "^4.17.21",
|
|
30
|
+
"@types/node": "^25.0.0",
|
|
31
31
|
"eslint": "^9.39.1",
|
|
32
|
-
"eslint-plugin-jest": "^29.1
|
|
33
|
-
"jest": "^
|
|
32
|
+
"eslint-plugin-jest": "^29.2.1",
|
|
33
|
+
"jest": "^30.2.0",
|
|
34
34
|
"semantic-release": "^25.0.2",
|
|
35
|
-
"testcontainers": "^10.
|
|
36
|
-
"ts-jest": "^29.
|
|
35
|
+
"testcontainers": "^11.10.0",
|
|
36
|
+
"ts-jest": "^29.4.6",
|
|
37
37
|
"ts-node": "^10.9.2",
|
|
38
|
-
"typescript": "^5.
|
|
39
|
-
"typescript-eslint": "^8.
|
|
38
|
+
"typescript": "^5.9.3",
|
|
39
|
+
"typescript-eslint": "^8.49.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@aws-sdk/client-dynamodb": ">= 3.49.0",
|
|
43
43
|
"@aws-sdk/util-dynamodb": ">= 3.49.0",
|
|
44
44
|
"lodash": "^4.17.20"
|
|
45
|
+
},
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/eresearchqut/ddb-repository.git"
|
|
45
49
|
}
|
|
46
50
|
}
|