@kylincloud/flamegraph 0.36.4 → 0.36.5
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 +36 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.36.5](/compare/v0.36.9...v0.36.5) (2026-02-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes | Bug 修复
|
|
7
|
+
|
|
8
|
+
* all back 328473f5
|
|
9
|
+
|
|
10
|
+
## [0.36.9](/compare/v0.36.8...v0.36.9) (2026-02-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
* fix ddc9e07e
|
|
14
|
+
|
|
15
|
+
## [0.36.8](/compare/v0.36.7...v0.36.8) (2026-02-02)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Continuous Integration | CI 配置
|
|
19
|
+
|
|
20
|
+
* .release-it.mjs 83bf39e4
|
|
21
|
+
|
|
22
|
+
## [0.36.7](/compare/v0.36.6-bugfix112...v0.36.7) (2026-02-02)
|
|
23
|
+
|
|
24
|
+
## [0.36.6-bugfix112](/compare/v0.36.4...v0.36.6-bugfix112) (2026-02-02)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
* release:both 2e6e671c
|
|
28
|
+
* v0.36.5 e2b8a8e0
|
|
29
|
+
* test-local-reg a1a68598
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes | Bug 修复
|
|
33
|
+
|
|
34
|
+
* .release-it.mjs cd712606
|
|
35
|
+
* .release-it.mjs 4399d811
|
|
36
|
+
* .release-it.mjs 890cf8fb
|
|
37
|
+
* 版本管理 e264e421
|
|
38
|
+
|
|
3
39
|
## [0.36.4](/compare/v0.36.3...v0.36.4) (2026-01-30)
|
|
4
40
|
|
|
5
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kylincloud/flamegraph",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.5",
|
|
4
4
|
"description": "KylinCloud flamegraph renderer (Pyroscope-based)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/index.node.cjs.js",
|
|
@@ -38,7 +38,9 @@
|
|
|
38
38
|
"dev": "npm run dev:js",
|
|
39
39
|
"lint": "eslint ./ --cache --fix",
|
|
40
40
|
"release": "bash -c 'source .env && export GITLAB_TOKEN=\"glpat-$RELEASE_TOKEN\" && release-it'",
|
|
41
|
-
"publish:manual": "npm publish --access public --registry=https://registry.npmjs.org/"
|
|
41
|
+
"publish:manual": "npm publish --access public --registry=https://registry.npmjs.org/",
|
|
42
|
+
"publish:gitlab:dry": "bash -c 'source .env && export GITLAB_TOKEN=\"glpat-$RELEASE_TOKEN\" && npm publish --registry=https://gitlab.oscd/api/v4/projects/372/packages/npm/ --tag gitlab-test --dry-run'",
|
|
43
|
+
"publish:gitlab": "bash -c 'source .env && export GITLAB_TOKEN=\"glpat-$RELEASE_TOKEN\" && npm publish --registry=https://gitlab.oscd/api/v4/projects/372/packages/npm/'"
|
|
42
44
|
},
|
|
43
45
|
"peerDependencies": {
|
|
44
46
|
"graphviz-react": "^1.2.5",
|