Skip to content

Commit

Permalink
Merge pull request #614 from VisActor/dev/0.15.0
Browse files Browse the repository at this point in the history
Dev/0.15.0
  • Loading branch information
fangsmile committed Nov 24, 2023
2 parents 54b0519 + a9d1ce9 commit f66f07d
Show file tree
Hide file tree
Showing 167 changed files with 48,656 additions and 1,032 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
semver_pattern: '^pre-release/(.*)$' # ^v?(.*)$ by default

- name: Apply prereleaseName
run: node common/scripts/install-run-rush.js publish --apply --prerelease-name ${{ steps.semver_parser.outputs.pre_release_name }} --partial-prerelease

run: node common/scripts/apply-prerelease-version.js ${{ steps.semver_parser.outputs.pre_release_name }} ${{ steps.semver_parser.outputs.main }}
- name: Build packages
env:
NODE_OPTIONS: "--max_old_space_size=4096"
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Get npm version
id: package-version
uses: xile611/read-package-version-action@v2.1
uses: xile611/read-package-version-action@main
with:
path: packages/vtable

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,20 @@ jobs:
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy

- name: Parse semver version from branch name
id: semver_parser
uses: xile611/read-package-version-action@main
with:
path: packages/vtable
semver_string: ${{ github.ref_name }}
semver_pattern: '^release/(.*)$' # ^v?(.*)$ by default

- name: update nextBump of version policies
uses: xile611/set-next-bump-of-rush@main
with:
release_version: ${{ steps.semver_parser.outputs.full }}
write_next_bump: true

- name: Update version
run: node common/scripts/install-run-rush.js version --bump

Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,8 @@ common/scripts/pre-commit
# generated documents
docs/public/documents

packages/vtable/nodejs/*.png
packages/vtable/nodejs/*.png

# build
.rollup.cache/
tsconfig.tsbuildinfo
28 changes: 0 additions & 28 deletions build.sh

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "feat: edit text value with inputEditor\n\n",
"type": "minor",
"packageName": "@visactor/vtable-editors"
}
],
"packageName": "@visactor/vtable-editors",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "feat: add event copy_data #551\n\n",
"type": "minor",
"packageName": "@visactor/vtable"
}
],
"packageName": "@visactor/vtable",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "fix: compute col width when large count col with sampling the frozen bottom rows is not computed\n\n",
"type": "patch",
"packageName": "@visactor/vtable"
}
],
"packageName": "@visactor/vtable",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "feat: add column with min limit #590\nOpen\n\n",
"type": "minor",
"packageName": "@visactor/vtable"
}
],
"packageName": "@visactor/vtable",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "fix: fix cell position mismatch problems when bodyRowCount is 0 #596\n\n",
"type": "patch",
"packageName": "@visactor/vtable"
}
],
"packageName": "@visactor/vtable",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "feat: edit text value with inputEditor\n\n",
"type": "minor",
"packageName": "@visactor/vtable"
}
],
"packageName": "@visactor/vtable",
"email": "[email protected]"
}
10 changes: 10 additions & 0 deletions common/changes/@visactor/vtable/feat-react_2023-11-23-04-15.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@visactor/vtable",
"comment": "feat: add react-vtable",
"type": "minor"
}
],
"packageName": "@visactor/vtable"
}
Loading

0 comments on commit f66f07d

Please sign in to comment.