Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
72 changes: 0 additions & 72 deletions 72 .github/workflows/pre-release.yml

This file was deleted.

22 changes: 18 additions & 4 deletions 22 .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
58 changes: 29 additions & 29 deletions 58 common/config/rush/pnpm-lock.yaml

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

12 changes: 12 additions & 0 deletions 12 docs/assets/changelog/en/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# v1.26.4

2026-07-06

**🆕 New Features**

- **@visactor/vtable**: Support rendering video cells from a first-frame canvas snapshot to release video resources after loading.

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

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

# v1.26.3

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

2026-07-06

**🆕 新增功能**

- **@visactor/vtable**: 支持通过首帧 canvas 快照渲染视频单元格,并在加载后释放视频资源。

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

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

# v1.26.3

2026-06-25
Expand Down
18 changes: 9 additions & 9 deletions 18 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.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",
"@visactor/vtable": "workspace:1.26.4",
"@visactor/vtable-gantt": "workspace:1.26.4",
"@visactor/react-vtable": "workspace:1.26.4",
"@visactor/vue-vtable": "workspace:1.26.4",
"@visactor/openinula-vtable": "workspace:1.26.4",
"@visactor/vtable-editors": "workspace:1.26.4",
"@visactor/vtable-export": "workspace:1.26.4",
"@visactor/vtable-search": "workspace:1.26.4",
"@visactor/vtable-sheet": "workspace:1.26.4",
"buble": "^0.20.0",
"@visactor/vchart": "2.0.13-alpha.10",
"markdown-it": "^13.0.0",
Expand Down
4 changes: 2 additions & 2 deletions 4 packages/openinula-vtable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visactor/openinula-vtable",
"version": "1.26.3",
"version": "1.26.4",
"description": "The openinula version of VTable",
"keywords": [
"openinula",
Expand Down Expand Up @@ -44,7 +44,7 @@
"access": "public"
},
"dependencies": {
"@visactor/vtable": "workspace:1.26.3",
"@visactor/vtable": "workspace:1.26.4",
"@visactor/vutils": "~1.0.17"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions 4 packages/react-vtable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visactor/react-vtable",
"version": "1.26.3",
"version": "1.26.4",
"description": "The react version of VTable",
"keywords": [
"react",
Expand Down Expand Up @@ -57,7 +57,7 @@
"react-dom": "^18.2.0 || ^19.0.0"
},
"dependencies": {
"@visactor/vtable": "workspace:1.26.3",
"@visactor/vtable": "workspace:1.26.4",
"@visactor/vutils": "~1.0.17",
"react-is": "^18.2.0",
"react-reconciler": "0.29.0"
Expand Down
4 changes: 2 additions & 2 deletions 4 packages/vtable-calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visactor/vtable-calendar",
"version": "1.26.3",
"version": "1.26.4",
"description": "The calendar component of VTable",
"author": {
"name": "VisActor",
Expand Down Expand Up @@ -37,7 +37,7 @@
"access": "public"
},
"dependencies": {
"@visactor/vtable": "workspace:1.26.3",
"@visactor/vtable": "workspace:1.26.4",
"@visactor/vutils": "~1.0.17",
"date-fns": "3.6.0"
},
Expand Down
2 changes: 1 addition & 1 deletion 2 packages/vtable-editors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visactor/vtable-editors",
"version": "1.26.3",
"version": "1.26.4",
"description": "",
"sideEffects": false,
"main": "cjs/index.js",
Expand Down
Loading
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.