diff --git a/.github/workflows/basic-tests.yml b/.github/workflows/basic-tests.yml index 616bfc7..008470b 100644 --- a/.github/workflows/basic-tests.yml +++ b/.github/workflows/basic-tests.yml @@ -10,16 +10,16 @@ jobs: setup: uses: ./.github/workflows/reusable_setup.yml secrets: - CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }} + THE_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }} lint-test: needs: 'setup' uses: ./.github/workflows/reusable_lint.yml secrets: - CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }} + THE_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }} build-packages: needs: 'setup' uses: ./.github/workflows/reusable_build.yml secrets: - CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }} \ No newline at end of file + THE_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/reusable_lint.yml b/.github/workflows/reusable_lint.yml index 774f9aa..45fd180 100644 --- a/.github/workflows/reusable_lint.yml +++ b/.github/workflows/reusable_lint.yml @@ -8,7 +8,7 @@ on: jobs: lint: - runs-on: 'macos-12' + runs-on: 'macos-14' timeout-minutes: 30 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/reusable_setup.yml b/.github/workflows/reusable_setup.yml index 66a2e5a..51fbd32 100644 --- a/.github/workflows/reusable_setup.yml +++ b/.github/workflows/reusable_setup.yml @@ -10,7 +10,7 @@ jobs: setup: strategy: matrix: - os: ['ubuntu-22.04', 'macos-12'] + os: ['ubuntu-22.04', 'macos-14'] runs-on: ${{ matrix.os }} timeout-minutes: 30 steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bfdae8..a74be9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# [2.0.0-dev.1](https://github.com/ionic-team/capacitor-os-inappbrowser/compare/v1.1.0-dev.2...v2.0.0-dev.1) (2025-01-13) + + +### Bug Fixes + +* Remove unnecessary permissions from AndroidManifest.xml ([#39](https://github.com/ionic-team/capacitor-os-inappbrowser/issues/39)) ([90fb0b2](https://github.com/ionic-team/capacitor-os-inappbrowser/commit/90fb0b2bdf282b896dec3f6433ddb44082f99509)) + + +### BREAKING CHANGES + +* There were Capacitor 7 changes, that require a major version update. + +# [1.1.0-dev.2](https://github.com/ionic-team/capacitor-os-inappbrowser/compare/v1.1.0-dev.1...v1.1.0-dev.2) (2025-01-08) + + +### Bug Fixes + +* basic-tests github action ([#38](https://github.com/ionic-team/capacitor-os-inappbrowser/issues/38)) ([634425a](https://github.com/ionic-team/capacitor-os-inappbrowser/commit/634425a23ea0eecb3de645335f594823e59312dc)) +* use proper repository and bugs urls ([d2c0bcf](https://github.com/ionic-team/capacitor-os-inappbrowser/commit/d2c0bcf740b2c4ffae5a28efa5c5541547245e69)) + # [1.1.0-dev.1](https://github.com/ionic-team/capacitor-os-inappbrowser/compare/v1.0.2...v1.1.0-dev.1) (2024-10-24) diff --git a/android/build.gradle b/android/build.gradle index 5123224..8a263f9 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -58,7 +58,7 @@ repositories { dependencies { // implementation fileTree(dir: 'libs', include: ['*.jar']) implementation project(':capacitor-android') - implementation "com.capacitorjs:osinappbrowser-android:1.2.0" + implementation "com.capacitorjs:osinappbrowser-android:1.2.1" implementation 'androidx.browser:browser:1.8.0' implementation "androidx.constraintlayout:constraintlayout:2.2.0" implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion" diff --git a/package.json b/package.json index d8aeb0b..fa78f0b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor/inappbrowser", - "version": "1.1.0-next.1", + "version": "2.0.0-dev.1", "description": "The InAppBrowser Plugin provides a web browser view that allows you to load any web page externally. It behaves as a standard web browser and is useful to load untrusted content without risking your application's security. It offers three different ways to open URLs; in a WebView, in an in-app system browser (Custom Tabs for Android and SFSafariViewController for iOS), and in the device's default browser.", "main": "./dist/plugin.cjs", "module": "./dist/plugin.mjs",