Skip to content

Commit

Permalink
Merge pull request #40 from ionic-team/dev
Browse files Browse the repository at this point in the history
chore: Update next with dev
  • Loading branch information
OS-pedrogustavobilro authored Jan 13, 2025
2 parents e5bee40 + 0eb14a1 commit a13b83f
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 7 deletions.
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 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

0 comments on commit a13b83f

Please sign in to comment.