@capacitor/ios 8.0.0-nightly-20251015T150613.0 → 8.0.0-nightly-20251017T150620.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CapacitorCordova/CapacitorCordova/CapacitorCordova.h +1 -0
- package/CapacitorCordova/CapacitorCordova/Classes/Public/CDVAvailabilityDeprecated.h +21 -0
- package/CapacitorCordova/CapacitorCordova/Classes/Public/CDVWebViewProcessPoolFactory.h +7 -0
- package/CapacitorCordova/CapacitorCordova/Classes/Public/CDVWebViewProcessPoolFactory.m +6 -0
- package/package.json +2 -2
|
@@ -9,6 +9,7 @@ FOUNDATION_EXPORT const unsigned char CapacitorCordovaVersionString[];
|
|
|
9
9
|
#import <Cordova/AppDelegate.h>
|
|
10
10
|
#import <Cordova/CDV.h>
|
|
11
11
|
#import <Cordova/CDVAvailability.h>
|
|
12
|
+
#import <Cordova/CDVAvailabilityDeprecated.h>
|
|
12
13
|
#import <Cordova/CDVCommandDelegate.h>
|
|
13
14
|
#import <Cordova/CDVCommandDelegateImpl.h>
|
|
14
15
|
#import <Cordova/CDVConfigParser.h>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
or more contributor license agreements. See the NOTICE file
|
|
4
|
+
distributed with this work for additional information
|
|
5
|
+
regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
to you under the Apache License, Version 2.0 (the
|
|
7
|
+
"License"); you may not use this file except in compliance
|
|
8
|
+
with the License. You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
Unless required by applicable law or agreed to in writing,
|
|
13
|
+
software distributed under the License is distributed on an
|
|
14
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
KIND, either express or implied. See the License for the
|
|
16
|
+
specific language governing permissions and limitations
|
|
17
|
+
under the License.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
#define CDV_DEPRECATED(version, msg) __attribute__((deprecated("Deprecated in Cordova " #version ". " msg)))
|
|
21
|
+
#define CDV_DEPRECATED_WITH_REPLACEMENT(version, msg, repl) __attribute__((deprecated("Deprecated in Cordova " #version ". " msg, repl)))
|
|
@@ -18,7 +18,14 @@
|
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
#import <WebKit/WebKit.h>
|
|
21
|
+
#import <Cordova/CDVAvailabilityDeprecated.h>
|
|
21
22
|
|
|
23
|
+
/**
|
|
24
|
+
@Metadata {
|
|
25
|
+
@Available(Cordova, introduced: "6.2.0", deprecated: "8.0.0")
|
|
26
|
+
}
|
|
27
|
+
*/
|
|
28
|
+
CDV_DEPRECATED(8.0.0, "WebKit WKProcessPool is deprecated in iOS")
|
|
22
29
|
@interface CDVWebViewProcessPoolFactory : NSObject
|
|
23
30
|
@property (nonatomic, retain) WKProcessPool* sharedPool;
|
|
24
31
|
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
@import WebKit;
|
|
22
22
|
#import <Cordova/CDVWebViewProcessPoolFactory.h>
|
|
23
23
|
|
|
24
|
+
#pragma clang diagnostic push
|
|
25
|
+
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
26
|
+
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
|
|
27
|
+
|
|
24
28
|
static CDVWebViewProcessPoolFactory *factory = nil;
|
|
25
29
|
|
|
26
30
|
@implementation CDVWebViewProcessPoolFactory
|
|
@@ -47,3 +51,5 @@ static CDVWebViewProcessPoolFactory *factory = nil;
|
|
|
47
51
|
return _sharedPool;
|
|
48
52
|
}
|
|
49
53
|
@end
|
|
54
|
+
|
|
55
|
+
#pragma clang diagnostic pop
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/ios",
|
|
3
|
-
"version": "8.0.0-nightly-
|
|
3
|
+
"version": "8.0.0-nightly-20251017T150620.0",
|
|
4
4
|
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
|
|
5
5
|
"homepage": "https://capacitorjs.com",
|
|
6
6
|
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"xc:build:CapacitorCordova": "cd CapacitorCordova && xcodebuild && cd .."
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@capacitor/core": "^8.0.0-nightly-
|
|
28
|
+
"@capacitor/core": "^8.0.0-nightly-20251017T150620.0"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|