@ontrails/trails 1.0.0-beta.0 → 1.0.0-beta.2

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.
@@ -1,3 +1,3 @@
1
1
  $ oxlint ./src
2
2
  Found 0 warnings and 0 errors.
3
- Finished in 113ms on 18 files with 93 rules using 24 threads.
3
+ Finished in 39ms on 18 files with 93 rules using 24 threads.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # trails
2
2
 
3
+ ## 1.0.0-beta.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix workspace dependency resolution in published packages. Now using bun publish
8
+ which correctly replaces workspace:^ with actual version numbers.
9
+ - Updated dependencies
10
+ - @ontrails/core@1.0.0-beta.2
11
+ - @ontrails/cli@1.0.0-beta.2
12
+ - @ontrails/logging@1.0.0-beta.2
13
+ - @ontrails/warden@1.0.0-beta.2
14
+ - @ontrails/schema@1.0.0-beta.2
15
+
16
+ ## 1.0.0-beta.1
17
+
18
+ ### Patch Changes
19
+
20
+ - Fix two blocking bugs from real-world migration:
21
+ - Published packages now resolve correctly (workspace:^ instead of workspace:\*)
22
+ - Error forwarding works across different success types (Err no longer carries phantom T)
23
+ - Updated dependencies
24
+ - @ontrails/core@1.0.0-beta.1
25
+ - @ontrails/cli@1.0.0-beta.1
26
+ - @ontrails/logging@1.0.0-beta.1
27
+ - @ontrails/warden@1.0.0-beta.1
28
+ - @ontrails/schema@1.0.0-beta.1
29
+
3
30
  ## 0.1.1-beta.0
4
31
 
5
32
  ### Patch Changes
package/bin/trails.ts CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/trails",
3
- "version": "1.0.0-beta.0",
3
+ "version": "1.0.0-beta.2",
4
4
  "bin": {
5
5
  "trails": "./bin/trails.ts"
6
6
  },
@@ -14,15 +14,15 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@clack/prompts": "^1.1.0",
17
- "@ontrails/cli": "workspace:*",
18
- "@ontrails/core": "workspace:*",
19
- "@ontrails/logging": "workspace:*",
20
- "@ontrails/schema": "workspace:*",
21
- "@ontrails/warden": "workspace:*",
22
- "commander": "catalog:",
23
- "zod": "catalog:"
17
+ "@ontrails/cli": "^1.0.0-beta.0",
18
+ "@ontrails/core": "^1.0.0-beta.0",
19
+ "@ontrails/logging": "^1.0.0-beta.0",
20
+ "@ontrails/schema": "^1.0.0-beta.0",
21
+ "@ontrails/warden": "^1.0.0-beta.0",
22
+ "commander": "^14.0.3",
23
+ "zod": "^4.3.5"
24
24
  },
25
25
  "devDependencies": {
26
- "@ontrails/testing": "workspace:*"
26
+ "@ontrails/testing": "^1.0.0-beta.0"
27
27
  }
28
28
  }