code-foundry 0.34.1 → 0.34.3

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.
@@ -239,7 +239,7 @@ jobs:
239
239
  gh pr view "$pr" \
240
240
  --repo "$GITHUB_REPOSITORY" \
241
241
  --json mergeStateStatus,mergeable \
242
- --jq -r '[.mergeStateStatus, .mergeable] | @tsv' 2>/dev/null
242
+ --jq '[.mergeStateStatus, .mergeable] | @tsv' 2>/dev/null
243
243
  ); then
244
244
  case "$merge_state" in
245
245
  CLEAN|UNSTABLE)
@@ -286,7 +286,11 @@ jobs:
286
286
  reconcile:
287
287
  name: Release / Reconcile
288
288
  needs: release
289
- if: needs.release.result == 'success'
289
+ # A normal promotion push can successfully run Release Please without
290
+ # creating a release. Reconciliation is only meaningful after a release
291
+ # commit/tag is actually created; otherwise the promotion's source changes
292
+ # are incorrectly rejected as non-metadata commits.
293
+ if: needs.release.result == 'success' && needs.release.outputs.release_created == 'true'
290
294
  runs-on: ${{ inputs.runner }}
291
295
  timeout-minutes: 15
292
296
  permissions:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.34.3](https://github.com/0xPlayerOne/code-foundry/compare/v0.34.2...v0.34.3) (2026-08-02)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **release:** reconcile only after creating a release ([#317](https://github.com/0xPlayerOne/code-foundry/issues/317)) ([#318](https://github.com/0xPlayerOne/code-foundry/issues/318)) ([6f2b00c](https://github.com/0xPlayerOne/code-foundry/commit/6f2b00c5f3fe27e56b448671902bf6f5e33cca1f))
9
+
10
+ ## [0.34.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.34.1...v0.34.2) (2026-08-01)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **release:** make mergeability poll executable ([#314](https://github.com/0xPlayerOne/code-foundry/issues/314)) ([66161ab](https://github.com/0xPlayerOne/code-foundry/commit/66161abe151f6fa7ec09844aa6fa5dab83b37de6))
16
+
3
17
  ## [0.34.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.34.0...v0.34.1) (2026-08-01)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.34.1",
3
+ "version": "0.34.3",
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",