code-foundry 0.27.11 → 0.27.12

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.
@@ -99,6 +99,8 @@ jobs:
99
99
 
100
100
  dependency-audit-javascript:
101
101
  name: Dependency Audit (JavaScript)
102
+ needs: profile
103
+ if: ${{ needs.profile.result == 'success' && needs.profile.outputs.javascript == 'true' }}
102
104
  runs-on: ${{ inputs.runner }}
103
105
  timeout-minutes: 20
104
106
  steps:
@@ -149,6 +151,8 @@ jobs:
149
151
 
150
152
  dependency-audit-rust:
151
153
  name: Dependency Audit (Rust)
154
+ needs: profile
155
+ if: ${{ needs.profile.result == 'success' && needs.profile.outputs.rust == 'true' }}
152
156
  runs-on: ${{ inputs.runner }}
153
157
  timeout-minutes: 20
154
158
  steps:
@@ -269,7 +273,11 @@ jobs:
269
273
  dependency-audit-python-gate:
270
274
  name: Dependency Audit (Python)
271
275
  needs: [profile, dependency-audit-python]
272
- if: always()
276
+ if: >-
277
+ ${{ always() &&
278
+ needs.profile.result == 'success' &&
279
+ needs.profile.outputs.python == 'true' &&
280
+ needs.profile.outputs.python_requirements != '["none"]' }}
273
281
  runs-on: ${{ inputs.runner }}
274
282
  timeout-minutes: 5
275
283
  steps:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.27.12](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.11...v0.27.12) (2026-07-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **security:** skip irrelevant dependency audits ([cc206d4](https://github.com/0xPlayerOne/code-foundry/commit/cc206d4dea5311684b79ef3a04669aa7ce74421a))
9
+
3
10
  ## [0.27.11](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.10...v0.27.11) (2026-07-29)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.27.11",
3
+ "version": "0.27.12",
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",