You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by er...@apache.org on 2022/04/11 13:12:20 UTC

[cordova-android] branch master updated (51291f89 -> 21e7c2f6)

This is an automated email from the ASF dual-hosted git repository.

erisu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-android.git


    from 51291f89 chore: update package-lock to satisfy npm audit (#1413)
     new f12080b7 android-v10.1.2 Updated version and RELEASENOTES.md for release 10.1.2
     new 21e7c2f6 chore: bump version 10.1.3-dev

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md                                      | 14 ++++++++++++++
 framework/src/org/apache/cordova/CordovaWebView.java |  2 +-
 package-lock.json                                    |  4 ++--
 package.json                                         |  2 +-
 4 files changed, 18 insertions(+), 4 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[cordova-android] 02/02: chore: bump version 10.1.3-dev

Posted by er...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

erisu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-android.git

commit 21e7c2f6611679e4de24b24110e13e30bc43c576
Author: Erisu <er...@apache.org>
AuthorDate: Mon Apr 11 22:10:31 2022 +0900

    chore: bump version 10.1.3-dev
---
 framework/src/org/apache/cordova/CordovaWebView.java | 2 +-
 package-lock.json                                    | 4 ++--
 package.json                                         | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java
index a8a8ca49..1ac73a6d 100644
--- a/framework/src/org/apache/cordova/CordovaWebView.java
+++ b/framework/src/org/apache/cordova/CordovaWebView.java
@@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback;
  * are not expected to implement it.
  */
 public interface CordovaWebView {
-    public static final String CORDOVA_VERSION = "10.1.2";
+    public static final String CORDOVA_VERSION = "10.1.3-dev";
 
     void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);
 
diff --git a/package-lock.json b/package-lock.json
index 93e39ffd..ffce0278 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "cordova-android",
-  "version": "10.1.2",
+  "version": "10.1.3-dev",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "cordova-android",
-      "version": "10.1.2",
+      "version": "10.1.3-dev",
       "license": "Apache-2.0",
       "dependencies": {
         "android-versions": "^1.7.0",
diff --git a/package.json b/package.json
index 384eb983..c78e0150 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-android",
-  "version": "10.1.2",
+  "version": "10.1.3-dev",
   "description": "cordova-android release",
   "main": "lib/Api.js",
   "repository": "github:apache/cordova-android",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[cordova-android] 01/02: android-v10.1.2 Updated version and RELEASENOTES.md for release 10.1.2

Posted by er...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

erisu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-android.git

commit f12080b7e2d50143894e164abcae86378ffe8cd9
Author: Erisu <er...@apache.org>
AuthorDate: Mon Apr 11 22:01:02 2022 +0900

    android-v10.1.2 Updated version and RELEASENOTES.md for release 10.1.2
---
 RELEASENOTES.md                                      | 14 ++++++++++++++
 framework/src/org/apache/cordova/CordovaWebView.java |  2 +-
 package-lock.json                                    |  4 ++--
 package.json                                         |  2 +-
 4 files changed, 18 insertions(+), 4 deletions(-)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index bf08bf54..63ad850f 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -20,6 +20,20 @@
 -->
 ## Release Notes for Cordova (Android)
 
+### 10.1.2 (Apr 11, 2022)
+
+**Fixes:**
+
+* [GH-1372](https://github.com/apache/cordova-android/pull/1372) fix(`AndroidManifest`): explicitly define the `activity` attribute `android:exported`
+* [GH-1406](https://github.com/apache/cordova-android/pull/1406) fix: detect `JAVA_HOME` with Java 11
+* [GH-1401](https://github.com/apache/cordova-android/pull/1401) fix(GH-1391): Reword minimum build tools version to make it more clear what is actually required.
+* [GH-1384](https://github.com/apache/cordova-android/pull/1384) fix: escape `strings.xml` app name
+
+**Chores:**
+
+* [GH-1413](https://github.com/apache/cordova-android/pull/1413) chore: update `package-lock` to satisfy `npm audit`
+* [GH-1348](https://github.com/apache/cordova-android/pull/1348) chore: `npmrc`
+
 ### 10.1.1 (Sep 13, 2021)
 
 **Fixes:**
diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java
index b0599756..a8a8ca49 100644
--- a/framework/src/org/apache/cordova/CordovaWebView.java
+++ b/framework/src/org/apache/cordova/CordovaWebView.java
@@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback;
  * are not expected to implement it.
  */
 public interface CordovaWebView {
-    public static final String CORDOVA_VERSION = "10.1.2-dev";
+    public static final String CORDOVA_VERSION = "10.1.2";
 
     void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);
 
diff --git a/package-lock.json b/package-lock.json
index 88027f94..93e39ffd 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "cordova-android",
-  "version": "10.1.2-dev",
+  "version": "10.1.2",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "cordova-android",
-      "version": "10.1.2-dev",
+      "version": "10.1.2",
       "license": "Apache-2.0",
       "dependencies": {
         "android-versions": "^1.7.0",
diff --git a/package.json b/package.json
index 4e14a960..384eb983 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-android",
-  "version": "10.1.2-dev",
+  "version": "10.1.2",
   "description": "cordova-android release",
   "main": "lib/Api.js",
   "repository": "github:apache/cordova-android",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org