Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,13 +303,27 @@ jobs:
fi
done

- name: Generate rush version (release)
- name: Reset version-policy base version (release)
if: startsWith(github.ref_name, 'release/')
run: node common/scripts/install-run-rush.js version --bump
run: |
node <<'NODE'
const fs = require('fs');

const packageJson = JSON.parse(fs.readFileSync('packages/vtable/package.json', 'utf8'));
const policiesPath = 'common/config/rush/version-policies.json';
const policies = JSON.parse(fs.readFileSync(policiesPath, 'utf8'));

- name: Update version (release)
if (!policies[0]) {
throw new Error('Missing version policy.');
}

policies[0].version = packageJson.version;
fs.writeFileSync(policiesPath, JSON.stringify(policies));
NODE

- name: Generate rush version (release)
if: startsWith(github.ref_name, 'release/')
run: node common/scripts/apply-release-version.js 'none' ${{ steps.semver_release.outputs.main }}
run: node common/scripts/install-run-rush.js version --bump

- name: Build packages
env:
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

58 changes: 29 additions & 29 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"definitionName":"lockStepVersion","policyName":"vtableMain","version":"1.26.3","mainProject":"@visactor/vtable","nextBump":"patch"}]
[{"definitionName":"lockStepVersion","policyName":"vtableMain","version":"1.26.4","mainProject":"@visactor/vtable","nextBump":"patch"}]
19 changes: 19 additions & 0 deletions docs/assets/changelog/en/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# v1.26.3

2026-06-25

**🐛 Bug Fixes**

- **@visactor/vtable**: skip click cell after resize interaction ends
- **@visactor/vtable**: handle scroll frozen columns width
- **@visactor/vtable**: keep pivot row tree scroll position on toggle
- **@visactor/vtable**: preserve custom layout falsy values
- **@visactor/vtable**: handle right frozen column count update
- **@visactor/vtable**: keep fractional row scroll target
- **@visactor/vtable**: sync gantt task bars after sorted updates
- **@visactor/vtable**: preserve quad style values

**Full Changelog**: https://github.com/VisActor/VTable/compare/v1.26.2...v1.26.3

[more detail about v1.26.3](https://github.com/VisActor/VTable/releases/tag/v1.26.3)

# v1.26.2

2026-06-16
Expand Down
19 changes: 19 additions & 0 deletions docs/assets/changelog/zh/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# v1.26.3

2026-06-25

**🐛 功能修复**

- **@visactor/vtable**:在调整尺寸交互结束后,跳过单元格点击事件的触发
- **@visactor/vtable**:处理滚动时冻结列宽度
- **@visactor/vtable**:在切换时保持透视表行树滚动位置
- **@visactor/vtable**:保留自定义布局中的假值
- **@visactor/vtable**:处理右侧冻结列数量更新
- **@visactor/vtable**:保持带小数的行滚动目标位置
- **@visactor/vtable**:在排序更新后同步甘特任务条
- **@visactor/vtable**:保留四向边框样式值

**Full Changelog**: https://github.com/VisActor/VTable/compare/v1.26.2...v1.26.3

[更多详情请查看 v1.26.3](https://github.com/VisActor/VTable/releases/tag/v1.26.3)

# v1.26.2

2026-06-16
Expand Down
18 changes: 9 additions & 9 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"dependencies": {
"@arco-design/web-react": "2.66.12",
"@arco-design/web-vue": "^2.11.0",
"@visactor/vtable": "workspace:1.26.2",
"@visactor/vtable-gantt": "workspace:1.26.2",
"@visactor/react-vtable": "workspace:1.26.2",
"@visactor/vue-vtable": "workspace:1.26.2",
"@visactor/openinula-vtable": "workspace:1.26.2",
"@visactor/vtable-editors": "workspace:1.26.2",
"@visactor/vtable-export": "workspace:1.26.2",
"@visactor/vtable-search": "workspace:1.26.2",
"@visactor/vtable-sheet": "workspace:1.26.2",
"@visactor/vtable": "workspace:1.26.3",
"@visactor/vtable-gantt": "workspace:1.26.3",
"@visactor/react-vtable": "workspace:1.26.3",
"@visactor/vue-vtable": "workspace:1.26.3",
"@visactor/openinula-vtable": "workspace:1.26.3",
"@visactor/vtable-editors": "workspace:1.26.3",
"@visactor/vtable-export": "workspace:1.26.3",
"@visactor/vtable-search": "workspace:1.26.3",
"@visactor/vtable-sheet": "workspace:1.26.3",
"buble": "^0.20.0",
"@visactor/vchart": "2.0.13-alpha.10",
"markdown-it": "^13.0.0",
Expand Down
Loading
Loading