Skip to content

Commit da89b68

Browse files
committed
v2.6.11
1 parent f294d9f commit da89b68

File tree

6 files changed

+1441
-1435
lines changed

6 files changed

+1441
-1435
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ dependencies {
9292
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
9393

9494
//--------- Must: be added:
95-
implementation "io.velocitycareerlabs:vcl:2.6.10"
95+
implementation "io.velocitycareerlabs:vcl:2.6.11"
9696
implementation 'com.nimbusds:nimbus-jose-jwt:9.45'
9797
implementation "androidx.security:security-crypto:1.1.0-alpha06"
9898
//-------------------------

android/src/main/java/io/velocitycareerlabs/reactnative/extensions/MapExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fun WritableMap.getMapOpt(key: String): ReadableMap? {
9595

9696
fun ReadableMap.toJsonObject(): JSONObject {
9797
return try {
98-
JSONObject(this.toHashMap())
98+
JSONObject(this.toHashMap() as MutableMap<*, *>)
9999
} catch (e: Exception) {
100100
// e.printStackTrace()
101101
JSONObject()

example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,12 +1054,12 @@ PODS:
10541054
- React-logger (= 0.73.6)
10551055
- React-perflogger (= 0.73.6)
10561056
- SocketRocket (0.6.1)
1057-
- VCL (2.6.10)
1058-
- velocitycareerlabs-vcl-react-native (2.6.10):
1057+
- VCL (2.6.11)
1058+
- velocitycareerlabs-vcl-react-native (2.6.11):
10591059
- glog
10601060
- RCT-Folly (= 2022.05.16.00)
10611061
- React-Core
1062-
- VCL (= 2.6.10)
1062+
- VCL (= 2.6.11)
10631063
- Yoga (1.14.0)
10641064

10651065
DEPENDENCIES:
@@ -1276,8 +1276,8 @@ SPEC CHECKSUMS:
12761276
React-utils: 288c9cb9a73bb150c273c84df7c2f8546f28e23f
12771277
ReactCommon: 2e5492a3e3a8e72d635c266405e49d12627e5bf0
12781278
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
1279-
VCL: 3b91bc53011bba9361f8193813d8b105080d3e43
1280-
velocitycareerlabs-vcl-react-native: e7513766065b62023bdc0a64e7a2bc9d908996e2
1279+
VCL: 13176a92cfe11e5cb00c16bb564c011f2b972dbf
1280+
velocitycareerlabs-vcl-react-native: c43411c474ed31b1d499e177ab78dccacd67b628
12811281
Yoga: 805bf71192903b20fc14babe48080582fee65a80
12821282

12831283
PODFILE CHECKSUM: b019a9f171e06cc915918d81c74115c30ea1b65c

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@velocitycareerlabs/vcl-react-native",
3-
"version": "2.6.10",
3+
"version": "2.6.11",
44
"description": "Velocity Career Labs React Native SDK",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -100,7 +100,6 @@
100100
"workspaces": [
101101
"example"
102102
],
103-
"packageManager": "[email protected]",
104103
"jest": {
105104
"preset": "react-native",
106105
"modulePathIgnorePatterns": [
@@ -173,5 +172,6 @@
173172
}
174173
]
175174
]
176-
}
175+
},
176+
"packageManager": "[email protected]"
177177
}

velocitycareerlabs-vcl-react-native.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Pod::Spec.new do |s|
2121

2222
# s.swift_version = "5"
2323

24-
s.dependency "VCL", "2.6.10"
24+
s.dependency "VCL", "2.6.11"
2525

2626
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
2727
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.

0 commit comments

Comments
 (0)