Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

//--------- Must: be added:
implementation "io.velocitycareerlabs:vcl:2.7.1"
implementation "io.velocitycareerlabs:vcl:2.7.2"
implementation 'com.nimbusds:nimbus-jose-jwt:10.0.1'
implementation "androidx.security:security-crypto:1.1.0-alpha06"
implementation "androidx.security:security-crypto:1.1.0-alpha07"
//-------------------------
}

10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1054,12 +1054,12 @@ PODS:
- React-logger (= 0.73.6)
- React-perflogger (= 0.73.6)
- SocketRocket (0.6.1)
- VCL (2.7.1)
- velocitycareerlabs-vcl-react-native (2.7.1):
- VCL (2.7.2)
- velocitycareerlabs-vcl-react-native (2.7.2):
- glog
- RCT-Folly (= 2022.05.16.00)
- React-Core
- VCL (= 2.7.1)
- VCL (= 2.7.2)
- Yoga (1.14.0)

DEPENDENCIES:
Expand Down Expand Up @@ -1276,8 +1276,8 @@ SPEC CHECKSUMS:
React-utils: 288c9cb9a73bb150c273c84df7c2f8546f28e23f
ReactCommon: 2e5492a3e3a8e72d635c266405e49d12627e5bf0
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
VCL: c3b7e075776bbbb1f3632f0533d9b44faeafc646
velocitycareerlabs-vcl-react-native: e0d49c576438d8f2b4d8f471028ae9f3e3ed5eef
VCL: 4f0ecc3b624e34ec0395f9738aabd93d7369240b
velocitycareerlabs-vcl-react-native: a4f3df0dece79f9c6a0fcf2d8e376871e9dc5590
Yoga: 805bf71192903b20fc14babe48080582fee65a80

PODFILE CHECKSUM: dda665d1488c2a02df92eccd852bd6de0cd38761
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@velocitycareerlabs/vcl-react-native",
"version": "2.7.1",
"version": "2.7.2",
"description": "Velocity Career Labs React Native SDK",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion src/api/entities/VCLPresentationRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export interface VCLPresentationRequest {
presentationDefinitionId: string;
iss: string;
didJwk: VCLDidJwk;
feed: boolean;
feed?: boolean;
remoteCryptoServicesToken?: VCLToken;
}
2 changes: 1 addition & 1 deletion velocitycareerlabs-vcl-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|

s.source_files = "ios/**/*.{h,m,mm,swift}"

s.dependency "VCL", "2.7.1"
s.dependency "VCL", "2.7.2"

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