@vitus-labs/tools-rollup 2.5.0 → 2.6.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @vitus-labs/tools-core@2.6.1
9
+
10
+ ## 2.6.0
11
+
12
+ ### Patch Changes
13
+
14
+ - [#156](https://github.com/vitus-labs/tools/pull/156) [`afa223f`](https://github.com/vitus-labs/tools/commit/afa223f7d3ac8f9b41f4f5b547acb2ab14c9e6e1) Thanks [@vitbokisch](https://github.com/vitbokisch)! - Routine dep refresh + CI action bumps.
15
+
16
+ **Notable**: rolldown 1.1.1 → 1.1.3, rolldown-plugin-dts 0.25.2 → 0.26.0 (verified — integration tests for single-pass DTS still green), rollup 4.61.1 → 4.62.2, @microsoft/api-extractor 7.58.8 → 7.58.9, storybook 10.4.4 → 10.4.6, vite 8.0.16 → 8.1.0, vitest 4.1.8 → 4.1.9, @types/node 25.9 → 26.0 (major; no consumer rewrite needed).
17
+
18
+ **zod held at `~4.3.6`** (recurring): `--latest` again tried to bump to 4.4.x; still breaks `@modelcontextprotocol/sdk` 1.29.0's `AnySchema` type. SDK hasn't shipped zod-4.4-compatible types yet.
19
+
20
+ **Storybook peer ranges restored to wide** (recurring): `react`/`react-dom` → `>=19`, `react-native` → `>=0.74`, `react-native-web` → `>=0.19`.
21
+
22
+ **Biome held at `~2.4.16`** — 2.5.1 introduced breaking config-schema changes (`linter.rules.recommended` → `preset`, `nursery.noShadow` rule removed/relocated, root-mode default flipped). The `biome migrate` command applied a partial migration that produced a worse-broken config (1,658 lint errors due to expanded include scope). Pinning to 2.4.x for this PR; biome 2.5 migration is its own scoped change.
23
+
24
+ **CI actions** (SHA-pinned): actions/cache v5.0.5 → **v6.0.0** (major), actions/checkout v6.0.3 → **v7.0.0** (major).
25
+
26
+ Verified e2e: 579 tests pass, typecheck + lint clean, all 10 packages build, `bun audit --audit-level=critical` clean, zero leaked `__dts_tmp*` dirs.
27
+
28
+ - [#150](https://github.com/vitus-labs/tools/pull/150) [`028fef7`](https://github.com/vitus-labs/tools/commit/028fef7200973141fc47fc57bffc73db1855bcad) Thanks [@vitbokisch](https://github.com/vitbokisch)! - Routine dep refresh + CI action bumps.
29
+
30
+ **Notable runtime/dev**: rolldown 1.0.3 → 1.1.1, rolldown-plugin-dts 0.25.1 → 0.25.2, rollup 4.60.4 → 4.61.1, ts-patch 4 (already on), commander 14 → 15 (major, no rewrite needed), favicons 7.2 → 7.3, typescript-transform-paths 3.5 → 4.0 (major, no rewrite needed), storybook 10.4.0 → 10.4.4, vite 8.0.13 → 8.0.16, next 16.2.6 → 16.2.9, vitest 4.1.6 → 4.1.8, biome 2.4.15 → 2.4.16, @types/node 25.8 → 25.9, react 19.2.6 → 19.2.7.
31
+
32
+ **zod held at `~4.3.6`** — `bun update --latest` again tried to bump to 4.4.x, which still breaks `@modelcontextprotocol/sdk` 1.29.0's `AnySchema` type (the SDK has not yet shipped zod-4.4-compatible types).
33
+
34
+ **Storybook peer ranges restored to wide** (recurring `--latest` regression): `react`/`react-dom` → `>=19`, `react-native` → `>=0.74`, `react-native-web` → `>=0.19`.
35
+
36
+ **CI actions** (SHA-pinned): checkout v6.0.2 → v6.0.3, changesets/action v1.8.0 → v1.9.0, codecov/codecov-action v6.0.0 → v7.0.0 (major), step-security/harden-runner v2.19.3 → v2.19.4, github/codeql-action v4.35.5 → v4.36.2.
37
+
38
+ Verified e2e: 576 tests pass, typecheck + lint clean, all 10 packages build.
39
+
40
+ - Updated dependencies [[`afa223f`](https://github.com/vitus-labs/tools/commit/afa223f7d3ac8f9b41f4f5b547acb2ab14c9e6e1)]:
41
+ - @vitus-labs/tools-core@2.6.0
42
+
3
43
  ## 2.5.0
4
44
 
5
45
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitus-labs/tools-rollup",
3
- "version": "2.5.0",
3
+ "version": "2.6.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,17 +37,17 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@microsoft/api-extractor": "^7.58.7",
40
+ "@microsoft/api-extractor": "^7.58.9",
41
41
  "@rollup/plugin-node-resolve": "^16.0.3",
42
42
  "@rollup/plugin-replace": "^6.0.3",
43
43
  "@rollup/plugin-terser": "^1.0.0",
44
44
  "@rollup/plugin-typescript": "^12.3.0",
45
- "@types/node": "^25.8.0",
46
- "@vitus-labs/tools-core": "^2.3.0",
45
+ "@types/node": "^26.0.1",
46
+ "@vitus-labs/tools-core": "^2.5.0",
47
47
  "chalk": "^5.6.2",
48
48
  "find-up": "^8.0.0",
49
49
  "lodash-es": "^4.18.1",
50
- "rollup": "^4.60.4",
50
+ "rollup": "^4.62.2",
51
51
  "rollup-plugin-api-extractor": "^0.2.5",
52
52
  "rollup-plugin-filesize": "^10.0.0",
53
53
  "rollup-plugin-tsconfig-paths": "^1.5.2",
@@ -56,11 +56,11 @@
56
56
  "rollup-plugin-visualizer": "^7.0.1",
57
57
  "ts-patch": "^4.0.1",
58
58
  "tslib": "^2.8.1",
59
- "typescript-transform-paths": "^3.5.6"
59
+ "typescript-transform-paths": "^4.0.0"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/lodash-es": "^4.17.12",
63
- "@vitus-labs/tools-typescript": "^2.3.0",
63
+ "@vitus-labs/tools-typescript": "^2.5.0",
64
64
  "typescript": "^6.0.3"
65
65
  }
66
66
  }