dargstack_rgen 0.9.29 → 0.9.31
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
CHANGED
|
@@ -9,13 +9,13 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
11
11
|
name: Build
|
|
12
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@1.7.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@1.7.7
|
|
13
13
|
permissions:
|
|
14
14
|
packages: write
|
|
15
15
|
release-semantic:
|
|
16
16
|
needs: build
|
|
17
17
|
name: Release (semantic)
|
|
18
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@1.7.
|
|
18
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@1.7.7
|
|
19
19
|
permissions:
|
|
20
20
|
contents: write
|
|
21
21
|
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@1.7.
|
|
11
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@1.7.7
|
|
12
12
|
secrets:
|
|
13
13
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
14
14
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.9.31](https://github.com/dargstack/dargstack_rgen/compare/0.9.30...0.9.31) (2024-04-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([17c4505](https://github.com/dargstack/dargstack_rgen/commit/17c45055cc06a4107eda0ab2218d13eee4c23256))
|
|
7
|
+
|
|
8
|
+
## [0.9.30](https://github.com/dargstack/dargstack_rgen/compare/0.9.29...0.9.30) (2024-04-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* schedule release ([65e7cf6](https://github.com/dargstack/dargstack_rgen/commit/65e7cf69519ba831442f1967d8f562eedc4dd304))
|
|
14
|
+
|
|
1
15
|
## [0.9.29](https://github.com/dargstack/dargstack_rgen/compare/0.9.28...0.9.29) (2024-03-19)
|
|
2
16
|
|
|
3
17
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:20.
|
|
1
|
+
FROM node:20.12.2-alpine@sha256:ec0c413b1d84f3f7f67ec986ba885930c57b5318d2eb3abc6960ee05d4f2eb28 AS development
|
|
2
2
|
|
|
3
3
|
WORKDIR /srv/app/
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ VOLUME /srv/app
|
|
|
7
7
|
ENTRYPOINT ["node", "./src/generator.cjs"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
FROM node:20.
|
|
10
|
+
FROM node:20.12.2-alpine@sha256:ec0c413b1d84f3f7f67ec986ba885930c57b5318d2eb3abc6960ee05d4f2eb28 AS prepare
|
|
11
11
|
|
|
12
12
|
WORKDIR /srv/app/
|
|
13
13
|
|
|
@@ -21,7 +21,7 @@ COPY ./ ./
|
|
|
21
21
|
RUN pnpm install --offline
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
FROM node:20.
|
|
24
|
+
FROM node:20.12.2-alpine@sha256:ec0c413b1d84f3f7f67ec986ba885930c57b5318d2eb3abc6960ee05d4f2eb28 AS build
|
|
25
25
|
|
|
26
26
|
WORKDIR /srv/app/
|
|
27
27
|
|
|
@@ -33,7 +33,7 @@ RUN corepack enable && \
|
|
|
33
33
|
pnpm install --offline --ignore-scripts
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
FROM node:20.
|
|
36
|
+
FROM node:20.12.2-alpine@sha256:ec0c413b1d84f3f7f67ec986ba885930c57b5318d2eb3abc6960ee05d4f2eb28 AS test
|
|
37
37
|
|
|
38
38
|
WORKDIR /srv/app/
|
|
39
39
|
|
|
@@ -43,7 +43,7 @@ RUN corepack enable && \
|
|
|
43
43
|
pnpm run test
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
FROM node:20.
|
|
46
|
+
FROM node:20.12.2-alpine@sha256:ec0c413b1d84f3f7f67ec986ba885930c57b5318d2eb3abc6960ee05d4f2eb28 AS collect
|
|
47
47
|
|
|
48
48
|
WORKDIR /srv/app/
|
|
49
49
|
|
|
@@ -51,7 +51,7 @@ COPY --from=build /srv/app/ /srv/app/
|
|
|
51
51
|
COPY --from=test /srv/app/package.json /tmp/package.json
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
FROM node:20.
|
|
54
|
+
FROM node:20.12.2-alpine@sha256:ec0c413b1d84f3f7f67ec986ba885930c57b5318d2eb3abc6960ee05d4f2eb28 AS production
|
|
55
55
|
|
|
56
56
|
WORKDIR /srv/app/
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
},
|
|
13
13
|
"description": "Generates a DargStack stack project readme.",
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@commitlint/cli": "19.2.
|
|
16
|
-
"@commitlint/config-conventional": "19.
|
|
15
|
+
"@commitlint/cli": "19.2.2",
|
|
16
|
+
"@commitlint/config-conventional": "19.2.2",
|
|
17
17
|
"eslint": "8.57.0",
|
|
18
18
|
"eslint-config-prettier": "9.1.0",
|
|
19
|
-
"eslint-plugin-
|
|
19
|
+
"eslint-plugin-n": "17.2.1",
|
|
20
20
|
"eslint-plugin-prettier": "5.1.3",
|
|
21
21
|
"husky": "9.0.11",
|
|
22
22
|
"prettier": "3.2.5"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"license": "GPL-3.0-only",
|
|
28
28
|
"main": "src/generator.cjs",
|
|
29
29
|
"name": "dargstack_rgen",
|
|
30
|
-
"packageManager": "pnpm@8.15.
|
|
30
|
+
"packageManager": "pnpm@8.15.7",
|
|
31
31
|
"repository": "https://github.com/dargstack/dargstack_rgen.git",
|
|
32
32
|
"scripts": {
|
|
33
33
|
"lint": "eslint --ext .js,.cjs .",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"test": "node src/generator.cjs -p test/example_stack -v"
|
|
36
36
|
},
|
|
37
37
|
"type": "module",
|
|
38
|
-
"version": "0.9.
|
|
38
|
+
"version": "0.9.31"
|
|
39
39
|
}
|
|
@@ -31,7 +31,7 @@ services:
|
|
|
31
31
|
# | Database | [postgres_db] |
|
|
32
32
|
#
|
|
33
33
|
# Values in square brackets are [Docker secrets](https://docs.docker.com/engine/swarm/secrets/).
|
|
34
|
-
image: adminer:4.8.1-standalone@sha256:
|
|
34
|
+
image: adminer:4.8.1-standalone@sha256:ceca91abccc1fcd97d66cd4e8994e6f0a97a92c0e3dbdc8200d5d735e3088cd1
|
|
35
35
|
volumes:
|
|
36
36
|
- ../production/configurations/adminer/adminer.css:/var/www/html/adminer.css:ro
|
|
37
37
|
postgres:
|
|
@@ -39,7 +39,7 @@ services:
|
|
|
39
39
|
environment:
|
|
40
40
|
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
|
41
41
|
POSTGRES_USER_FILE: /run/secrets/postgres_user
|
|
42
|
-
image: postgres:16.2-alpine@sha256:
|
|
42
|
+
image: postgres:16.2-alpine@sha256:1d74239810c19ed0dbb317acae40974e673865b2d565a0d369e206159d483957
|
|
43
43
|
secrets:
|
|
44
44
|
- postgres_password
|
|
45
45
|
- postgres_user
|