Skip to content

Commit 08df70c

Browse files
chore: release v0.79.0
1 parent de85e86 commit 08df70c

File tree

37 files changed

+956
-124
lines changed

37 files changed

+956
-124
lines changed

apps/server/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@protolabsai/server",
3-
"version": "0.78.0",
3+
"version": "0.79.0",
44
"description": "Backend server for protoLabs Studio - provides API for both web and Electron modes",
55
"author": "protoLabs Studio",
66
"license": "SEE LICENSE IN LICENSE",
@@ -45,19 +45,19 @@
4545
"@opentelemetry/exporter-trace-otlp-http": "^0.212.0",
4646
"@opentelemetry/sdk-node": "^0.212.0",
4747
"@opentelemetry/sdk-trace-base": "^2.0.0",
48-
"@protolabsai/context-engine": "^0.68.10",
49-
"@protolabsai/dependency-resolver": "^0.78.0",
50-
"@protolabsai/error-tracking": "^0.53.25",
51-
"@protolabsai/flows": "^0.78.0",
52-
"@protolabsai/git-utils": "^0.78.0",
53-
"@protolabsai/model-resolver": "^0.78.0",
54-
"@protolabsai/observability": "^0.78.0",
55-
"@protolabsai/platform": "^0.78.0",
56-
"@protolabsai/prompts": "^0.78.0",
48+
"@protolabsai/context-engine": "^0.68.11",
49+
"@protolabsai/dependency-resolver": "^0.79.0",
50+
"@protolabsai/error-tracking": "^0.53.26",
51+
"@protolabsai/flows": "^0.79.0",
52+
"@protolabsai/git-utils": "^0.79.0",
53+
"@protolabsai/model-resolver": "^0.79.0",
54+
"@protolabsai/observability": "^0.79.0",
55+
"@protolabsai/platform": "^0.79.0",
56+
"@protolabsai/prompts": "^0.79.0",
5757
"@protolabsai/templates": "^0.56.0",
58-
"@protolabsai/tools": "^0.78.0",
59-
"@protolabsai/types": "^0.78.0",
60-
"@protolabsai/utils": "^0.78.0",
58+
"@protolabsai/tools": "^0.79.0",
59+
"@protolabsai/types": "^0.79.0",
60+
"@protolabsai/utils": "^0.79.0",
6161
"@twurple/api": "^8.0.3",
6262
"@twurple/auth": "^8.0.3",
6363
"@twurple/chat": "^8.0.3",

apps/ui/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@protolabsai/app",
3-
"version": "0.78.0",
3+
"version": "0.79.0",
44
"description": "An autonomous AI development studio that helps you build software faster using AI-powered agents",
55
"homepage": "https://github.com/AutoMaker-Org/automaker",
66
"repository": {
@@ -76,10 +76,10 @@
7676
"@fontsource/source-sans-3": "^5.2.9",
7777
"@fontsource/work-sans": "^5.2.8",
7878
"@lezer/highlight": "1.2.3",
79-
"@protolabsai/dependency-resolver": "^0.78.0",
80-
"@protolabsai/spec-parser": "^0.78.0",
81-
"@protolabsai/types": "^0.78.0",
82-
"@protolabsai/utils": "^0.78.0",
79+
"@protolabsai/dependency-resolver": "^0.79.0",
80+
"@protolabsai/spec-parser": "^0.79.0",
81+
"@protolabsai/types": "^0.79.0",
82+
"@protolabsai/utils": "^0.79.0",
8383
"@radix-ui/react-checkbox": "1.3.3",
8484
"@radix-ui/react-collapsible": "1.1.12",
8585
"@radix-ui/react-dialog": "1.1.15",
@@ -160,7 +160,7 @@
160160
"@electron/rebuild": "^4.0.3",
161161
"@eslint/js": "9.0.0",
162162
"@playwright/test": "1.57.0",
163-
"@protolabsai/ui": "^0.78.0",
163+
"@protolabsai/ui": "^0.79.0",
164164
"@storybook/addon-a11y": "^10.2.8",
165165
"@storybook/addon-docs": "^10.2.8",
166166
"@storybook/react-vite": "^10.2.8",

libs/context-engine/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @protolabsai/context-engine
22

3+
## 0.68.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @protolabsai/utils@0.79.0
9+
310
## 0.68.10
411

512
### Patch Changes

libs/context-engine/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@protolabsai/context-engine",
3-
"version": "0.68.10",
3+
"version": "0.68.11",
44
"type": "module",
55
"description": "Conversation storage and context management for AutoMaker agents",
66
"main": "dist/index.js",
@@ -33,7 +33,7 @@
3333
"node": ">=22.0.0 <23.0.0"
3434
},
3535
"dependencies": {
36-
"@protolabsai/utils": "^0.78.0",
36+
"@protolabsai/utils": "^0.79.0",
3737
"better-sqlite3": "^11.7.0"
3838
},
3939
"devDependencies": {

libs/dependency-resolver/CHANGELOG.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,67 @@
11
# @protolabsai/dependency-resolver
22

3+
## 0.79.0
4+
5+
### Minor Changes
6+
7+
- ### Features
8+
- in-flight CI failure injection into running agents (M4) (#2937)
9+
- webhook consolidation — CI events on both routes (M6) (#2938)
10+
- pre-push validation tests and stub service (M5 TDD) (#2932)
11+
- split remediation budgets — separate CI and review counters (#2931)
12+
- M1 — CI Failure Classification (#2927)
13+
- in-flight CI failure injection into running agents (M4) (#2937)
14+
- webhook consolidation — CI events on both routes (M6) (#2938)
15+
- pre-push validation tests and stub service (M5 TDD) (#2932)
16+
- split remediation budgets — separate CI and review counters (#2931)
17+
- M1 — CI Failure Classification (#2927)
18+
19+
### Bug Fixes
20+
- remove all excludeFromStaging defaults — .gitignore handles exclusion
21+
- CodeRabbit findings — PRWatcher null, cross-project injection, stale queue (#2941)
22+
- remove all excludeFromStaging defaults — .gitignore handles exclusion
23+
- CodeRabbit findings — PRWatcher null, cross-project injection, stale queue (#2941)
24+
- remove unwired pre-push-validation stub and failing tests
25+
- prevent git add error when .automaker is in .gitignore (#2934)
26+
- use non-excluded pattern in friction tracker tests
27+
- change DEFAULT_GIT_WORKFLOW_SETTINGS.prBaseBranch from dev to main
28+
- add per-project prBaseBranch: dev to automaker settings
29+
- exclude rate_limit and transient patterns from friction tracker
30+
- remove unwired pre-push-validation stub and failing tests
31+
- prevent git add error when .automaker is in .gitignore (#2934)
32+
- use non-excluded pattern in friction tracker tests
33+
- change DEFAULT_GIT_WORKFLOW_SETTINGS.prBaseBranch from dev to main
34+
- exclude rate_limit and transient patterns from friction tracker
35+
- add per-project prBaseBranch: dev to automaker settings
36+
- add RemediationBudgetEnforcer implementation and fix formatting
37+
- add RemediationBudgetEnforcer implementation and fix formatting
38+
- add RemediationBudgetEnforcer implementation and fix formatting
39+
- exclude rate_limit and transient patterns from friction tracker
40+
- restore Plans/Issues/Metrics tabs on project management view (#2918)
41+
- use importOriginal in vi.mock for child_process to prevent test pollution
42+
- restore Plans/Issues/Metrics tabs on project management view (#2918)
43+
- use importOriginal in vi.mock for child_process to prevent test pollution
44+
45+
### Refactors
46+
- remove calendar system and clean up MCP server cruft
47+
- remove calendar system and clean up MCP server cruft
48+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
49+
- Budget types and enforcement tests
50+
- Budget types and enforcement tests
51+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
52+
- Job log fetcher implementation
53+
- Bug: Worktree creation hardcodes origin/dev, breaks projects without dev
54+
- Bug: LeadEngineer checkpoint prevents feature retry after worktree clean
55+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
56+
- Job log fetcher implementation
57+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
58+
- Budget types and enforcement tests
59+
60+
### Patch Changes
61+
62+
- Updated dependencies
63+
- @protolabsai/types@0.79.0
64+
365
## 0.78.0
466

567
### Minor Changes

libs/dependency-resolver/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@protolabsai/dependency-resolver",
3-
"version": "0.78.0",
3+
"version": "0.79.0",
44
"description": "Feature dependency resolution for AutoMaker",
55
"type": "module",
66
"main": "dist/index.js",
@@ -32,7 +32,7 @@
3232
"node": ">=22.0.0 <23.0.0"
3333
},
3434
"dependencies": {
35-
"@protolabsai/types": "^0.78.0"
35+
"@protolabsai/types": "^0.79.0"
3636
},
3737
"devDependencies": {
3838
"@types/node": "22.19.3",

libs/error-tracking/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @protolabsai/error-tracking
22

3+
## 0.53.26
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @protolabsai/types@0.79.0
9+
- @protolabsai/utils@0.79.0
10+
311
## 0.53.25
412

513
### Patch Changes

libs/error-tracking/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@protolabsai/error-tracking",
3-
"version": "0.53.25",
3+
"version": "0.53.26",
44
"type": "module",
55
"description": "Error tracking and monitoring with Sentry integration for AutoMaker",
66
"main": "dist/index.js",
@@ -33,8 +33,8 @@
3333
"node": ">=22.0.0 <23.0.0"
3434
},
3535
"dependencies": {
36-
"@protolabsai/types": "^0.78.0",
37-
"@protolabsai/utils": "^0.78.0",
36+
"@protolabsai/types": "^0.79.0",
37+
"@protolabsai/utils": "^0.79.0",
3838
"@sentry/node": "^8.47.0",
3939
"@sentry/electron": "^5.6.0",
4040
"@sentry/types": "^8.47.0",

libs/flows/CHANGELOG.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,71 @@
11
# @protolabsai/flows
22

3+
## 0.79.0
4+
5+
### Minor Changes
6+
7+
- ### Features
8+
- in-flight CI failure injection into running agents (M4) (#2937)
9+
- webhook consolidation — CI events on both routes (M6) (#2938)
10+
- pre-push validation tests and stub service (M5 TDD) (#2932)
11+
- split remediation budgets — separate CI and review counters (#2931)
12+
- M1 — CI Failure Classification (#2927)
13+
- in-flight CI failure injection into running agents (M4) (#2937)
14+
- webhook consolidation — CI events on both routes (M6) (#2938)
15+
- pre-push validation tests and stub service (M5 TDD) (#2932)
16+
- split remediation budgets — separate CI and review counters (#2931)
17+
- M1 — CI Failure Classification (#2927)
18+
19+
### Bug Fixes
20+
- remove all excludeFromStaging defaults — .gitignore handles exclusion
21+
- CodeRabbit findings — PRWatcher null, cross-project injection, stale queue (#2941)
22+
- remove all excludeFromStaging defaults — .gitignore handles exclusion
23+
- CodeRabbit findings — PRWatcher null, cross-project injection, stale queue (#2941)
24+
- remove unwired pre-push-validation stub and failing tests
25+
- prevent git add error when .automaker is in .gitignore (#2934)
26+
- use non-excluded pattern in friction tracker tests
27+
- change DEFAULT_GIT_WORKFLOW_SETTINGS.prBaseBranch from dev to main
28+
- add per-project prBaseBranch: dev to automaker settings
29+
- exclude rate_limit and transient patterns from friction tracker
30+
- remove unwired pre-push-validation stub and failing tests
31+
- prevent git add error when .automaker is in .gitignore (#2934)
32+
- use non-excluded pattern in friction tracker tests
33+
- change DEFAULT_GIT_WORKFLOW_SETTINGS.prBaseBranch from dev to main
34+
- exclude rate_limit and transient patterns from friction tracker
35+
- add per-project prBaseBranch: dev to automaker settings
36+
- add RemediationBudgetEnforcer implementation and fix formatting
37+
- add RemediationBudgetEnforcer implementation and fix formatting
38+
- add RemediationBudgetEnforcer implementation and fix formatting
39+
- exclude rate_limit and transient patterns from friction tracker
40+
- restore Plans/Issues/Metrics tabs on project management view (#2918)
41+
- use importOriginal in vi.mock for child_process to prevent test pollution
42+
- restore Plans/Issues/Metrics tabs on project management view (#2918)
43+
- use importOriginal in vi.mock for child_process to prevent test pollution
44+
45+
### Refactors
46+
- remove calendar system and clean up MCP server cruft
47+
- remove calendar system and clean up MCP server cruft
48+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
49+
- Budget types and enforcement tests
50+
- Budget types and enforcement tests
51+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
52+
- Job log fetcher implementation
53+
- Bug: Worktree creation hardcodes origin/dev, breaks projects without dev
54+
- Bug: LeadEngineer checkpoint prevents feature retry after worktree clean
55+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
56+
- Job log fetcher implementation
57+
- Bug: Agent PRs target main instead of dev — PR creation ignores prBaseBr
58+
- Budget types and enforcement tests
59+
60+
### Patch Changes
61+
62+
- Updated dependencies
63+
- @protolabsai/types@0.79.0
64+
- @protolabsai/utils@0.79.0
65+
- @protolabsai/prompts@0.79.0
66+
- @protolabsai/model-resolver@0.79.0
67+
- @protolabsai/observability@0.79.0
68+
369
## 0.78.0
470

571
### Minor Changes

libs/flows/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@protolabsai/flows",
3-
"version": "0.78.0",
3+
"version": "0.79.0",
44
"type": "module",
55
"description": "LangGraph state graph examples and patterns for AutoMaker",
66
"main": "dist/index.js",
@@ -37,11 +37,11 @@
3737
},
3838
"dependencies": {
3939
"@opentelemetry/api": "^1.9.0",
40-
"@protolabsai/model-resolver": "^0.78.0",
41-
"@protolabsai/observability": "^0.78.0",
42-
"@protolabsai/prompts": "^0.78.0",
43-
"@protolabsai/types": "^0.78.0",
44-
"@protolabsai/utils": "^0.78.0",
40+
"@protolabsai/model-resolver": "^0.79.0",
41+
"@protolabsai/observability": "^0.79.0",
42+
"@protolabsai/prompts": "^0.79.0",
43+
"@protolabsai/types": "^0.79.0",
44+
"@protolabsai/utils": "^0.79.0",
4545
"@langchain/anthropic": "^0.3.10",
4646
"@langchain/core": "^0.3.33",
4747
"@langchain/langgraph": "^0.2.26"

0 commit comments

Comments
 (0)