dargstack_rgen 0.9.33 → 0.9.34
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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.9.34](https://github.com/dargstack/dargstack_rgen/compare/0.9.33...0.9.34) (2024-05-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([eb0a385](https://github.com/dargstack/dargstack_rgen/commit/eb0a385abb71cff05023a4b6ddd85544bcbfc19b))
|
|
7
|
+
|
|
1
8
|
## [0.9.33](https://github.com/dargstack/dargstack_rgen/compare/0.9.32...0.9.33) (2024-04-30)
|
|
2
9
|
|
|
3
10
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:20.
|
|
1
|
+
FROM node:20.13.1-alpine@sha256:291e84d956f1aff38454bbd3da38941461ad569a185c20aa289f71f37ea08e23 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:20.
|
|
10
|
+
FROM node:20.13.1-alpine@sha256:291e84d956f1aff38454bbd3da38941461ad569a185c20aa289f71f37ea08e23 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:20.
|
|
44
|
+
FROM node:20.13.1-alpine@sha256:291e84d956f1aff38454bbd3da38941461ad569a185c20aa289f71f37ea08e23 AS production
|
|
45
45
|
|
|
46
46
|
WORKDIR /srv/app/
|
|
47
47
|
|
package/package.json
CHANGED
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@commitlint/cli": "19.3.0",
|
|
16
16
|
"@commitlint/config-conventional": "19.2.2",
|
|
17
|
-
"@types/diff": "5.2.
|
|
17
|
+
"@types/diff": "5.2.1",
|
|
18
18
|
"@types/json2md": "1.5.4",
|
|
19
19
|
"@types/yargs": "17.0.32",
|
|
20
|
-
"eslint": "9.
|
|
20
|
+
"eslint": "9.2.0",
|
|
21
21
|
"eslint-config-prettier": "9.1.0",
|
|
22
22
|
"eslint-plugin-prettier": "5.1.3",
|
|
23
|
-
"globals": "15.
|
|
23
|
+
"globals": "15.2.0",
|
|
24
24
|
"husky": "9.0.11",
|
|
25
25
|
"prettier": "3.2.5",
|
|
26
|
-
"typescript-eslint": "7.
|
|
26
|
+
"typescript-eslint": "7.9.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": "20"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"license": "GPL-3.0-only",
|
|
32
32
|
"main": "src/generator.js",
|
|
33
33
|
"name": "dargstack_rgen",
|
|
34
|
-
"packageManager": "pnpm@9.
|
|
34
|
+
"packageManager": "pnpm@9.1.1",
|
|
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.34"
|
|
43
43
|
}
|
|
@@ -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.
|
|
42
|
+
image: postgres:16.3-alpine@sha256:7f7832dfb7770c7256fe3f8c4cb57617caee45e2494cc0a736594135237ed9bf
|
|
43
43
|
secrets:
|
|
44
44
|
- postgres_password
|
|
45
45
|
- postgres_user
|