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: Update next with dev #40

Merged
merged 16 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from 15 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
6 changes: 3 additions & 3 deletions .github/workflows/basic-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
THE_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/reusable_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
lint:
runs-on: 'macos-12'
runs-on: 'macos-14'
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion example-app/android/variables.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ext {
androidxFragmentVersion = '1.6.2'
coreSplashScreenVersion = '1.0.1'
androidxWebkitVersion = '1.9.0'
junitVersion = '4.13.2'
junitVersion = '4.13.3'
androidxJunitVersion = '1.1.5'
androidxEspressoCoreVersion = '3.5.1'
cordovaAndroidVersion = '10.1.1'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down