Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release test base on mono repo #5039

Closed
wants to merge 9 commits into from
Closed
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
13 changes: 10 additions & 3 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [develop]
types: [opened, synchronize, reopened, closed]
paths:
- "package.json"
- "packages/tdesign-vue-next/package.json"
issue_comment:
types: [edited]

Expand All @@ -18,11 +18,18 @@ jobs:
startsWith(github.head_ref, 'release/')
steps:
- run: echo "The head of this PR starts with 'release/'"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: TDesignOteam/tdesign-tag-action@main
id: tag-action
with:
token: ${{ secrets.GITHUB_TOKEN }}
version_file: packages/tdesign-vue-next/package.json
- uses: TDesignOteam/tdesign-changelog-action@main
id: changelog
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: ${{ steps.tag-action.outputs.version }}
- name: Add comment
uses: peter-evans/create-or-update-comment@v1
with:
Expand Down Expand Up @@ -78,7 +85,7 @@ jobs:
token: ${{ secrets.PERSONAL_TOKEN }}
- name: tag and push if needed
run: |
data=$(cat package.json)
data=$(cat packages/tdesign-vue-next/package.json)
re="\"version\": \"([^\"]*)\""
[[ $data =~ $re ]]
echo "${BASH_REMATCH[1]}"
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/pr-compressed-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: 94dreamer/compressed-size-action@master
- name: Setup pnpm
uses: pnpm/action-setup@v4

- uses: actions/setup-node@v4
with:
node-version: 18

- uses: preactjs/compressed-size-action@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
pattern: "./dist/**/*.{js,css}"
install-script: "pnpm install"
pattern: "packages/tdesign-vue-next/dist/**/*.{js,css}"
10 changes: 10 additions & 0 deletions packages/tdesign-vue-next/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ toc: false
docClass: timeline
---

## 🌈 1.11.0 `2025-02-17`
### 🐞 Bug Fixes
- `Tree`: 修复动态切换 `expandAll` 的功能异常问题 @RSS1102 ([#4988](https://github.com/Tencent/tdesign-vue-next/pull/4988))
- `Form`: 修复`status` 属性没有应用到校验状态上的问题 @RSS1102 ([#5008](https://github.com/Tencent/tdesign-vue-next/pull/5008))
### 📈 Performance
- `refactor`: packages/tdesign-vue-next for npm @zhangpaopao0609 ([#5015](https://github.com/Tencent/tdesign-vue-next/pull/5015))
- `refactor`: packages/tdesign-vue-next for test @zhangpaopao0609 ([#5021](https://github.com/Tencent/tdesign-vue-next/pull/5021))
### 🚧 Others
- `select`: add test cases for select component @msg-fobbit ([#4956](https://github.com/Tencent/tdesign-vue-next/pull/4956))

## 🌈 1.10.7 `2025-01-24`
### 🚀 Features
- `Icon`: 新增`logo-alipay`、`logo-behance-filled`等图标,修改`logo-wecom`图标,移除不合理的`logo-wecom-filled`图标 @uyarn ([#4926](https://github.com/Tencent/tdesign-vue-next/pull/4926))
Expand Down
2 changes: 1 addition & 1 deletion packages/tdesign-vue-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdesign-vue-next",
"version": "1.10.7",
"version": "1.11.0",
"title": "tdesign-vue-next",
"description": "TDesign Component for vue-next",
"keywords": [
Expand Down
Loading