geonosis 2.3.0 → 2.4.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.
- package/CHANGELOG.md +83 -0
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# geonosis
|
|
2
|
+
|
|
3
|
+
## 2.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @geonosis/cli@2.4.2
|
|
8
|
+
|
|
9
|
+
## 2.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @geonosis/cli@2.4.1
|
|
14
|
+
|
|
15
|
+
## 2.4.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [4962ed6]
|
|
20
|
+
- Updated dependencies [bef73fb]
|
|
21
|
+
- @geonosis/cli@2.4.0
|
|
22
|
+
|
|
23
|
+
## 2.3.1
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- @geonosis/cli@2.3.1
|
|
28
|
+
|
|
29
|
+
## 2.3.0
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [3dac9a7]
|
|
34
|
+
- Updated dependencies [3dac9a7]
|
|
35
|
+
- Updated dependencies [3dac9a7]
|
|
36
|
+
- Updated dependencies [3dac9a7]
|
|
37
|
+
- Updated dependencies [3dac9a7]
|
|
38
|
+
- Updated dependencies [3dac9a7]
|
|
39
|
+
- Updated dependencies [3dac9a7]
|
|
40
|
+
- Updated dependencies [3dac9a7]
|
|
41
|
+
- @geonosis/cli@2.3.0
|
|
42
|
+
|
|
43
|
+
## 2.2.0
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- Updated dependencies [d15a654]
|
|
48
|
+
- Updated dependencies [d15a654]
|
|
49
|
+
- Updated dependencies [d15a654]
|
|
50
|
+
- Updated dependencies [d15a654]
|
|
51
|
+
- @geonosis/cli@2.2.0
|
|
52
|
+
|
|
53
|
+
## 2.1.0
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- Updated dependencies [c1f894d]
|
|
58
|
+
- Updated dependencies [849f72e]
|
|
59
|
+
- Updated dependencies [f252d95]
|
|
60
|
+
- Updated dependencies [511b449]
|
|
61
|
+
- Updated dependencies [c54d6a9]
|
|
62
|
+
- @geonosis/cli@2.1.0
|
|
63
|
+
|
|
64
|
+
## 2.0.0
|
|
65
|
+
|
|
66
|
+
### Minor Changes
|
|
67
|
+
|
|
68
|
+
- 4b61257: **`geonosis` — one manifest line pins the toolchain.** `pnpm add -D geonosis` (or `bun add -d geonosis`) installs `@geonosis/cli` and every gate it runs, all on one version, and ships no bin of its own. What it brings is exported as data — `TOOLCHAIN`, `BY_NAME`, `OPTIONAL_BINARIES` — and checked against the workspace by its own test, so a package added to the group cannot go missing from the list quietly.
|
|
69
|
+
|
|
70
|
+
#73's lesson is a gate here: every peer of every installed package must be optional, or named in `REQUIRED_PEERS` with the reason every consumer pays for it (`oxlint`, `zod`, `better-result`). It caught a live one — `@geonosis/walk` declared `playwright` as a REQUIRED peer while its own code already imports it dynamically and refuses by name. Measured on a scratch consumer against a local registry: **bun 1.4.0 installs a non-optional peer without being asked; pnpm 11.8.0 does not** — so `bun add @geonosis/cli` was pulling a browser driver into repos that never walk anything. `playwright` is now an optional peer of `@geonosis/walk`.
|
|
71
|
+
|
|
72
|
+
### Patch Changes
|
|
73
|
+
|
|
74
|
+
- Updated dependencies [bcf0788]
|
|
75
|
+
- Updated dependencies [38889b1]
|
|
76
|
+
- Updated dependencies [35502e0]
|
|
77
|
+
- Updated dependencies [e9a41a7]
|
|
78
|
+
- Updated dependencies [539a96c]
|
|
79
|
+
- Updated dependencies [3258f5f]
|
|
80
|
+
- Updated dependencies [ccfc3c3]
|
|
81
|
+
- Updated dependencies [533f24d]
|
|
82
|
+
- Updated dependencies [6d14aa2]
|
|
83
|
+
- @geonosis/cli@2.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geonosis",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"types": "./dist/index.d.ts",
|
|
5
5
|
"description": "One manifest line pins the whole toolchain: the geonosis CLI and every gate it runs, on one version.",
|
|
6
6
|
"keywords": [
|
|
@@ -28,10 +28,11 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
|
+
"CHANGELOG.md",
|
|
31
32
|
"dist"
|
|
32
33
|
],
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@geonosis/cli": "2.
|
|
35
|
+
"@geonosis/cli": "2.4.2"
|
|
35
36
|
},
|
|
36
37
|
"peerDependencies": {
|
|
37
38
|
"oxlint": ">=1.77",
|