dargstack_rgen 0.9.46 → 0.9.48
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 +3 -3
- package/.github/workflows/release-schedule.yml +1 -1
- package/.nvmrc +1 -1
- package/.vscode/settings.json +0 -8
- package/CHANGELOG.md +14 -0
- package/Dockerfile +3 -3
- package/package.json +7 -7
package/.github/workflows/ci.yml
CHANGED
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
release_semantic_dry:
|
|
26
26
|
needs: prepare_jobs
|
|
27
27
|
name: Release (semantic, dry)
|
|
28
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.
|
|
28
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.4
|
|
29
29
|
if: needs.prepare_jobs.outputs.pr_found == 'false' || github.event_name == 'pull_request'
|
|
30
30
|
permissions:
|
|
31
31
|
contents: write
|
|
@@ -36,14 +36,14 @@ jobs:
|
|
|
36
36
|
DRY_RUN: true
|
|
37
37
|
build:
|
|
38
38
|
name: Build
|
|
39
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.3.
|
|
39
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.3.4
|
|
40
40
|
needs: release_semantic_dry
|
|
41
41
|
permissions:
|
|
42
42
|
packages: write
|
|
43
43
|
release-semantic:
|
|
44
44
|
needs: build
|
|
45
45
|
name: Release (semantic)
|
|
46
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.
|
|
46
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.4
|
|
47
47
|
permissions:
|
|
48
48
|
contents: write
|
|
49
49
|
secrets:
|
|
@@ -8,7 +8,7 @@ on:
|
|
|
8
8
|
jobs:
|
|
9
9
|
release-schedule:
|
|
10
10
|
name: 'Release: Scheduled'
|
|
11
|
-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.3.
|
|
11
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.3.4
|
|
12
12
|
secrets:
|
|
13
13
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
14
14
|
with:
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
22
|
package/.vscode/settings.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.9.48](https://github.com/dargstack/dargstack_rgen/compare/0.9.47...0.9.48) (2024-11-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([0cf3afd](https://github.com/dargstack/dargstack_rgen/commit/0cf3afdb72051bd2f550b0e0dfa5c16ad0f80e4e))
|
|
7
|
+
|
|
8
|
+
## [0.9.47](https://github.com/dargstack/dargstack_rgen/compare/0.9.46...0.9.47) (2024-10-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* schedule release ([260b6c2](https://github.com/dargstack/dargstack_rgen/commit/260b6c203f34269a865d021d7a53040f7ae6e618))
|
|
14
|
+
|
|
1
15
|
## [0.9.46](https://github.com/dargstack/dargstack_rgen/compare/0.9.45...0.9.46) (2024-10-15)
|
|
2
16
|
|
|
3
17
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:
|
|
1
|
+
FROM node:22.11.0-alpine@sha256:f265794478aa0b1a23d85a492c8311ed795bc527c3fe7e43453b3c872dcd71a3 AS development
|
|
2
2
|
|
|
3
3
|
WORKDIR /srv/app/
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ VOLUME /srv/app
|
|
|
7
7
|
ENTRYPOINT ["node", "./src/generator.js"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
FROM node:
|
|
10
|
+
FROM node:22.11.0-alpine@sha256:f265794478aa0b1a23d85a492c8311ed795bc527c3fe7e43453b3c872dcd71a3 AS prepare
|
|
11
11
|
|
|
12
12
|
WORKDIR /srv/app/
|
|
13
13
|
|
|
@@ -41,7 +41,7 @@ COPY --from=build /srv/app/ /srv/app/
|
|
|
41
41
|
COPY --from=test /srv/app/package.json /tmp/package.json
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
FROM node:
|
|
44
|
+
FROM node:22.11.0-alpine@sha256:f265794478aa0b1a23d85a492c8311ed795bc527c3fe7e43453b3c872dcd71a3 AS production
|
|
45
45
|
|
|
46
46
|
WORKDIR /srv/app/
|
|
47
47
|
|
package/package.json
CHANGED
|
@@ -14,24 +14,24 @@
|
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@commitlint/cli": "19.5.0",
|
|
16
16
|
"@commitlint/config-conventional": "19.5.0",
|
|
17
|
-
"@types/diff": "
|
|
17
|
+
"@types/diff": "6.0.0",
|
|
18
18
|
"@types/json2md": "1.5.4",
|
|
19
19
|
"@types/yargs": "17.0.33",
|
|
20
|
-
"eslint": "9.
|
|
20
|
+
"eslint": "9.14.0",
|
|
21
21
|
"eslint-config-prettier": "9.1.0",
|
|
22
22
|
"eslint-plugin-prettier": "5.2.1",
|
|
23
|
-
"globals": "15.
|
|
23
|
+
"globals": "15.12.0",
|
|
24
24
|
"husky": "9.1.6",
|
|
25
25
|
"prettier": "3.3.3",
|
|
26
|
-
"typescript-eslint": "8.
|
|
26
|
+
"typescript-eslint": "8.14.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": "
|
|
29
|
+
"node": "22"
|
|
30
30
|
},
|
|
31
31
|
"license": "GPL-3.0-only",
|
|
32
32
|
"main": "src/generator.js",
|
|
33
33
|
"name": "dargstack_rgen",
|
|
34
|
-
"packageManager": "pnpm@9.12.
|
|
34
|
+
"packageManager": "pnpm@9.12.3",
|
|
35
35
|
"repository": "https://github.com/dargstack/dargstack_rgen.git",
|
|
36
36
|
"scripts": {
|
|
37
37
|
"lint": "eslint --cache",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"test": "node src/generator.js -p test/example_stack -v"
|
|
40
40
|
},
|
|
41
41
|
"type": "module",
|
|
42
|
-
"version": "0.9.
|
|
42
|
+
"version": "0.9.48"
|
|
43
43
|
}
|