Skip to content

Commit f1cbb90

Browse files
committed
Merge branch 'main' into UX-1099
2 parents 2d9067e + 074e11a commit f1cbb90

File tree

134 files changed

+3093
-8133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+3093
-8133
lines changed

.github/workflows/code-quality.yml

-19
This file was deleted.

.github/workflows/pull-request.yml

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
11
name: CI - Pull Request
22
on:
33
pull_request_target:
4+
5+
# Pull Request Runs on the same branch will be cancelled
6+
concurrency:
7+
group: ${{ github.head_ref }}
8+
cancel-in-progress: true
9+
410

511
jobs:
612
code-quality:
7-
uses: ./.github/workflows/code-quality.yml
8-
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
repository: ${{github.event.pull_request.head.repo.full_name}}
18+
ref: ${{ github.head_ref }}
19+
fetch-depth: 0
20+
- uses: subosito/flutter-action@v2
21+
with:
22+
cache: true
23+
- run: dart run build_runner build --delete-conflicting-outputs
24+
- uses: ZebraDevs/[email protected]
25+
with:
26+
token: ${{secrets.GITHUB_TOKEN}}
27+
928
check-secret:
1029
runs-on: ubuntu-latest
1130
outputs:

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,6 @@ $RECYCLE.BIN/
146146
.fvmrc
147147
**/node_modules/
148148
package-lock.json
149-
/appium
149+
/appium
150+
/coverage
151+
/.coverage

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.14.0"
2+
".": "0.14.1"
33
}

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## [0.14.1](https://github.com/ZebraDevs/zeta_flutter/compare/v0.14.0...v0.14.1) (2024-07-15)
4+
5+
6+
### ✨ New Features
7+
8+
* Add FocusNode to ZetaSearchBar ([#132](https://github.com/ZebraDevs/zeta_flutter/issues/132)) ([02f5d4c](https://github.com/ZebraDevs/zeta_flutter/commit/02f5d4cd3dcb5dd05039e945748b08cffd15a80e))
9+
* **UX-1118:** Add basic semantics for all components ([#131](https://github.com/ZebraDevs/zeta_flutter/issues/131)) ([9c26ef1](https://github.com/ZebraDevs/zeta_flutter/commit/9c26ef1e776476f3ba83d28dc02eb8db60650865))
10+
11+
12+
### 🪲 Bug Fixes
13+
14+
* Update size of thumb on slider ([9c26ef1](https://github.com/ZebraDevs/zeta_flutter/commit/9c26ef1e776476f3ba83d28dc02eb8db60650865))
15+
16+
17+
### 🧪 Tests
18+
19+
* adds tests for ZetaSearchBar ([02f5d4c](https://github.com/ZebraDevs/zeta_flutter/commit/02f5d4cd3dcb5dd05039e945748b08cffd15a80e))
20+
* Update tests for recently changed files ([9c26ef1](https://github.com/ZebraDevs/zeta_flutter/commit/9c26ef1e776476f3ba83d28dc02eb8db60650865))
21+
22+
23+
### 🧹 Miscellaneous Chores
24+
25+
* release 0.14.1 ([1b06765](https://github.com/ZebraDevs/zeta_flutter/commit/1b06765a4621ad813aab3f7448b51b50d1582e3d))
26+
327
## [0.14.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.13.0...v0.14.0) (2024-07-08)
428

529

0 commit comments

Comments
 (0)