expo-dev-menu 3.1.7 → 3.1.9

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,17 +10,27 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
- ## 3.1.7 — 2023-07-10
13
+ ## 3.1.9 — 2023-07-26
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 3.1.8 - 2023-07-12
18
+
19
+ ### 💡 Others
20
+
21
+ - Added support for React Native 0.72.3 ([#23502](https://github.com/expo/expo/pull/23502) by [@tsapeta](https://github.com/tsapeta))
22
+
23
+ ## 3.1.7 - 2023-07-10
14
24
 
15
25
  ### 🐛 Bug fixes
16
26
 
17
27
  - Fixed release build runtime crashes when there is `import 'expo-dev-client'` in JavaScript entry file. ([#23413](https://github.com/expo/expo/pull/23413) by [@kudo](https://github.com/kudo))
18
28
 
19
- ## 3.1.6 2023-07-04
29
+ ## 3.1.6 - 2023-07-04
20
30
 
21
31
  _This version does not introduce any user-facing changes._
22
32
 
23
- ## 3.1.5 2023-06-30
33
+ ## 3.1.5 - 2023-06-30
24
34
 
25
35
  ### 🐛 Bug fixes
26
36
 
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '3.1.7'
6
+ version = '3.1.9'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -67,7 +67,7 @@ android {
67
67
  minSdkVersion safeExtGet("minSdkVersion", 21)
68
68
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
69
69
  versionCode 10
70
- versionName '3.1.7'
70
+ versionName '3.1.9'
71
71
  }
72
72
  lintOptions {
73
73
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "3.1.7",
3
+ "version": "3.1.9",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -58,18 +58,18 @@
58
58
  "@testing-library/react-native": "^8.0.0",
59
59
  "babel-plugin-module-resolver": "^5.0.0",
60
60
  "babel-preset-expo": "~9.5.0",
61
- "expo-dev-client-components": "1.5.2",
61
+ "expo-dev-client-components": "1.5.3",
62
62
  "expo-module-scripts": "^3.0.0",
63
63
  "fuse.js": "^6.4.6",
64
64
  "graphql": "^15.3.0",
65
65
  "graphql-tag": "^2.10.1",
66
66
  "react": "18.2.0",
67
- "react-native": "0.72.1",
67
+ "react-native": "0.72.3",
68
68
  "use-subscription": "^1.8.0",
69
69
  "url": "^0.11.0"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "expo": "*"
73
73
  },
74
- "gitHead": "e937147b2dabd615ae287e4728cd7a5ebb157c0c"
74
+ "gitHead": "3d3b8e6d49cd68caea30fd9ab633ace0bbefb3fb"
75
75
  }