expo-eas-client 1.0.5 → 1.0.6

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/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 1.0.6 — 2025-09-02
14
+
15
+ ### 💡 Others
16
+
17
+ - Change Constants to Constant/Property. ([#38926](https://github.com/expo/expo/pull/38926) by [@jakex7](https://github.com/jakex7))
18
+
13
19
  ## 1.0.5 — 2025-08-31
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -4,7 +4,7 @@ plugins {
4
4
  }
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '1.0.5'
7
+ version = '1.0.6'
8
8
 
9
9
  expoModule {
10
10
  canBePublished false
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.easclient"
15
15
  defaultConfig {
16
16
  versionCode 1
17
- versionName "1.0.5"
17
+ versionName "1.0.6"
18
18
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19
19
  }
20
20
  testOptions {
@@ -12,8 +12,6 @@ class EASClientModule : Module() {
12
12
  override fun definition() = ModuleDefinition {
13
13
  Name("EASClient")
14
14
 
15
- Constants {
16
- mapOf("clientID" to EASClientID(context).uuid.toString())
17
- }
15
+ Constant("clientID") { EASClientID(context).uuid.toString() }
18
16
  }
19
17
  }
@@ -6,8 +6,6 @@ public class EASClientModule: Module {
6
6
  public func definition() -> ModuleDefinition {
7
7
  Name("EASClient")
8
8
 
9
- Constants([
10
- "clientID": EASClientID.uuid().uuidString
11
- ])
9
+ Constant("clientID") { EASClientID.uuid().uuidString }
12
10
  }
13
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-eas-client",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Stable client identifier for EAS services",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "preset": "expo-module-scripts"
36
36
  },
37
37
  "devDependencies": {
38
- "expo-module-scripts": "^5.0.5"
38
+ "expo-module-scripts": "^5.0.6"
39
39
  },
40
- "gitHead": "1dafdaa317c182191909a94a355c8b08a2654783"
40
+ "gitHead": "d635404a12ea7996b987ce0fb7679a238ebcf31b"
41
41
  }