From 11e64fbb397775598f212191dca1e72a37af7082 Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Sun, 9 Jul 2023 13:25:24 -0500 Subject: [PATCH 1/8] BREAKING: updated API to trail v3 & idp only change in this commit is the changelog. --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20f014e..9eede9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.0.0 +* update API to support tiki_trail v3.x +* add support for tiki_idp +* add API for tiki_idp methods + ## 1.0.11 * minor bug fixes From ea4b8847f8f4d6135f45c25dc8dda17d0cf9911e Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Sun, 9 Jul 2023 13:27:09 -0500 Subject: [PATCH 2/8] update versions in release action --- .github/workflows/release.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 851382b..d2e489f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -55,7 +55,7 @@ jobs: - name: "Setup Flutter" uses: subosito/flutter-action@v1 with: - flutter-version: '3.7.12' + flutter-version: '3.10.5' - name: "Setup XCode" uses: maxim-lobanov/setup-xcode@v1 @@ -132,12 +132,12 @@ jobs: - name: 'Setup Flutter' uses: subosito/flutter-action@v1 with: - flutter-version: '3.7.12' + flutter-version: '3.10.5' - - name: 'Set up Java 11' + - name: 'Set up Java 17' uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'adopt' - name: 'Remove unecessary dependencies for native libs' @@ -164,4 +164,4 @@ jobs: flutter build aar --no-debug --no-profile --build-number ${{needs.release.outputs.tag}} env: GITHUB_USER: ${{ github.actor }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 967b7352a05a520858f5557953b4fdcb00e11c33 Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Sun, 9 Jul 2023 13:28:54 -0500 Subject: [PATCH 3/8] version action did not run. --- .github/workflows/version.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/version.yaml b/.github/workflows/version.yaml index 44ca37e..dfe7140 100644 --- a/.github/workflows/version.yaml +++ b/.github/workflows/version.yaml @@ -4,6 +4,8 @@ on: pull_request: branches: - main + types: + - closed concurrency: group: ${{ github.ref }}-${{ github.workflow }} @@ -11,7 +13,8 @@ concurrency: jobs: version: - if: startsWith(github.head_ref, 'release/') + if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/') + environment: Production runs-on: ubuntu-latest outputs: tag: ${{ steps.semver.outputs.nextStrict }} From 080a3732cbd284945410c0d9adbcc57d9e4042e0 Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Sun, 9 Jul 2023 13:31:31 -0500 Subject: [PATCH 4/8] wrong if statement on version action --- .github/workflows/version.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/version.yaml b/.github/workflows/version.yaml index dfe7140..42013b0 100644 --- a/.github/workflows/version.yaml +++ b/.github/workflows/version.yaml @@ -4,8 +4,6 @@ on: pull_request: branches: - main - types: - - closed concurrency: group: ${{ github.ref }}-${{ github.workflow }} @@ -13,7 +11,7 @@ concurrency: jobs: version: - if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/') + if: startsWith(github.head_ref, 'release/') environment: Production runs-on: ubuntu-latest outputs: From 1c2882328e025463c88decd546b47bd17c3f311a Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Sun, 9 Jul 2023 13:34:18 -0500 Subject: [PATCH 5/8] BREAKING CHANGE: semver typo --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cc03cd4..fca6126 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: tiki_sdk_native description: Use TIKI's dart libs in native projects -version: 1.0.11 +version: 1.0.12 homepage: https://mytiki.com documentation: https://mytiki.com/docs repository: https://github.com/tiki/tiki-sdk-platform-channel From 0ad1a6a05a03591a0e3fabde0b434ea3012ed35e Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Sun, 9 Jul 2023 13:36:35 -0500 Subject: [PATCH 6/8] must be in footer? BREAKING CHANGE: API is now V3 --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d2e489f..e8f02b0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: Publish Flutter +name: Publish on: pull_request: From 2d128a053ba8488bb7900e5c371269b5f5ccd7d9 Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Sun, 9 Jul 2023 13:38:47 -0500 Subject: [PATCH 7/8] feat!: v3 trail api trying again to get the action to bump. --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fca6126..cc03cd4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: tiki_sdk_native description: Use TIKI's dart libs in native projects -version: 1.0.12 +version: 1.0.11 homepage: https://mytiki.com documentation: https://mytiki.com/docs repository: https://github.com/tiki/tiki-sdk-platform-channel From 02c5d2faf497e6ee37798efbd1c35733529a8cce Mon Sep 17 00:00:00 2001 From: GH Action Date: Sun, 9 Jul 2023 18:40:25 +0000 Subject: [PATCH 8/8] version bump --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cc03cd4..5238e14 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: tiki_sdk_native description: Use TIKI's dart libs in native projects -version: 1.0.11 +version: 2.0.0 homepage: https://mytiki.com documentation: https://mytiki.com/docs repository: https://github.com/tiki/tiki-sdk-platform-channel