@trebired/git-host 3.2.7 → 3.2.9

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.2.9
4
+
5
+ ### Changed
6
+
7
+ - Moved the `@trebired/utils` dependency range from `^0.6.0` to `^0.8.0`, matching the rest of
8
+ the `@trebired` packages. For 0.x versions those two ranges are disjoint (`>=0.6.0 <0.7.0` vs
9
+ `>=0.8.0 <0.9.0`), so any project combining this package with one already on `^0.8.0`
10
+ (`@trebired/frontend`, `@trebired/uploads`, `@trebired/env`, `@trebired/security`) resolved two
11
+ copies of `@trebired/utils` — a hoisted 0.6.x alongside a nested 0.8.x — duplicating code and
12
+ letting app-level imports of `@trebired/utils` silently resolve to a different copy than this
13
+ package used internally. Nothing this package uses changed across those releases; the only
14
+ breaking change in 0.8.0 was the env module moving to `@trebired/env`, which this package does
15
+ not import.
16
+
17
+ ## 3.2.8
18
+
19
+ - Updated the result dependency range to the current package release so consumers do not retain older nested logger-adapter installs.
20
+
3
21
  ## 3.2.7
4
22
 
5
23
  - Updated the logger-adapter dependency so git host, forge, API, socket, SSH, and HTTP entry points do not emit duplicate package initialization logs.
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  }
9
9
  },
10
10
  "name": "@trebired/git-host",
11
- "version": "3.2.7",
11
+ "version": "3.2.9",
12
12
  "description": "Embeddable Git host and forge for Bun apps with real Git CLI execution, smart HTTP and SSH transports, repository automation, and backend APIs.",
13
13
  "type": "module",
14
14
  "private": false,
@@ -54,8 +54,8 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@package/logger-adapter": "npm:@trebired/logger-adapter@^0.4.17",
57
- "@package/result": "npm:@trebired/result@^1.1.6",
58
- "@trebired/utils": "^0.6.0",
57
+ "@package/result": "npm:@trebired/result@^1.2.7",
58
+ "@trebired/utils": "^0.8.0",
59
59
  "js-yaml": "^4.3.1",
60
60
  "linguist-js": "^3.0.2",
61
61
  "material-icon-theme": "^5.37.0",