dargstack_rgen 0.9.74 → 0.9.75

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.
@@ -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.6.7
28
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.6.9
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.6.7
39
+ uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.6.9
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.6.7
46
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.6.9
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.6.7
11
+ uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.6.9
12
12
  secrets:
13
13
  PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
14
14
  with:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.9.75](https://github.com/dargstack/dargstack_rgen/compare/0.9.74...0.9.75) (2025-11-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * schedule release ([566d442](https://github.com/dargstack/dargstack_rgen/commit/566d442e812d266f849bde8dc0963cc116a01c36))
7
+
1
8
  ## [0.9.74](https://github.com/dargstack/dargstack_rgen/compare/0.9.73...0.9.74) (2025-10-21)
2
9
 
3
10
 
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:22.20.0-alpine AS base-image
1
+ FROM node:22.21.1-alpine AS base-image
2
2
 
3
3
  ENV CI=true
4
4
 
package/package.json CHANGED
@@ -14,16 +14,16 @@
14
14
  "devDependencies": {
15
15
  "@commitlint/cli": "20.1.0",
16
16
  "@commitlint/config-conventional": "20.0.0",
17
- "@eslint/js": "9.38.0",
17
+ "@eslint/js": "9.39.0",
18
18
  "@types/json2md": "1.5.4",
19
- "@types/yargs": "17.0.33",
20
- "eslint": "9.38.0",
19
+ "@types/yargs": "17.0.34",
20
+ "eslint": "9.39.0",
21
21
  "eslint-config-prettier": "10.1.8",
22
22
  "eslint-plugin-prettier": "5.5.4",
23
- "globals": "16.4.0",
23
+ "globals": "16.5.0",
24
24
  "husky": "9.1.7",
25
25
  "prettier": "3.6.2",
26
- "typescript-eslint": "8.46.1"
26
+ "typescript-eslint": "8.46.2"
27
27
  },
28
28
  "engines": {
29
29
  "node": "22"
@@ -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@10.18.3",
34
+ "packageManager": "pnpm@10.20.0",
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.74"
42
+ "version": "0.9.75"
43
43
  }