code-foundry 0.27.15 → 0.27.17
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/code-foundry.yml +1 -1
- package/.github/workflows/release.yml +88 -2
- package/CHANGELOG.md +87 -129
- package/package.json +2 -3
- package/ruff.toml +0 -6
package/.github/code-foundry.yml
CHANGED
|
@@ -57,7 +57,19 @@ jobs:
|
|
|
57
57
|
}
|
|
58
58
|
if (!['node', 'python', 'rust', 'simple', 'none'].includes(releaseType)) throw new Error(`Unsupported release_type: ${releaseType}`)
|
|
59
59
|
if (releaseType === 'none' || !fs.existsSync('package.json')) npmPublish = 'false'
|
|
60
|
-
|
|
60
|
+
let legacyReleaseType = ''
|
|
61
|
+
if (releaseType !== 'none') {
|
|
62
|
+
const sourcePath = 'release-please-config.json'
|
|
63
|
+
if (!fs.existsSync(sourcePath)) throw new Error(`Missing ${sourcePath}`)
|
|
64
|
+
const releaseConfig = JSON.parse(fs.readFileSync(sourcePath, 'utf8'))
|
|
65
|
+
if (!releaseConfig.packages && !releaseConfig['release-type']) {
|
|
66
|
+
legacyReleaseType = releaseType
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
fs.appendFileSync(
|
|
70
|
+
process.env.GITHUB_OUTPUT,
|
|
71
|
+
`release_type=${releaseType}\nlegacy_release_type=${legacyReleaseType}\nnpm_publish=${npmPublish}\n`,
|
|
72
|
+
)
|
|
61
73
|
NODE
|
|
62
74
|
- name: Release Please
|
|
63
75
|
id: release
|
|
@@ -66,7 +78,81 @@ jobs:
|
|
|
66
78
|
with:
|
|
67
79
|
token: ${{ secrets.RELEASE_PLEASE_TOKEN || github.token }}
|
|
68
80
|
config-file: release-please-config.json
|
|
69
|
-
release-type: ${{ steps.profile.outputs.
|
|
81
|
+
release-type: ${{ steps.profile.outputs.legacy_release_type }}
|
|
82
|
+
- name: Merge generated version pull requests
|
|
83
|
+
if: steps.release.outputs.prs_created == 'true'
|
|
84
|
+
env:
|
|
85
|
+
GH_TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN || github.token }}
|
|
86
|
+
run: |
|
|
87
|
+
set -euo pipefail
|
|
88
|
+
|
|
89
|
+
allowed_paths="$(
|
|
90
|
+
node <<'NODE'
|
|
91
|
+
const fs = require('node:fs')
|
|
92
|
+
const config = JSON.parse(fs.readFileSync('release-please-config.json', 'utf8'))
|
|
93
|
+
const common = [
|
|
94
|
+
'.release-please-manifest.json',
|
|
95
|
+
'CHANGELOG.md',
|
|
96
|
+
'Cargo.lock',
|
|
97
|
+
'Cargo.toml',
|
|
98
|
+
'bun.lock',
|
|
99
|
+
'bun.lockb',
|
|
100
|
+
'package-lock.json',
|
|
101
|
+
'package.json',
|
|
102
|
+
'pnpm-lock.yaml',
|
|
103
|
+
'pyproject.toml',
|
|
104
|
+
'uv.lock',
|
|
105
|
+
'version.txt',
|
|
106
|
+
'yarn.lock',
|
|
107
|
+
]
|
|
108
|
+
const allowed = new Set(common)
|
|
109
|
+
const addExtraFiles = (files = [], prefix = '') => {
|
|
110
|
+
for (const entry of files) {
|
|
111
|
+
const path = typeof entry === 'string' ? entry : entry.path
|
|
112
|
+
if (path) allowed.add(prefix ? `${prefix}/${path}` : path)
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
addExtraFiles(config['extra-files'])
|
|
116
|
+
for (const [directory, packageConfig] of Object.entries(config.packages || {})) {
|
|
117
|
+
const prefix = directory === '.' ? '' : directory.replace(/\/$/, '')
|
|
118
|
+
for (const path of common) allowed.add(prefix ? `${prefix}/${path}` : path)
|
|
119
|
+
addExtraFiles(packageConfig['extra-files'], prefix)
|
|
120
|
+
}
|
|
121
|
+
process.stdout.write(JSON.stringify([...allowed]))
|
|
122
|
+
NODE
|
|
123
|
+
)"
|
|
124
|
+
|
|
125
|
+
mapfile -t release_prs < <(
|
|
126
|
+
gh pr list \
|
|
127
|
+
--repo "$GITHUB_REPOSITORY" \
|
|
128
|
+
--state open \
|
|
129
|
+
--base main \
|
|
130
|
+
--json number,title,headRefName \
|
|
131
|
+
--jq '.[] | select(.title | startswith("chore(main): release ")) | select(.headRefName | startswith("release-please--branches--main")) | .number'
|
|
132
|
+
)
|
|
133
|
+
[ "${#release_prs[@]}" -gt 0 ] || {
|
|
134
|
+
echo "Release Please reported a pull request, but no generated release PR was found." >&2
|
|
135
|
+
exit 1
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
for pr in "${release_prs[@]}"; do
|
|
139
|
+
mapfile -t changed_paths < <(gh pr diff "$pr" --repo "$GITHUB_REPOSITORY" --name-only)
|
|
140
|
+
[ "${#changed_paths[@]}" -gt 0 ] || {
|
|
141
|
+
echo "Generated release PR #$pr has no changed files." >&2
|
|
142
|
+
exit 1
|
|
143
|
+
}
|
|
144
|
+
for path in "${changed_paths[@]}"; do
|
|
145
|
+
jq -e --arg path "$path" 'index($path) != null' <<<"$allowed_paths" >/dev/null || {
|
|
146
|
+
echo "Refusing to auto-merge release PR #$pr with unexpected path: $path" >&2
|
|
147
|
+
exit 1
|
|
148
|
+
}
|
|
149
|
+
done
|
|
150
|
+
gh pr merge "$pr" \
|
|
151
|
+
--repo "$GITHUB_REPOSITORY" \
|
|
152
|
+
--admin \
|
|
153
|
+
--rebase \
|
|
154
|
+
--delete-branch
|
|
155
|
+
done
|
|
70
156
|
|
|
71
157
|
npm:
|
|
72
158
|
name: Release / Publish npm
|
package/CHANGELOG.md
CHANGED
|
@@ -1,401 +1,359 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.27.
|
|
3
|
+
## [0.27.17](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.16...v0.27.17) (2026-07-29)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
* **
|
|
8
|
+
* **release:** auto-merge generated version PRs ([3032cfc](https://github.com/0xPlayerOne/code-foundry/commit/3032cfc458e4508ad637354ee98447c544a5a1d4))
|
|
9
9
|
|
|
10
|
-
## [0.27.
|
|
10
|
+
## [0.27.16](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.15...v0.27.16) (2026-07-29)
|
|
11
11
|
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **release:** honor manifest configuration ([2beb320](https://github.com/0xPlayerOne/code-foundry/commit/2beb32053e5b86319a3c44377e4cbe2f20592507))
|
|
15
|
+
- **release:** pass committed manifest config ([39ef227](https://github.com/0xPlayerOne/code-foundry/commit/39ef227828d9c7903e9d08cfcd0dd755f41a7c78))
|
|
16
|
+
|
|
17
|
+
## [0.27.15](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.14...v0.27.15) (2026-07-29)
|
|
12
18
|
|
|
13
19
|
### Bug Fixes
|
|
14
20
|
|
|
15
|
-
|
|
16
|
-
* **draft-pr:** pass repository explicitly ([6fbf289](https://github.com/0xPlayerOne/code-foundry/commit/6fbf289649ce2097e42b156cf2db0c39fb8ceee1))
|
|
17
|
-
* **draft-pr:** use explicit repository for lookups ([e498d6e](https://github.com/0xPlayerOne/code-foundry/commit/e498d6e125099e2437041112e1b3442a7ebea389))
|
|
21
|
+
- **ci:** remove stale CodeQL change detection ([897d749](https://github.com/0xPlayerOne/code-foundry/commit/897d749d296c02751fda764b9fa069e32208182b))
|
|
18
22
|
|
|
19
|
-
## [0.27.
|
|
23
|
+
## [0.27.14](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.13...v0.27.14) (2026-07-29)
|
|
20
24
|
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- **codeql:** skip unavailable analyzers ([9ddf8e3](https://github.com/0xPlayerOne/code-foundry/commit/9ddf8e30dab4da2ba1f6bb20dd3503e56ab1b880))
|
|
28
|
+
- **draft-pr:** pass repository explicitly ([6fbf289](https://github.com/0xPlayerOne/code-foundry/commit/6fbf289649ce2097e42b156cf2db0c39fb8ceee1))
|
|
29
|
+
- **draft-pr:** use explicit repository for lookups ([e498d6e](https://github.com/0xPlayerOne/code-foundry/commit/e498d6e125099e2437041112e1b3442a7ebea389))
|
|
30
|
+
|
|
31
|
+
## [0.27.13](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.12...v0.27.13) (2026-07-29)
|
|
21
32
|
|
|
22
33
|
### Bug Fixes
|
|
23
34
|
|
|
24
|
-
|
|
35
|
+
- **sync:** package the gitignore template ([e65c63d](https://github.com/0xPlayerOne/code-foundry/commit/e65c63dcb09a623d5ce0b55f734bbe73719c72f2))
|
|
25
36
|
|
|
26
37
|
## [0.27.12](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.11...v0.27.12) (2026-07-29)
|
|
27
38
|
|
|
28
|
-
|
|
29
39
|
### Bug Fixes
|
|
30
40
|
|
|
31
|
-
|
|
41
|
+
- **security:** skip irrelevant dependency audits ([cc206d4](https://github.com/0xPlayerOne/code-foundry/commit/cc206d4dea5311684b79ef3a04669aa7ce74421a))
|
|
32
42
|
|
|
33
43
|
## [0.27.11](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.10...v0.27.11) (2026-07-29)
|
|
34
44
|
|
|
35
|
-
|
|
36
45
|
### Bug Fixes
|
|
37
46
|
|
|
38
|
-
|
|
39
|
-
|
|
47
|
+
- **ci:** isolate reusable workflow concurrency ([ddfc3a6](https://github.com/0xPlayerOne/code-foundry/commit/ddfc3a6b8860629a12494ffd8ef273dfb2c354b4))
|
|
48
|
+
- **workflows:** clarify Code Foundry job hierarchy ([124327e](https://github.com/0xPlayerOne/code-foundry/commit/124327ec3f8f5907eca478580a62b7485e0cfd98))
|
|
40
49
|
|
|
41
50
|
## [0.27.10](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.9...v0.27.10) (2026-07-28)
|
|
42
51
|
|
|
43
|
-
|
|
44
52
|
### Bug Fixes
|
|
45
53
|
|
|
46
|
-
|
|
54
|
+
- **codeql:** make analyzer checks protection-safe ([5ab240e](https://github.com/0xPlayerOne/code-foundry/commit/5ab240e6ce62c2d87acf92f8776a107cffefd860))
|
|
47
55
|
|
|
48
56
|
## [0.27.9](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.8...v0.27.9) (2026-07-28)
|
|
49
57
|
|
|
50
|
-
|
|
51
58
|
### Bug Fixes
|
|
52
59
|
|
|
53
|
-
|
|
60
|
+
- **ci:** hoist Bun workspace dependencies ([f480ad6](https://github.com/0xPlayerOne/code-foundry/commit/f480ad671cf12435f632d9397dbc8f72d7a2e8fe))
|
|
54
61
|
|
|
55
62
|
## [0.27.8](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.7...v0.27.8) (2026-07-28)
|
|
56
63
|
|
|
57
|
-
|
|
58
64
|
### Bug Fixes
|
|
59
65
|
|
|
60
|
-
|
|
66
|
+
- **ci:** run required Bun postinstall setup safely ([0302604](https://github.com/0xPlayerOne/code-foundry/commit/0302604f877bedbef8d3ab06794ffd9599fb774c))
|
|
61
67
|
|
|
62
68
|
## [0.27.7](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.6...v0.27.7) (2026-07-28)
|
|
63
69
|
|
|
64
|
-
|
|
65
70
|
### Bug Fixes
|
|
66
71
|
|
|
67
|
-
|
|
72
|
+
- **ci:** avoid recursive Bun install lifecycle scripts ([780e90d](https://github.com/0xPlayerOne/code-foundry/commit/780e90dcbc4a93005091465594cb57d9d2154003))
|
|
68
73
|
|
|
69
74
|
## [0.27.6](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.5...v0.27.6) (2026-07-28)
|
|
70
75
|
|
|
71
|
-
|
|
72
76
|
### Bug Fixes
|
|
73
77
|
|
|
74
|
-
|
|
78
|
+
- **ci:** force complete Bun workspace installs ([1d391b8](https://github.com/0xPlayerOne/code-foundry/commit/1d391b8e481acd91d7ae293cdbbfc090a891dc47))
|
|
75
79
|
|
|
76
80
|
## [0.27.5](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.4...v0.27.5) (2026-07-28)
|
|
77
81
|
|
|
78
|
-
|
|
79
82
|
### Bug Fixes
|
|
80
83
|
|
|
81
|
-
|
|
82
|
-
|
|
84
|
+
- **ci:** install Rust formatting and lint components ([16da3fc](https://github.com/0xPlayerOne/code-foundry/commit/16da3fc416e64b2c5c62d2f3a7feaa270134c1a2))
|
|
85
|
+
- **test:** skip absent Python integration suites ([ee932ce](https://github.com/0xPlayerOne/code-foundry/commit/ee932cea048dc94175f395ac49ca65ed9dbb466f))
|
|
83
86
|
|
|
84
87
|
## [0.27.4](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.3...v0.27.4) (2026-07-28)
|
|
85
88
|
|
|
86
|
-
|
|
87
89
|
### Bug Fixes
|
|
88
90
|
|
|
89
|
-
|
|
91
|
+
- **runtime:** resolve Python tools from virtualenv ([788b1ae](https://github.com/0xPlayerOne/code-foundry/commit/788b1ae438451ee57ce55a8669d2710cb8755fcf))
|
|
90
92
|
|
|
91
93
|
## [0.27.3](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.2...v0.27.3) (2026-07-28)
|
|
92
94
|
|
|
93
|
-
|
|
94
95
|
### Bug Fixes
|
|
95
96
|
|
|
96
|
-
|
|
97
|
+
- **ci:** auto-detect format tooling ([2be5228](https://github.com/0xPlayerOne/code-foundry/commit/2be522821b5d3f93b92ca5e2c4b20df345396fc3))
|
|
97
98
|
|
|
98
99
|
## [0.27.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.1...v0.27.2) (2026-07-28)
|
|
99
100
|
|
|
100
|
-
|
|
101
101
|
### Bug Fixes
|
|
102
102
|
|
|
103
|
-
|
|
103
|
+
- **runtime:** harden dependency setup and audits ([f3c4f85](https://github.com/0xPlayerOne/code-foundry/commit/f3c4f85263232e5023e7e6b3ae50ad2c27f3a47a))
|
|
104
104
|
|
|
105
105
|
## [0.27.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.0...v0.27.1) (2026-07-28)
|
|
106
106
|
|
|
107
|
-
|
|
108
107
|
### Bug Fixes
|
|
109
108
|
|
|
110
|
-
|
|
111
|
-
|
|
109
|
+
- **ci:** cover framework and native test prerequisites ([53b8209](https://github.com/0xPlayerOne/code-foundry/commit/53b8209104cf52972e867eba65fed46d0b8f57bb))
|
|
110
|
+
- **ci:** install project format and Python tooling ([13fb972](https://github.com/0xPlayerOne/code-foundry/commit/13fb972e774e26c2d5794421a17c4ac685a28b0c))
|
|
112
111
|
|
|
113
112
|
## [0.27.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.26.0...v0.27.0) (2026-07-28)
|
|
114
113
|
|
|
115
|
-
|
|
116
114
|
### Features
|
|
117
115
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
116
|
+
- add typed javascript cli checks ([2d9464b](https://github.com/0xPlayerOne/code-foundry/commit/2d9464bcbef8aa51607cdf52a6a60e3fc1bdb054))
|
|
117
|
+
- make mise an optional toolchain ([e62f023](https://github.com/0xPlayerOne/code-foundry/commit/e62f0238f4ddc2d1b0f89e0f2b23bca3679b934e))
|
|
118
|
+
- make paid github security checks opt-in ([bbfe899](https://github.com/0xPlayerOne/code-foundry/commit/bbfe8993d88a8415129ce29bfa5d2181807232ba))
|
|
119
|
+
- skip irrelevant language configuration ([39a0003](https://github.com/0xPlayerOne/code-foundry/commit/39a00037ba92152926e7a89759f3255d86a4f26e))
|
|
120
|
+
- standardize optional github security policies ([2cf6bc3](https://github.com/0xPlayerOne/code-foundry/commit/2cf6bc3af161ed8757a03447aab16f3e7ea310d7))
|
|
124
121
|
|
|
125
122
|
### Bug Fixes
|
|
126
123
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
124
|
+
- include runtime libraries in every workflow job ([ce94cd9](https://github.com/0xPlayerOne/code-foundry/commit/ce94cd96a32eff54048712e1bf4b2d34a868ba2e))
|
|
125
|
+
- include runtime libraries in workflow checkout ([4b2c252](https://github.com/0xPlayerOne/code-foundry/commit/4b2c2527c37c82b498c2b3457df5dd52ef7c694f))
|
|
126
|
+
- migrate stale managed docs during sync ([380bab1](https://github.com/0xPlayerOne/code-foundry/commit/380bab1334c9125f97bf333cc29c796e1a16d57d))
|
|
127
|
+
- preserve authored notice files ([342e666](https://github.com/0xPlayerOne/code-foundry/commit/342e666f4e218e094180f10ecdc5a24b85a27b28))
|
|
128
|
+
- preserve repository notice attribution ([7d43911](https://github.com/0xPlayerOne/code-foundry/commit/7d439117ec89882d8d06895528d94ed717ade471))
|
|
129
|
+
- use pinned bun lockfile format ([0f75faf](https://github.com/0xPlayerOne/code-foundry/commit/0f75faf2c7614cc7055cbb4f26a01b3cf1639f85))
|
|
133
130
|
|
|
134
131
|
## [0.26.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.25.0...v0.26.0) (2026-07-28)
|
|
135
132
|
|
|
136
|
-
|
|
137
133
|
### Features
|
|
138
134
|
|
|
139
|
-
|
|
135
|
+
- default new repositories to gplv3 ([e200135](https://github.com/0xPlayerOne/code-foundry/commit/e200135939779693eb73a64aaf3587eccdc36ffc))
|
|
140
136
|
|
|
141
137
|
## [0.25.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.24.1...v0.25.0) (2026-07-28)
|
|
142
138
|
|
|
143
|
-
|
|
144
139
|
### Features
|
|
145
140
|
|
|
146
|
-
|
|
147
|
-
|
|
141
|
+
- simplify reusable workflow layout ([293b2a8](https://github.com/0xPlayerOne/code-foundry/commit/293b2a877500853778f311763cd4176e86f0b4f8))
|
|
148
142
|
|
|
149
143
|
### Bug Fixes
|
|
150
144
|
|
|
151
|
-
|
|
145
|
+
- use local self workflow references ([31ea5a5](https://github.com/0xPlayerOne/code-foundry/commit/31ea5a5a621039afd8e19febe9d2a9f814c9d6fa))
|
|
152
146
|
|
|
153
147
|
## [0.24.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.24.0...v0.24.1) (2026-07-28)
|
|
154
148
|
|
|
155
|
-
|
|
156
149
|
### Bug Fixes
|
|
157
150
|
|
|
158
|
-
|
|
151
|
+
- remove obsolete consumer helper ([4fcf85b](https://github.com/0xPlayerOne/code-foundry/commit/4fcf85b2c452e08aab47ec1fb6e00cdce5523cff))
|
|
159
152
|
|
|
160
153
|
## [0.24.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.23.1...v0.24.0) (2026-07-28)
|
|
161
154
|
|
|
162
|
-
|
|
163
155
|
### Features
|
|
164
156
|
|
|
165
|
-
|
|
157
|
+
- minimize consumer footprint ([2b29d2e](https://github.com/0xPlayerOne/code-foundry/commit/2b29d2e09072492c8ee8fc642d0477f416805cf2))
|
|
166
158
|
|
|
167
159
|
## [0.23.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.23.0...v0.23.1) (2026-07-28)
|
|
168
160
|
|
|
169
|
-
|
|
170
161
|
### Bug Fixes
|
|
171
162
|
|
|
172
|
-
|
|
163
|
+
- support repositories without package managers ([a126945](https://github.com/0xPlayerOne/code-foundry/commit/a126945d259875763ce89ddb3c0dbc182b74bb76))
|
|
173
164
|
|
|
174
165
|
## [0.23.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.2...v0.23.0) (2026-07-28)
|
|
175
166
|
|
|
176
|
-
|
|
177
167
|
### Features
|
|
178
168
|
|
|
179
|
-
|
|
169
|
+
- simplify initialization and synchronization ([9f4643e](https://github.com/0xPlayerOne/code-foundry/commit/9f4643e854a262eb923a4fe84ddb986c3f1bdf77))
|
|
180
170
|
|
|
181
171
|
## [0.22.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.1...v0.22.2) (2026-07-28)
|
|
182
172
|
|
|
183
|
-
|
|
184
173
|
### Bug Fixes
|
|
185
174
|
|
|
186
|
-
|
|
175
|
+
- remove legacy config after migration ([839a4bd](https://github.com/0xPlayerOne/code-foundry/commit/839a4bd7d818633f1aef201b4a2b3292218563f4))
|
|
187
176
|
|
|
188
177
|
## [0.22.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.0...v0.22.1) (2026-07-28)
|
|
189
178
|
|
|
190
|
-
|
|
191
179
|
### Bug Fixes
|
|
192
180
|
|
|
193
|
-
|
|
181
|
+
- pin callers to the canonical runtime ([321b93f](https://github.com/0xPlayerOne/code-foundry/commit/321b93fff2089ee61fa41f968ee584af864692b2))
|
|
194
182
|
|
|
195
183
|
## [0.22.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.21.2...v0.22.0) (2026-07-28)
|
|
196
184
|
|
|
197
|
-
|
|
198
185
|
### Features
|
|
199
186
|
|
|
200
|
-
|
|
201
|
-
|
|
187
|
+
- centralize repository configuration ([e1b4ef1](https://github.com/0xPlayerOne/code-foundry/commit/e1b4ef19ab1ecc899c06331cbfd3477062a73549))
|
|
202
188
|
|
|
203
189
|
### Bug Fixes
|
|
204
190
|
|
|
205
|
-
|
|
206
|
-
|
|
191
|
+
- bridge legacy runtime configuration ([d906b0d](https://github.com/0xPlayerOne/code-foundry/commit/d906b0d8f0bc65d2697ababbd5ab658ca2193684))
|
|
192
|
+
- keep legacy runtime callers valid ([c23f9e2](https://github.com/0xPlayerOne/code-foundry/commit/c23f9e2980bfcb8a0b7c685f1a9ba6d26f215eba))
|
|
207
193
|
|
|
208
194
|
## [0.21.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.21.1...v0.21.2) (2026-07-28)
|
|
209
195
|
|
|
210
|
-
|
|
211
196
|
### Bug Fixes
|
|
212
197
|
|
|
213
|
-
|
|
198
|
+
- **docs:** clarify package verification ([b2bb12d](https://github.com/0xPlayerOne/code-foundry/commit/b2bb12d1674acefe5e874df280dfd083f9966e19))
|
|
214
199
|
|
|
215
200
|
## [0.21.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.21.0...v0.21.1) (2026-07-28)
|
|
216
201
|
|
|
217
|
-
|
|
218
202
|
### Bug Fixes
|
|
219
203
|
|
|
220
|
-
|
|
204
|
+
- **template:** align reusable runtime pins ([c3195e8](https://github.com/0xPlayerOne/code-foundry/commit/c3195e8a3320821c5f891ef942cf5df59ecd09bb))
|
|
221
205
|
|
|
222
206
|
## [0.21.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.20.3...v0.21.0) (2026-07-28)
|
|
223
207
|
|
|
224
|
-
|
|
225
208
|
### Features
|
|
226
209
|
|
|
227
|
-
|
|
210
|
+
- **runtime:** configure reusable workflow refs ([55f20d2](https://github.com/0xPlayerOne/code-foundry/commit/55f20d278f23ece1fed1166f1cad1b15c985ee90))
|
|
228
211
|
|
|
229
212
|
## [0.20.3](https://github.com/0xPlayerOne/code-foundry/compare/v0.20.2...v0.20.3) (2026-07-28)
|
|
230
213
|
|
|
231
|
-
|
|
232
214
|
### Bug Fixes
|
|
233
215
|
|
|
234
|
-
|
|
216
|
+
- **release-pr:** pin no-op runtime ([af662ef](https://github.com/0xPlayerOne/code-foundry/commit/af662ef7206269f03438bc3983878024629f6056))
|
|
235
217
|
|
|
236
218
|
## [0.20.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.20.1...v0.20.2) (2026-07-28)
|
|
237
219
|
|
|
238
|
-
|
|
239
220
|
### Bug Fixes
|
|
240
221
|
|
|
241
|
-
|
|
222
|
+
- **release-pr:** skip empty promotions ([7c3b21b](https://github.com/0xPlayerOne/code-foundry/commit/7c3b21b19e03ac8319b1217d4e3d0d8a6f0e2317))
|
|
242
223
|
|
|
243
224
|
## [0.20.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.20.0...v0.20.1) (2026-07-28)
|
|
244
225
|
|
|
245
|
-
|
|
246
226
|
### Bug Fixes
|
|
247
227
|
|
|
248
|
-
|
|
249
|
-
|
|
228
|
+
- **workflows:** align callers with current runtime ([11629d3](https://github.com/0xPlayerOne/code-foundry/commit/11629d32b4c41a8bfd1ff8fdaa5638c43236e889))
|
|
229
|
+
- **workflows:** correct release caller indentation ([2688ca9](https://github.com/0xPlayerOne/code-foundry/commit/2688ca924552c9537151e76f486f6485bd4fb0d9))
|
|
250
230
|
|
|
251
231
|
## [0.20.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.19.0...v0.20.0) (2026-07-28)
|
|
252
232
|
|
|
253
|
-
|
|
254
233
|
### Features
|
|
255
234
|
|
|
256
|
-
|
|
235
|
+
- **workflows:** use reusable promotion callers ([8429b8f](https://github.com/0xPlayerOne/code-foundry/commit/8429b8f9dee4fa0eedce2d8342332603e88e3f38))
|
|
257
236
|
|
|
258
237
|
## [0.19.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.18.0...v0.19.0) (2026-07-28)
|
|
259
238
|
|
|
260
|
-
|
|
261
239
|
### Features
|
|
262
240
|
|
|
263
|
-
|
|
241
|
+
- **workflows:** add reusable promotion runtimes ([ac113a9](https://github.com/0xPlayerOne/code-foundry/commit/ac113a902700957cbf26d4a47b4e7828b157dd13))
|
|
264
242
|
|
|
265
243
|
## [0.18.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.17.0...v0.18.0) (2026-07-28)
|
|
266
244
|
|
|
267
|
-
|
|
268
245
|
### Features
|
|
269
246
|
|
|
270
|
-
|
|
247
|
+
- **init:** infer runtime from source template ([81a545b](https://github.com/0xPlayerOne/code-foundry/commit/81a545bc6a2d89c31be51a711e477c4e4ceca7dd))
|
|
271
248
|
|
|
272
249
|
## [0.17.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.16.0...v0.17.0) (2026-07-28)
|
|
273
250
|
|
|
274
|
-
|
|
275
251
|
### Features
|
|
276
252
|
|
|
277
|
-
|
|
278
|
-
|
|
253
|
+
- **release:** document centralized release runtime ([3e2a3f9](https://github.com/0xPlayerOne/code-foundry/commit/3e2a3f9b5e71bf5003819aa177afd265d989bb34))
|
|
279
254
|
|
|
280
255
|
### Bug Fixes
|
|
281
256
|
|
|
282
|
-
|
|
257
|
+
- **release:** grant trusted publishing permission ([025f78e](https://github.com/0xPlayerOne/code-foundry/commit/025f78e851d44a60e2e4e17d3718b0b2fbe147ae))
|
|
283
258
|
|
|
284
259
|
## [0.16.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.15.0...v0.16.0) (2026-07-28)
|
|
285
260
|
|
|
286
|
-
|
|
287
261
|
### Features
|
|
288
262
|
|
|
289
|
-
|
|
263
|
+
- **release:** add reusable release workflow runtime ([19c3433](https://github.com/0xPlayerOne/code-foundry/commit/19c3433af4ae1ed796030da77f07309e2bf3e98c))
|
|
290
264
|
|
|
291
265
|
## [0.15.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.14.0...v0.15.0) (2026-07-28)
|
|
292
266
|
|
|
293
|
-
|
|
294
267
|
### Features
|
|
295
268
|
|
|
296
|
-
|
|
269
|
+
- **runtime:** unify reusable workflow pins ([bd7aece](https://github.com/0xPlayerOne/code-foundry/commit/bd7aecefac9d02be698907cba686c536c6c242d6))
|
|
297
270
|
|
|
298
271
|
## [0.14.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.13.0...v0.14.0) (2026-07-28)
|
|
299
272
|
|
|
300
|
-
|
|
301
273
|
### Features
|
|
302
274
|
|
|
303
|
-
|
|
275
|
+
- **init:** minimize consumer workflow footprint ([4427c1f](https://github.com/0xPlayerOne/code-foundry/commit/4427c1f964c3a0dc6ffe080ea3779ad2b8a1d170))
|
|
304
276
|
|
|
305
277
|
## [0.13.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.12.0...v0.13.0) (2026-07-28)
|
|
306
278
|
|
|
307
|
-
|
|
308
279
|
### Features
|
|
309
280
|
|
|
310
|
-
|
|
281
|
+
- **codeql:** document centralized CodeQL runtime ([2aa20a9](https://github.com/0xPlayerOne/code-foundry/commit/2aa20a946d0979cb12af87cb2ea2d0b50f279965))
|
|
311
282
|
|
|
312
283
|
## [0.12.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.11.0...v0.12.0) (2026-07-28)
|
|
313
284
|
|
|
314
|
-
|
|
315
285
|
### Features
|
|
316
286
|
|
|
317
|
-
|
|
287
|
+
- **codeql:** add reusable CodeQL workflow runtime ([65896bb](https://github.com/0xPlayerOne/code-foundry/commit/65896bb407ad9d792c962e86d63384849f711a16))
|
|
318
288
|
|
|
319
289
|
## [0.11.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.10.0...v0.11.0) (2026-07-28)
|
|
320
290
|
|
|
321
|
-
|
|
322
291
|
### Features
|
|
323
292
|
|
|
324
|
-
|
|
293
|
+
- **security:** document centralized security runtime ([f8427fe](https://github.com/0xPlayerOne/code-foundry/commit/f8427fe740b2753c83a400766d7dd7ac453f3c5b))
|
|
325
294
|
|
|
326
295
|
## [0.10.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.9.0...v0.10.0) (2026-07-28)
|
|
327
296
|
|
|
328
|
-
|
|
329
297
|
### Features
|
|
330
298
|
|
|
331
|
-
|
|
299
|
+
- **security:** add reusable security workflow runtime ([b21d014](https://github.com/0xPlayerOne/code-foundry/commit/b21d014e85cfcdef4181d488b1df91e3c950503b))
|
|
332
300
|
|
|
333
301
|
## [0.9.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.8.0...v0.9.0) (2026-07-28)
|
|
334
302
|
|
|
335
|
-
|
|
336
303
|
### Features
|
|
337
304
|
|
|
338
|
-
|
|
305
|
+
- **init:** configure reusable workflow repository ([95d17e9](https://github.com/0xPlayerOne/code-foundry/commit/95d17e9a4af2e2075fcdc2c357af414876655fb3))
|
|
339
306
|
|
|
340
307
|
## [0.8.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.7.0...v0.8.0) (2026-07-28)
|
|
341
308
|
|
|
342
|
-
|
|
343
309
|
### Features
|
|
344
310
|
|
|
345
|
-
|
|
346
|
-
|
|
311
|
+
- **test:** add reusable test workflow runtime ([5a1f4cf](https://github.com/0xPlayerOne/code-foundry/commit/5a1f4cfadb6b11f27b001ba8f6424b11de32fd64))
|
|
347
312
|
|
|
348
313
|
### Bug Fixes
|
|
349
314
|
|
|
350
|
-
|
|
315
|
+
- **test:** keep local workflow during runtime release ([8827659](https://github.com/0xPlayerOne/code-foundry/commit/88276590451ee6b3230ad3b1349ccd4785a686bf))
|
|
351
316
|
|
|
352
317
|
## [0.7.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.6.0...v0.7.0) (2026-07-28)
|
|
353
318
|
|
|
354
|
-
|
|
355
319
|
### Features
|
|
356
320
|
|
|
357
|
-
|
|
358
|
-
|
|
321
|
+
- **ci:** use reusable workflow wrapper ([77c7075](https://github.com/0xPlayerOne/code-foundry/commit/77c7075d23f48b44da276406c0000fe23c7f1dcf))
|
|
359
322
|
|
|
360
323
|
### Bug Fixes
|
|
361
324
|
|
|
362
|
-
|
|
363
|
-
|
|
325
|
+
- **ci:** declare read-only workflow permissions ([e7b7397](https://github.com/0xPlayerOne/code-foundry/commit/e7b739739979b1572760c1f81d9c7229d156c7e3))
|
|
326
|
+
- **ci:** name reusable checks consistently ([4a194f4](https://github.com/0xPlayerOne/code-foundry/commit/4a194f40b4f2a2660526eefac0e366402de0782d))
|
|
364
327
|
|
|
365
328
|
## [0.6.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.5.0...v0.6.0) (2026-07-28)
|
|
366
329
|
|
|
367
|
-
|
|
368
330
|
### Features
|
|
369
331
|
|
|
370
|
-
|
|
332
|
+
- **ci:** add reusable workflow runtime ([4900da5](https://github.com/0xPlayerOne/code-foundry/commit/4900da5e6141015146c4be2059bbce7da0c25f5d))
|
|
371
333
|
|
|
372
334
|
## [0.5.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.4.0...v0.5.0) (2026-07-28)
|
|
373
335
|
|
|
374
|
-
|
|
375
336
|
### Features
|
|
376
337
|
|
|
377
|
-
|
|
338
|
+
- **init:** preserve authored repository docs ([9fab688](https://github.com/0xPlayerOne/code-foundry/commit/9fab6880ad82762cf4e2eb7d813355ab22cdb905))
|
|
378
339
|
|
|
379
340
|
## [0.4.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.3.0...v0.4.0) (2026-07-28)
|
|
380
341
|
|
|
381
|
-
|
|
382
342
|
### Features
|
|
383
343
|
|
|
384
|
-
|
|
344
|
+
- **hooks:** centralize generated pre-commit runtime ([8e8111c](https://github.com/0xPlayerOne/code-foundry/commit/8e8111c1b1b95fcb356fe1b1366e369393cbf946))
|
|
385
345
|
|
|
386
346
|
## [0.3.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.2.0...v0.3.0) (2026-07-28)
|
|
387
347
|
|
|
388
|
-
|
|
389
348
|
### Features
|
|
390
349
|
|
|
391
|
-
|
|
350
|
+
- **init:** add configurable license generation ([6ea7d93](https://github.com/0xPlayerOne/code-foundry/commit/6ea7d93637620bbb2f46475eeba4789d8a3b580c))
|
|
392
351
|
|
|
393
352
|
## [0.2.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.1.4...v0.2.0) (2026-07-28)
|
|
394
353
|
|
|
395
|
-
|
|
396
354
|
### Features
|
|
397
355
|
|
|
398
|
-
|
|
356
|
+
- document repository profile diagnostics ([29f132a](https://github.com/0xPlayerOne/code-foundry/commit/29f132a2b15053b06c7fe22c27324dc59151adee))
|
|
399
357
|
|
|
400
358
|
## Changelog
|
|
401
359
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-foundry",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.17",
|
|
4
4
|
"description": "A fast, language-aware repository factory for agent-ready workflows, testing, security, and release automation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "AGPL-3.0-or-later",
|
|
@@ -32,8 +32,7 @@
|
|
|
32
32
|
"AGENTS.md",
|
|
33
33
|
"LICENSE",
|
|
34
34
|
"NOTICE",
|
|
35
|
-
"README.md"
|
|
36
|
-
"ruff.toml"
|
|
35
|
+
"README.md"
|
|
37
36
|
],
|
|
38
37
|
"engines": {
|
|
39
38
|
"node": ">=20"
|