From 98895f7d7860d7d4ce03b4fa4846c02c7b31644f Mon Sep 17 00:00:00 2001 From: Erisu Date: Thu, 30 Jun 2022 21:43:31 +0900 Subject: [PATCH] release(android-v11.0.0): updated version and RELEASENOTES.md --- RELEASENOTES.md | 36 +++++++++++++++++++ .../org/apache/cordova/CordovaWebView.java | 2 +- package-lock.json | 4 +-- package.json | 2 +- 4 files changed, 40 insertions(+), 4 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 63ad850f59..e85fe30ad5 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,42 @@ --> ## Release Notes for Cordova (Android) +### 11.0.0 (Jun 30, 2022) + +**Breaking:** + +* [GH-1441](https://github.com/apache/cordova-android/pull/1441) feat!: **Android** 12 splash screen +* [GH-1427](https://github.com/apache/cordova-android/pull/1427) feat!: API 32 support +* [GH-1410](https://github.com/apache/cordova-android/pull/1410) feat!: API 31 support +* [GH-1444](https://github.com/apache/cordova-android/pull/1444) fix!: set & use `ANDROID_HOME` as default +* [GH-1411](https://github.com/apache/cordova-android/pull/1411) chore!: Drop Node 12 support + +**Features:** + +* [GH-1448](https://github.com/apache/cordova-android/pull/1448) feat: Update `androidx.appcompat` version +* [GH-1446](https://github.com/apache/cordova-android/pull/1446) feat: Update gradle plugin version +* [GH-1447](https://github.com/apache/cordova-android/pull/1447) feat: Update google services pluging +* [GH-1431](https://github.com/apache/cordova-android/pull/1431) feat: support custom `compileSdk` setting +* [GH-1311](https://github.com/apache/cordova-android/pull/1311) feat: added support for BoM imports + +**Fixes:** + +* [GH-1453](https://github.com/apache/cordova-android/pull/1453) fix: support installing platfrom from local git checkout +* [GH-1449](https://github.com/apache/cordova-android/pull/1449) fix: accept file cookies only if `AndroidInsecureFileModeEnabled` +* [GH-1443](https://github.com/apache/cordova-android/pull/1443) fix: force `hostname` to lowercase +* [GH-1434](https://github.com/apache/cordova-android/pull/1434) fix: restore `checkReqs` in `prepare.js` +* [GH-1154](https://github.com/apache/cordova-android/pull/1154) fix: move `MainActivity.java` to folder that tracks the app package name (widget id) + +**Chores, Dependencies & CI:** + +* [GH-1451](https://github.com/apache/cordova-android/pull/1451) chore: display warning on deprecated `` tag usage +* [GH-1430](https://github.com/apache/cordova-android/pull/1430) chore: remove unneeded deprecated annotation +* [GH-1421](https://github.com/apache/cordova-android/pull/1421) chore(npm): bump `@cordova/eslint-config@^4.0.0` +* [GH-1420](https://github.com/apache/cordova-android/pull/1420) chore(npm): bump dependencies +* [GH-1452](https://github.com/apache/cordova-android/pull/1452) dep: bump `jasmine@4.2.1` w/ `package-lock` rebuild +* [GH-1439](https://github.com/apache/cordova-android/pull/1439) ci: update github action workflow +* [GH-1424](https://github.com/apache/cordova-android/pull/1424) ci: Added Node 18 to test matrix + ### 10.1.2 (Apr 11, 2022) **Fixes:** diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java index 1ac73a6d65..c7f119ab01 100644 --- a/framework/src/org/apache/cordova/CordovaWebView.java +++ b/framework/src/org/apache/cordova/CordovaWebView.java @@ -31,7 +31,7 @@ Licensed to the Apache Software Foundation (ASF) under one * are not expected to implement it. */ public interface CordovaWebView { - public static final String CORDOVA_VERSION = "10.1.3-dev"; + public static final String CORDOVA_VERSION = "11.0.0"; void init(CordovaInterface cordova, List pluginEntries, CordovaPreferences preferences); diff --git a/package-lock.json b/package-lock.json index 8276ed24bd..6ffbfbea09 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-android", - "version": "11.0.0-dev", + "version": "11.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cordova-android", - "version": "11.0.0-dev", + "version": "11.0.0", "license": "Apache-2.0", "dependencies": { "android-versions": "^1.7.0", diff --git a/package.json b/package.json index f41e3abdf6..d55bff2628 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-android", - "version": "11.0.0-dev", + "version": "11.0.0", "description": "cordova-android release", "main": "lib/Api.js", "repository": "github:apache/cordova-android",