umberto 8.4.0 → 9.0.0
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 +7 -7
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## [9.0.0](https://github.com/cksource/umberto/compare/v8.4.0...v9.0.0) (November 13, 2025)
|
|
5
|
+
|
|
6
|
+
### BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* Updated the required version of Node.js to **v24.11**.
|
|
9
|
+
|
|
10
|
+
|
|
4
11
|
## [8.4.0](https://github.com/cksource/umberto/compare/v8.3.5...v8.4.0) (October 30, 2025)
|
|
5
12
|
|
|
6
13
|
### Features
|
|
@@ -38,13 +45,6 @@ Changelog
|
|
|
38
45
|
* Fixed links being unstyled in Kapa.ai answers.
|
|
39
46
|
* Fix broken page sidebar layout on `959px` resolution.
|
|
40
47
|
|
|
41
|
-
|
|
42
|
-
## [8.3.2](https://github.com/cksource/umberto/compare/v8.3.1...v8.3.2) (September 16, 2025)
|
|
43
|
-
|
|
44
|
-
### Other changes
|
|
45
|
-
|
|
46
|
-
* Update to TypeScript 5.3.
|
|
47
|
-
|
|
48
48
|
---
|
|
49
49
|
|
|
50
50
|
To see all releases, visit the [release page](https://github.com/cksource/umberto/releases).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "umberto",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "CKSource Documentation builder",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -54,8 +54,14 @@
|
|
|
54
54
|
"vnu-jar": "^21.10.12",
|
|
55
55
|
"webpack": "^5.94.0"
|
|
56
56
|
},
|
|
57
|
+
"pnpm": {
|
|
58
|
+
"overrides": {
|
|
59
|
+
"@iktakahiro/markdown-it-katex": "npm:@vscode/markdown-it-katex@^1.1.2",
|
|
60
|
+
"markdown-it-toc": "npm:markdown-it-toc-done-right@^4.2.0"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
57
63
|
"engines": {
|
|
58
|
-
"node": ">=
|
|
64
|
+
"node": ">=24.11.0",
|
|
59
65
|
"pnpm": ">=10.14.0",
|
|
60
66
|
"yarn": "\n\n┌─────────────────────────┐\n│ Hey, we use pnpm now! │\n└─────────────────────────┘\n\n"
|
|
61
67
|
},
|