dargstack_rgen 0.9.24 → 0.9.26

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.
@@ -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.5.4
12
+ uses: dargmuesli/github-actions/.github/workflows/docker.yml@1.7.2
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.5.4
18
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@1.7.2
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.5.4
11
+ uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@1.7.2
12
12
  secrets:
13
13
  PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
14
14
  with:
package/.husky/commit-msg CHANGED
@@ -1,5 +1 @@
1
- #!/bin/sh
2
- # shellcheck source=./_/husky.sh
3
- . "$(dirname "$0")/_/husky.sh"
4
-
5
1
  pnpm commitlint --config .commitlintrc.cjs --edit "$1"
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [0.9.26](https://github.com/dargstack/dargstack_rgen/compare/0.9.25...0.9.26) (2024-02-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * schedule release ([216c637](https://github.com/dargstack/dargstack_rgen/commit/216c63778437268e71eb4c95c7bafab49d4d7a16))
7
+
8
+ ## [0.9.25](https://github.com/dargstack/dargstack_rgen/compare/0.9.24...0.9.25) (2024-01-23)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * schedule release ([15a32f7](https://github.com/dargstack/dargstack_rgen/commit/15a32f7d19ce1585a220c3222e42f984a323c391))
14
+
1
15
  ## [0.9.24](https://github.com/dargstack/dargstack_rgen/compare/0.9.23...0.9.24) (2024-01-09)
2
16
 
3
17
 
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:20.10.0-alpine@sha256:9e38d3d4117da74a643f67041c83914480b335c3bd44d37ccf5b5ad86cd715d1 AS development
1
+ FROM node:20.11.0-alpine@sha256:2f46fd49c767554c089a5eb219115313b72748d8f62f5eccb58ef52bc36db4ad 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.0-alpine@sha256:9e38d3d4117da74a643f67041c83914480b335c3bd44d37ccf5b5ad86cd715d1 AS prepare
10
+ FROM node:20.11.0-alpine@sha256:2f46fd49c767554c089a5eb219115313b72748d8f62f5eccb58ef52bc36db4ad 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.10.0-alpine@sha256:9e38d3d4117da74a643f67041c83914480b335c3bd44d37ccf5b5ad86cd715d1 AS build
24
+ FROM node:20.11.0-alpine@sha256:2f46fd49c767554c089a5eb219115313b72748d8f62f5eccb58ef52bc36db4ad AS build
25
25
 
26
26
  WORKDIR /srv/app/
27
27
 
@@ -30,10 +30,10 @@ COPY --from=prepare /srv/app/ ./
30
30
  ENV NODE_ENV=production
31
31
 
32
32
  RUN corepack enable && \
33
- pnpm install --offline
33
+ pnpm install --offline --ignore-scripts
34
34
 
35
35
 
36
- FROM node:20.10.0-alpine@sha256:9e38d3d4117da74a643f67041c83914480b335c3bd44d37ccf5b5ad86cd715d1 AS test
36
+ FROM node:20.11.0-alpine@sha256:2f46fd49c767554c089a5eb219115313b72748d8f62f5eccb58ef52bc36db4ad 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.10.0-alpine@sha256:9e38d3d4117da74a643f67041c83914480b335c3bd44d37ccf5b5ad86cd715d1 AS collect
46
+ FROM node:20.11.0-alpine@sha256:2f46fd49c767554c089a5eb219115313b72748d8f62f5eccb58ef52bc36db4ad 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.10.0-alpine@sha256:9e38d3d4117da74a643f67041c83914480b335c3bd44d37ccf5b5ad86cd715d1 AS production
54
+ FROM node:20.11.0-alpine@sha256:2f46fd49c767554c089a5eb219115313b72748d8f62f5eccb58ef52bc36db4ad AS production
55
55
 
56
56
  WORKDIR /srv/app/
57
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dargstack_rgen",
3
- "version": "0.9.24",
3
+ "version": "0.9.26",
4
4
  "description": "Generates a DargStack stack project readme.",
5
5
  "main": "src/generator.cjs",
6
6
  "repository": "https://github.com/dargstack/dargstack_rgen.git",
@@ -13,10 +13,10 @@
13
13
  "engines": {
14
14
  "node": "20"
15
15
  },
16
- "packageManager": "pnpm@8.14.0",
16
+ "packageManager": "pnpm@8.15.1",
17
17
  "scripts": {
18
18
  "lint": "eslint --ext .js,.cjs .",
19
- "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
19
+ "prepare": "husky",
20
20
  "test": "node src/generator.cjs -p test/example_stack -v"
21
21
  },
22
22
  "dependencies": {
@@ -27,13 +27,13 @@
27
27
  "yargs": "17.7.2"
28
28
  },
29
29
  "devDependencies": {
30
- "@commitlint/cli": "18.4.4",
31
- "@commitlint/config-conventional": "18.4.4",
30
+ "@commitlint/cli": "18.6.0",
31
+ "@commitlint/config-conventional": "18.6.0",
32
32
  "eslint": "8.56.0",
33
33
  "eslint-config-prettier": "9.1.0",
34
34
  "eslint-plugin-node": "11.1.0",
35
- "eslint-plugin-prettier": "5.1.2",
36
- "husky": "8.0.3",
37
- "prettier": "3.1.1"
35
+ "eslint-plugin-prettier": "5.1.3",
36
+ "husky": "9.0.10",
37
+ "prettier": "3.2.5"
38
38
  }
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:b9125cae28bf249d1d2e9c4ffa42143a39ce1edc0eccbaf83e48ad6fbb3171b6
34
+ image: adminer:4.8.1-standalone@sha256:e6016420357dd7889ad127265cdbde2c535ae28517958e93ac31a097c5953101
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:14.2-alpine@sha256:20e49432a20e1a63bb985977c32ec8f110bc609b93de35ad4f19c5486abcefaa
42
+ image: postgres:16.1-alpine@sha256:17eb369d9330fe7fbdb2f705418c18823d66322584c77c2b43cc0e1851d01de7
43
43
  secrets:
44
44
  - postgres_password
45
45
  - postgres_user
@@ -12,7 +12,7 @@ services:
12
12
  POSTGRES_HOST: postgres
13
13
  POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
14
14
  POSTGRES_USER_FILE: /run/secrets/postgres_user
15
- image: prodrigestivill/postgres-backup-local:14-alpine@sha256:78b41a63ee65fffddc1490e8dca49f9783b99e605aab8710cb57b7ce88d63c1a
15
+ image: prodrigestivill/postgres-backup-local:16-alpine@sha256:e72ca1c987e22dedf495ddd6c397fab8b3a9cb9cc06bf8364a27eb9f539726fe
16
16
  secrets:
17
17
  - postgres_password
18
18
  - postgres_user
@@ -20,7 +20,7 @@ services:
20
20
  - postgres_data:/var/lib/postgresql/data/
21
21
  traefik_certs-dumper:
22
22
  # You cannot access the reverse proxy's certificate helper directly.
23
- image: ldez/traefik-certs-dumper:v2.8.1@sha256:2734462fc8290feab0e34a00d5f3e4992ba74f8e3712d74efff7ae703d0e7e87
23
+ image: ldez/traefik-certs-dumper:v2.8.3@sha256:f634c0dac3c67894d0d2f1cfe27ba060c081075290cbf68af3254b574e04efd3
24
24
  volumes:
25
25
  - acme_data:/etc/traefik/acme/
26
26
  version: "3.7"