Skip to content

Commit b43c69d

Browse files
author
Github Workflow (on behalf of IT-MikeS)
committed
Release 4.8.0
1 parent dd2d617 commit b43c69d

10 files changed

+86
-7
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.8.0](https://github.com/ionic-team/capacitor/compare/4.7.3...4.8.0) (2023-04-26)
7+
8+
9+
### Bug Fixes
10+
11+
* **android:** launching intents without host ([#6493](https://github.com/ionic-team/capacitor/issues/6493)) ([6028ff4](https://github.com/ionic-team/capacitor/commit/6028ff482b489c150e348a3b536387c321b39b80))
12+
* **cli:** Pin [@ionic](https://github.com/ionic) dependencies for node 12 support ([#6527](https://github.com/ionic-team/capacitor/issues/6527)) ([dd2d617](https://github.com/ionic-team/capacitor/commit/dd2d6172e174963114d119b55cb0b0e43faf8b63))
13+
* **cli:** Pin @ionic/utils-subprocess version for node 12 support ([#6524](https://github.com/ionic-team/capacitor/issues/6524)) ([c714408](https://github.com/ionic-team/capacitor/commit/c7144081532c486ef2d5fa42881ae2421b81e3eb))
14+
* **cookies:** check isEnabled before setting cookieHandler ([24a28cb](https://github.com/ionic-team/capacitor/commit/24a28cb0a391dcd7f305000c4973b4c2c9a79359))
15+
* **cookies:** init cookie manager after server url is set ([4000b02](https://github.com/ionic-team/capacitor/commit/4000b0259223fcd505bbd5393e2458f0abd3b156))
16+
* **http:** copy native response url to fetch response ([42d2eb3](https://github.com/ionic-team/capacitor/commit/42d2eb3c3c04e087b88df7252cd2c323b00a3f95))
17+
18+
19+
### Features
20+
21+
* **ios:** add webContentsDebuggingEnabled configuration ([#6500](https://github.com/ionic-team/capacitor/issues/6500)) ([b9e345a](https://github.com/ionic-team/capacitor/commit/b9e345a8f02229650eabc829d49c9d9e7227eb57))
22+
23+
24+
25+
26+
627
## [4.7.3](https://github.com/ionic-team/capacitor/compare/4.7.2...4.7.3) (2023-03-31)
728

829

android/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.8.0](https://github.com/ionic-team/capacitor/compare/4.7.3...4.8.0) (2023-04-26)
7+
8+
9+
### Bug Fixes
10+
11+
* **android:** launching intents without host ([#6493](https://github.com/ionic-team/capacitor/issues/6493)) ([6028ff4](https://github.com/ionic-team/capacitor/commit/6028ff482b489c150e348a3b536387c321b39b80))
12+
* **cookies:** check isEnabled before setting cookieHandler ([24a28cb](https://github.com/ionic-team/capacitor/commit/24a28cb0a391dcd7f305000c4973b4c2c9a79359))
13+
* **cookies:** init cookie manager after server url is set ([4000b02](https://github.com/ionic-team/capacitor/commit/4000b0259223fcd505bbd5393e2458f0abd3b156))
14+
* **http:** copy native response url to fetch response ([42d2eb3](https://github.com/ionic-team/capacitor/commit/42d2eb3c3c04e087b88df7252cd2c323b00a3f95))
15+
16+
17+
18+
19+
620
## [4.7.3](https://github.com/ionic-team/capacitor/compare/4.7.2...4.7.3) (2023-03-31)
721

822

android/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor/android",
3-
"version": "4.7.3",
3+
"version": "4.8.0",
44
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
55
"homepage": "https://capacitorjs.com",
66
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -23,7 +23,7 @@
2323
"verify": "./gradlew clean lint build test -b capacitor/build.gradle"
2424
},
2525
"peerDependencies": {
26-
"@capacitor/core": "^4.7.0"
26+
"@capacitor/core": "^4.8.0"
2727
},
2828
"publishConfig": {
2929
"access": "public"

cli/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.8.0](https://github.com/ionic-team/capacitor/compare/4.7.3...4.8.0) (2023-04-26)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** Pin [@ionic](https://github.com/ionic) dependencies for node 12 support ([#6527](https://github.com/ionic-team/capacitor/issues/6527)) ([dd2d617](https://github.com/ionic-team/capacitor/commit/dd2d6172e174963114d119b55cb0b0e43faf8b63))
12+
* **cli:** Pin @ionic/utils-subprocess version for node 12 support ([#6524](https://github.com/ionic-team/capacitor/issues/6524)) ([c714408](https://github.com/ionic-team/capacitor/commit/c7144081532c486ef2d5fa42881ae2421b81e3eb))
13+
14+
15+
### Features
16+
17+
* **ios:** add webContentsDebuggingEnabled configuration ([#6500](https://github.com/ionic-team/capacitor/issues/6500)) ([b9e345a](https://github.com/ionic-team/capacitor/commit/b9e345a8f02229650eabc829d49c9d9e7227eb57))
18+
19+
20+
21+
22+
623
## [4.7.3](https://github.com/ionic-team/capacitor/compare/4.7.2...4.7.3) (2023-03-31)
724

825
**Note:** Version bump only for package @capacitor/cli

cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor/cli",
3-
"version": "4.7.3",
3+
"version": "4.8.0",
44
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
55
"homepage": "https://capacitorjs.com",
66
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",

core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.8.0](https://github.com/ionic-team/capacitor/compare/4.7.3...4.8.0) (2023-04-26)
7+
8+
9+
### Bug Fixes
10+
11+
* **http:** copy native response url to fetch response ([42d2eb3](https://github.com/ionic-team/capacitor/commit/42d2eb3c3c04e087b88df7252cd2c323b00a3f95))
12+
13+
14+
15+
16+
617
## [4.7.3](https://github.com/ionic-team/capacitor/compare/4.7.2...4.7.3) (2023-03-31)
718

819
**Note:** Version bump only for package @capacitor/core

core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor/core",
3-
"version": "4.7.3",
3+
"version": "4.8.0",
44
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
55
"homepage": "https://capacitorjs.com",
66
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",

ios/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.8.0](https://github.com/ionic-team/capacitor/compare/4.7.3...4.8.0) (2023-04-26)
7+
8+
9+
### Bug Fixes
10+
11+
* **http:** copy native response url to fetch response ([42d2eb3](https://github.com/ionic-team/capacitor/commit/42d2eb3c3c04e087b88df7252cd2c323b00a3f95))
12+
13+
14+
### Features
15+
16+
* **ios:** add webContentsDebuggingEnabled configuration ([#6500](https://github.com/ionic-team/capacitor/issues/6500)) ([b9e345a](https://github.com/ionic-team/capacitor/commit/b9e345a8f02229650eabc829d49c9d9e7227eb57))
17+
18+
19+
20+
21+
622
## [4.7.3](https://github.com/ionic-team/capacitor/compare/4.7.2...4.7.3) (2023-03-31)
723

824
**Note:** Version bump only for package @capacitor/ios

ios/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@capacitor/ios",
3-
"version": "4.7.3",
3+
"version": "4.8.0",
44
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
55
"homepage": "https://capacitorjs.com",
66
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -25,7 +25,7 @@
2525
"xc:build:CapacitorCordova": "cd CapacitorCordova && xcodebuild && cd .."
2626
},
2727
"peerDependencies": {
28-
"@capacitor/core": "^4.7.0"
28+
"@capacitor/core": "^4.8.0"
2929
},
3030
"publishConfig": {
3131
"access": "public"

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
"tagVersionPrefix": ""
1818
}
1919
},
20-
"version": "4.7.3"
20+
"version": "4.8.0"
2121
}

0 commit comments

Comments
 (0)