Skip to content

Commit 18a80d2

Browse files
committed
chore: Bump version to 8.0.0-beta.1
1 parent a713a0b commit 18a80d2

File tree

5 files changed

+52
-5
lines changed

5 files changed

+52
-5
lines changed

CordovaLib/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<key>CFBundlePackageType</key>
3636
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
3737
<key>CFBundleShortVersionString</key>
38-
<string>7.1.2-dev</string>
38+
<string>8.0.0-beta.1</string>
3939
<key>CFBundleVersion</key>
4040
<string>$(CURRENT_PROJECT_VERSION)</string>
4141
<key>NSHumanReadableCopyright</key>

CordovaLib/include/Cordova/CDVAvailability.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
*/
9797
#ifndef CORDOVA_VERSION_MIN_REQUIRED
9898
/* coho:next-version-min-required,replace-after */
99-
#define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_7_1_1
99+
#define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_8_0_0
100100
#endif
101101

102102
/*

RELEASENOTES.md

+47
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,53 @@
2222

2323
Cordova is a static library that enables developers to include the Cordova API in their iOS application projects easily, and also create new Cordova-based iOS application projects through the command-line.
2424

25+
### 8.0.0-beta.1 (Oct 17, 2024)
26+
27+
**Breaking Changes:**
28+
29+
* [GH-1485](https://github.com/apache/cordova-ios/pull/1485) refactor!: Consistent app template/Xcode project name
30+
* [GH-1313](https://github.com/apache/cordova-ios/pull/1313) feat!: Better Catalyst build support
31+
* [GH-1480](https://github.com/apache/cordova-ios/pull/1480) chore!: Bump CordovaLib requirements to **iOS** 13+
32+
* [GH-1400](https://github.com/apache/cordova-ios/pull/1400) fix!: Deprecate scrollView category extension on UIView
33+
* [GH-1465](https://github.com/apache/cordova-ios/pull/1465) feat(icons)!: Support a single 1024⨉1024 icon, but also more complex customizations
34+
* [GH-1458](https://github.com/apache/cordova-ios/pull/1458) refactor!: Add CDVSettingsDictionary class
35+
* [GH-1463](https://github.com/apache/cordova-ios/pull/1463) refactor!: Move CDVAllowList out of public API
36+
* [GH-1457](https://github.com/apache/cordova-ios/pull/1457) refactor(template)!: Update app template to Swift & storyboards
37+
* [GH-1466](https://github.com/apache/cordova-ios/pull/1466) chore!: Bump NodeJS versions in CI & update deps
38+
* [GH-1425](https://github.com/apache/cordova-ios/pull/1425) chore!: Bump minimum Xcode version to 15
39+
* [GH-1455](https://github.com/apache/cordova-ios/pull/1455) refactor!: Easy deprecation cleanups
40+
41+
**Fixes:**
42+
43+
* [GH-1497](https://github.com/apache/cordova-ios/pull/1497) fix: the WKWebView will leak in the platform centered approach unless this property is cleared
44+
* [GH-1496](https://github.com/apache/cordova-ios/pull/1496) fix: Resolve Xcode stale files warnings
45+
* [GH-1495](https://github.com/apache/cordova-ios/pull/1495) fix(emulators): Fix listing emulator targets
46+
* [GH-1494](https://github.com/apache/cordova-ios/pull/1494) fix(objc): Workaround for Swift/ObjC template issues
47+
* [GH-1493](https://github.com/apache/cordova-ios/pull/1493) fix(compat): Set the app delegate viewController for plugins
48+
* [GH-1481](https://github.com/apache/cordova-ios/pull/1481) feat(scheme-handler): Improve memory usage & Range support
49+
* [GH-1483](https://github.com/apache/cordova-ios/pull/1483) fix: Avoid showing error page on cancelled navigation
50+
* [GH-1437](https://github.com/apache/cordova-ios/pull/1437) fix: alerts could freeze the application
51+
* [GH-1482](https://github.com/apache/cordova-ios/pull/1482) fix: CDV.h wasn't bringing in Cordova.h consistently
52+
* [GH-1477](https://github.com/apache/cordova-ios/pull/1477) refactor: Move CDVURLSchemeHandler to private API
53+
* [GH-1475](https://github.com/apache/cordova-ios/pull/1475) refactor: Reorder methods in CDVViewController
54+
* [GH-1474](https://github.com/apache/cordova-ios/pull/1474) refactor: Clean up properties/ivars in CDVViewController
55+
* [GH-1472](https://github.com/apache/cordova-ios/pull/1472) refactor: Modernize some ObjC code
56+
* [GH-1473](https://github.com/apache/cordova-ios/pull/1473) fix: Update CDVAllowList to support more valid schemes
57+
* [GH-1467](https://github.com/apache/cordova-ios/pull/1467) fix(Podfile): Avoid creating an empty Podfile on plugin install
58+
* [GH-1470](https://github.com/apache/cordova-ios/pull/1470) fix: Error when no simulators are available
59+
* [GH-1479](https://github.com/apache/cordova-ios/pull/1479) refactor: Define a protocol for scheme handling plugins
60+
* [GH-1456](https://github.com/apache/cordova-ios/pull/1456) fix: Fix memory leak from user script handler
61+
62+
**Others:**
63+
64+
* [GH-1499](https://github.com/apache/cordova-ios/pull/1499) chore(readme): Update Xcode/node versions in `README`
65+
* [GH-1498](https://github.com/apache/cordova-ios/pull/1498) docs: Add upgrade guide for plugin authors for 8.x
66+
* [GH-1484](https://github.com/apache/cordova-ios/pull/1484) chore(deps): bump micromatch from 4.0.7 to 4.0.8
67+
* [GH-1478](https://github.com/apache/cordova-ios/pull/1478) ci: Publish DocC documentation to GitHub pages
68+
* [GH-1476](https://github.com/apache/cordova-ios/pull/1476) docs(CordovaLib): Start filling out DocC comments
69+
* [GH-1459](https://github.com/apache/cordova-ios/pull/1459) chore: Clean up ancient plist-to-config.xml cruft
70+
* [GH-1445](https://github.com/apache/cordova-ios/pull/1445) chore: bump version 8.0.0-dev
71+
2572
### 7.1.1 (Jul 19, 2024)
2673

2774
**Fixes:**

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-ios",
3-
"version": "8.0.0-dev",
3+
"version": "8.0.0-beta.1",
44
"description": "cordova-ios release",
55
"types": "./types/index.d.ts",
66
"main": "lib/Api.js",

0 commit comments

Comments
 (0)