From 2143045d4ef40f4a8d6666ae17cd5b143a7436ce Mon Sep 17 00:00:00 2001 From: Erisu Date: Wed, 15 May 2024 19:35:44 +0900 Subject: [PATCH] release(android-v13.0.0): updated version and RELEASENOTES.md --- RELEASENOTES.md | 32 +++++++++++++++++++ .../org/apache/cordova/CordovaWebView.java | 2 +- package-lock.json | 4 +-- package.json | 2 +- 4 files changed, 36 insertions(+), 4 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index f2ea3727..263e4923 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,38 @@ --> ## Release Notes for Cordova (Android) +### 13.0.0 (May 15, 2024) + +**Breaking Changes:** + +* [GH-1678](https://github.com/apache/cordova-android/pull/1678) feat!: API 34 Support +* [GH-1543](https://github.com/apache/cordova-android/pull/1543) feat!: bump `kotlin@1.9.24` & drop `kotlin-android-extensions` when kotlin `>=1.8.0` + +**Features:** + +* [GH-1700](https://github.com/apache/cordova-android/pull/1700) feat(splash): Support `SplashScreenBackgroundColor` preference +* [GH-1609](https://github.com/apache/cordova-android/pull/1609) feat: add camera intent with file input capture +* [GH-1696](https://github.com/apache/cordova-android/pull/1696) feat: Add `ResolveServiceWorkerRequests` preference + +**Chores, Dependencies & CI:** + +* [GH-1677](https://github.com/apache/cordova-android/pull/1677) chore(deps-dev): bump `@babel/traverse` from `7.22.10` to `7.23.2` +* [GH-1713](https://github.com/apache/cordova-android/pull/1713) dep: bump npm dependencies 20240515 + * `semver@7.6.2` + * `rewire@7.0.0` + * `nopt@7.2.1` + * `jasmine@5.1.0` + * `fs-extra@11.2.0` + * `fast-glob@3.3.2` + * `dedent@1.5.3` + * `@cordova/eslint-config@5.1.0` + * `which@4.0.0` + * `properties-parser@0.6.0` + * `android-versions@2.0.0` +* [GH-1711](https://github.com/apache/cordova-android/pull/1711) ci: Set up CodeQL analysis w/ fixes +* [GH-1687](https://github.com/apache/cordova-android/pull/1687) ci(release-audit): add license header and dependency checker +* [GH-1703](https://github.com/apache/cordova-android/pull/1703) ci: update `codecov@v4` w/ token + ### 12.0.1 (Aug 23, 2023) * [GH-1632](https://github.com/apache/cordova-android/pull/1632) fix(android): `monochrome` checks diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java index 0139a090..ed277882 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 = "13.0.0-dev"; + public static final String CORDOVA_VERSION = "13.0.0"; void init(CordovaInterface cordova, List pluginEntries, CordovaPreferences preferences); diff --git a/package-lock.json b/package-lock.json index 9fb7ac5f..3372dd1a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-android", - "version": "13.0.0-dev", + "version": "13.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cordova-android", - "version": "13.0.0-dev", + "version": "13.0.0", "license": "Apache-2.0", "dependencies": { "android-versions": "^2.0.0", diff --git a/package.json b/package.json index 90cd5f5a..e2896e5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-android", - "version": "13.0.0-dev", + "version": "13.0.0", "description": "cordova-android release", "types": "./types/index.d.ts", "main": "lib/Api.js",