Skip to content

Commit 8429c9f

Browse files
chore: release v0.77.0
1 parent 3ef8298 commit 8429c9f

File tree

37 files changed

+527
-124
lines changed

37 files changed

+527
-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.76.0",
3+
"version": "0.77.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.8",
49-
"@protolabsai/dependency-resolver": "^0.76.0",
50-
"@protolabsai/error-tracking": "^0.53.23",
51-
"@protolabsai/flows": "^0.76.0",
52-
"@protolabsai/git-utils": "^0.76.0",
53-
"@protolabsai/model-resolver": "^0.76.0",
54-
"@protolabsai/observability": "^0.76.0",
55-
"@protolabsai/platform": "^0.76.0",
56-
"@protolabsai/prompts": "^0.76.0",
48+
"@protolabsai/context-engine": "^0.68.9",
49+
"@protolabsai/dependency-resolver": "^0.77.0",
50+
"@protolabsai/error-tracking": "^0.53.24",
51+
"@protolabsai/flows": "^0.77.0",
52+
"@protolabsai/git-utils": "^0.77.0",
53+
"@protolabsai/model-resolver": "^0.77.0",
54+
"@protolabsai/observability": "^0.77.0",
55+
"@protolabsai/platform": "^0.77.0",
56+
"@protolabsai/prompts": "^0.77.0",
5757
"@protolabsai/templates": "^0.56.0",
58-
"@protolabsai/tools": "^0.76.0",
59-
"@protolabsai/types": "^0.76.0",
60-
"@protolabsai/utils": "^0.76.0",
58+
"@protolabsai/tools": "^0.77.0",
59+
"@protolabsai/types": "^0.77.0",
60+
"@protolabsai/utils": "^0.77.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.76.0",
3+
"version": "0.77.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.76.0",
80-
"@protolabsai/spec-parser": "^0.76.0",
81-
"@protolabsai/types": "^0.76.0",
82-
"@protolabsai/utils": "^0.76.0",
79+
"@protolabsai/dependency-resolver": "^0.77.0",
80+
"@protolabsai/spec-parser": "^0.77.0",
81+
"@protolabsai/types": "^0.77.0",
82+
"@protolabsai/utils": "^0.77.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.76.0",
163+
"@protolabsai/ui": "^0.77.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.9
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @protolabsai/utils@0.77.0
9+
310
## 0.68.8
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.8",
3+
"version": "0.68.9",
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.76.0",
36+
"@protolabsai/utils": "^0.77.0",
3737
"better-sqlite3": "^11.7.0"
3838
},
3939
"devDependencies": {

libs/dependency-resolver/CHANGELOG.md

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

3+
## 0.77.0
4+
5+
### Minor Changes
6+
7+
- ### Features
8+
- redesign project management UI with wizard-based flow (#2870)
9+
- redesign project management UI with wizard-based flow (#2870)
10+
11+
### Refactors
12+
- Bug: Feature PRs target wrong branch on multi-project setups (#2871)
13+
- Stuck PR detection maintenance check (#2872)
14+
- Configurable soft CI checks for merge gate (#2869)
15+
- Harden setuplab to add worktree dirs to .gitignore (#2868)
16+
- PR reconciliation layer in REVIEW processor (#2867)
17+
- Bug: Epics don't auto-complete when no epic branch exists (#2866)
18+
- Expand git add pathspec to exclude worktree directories (#2865)
19+
- Bug: Feature PRs target wrong branch on multi-project setups (#2871)
20+
- Stuck PR detection maintenance check (#2872)
21+
- Configurable soft CI checks for merge gate (#2869)
22+
- Harden setuplab to add worktree dirs to .gitignore (#2868)
23+
- PR reconciliation layer in REVIEW processor (#2867)
24+
- Bug: Epics don't auto-complete when no epic branch exists (#2866)
25+
- Expand git add pathspec to exclude worktree directories (#2865)
26+
27+
### Patch Changes
28+
29+
- Updated dependencies
30+
- @protolabsai/types@0.77.0
31+
332
## 0.76.0
433

534
### 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.76.0",
3+
"version": "0.77.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.76.0"
35+
"@protolabsai/types": "^0.77.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.24
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @protolabsai/types@0.77.0
9+
- @protolabsai/utils@0.77.0
10+
311
## 0.53.23
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.23",
3+
"version": "0.53.24",
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.76.0",
37-
"@protolabsai/utils": "^0.76.0",
36+
"@protolabsai/types": "^0.77.0",
37+
"@protolabsai/utils": "^0.77.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: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# @protolabsai/flows
22

3+
## 0.77.0
4+
5+
### Minor Changes
6+
7+
- ### Features
8+
- redesign project management UI with wizard-based flow (#2870)
9+
- redesign project management UI with wizard-based flow (#2870)
10+
11+
### Refactors
12+
- Bug: Feature PRs target wrong branch on multi-project setups (#2871)
13+
- Stuck PR detection maintenance check (#2872)
14+
- Configurable soft CI checks for merge gate (#2869)
15+
- Harden setuplab to add worktree dirs to .gitignore (#2868)
16+
- PR reconciliation layer in REVIEW processor (#2867)
17+
- Bug: Epics don't auto-complete when no epic branch exists (#2866)
18+
- Expand git add pathspec to exclude worktree directories (#2865)
19+
- Bug: Feature PRs target wrong branch on multi-project setups (#2871)
20+
- Stuck PR detection maintenance check (#2872)
21+
- Configurable soft CI checks for merge gate (#2869)
22+
- Harden setuplab to add worktree dirs to .gitignore (#2868)
23+
- PR reconciliation layer in REVIEW processor (#2867)
24+
- Bug: Epics don't auto-complete when no epic branch exists (#2866)
25+
- Expand git add pathspec to exclude worktree directories (#2865)
26+
27+
### Patch Changes
28+
29+
- Updated dependencies
30+
- @protolabsai/types@0.77.0
31+
- @protolabsai/utils@0.77.0
32+
- @protolabsai/prompts@0.77.0
33+
- @protolabsai/model-resolver@0.77.0
34+
- @protolabsai/observability@0.77.0
35+
336
## 0.76.0
437

538
### 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.76.0",
3+
"version": "0.77.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.76.0",
41-
"@protolabsai/observability": "^0.76.0",
42-
"@protolabsai/prompts": "^0.76.0",
43-
"@protolabsai/types": "^0.76.0",
44-
"@protolabsai/utils": "^0.76.0",
40+
"@protolabsai/model-resolver": "^0.77.0",
41+
"@protolabsai/observability": "^0.77.0",
42+
"@protolabsai/prompts": "^0.77.0",
43+
"@protolabsai/types": "^0.77.0",
44+
"@protolabsai/utils": "^0.77.0",
4545
"@langchain/anthropic": "^0.3.10",
4646
"@langchain/core": "^0.3.33",
4747
"@langchain/langgraph": "^0.2.26"

0 commit comments

Comments
 (0)