@burnt-labs/expo-satya-attest 0.2.0 → 0.2.1
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/PUBLISHING.md
CHANGED
|
@@ -267,7 +267,7 @@ GitHub release tarball smoke test:
|
|
|
267
267
|
|
|
268
268
|
```bash
|
|
269
269
|
cd /private/tmp/SatyaSmoke
|
|
270
|
-
npm install https://github.com/<owner>/<repo>/releases/download/expo-satya-attest-v0.2.
|
|
270
|
+
npm install https://github.com/<owner>/<repo>/releases/download/expo-satya-attest-v0.2.1/burnt-labs-expo-satya-attest-0.2.1.tgz
|
|
271
271
|
npx expo install react-native-webview
|
|
272
272
|
```
|
|
273
273
|
|
|
@@ -275,7 +275,7 @@ For a raw Git install, publish the SDK from a dedicated repo or a subtree/split
|
|
|
275
275
|
where the SDK package is at the Git root:
|
|
276
276
|
|
|
277
277
|
```bash
|
|
278
|
-
npm install github:<owner>/<sdk-repo>#v0.2.
|
|
278
|
+
npm install github:<owner>/<sdk-repo>#v0.2.1
|
|
279
279
|
```
|
|
280
280
|
|
|
281
281
|
Do not document a normal monorepo Git URL as plug-and-play unless the Git ref has
|
package/README.md
CHANGED
|
@@ -196,7 +196,7 @@ is a release tarball produced by `npm pack`, because it contains the same files
|
|
|
196
196
|
would publish:
|
|
197
197
|
|
|
198
198
|
```bash
|
|
199
|
-
npm install https://github.com/<owner>/<repo>/releases/download/expo-satya-attest-v0.2.
|
|
199
|
+
npm install https://github.com/<owner>/<repo>/releases/download/expo-satya-attest-v0.2.1/burnt-labs-expo-satya-attest-0.2.1.tgz
|
|
200
200
|
npx expo install react-native-webview
|
|
201
201
|
```
|
|
202
202
|
|
|
@@ -204,8 +204,8 @@ Installing from a Git ref also works when that ref has the SDK package at the re
|
|
|
204
204
|
root, such as a dedicated SDK repo or a subtree/split branch:
|
|
205
205
|
|
|
206
206
|
```bash
|
|
207
|
-
npm install github:<owner>/<sdk-repo>#v0.2.
|
|
208
|
-
npm install git+https://github.com/<owner>/<sdk-repo>.git#v0.2.
|
|
207
|
+
npm install github:<owner>/<sdk-repo>#v0.2.1
|
|
208
|
+
npm install git+https://github.com/<owner>/<sdk-repo>.git#v0.2.1
|
|
209
209
|
npx expo install react-native-webview
|
|
210
210
|
```
|
|
211
211
|
|
package/android/build.gradle
CHANGED
|
@@ -4,13 +4,13 @@ plugins {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
group = 'expo.modules.satyaattest'
|
|
7
|
-
version = '0.1
|
|
7
|
+
version = '0.2.1'
|
|
8
8
|
|
|
9
9
|
android {
|
|
10
10
|
namespace "expo.modules.satyaattest"
|
|
11
11
|
defaultConfig {
|
|
12
12
|
versionCode 1
|
|
13
|
-
versionName "0.1
|
|
13
|
+
versionName "0.2.1"
|
|
14
14
|
// StrongBox key attestation needs API 28+; basic Keystore attestation API 24+.
|
|
15
15
|
minSdkVersion 24
|
|
16
16
|
}
|
|
Binary file
|
package/ios/SatyaAttest.podspec
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = 'SatyaAttest'
|
|
3
|
-
s.version = '0.1
|
|
3
|
+
s.version = '0.2.1'
|
|
4
4
|
s.summary = 'SATYA-W mobile TLS app-attestation (App Attest + Secure Enclave) backed by the Rust satya-sdk core'
|
|
5
5
|
s.description = 'Expo native module wrapping the Rust satya-ffi XCFramework and layering iOS App Attest + Secure Enclave platform attestation.'
|
|
6
6
|
s.author = 'Justin'
|
|
7
7
|
s.homepage = 'https://github.com/burnt-labs/tls-app-attest'
|
|
8
8
|
s.platforms = {
|
|
9
|
-
:ios => '
|
|
9
|
+
:ios => '15.6'
|
|
10
10
|
}
|
|
11
11
|
s.source = { git: '' }
|
|
12
12
|
s.static_framework = true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@burnt-labs/expo-satya-attest",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "SATYA-W mobile TLS app-attestation (App Attest + Secure Enclave / Play Integrity) backed by the Rust satya-sdk core",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|