Release v0.34.0#294
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Prepares the v0.34.0 release by bumping versioned artifacts, updating the changelog, and refreshing documentation/schema defaults to reflect auto-sized parallel workers, plus a Makefile tweak to avoid treating generated node_modules Go fixtures as module packages.
Changes:
- Bump release versions (
version.txt,extension.yaml) to 0.34.0 and add the 0.34.0 changelog entry. - Update docs + schema examples/defaults to document
workers: 0as “auto-size”. - Update the Makefile to exclude
node_modulesfrom Go file/package discovery during fmt/test/lint.
Show a summary per file
| File | Description |
|---|---|
| waza-runner/references/EVAL-SPEC.md | Updates eval spec examples to workers: 0 (auto-size). |
| version.txt | Bumps CLI version to 0.34.0. |
| site/src/content/docs/reference/waza-yaml.mdx | Updates .waza.yaml reference defaults and docs for workers: 0. |
| site/src/content/docs/reference/schema.mdx | Updates schema docs and examples to reflect workers default 0 / auto-size behavior. |
| site/src/content/docs/reference/releases.mdx | Updates current release section and download links to v0.34.0. |
| site/src/content/docs/reference/cli.mdx | Updates CLI flag docs to show --workers default as auto. |
| site/src/content/docs/guides/eval-yaml.mdx | Updates guide examples and tables for workers: 0 and auto-sized concurrency. |
| site/src/content/docs/getting-started.mdx | Updates install example version reference to v0.34.0. |
| schemas/eval.schema.json | Allows workers: 0 and documents auto-size semantics in schema. |
| Makefile | Excludes node_modules from Go package discovery for test/lint, and from gofmt file list. |
| internal/validation/doc_examples_test.go | Updates validated doc example YAML to use workers: 0. |
| extension.yaml | Bumps azd extension version to 0.34.0. |
| CHANGELOG.md | Adds 0.34.0 release notes and updates compare links. |
| .waza.yaml | Updates repo default config to workers: 0 (auto-size). |
Copilot's findings
- Files reviewed: 14/14 changed files
- Comments generated: 2
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Prepares the v0.34.0 release after PR #221 landed, using a minor semver bump because the changes since 0.33.0 include backward-compatible features and no breaking-change markers. The release updates the azd extension version, changelog, release docs, and worker-default documentation so published docs and package metadata stay in sync.
Related issue
Related to #66
Agent handoff
version.txt,extension.yaml,CHANGELOG.md,.waza.yaml,Makefile,schemas/eval.schema.json,site/src/content/docs/**,waza-runner/references/EVAL-SPEC.md,internal/validation/doc_examples_test.go.feat:commits but no breaking changes. Updated worker examples/defaults to use0/auto so docs, schema, and config examples match the new concurrency behavior from Improvewaza runconcurrency: shared Copilot client + auto-sized workers (#135) #221.make lintuses the repo's existing behavior and skips locally becausegolangci-lintis not installed.Type of change
Validation
go test ./...make lintorgolangci-lint runweb/changedValidation commands run:
Documentation
site/docs updated, if CLI, YAML, dashboard, or validator behavior changedRisk and rollback
Notes for reviewers
Please review the release notes and docs for accuracy. The Makefile change intentionally filters generated
web/node_modulesGo fixture packages from Go package discovery afterbuild-webruns; this keepsmake testscoped to repository Go packages.