Skip to content

Commit

Permalink
update: 2.0.5 ui enhancement (#95)
Browse files Browse the repository at this point in the history
* feat: bdk ui redesign (#89)

* feat: bdk ui redesign

* fix: bdk ui layout

* chore: update node version to 18.18 (#90)

* chore: update node version to 18.18

* fix: test runtime error

* fix: ui selectInput delay (#91)

refactor commandContext class functions to asynchronous, solve the process stuck issue.

* feat: lazy loading in command change (#92)

* feat: option lazy loading

* fix: debounce in select input

---------

Co-authored-by: kidneyweak <kidneyweak@gmail.com>

* fix: update docker logs component (#93)

* chore: npm packages update (#94)

* chore: update 2.0.5 and packages

* chore: update 2.0.5 CHANGELOG.md

* fix: eslint error for newer ericlint

---------

Co-authored-by: 郭來鴻 <F111110111@nkust.edu.tw>
Co-authored-by: JakeKuo <jake0627a1@gmail.com>
  • Loading branch information
3 people authored Dec 5, 2023
1 parent a679da1 commit 88d2979
Show file tree
Hide file tree
Showing 44 changed files with 2,039 additions and 7,186 deletions.
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"react/react-in-jsx-scope": "error"
"react/react-in-jsx-scope": "error",
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/naming-convention": "off"
},
"parserOptions": {
"project": "tsconfig.eslint.json"
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1.bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ body:
render: bash
placeholder: |
BDK:
Version: 2.0.4
Version: x.x.x
Operating System:
Platform: macOS
Arch: arm64
Version: Darwin Kernel Version 22.5.0
Binaries:
Node: 16.13.2
Node: 18.18.2
npm: 9.5.1
Docker:
client: 24.0.5
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13
18.18
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
這份文件將記錄 BDK 專案的變更日誌

All notable changes to BDK project will be documented here.
## [v2.0.5](https://github.com/cathayddt/bdk/releases/tag/v2.0.5) - 2023-12-05

### Features

* Lazy loading in command change [#92](https://github.com/cathayddt/bdk/issues/92)
* Bdk ui redesign [#89](https://github.com/cathayddt/bdk/issues/89)

### Fixes

* Update docker logs component [#93](https://github.com/cathayddt/bdk/issues/93)
* Ui selectInput delay [#91](https://github.com/cathayddt/bdk/issues/91)

## [2.0.4](https://github.com/cathayddt/bdk/releases/tag/2.0.4) - 2023-09-27

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ bdk fabric network create -i

| Latest | Stable |
| ---------------- | ---------------- |
| [v2.0.4][v2.0.4] | [v2.0.4][v2.0.4] |
| [v2.0.5][v2.0.5] | [v2.0.5][v2.0.5] |

[v2.0.4]: https://github.com/cathayddt/bdk/releases/tag/v2.0.4
[v2.0.5]: https://github.com/cathayddt/bdk/releases/tag/v2.0.5

[更新內容 (Changelog)](CHANGELOG.md)

Expand Down
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ commit_parsers = [
filter_commits = true
# glob pattern for matching git tags
# note SDK tags are purposely ignored, only submodules are included.
tag_pattern = "**/v[0-9]*"
tag_pattern = "v[0-9]*\\.[0-9]*\\.[0-9]*"
# regex for skipping tags
skip_tags = ""
# regex for ignoring tags
Expand Down
Loading

0 comments on commit 88d2979

Please sign in to comment.