Skip to content

Commit 6707f0f

Browse files
chore(release): 3.0.0
## 3.0.0 (2026-04-23) * feat!: simplify hack to a local-first core ([ced8d07](ced8d07)) * Merge pull request #51 from hack-dance/simplify-hack-platform ([c527203](c527203)), closes [#51](#51) * fix: address ci and lifecycle review feedback ([11f39e5](11f39e5)) * fix: address dispatch and tickets review feedback ([bbe8f69](bbe8f69)) * fix: close env and tickets review regressions ([0fd6dc1](0fd6dc1)) * fix: harden lifecycle cleanup and restore CI ([d767231](d767231)) * fix: read shared env keys from primary worktrees ([709b582](709b582)) * fix: restore lifecycle and env compatibility cleanup ([08c12ad](08c12ad)) * fix: serialize tickets worktree access ([97a1151](97a1151)) * fix: suppress inactive gateway token doctor noise ([147adb6](147adb6)) * fix(env): preserve legacy local overlays without git ([e52af68](e52af68)) * fix(env): tolerate missing git and preserve ssh wrappers ([5ad7259](5ad7259)) * fix(lifecycle): avoid external singleton port probes ([748a072](748a072)) * fix(runtime): close remaining review regressions ([6d2e9d8](6d2e9d8)) * fix(runtime): harden env ignores and singleton probes ([291cca1](291cca1)) * docs(agent): refresh local-first setup guidance ([87d2041](87d2041)) * docs(lifecycle): explain singleton adoption semantics ([196bd90](196bd90)) * feat: publish portable runtime images ([d8a718e](d8a718e)) * feat(lifecycle): support singleton host process adoption ([95bd545](95bd545)) * test: smoke portable managed containers ([172b975](172b975)) * chore: merge main into simplify-hack-platform ([b310f6d](b310f6d)) ### BREAKING CHANGE * Hack now ships as a local-first runtime. Built-in web dashboard, auth-broker, GitHub, Linear, and account/org/team control-plane flows are removed from the supported product surface; workflows should migrate to native git/gh and the local CLI/macOS companion.
1 parent c527203 commit 6707f0f

5 files changed

Lines changed: 33 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 3.0.0 (2026-04-23)
2+
3+
* feat!: simplify hack to a local-first core ([ced8d07](https://github.com/hack-dance/hack/commit/ced8d07))
4+
* Merge pull request #51 from hack-dance/simplify-hack-platform ([c527203](https://github.com/hack-dance/hack/commit/c527203)), closes [#51](https://github.com/hack-dance/hack/issues/51)
5+
* fix: address ci and lifecycle review feedback ([11f39e5](https://github.com/hack-dance/hack/commit/11f39e5))
6+
* fix: address dispatch and tickets review feedback ([bbe8f69](https://github.com/hack-dance/hack/commit/bbe8f69))
7+
* fix: close env and tickets review regressions ([0fd6dc1](https://github.com/hack-dance/hack/commit/0fd6dc1))
8+
* fix: harden lifecycle cleanup and restore CI ([d767231](https://github.com/hack-dance/hack/commit/d767231))
9+
* fix: read shared env keys from primary worktrees ([709b582](https://github.com/hack-dance/hack/commit/709b582))
10+
* fix: restore lifecycle and env compatibility cleanup ([08c12ad](https://github.com/hack-dance/hack/commit/08c12ad))
11+
* fix: serialize tickets worktree access ([97a1151](https://github.com/hack-dance/hack/commit/97a1151))
12+
* fix: suppress inactive gateway token doctor noise ([147adb6](https://github.com/hack-dance/hack/commit/147adb6))
13+
* fix(env): preserve legacy local overlays without git ([e52af68](https://github.com/hack-dance/hack/commit/e52af68))
14+
* fix(env): tolerate missing git and preserve ssh wrappers ([5ad7259](https://github.com/hack-dance/hack/commit/5ad7259))
15+
* fix(lifecycle): avoid external singleton port probes ([748a072](https://github.com/hack-dance/hack/commit/748a072))
16+
* fix(runtime): close remaining review regressions ([6d2e9d8](https://github.com/hack-dance/hack/commit/6d2e9d8))
17+
* fix(runtime): harden env ignores and singleton probes ([291cca1](https://github.com/hack-dance/hack/commit/291cca1))
18+
* docs(agent): refresh local-first setup guidance ([87d2041](https://github.com/hack-dance/hack/commit/87d2041))
19+
* docs(lifecycle): explain singleton adoption semantics ([196bd90](https://github.com/hack-dance/hack/commit/196bd90))
20+
* feat: publish portable runtime images ([d8a718e](https://github.com/hack-dance/hack/commit/d8a718e))
21+
* feat(lifecycle): support singleton host process adoption ([95bd545](https://github.com/hack-dance/hack/commit/95bd545))
22+
* test: smoke portable managed containers ([172b975](https://github.com/hack-dance/hack/commit/172b975))
23+
* chore: merge main into simplify-hack-platform ([b310f6d](https://github.com/hack-dance/hack/commit/b310f6d))
24+
25+
26+
### BREAKING CHANGE
27+
28+
* Hack now ships as a local-first runtime. Built-in web dashboard, auth-broker, GitHub, Linear, and account/org/team control-plane flows are removed from the supported product surface; workflows should migrate to native git/gh and the local CLI/macOS companion.
29+
130
## <small>2.5.1 (2026-04-10)</small>
231

332
* fix(env): reuse worktree keys and registry identity ([12e5838](https://github.com/hack-dance/hack/commit/12e5838))

apps/macos/Config/Base.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ PRODUCT_NAME = Hack Desktop
99
PRODUCT_BUNDLE_IDENTIFIER = dance.hack.desktop
1010
HACK_URL_SCHEME = hack
1111
MACOSX_DEPLOYMENT_TARGET = 14.0
12-
MARKETING_VERSION = 2.5.1
12+
MARKETING_VERSION = 3.0.0
1313
CURRENT_PROJECT_VERSION = $(MARKETING_VERSION)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hack-cli",
3-
"version": "2.5.1",
3+
"version": "3.0.0",
44
"packageManager": "bun@1.3.9",
55
"module": "index.ts",
66
"type": "module",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hack/cli",
33
"private": true,
4-
"version": "2.5.1",
4+
"version": "3.0.0",
55
"type": "module",
66
"module": "index.ts",
77
"scripts": {

packages/db/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hack/db",
33
"private": true,
4-
"version": "2.5.1",
4+
"version": "3.0.0",
55
"type": "module",
66
"main": "src/client.ts",
77
"module": "src/client.ts",

0 commit comments

Comments
 (0)