expo-manifests 0.10.0 → 0.12.0

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,17 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.12.0 — 2023-11-14
14
+
15
+ ### 🛠 Breaking changes
16
+
17
+ - Bumped iOS deployment target to 13.4. ([#25063](https://github.com/expo/expo/pull/25063) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+ - On `Android` bump `compileSdkVersion` and `targetSdkVersion` to `34`. ([#24708](https://github.com/expo/expo/pull/24708) by [@alanjhughes](https://github.com/alanjhughes))
19
+
20
+ ## 0.11.0 — 2023-10-17
21
+
22
+ _This version does not introduce any user-facing changes._
23
+
13
24
  ## 0.10.0 — 2023-09-15
14
25
 
15
26
  ### 🎉 New features
@@ -21,6 +32,7 @@
21
32
  ### 🛠 Breaking changes
22
33
 
23
34
  - Remove classic manifest types. ([#24053](https://github.com/expo/expo/pull/24053) by [@wschurman](https://github.com/wschurman))
35
+ - Dropped support for Android SDK 21 and 22. ([#24201](https://github.com/expo/expo/pull/24201) by [@behenate](https://github.com/behenate))
24
36
 
25
37
  ### 🎉 New features
26
38
 
@@ -3,15 +3,19 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '0.10.0'
6
+ version = '0.12.0'
7
7
 
8
- buildscript {
9
- def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
10
- if (expoModulesCorePlugin.exists()) {
11
- apply from: expoModulesCorePlugin
12
- applyKotlinExpoModulesCorePlugin()
8
+ def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
+ if (expoModulesCorePlugin.exists()) {
10
+ apply from: expoModulesCorePlugin
11
+ applyKotlinExpoModulesCorePlugin()
12
+ // Remove this check, but keep the contents after SDK49 support is dropped
13
+ if (safeExtGet("expoProvidesDefaultConfig", false)) {
14
+ useExpoPublishing()
13
15
  }
16
+ }
14
17
 
18
+ buildscript {
15
19
  // Simple helper that allows the root project to override versions declared by this library.
16
20
  ext.safeExtGet = { prop, fallback ->
17
21
  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
@@ -35,23 +39,44 @@ buildscript {
35
39
  }
36
40
  }
37
41
 
38
- afterEvaluate {
39
- publishing {
40
- publications {
41
- release(MavenPublication) {
42
- from components.release
42
+ // Remove this if and it's contents, when support for SDK49 is dropped
43
+ if (!safeExtGet("expoProvidesDefaultConfig", false)) {
44
+ afterEvaluate {
45
+ publishing {
46
+ publications {
47
+ release(MavenPublication) {
48
+ from components.release
49
+ }
43
50
  }
44
- }
45
- repositories {
46
- maven {
47
- url = mavenLocal().url
51
+ repositories {
52
+ maven {
53
+ url = mavenLocal().url
54
+ }
48
55
  }
49
56
  }
50
57
  }
51
58
  }
52
59
 
53
60
  android {
54
- compileSdkVersion safeExtGet("compileSdkVersion", 33)
61
+ // Remove this if and it's contents, when support for SDK49 is dropped
62
+ if (!safeExtGet("expoProvidesDefaultConfig", false)) {
63
+ compileSdkVersion safeExtGet("compileSdkVersion", 34)
64
+
65
+ defaultConfig {
66
+ minSdkVersion safeExtGet("minSdkVersion", 23)
67
+ targetSdkVersion safeExtGet("targetSdkVersion", 34)
68
+ }
69
+
70
+ publishing {
71
+ singleVariant("release") {
72
+ withSourcesJar()
73
+ }
74
+ }
75
+
76
+ lintOptions {
77
+ abortOnError false
78
+ }
79
+ }
55
80
 
56
81
  def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
57
82
  if (agpVersion.tokenize('.')[0].toInteger() < 8) {
@@ -67,26 +92,16 @@ android {
67
92
 
68
93
  namespace "expo.modules.manifests"
69
94
  defaultConfig {
70
- minSdkVersion safeExtGet("minSdkVersion", 21)
71
- targetSdkVersion safeExtGet("targetSdkVersion", 33)
72
95
  versionCode 31
73
- versionName '0.10.0'
96
+ versionName '0.12.0'
74
97
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
75
98
  }
76
- lintOptions {
77
- abortOnError false
78
- }
79
99
  testOptions {
80
100
  unitTests.includeAndroidResources = true
81
101
  }
82
102
  sourceSets {
83
103
  androidTest.assets.srcDirs += files("$projectDir/src/androidTest/schemas".toString())
84
104
  }
85
- publishing {
86
- singleVariant("release") {
87
- withSourcesJar()
88
- }
89
- }
90
105
  }
91
106
 
92
107
  dependencies {
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
10
10
  s.license = package['license']
11
11
  s.author = package['author']
12
12
  s.homepage = package['homepage']
13
- s.platforms = { :ios => '13.0', :tvos => '13.0' }
13
+ s.platforms = { :ios => '13.4', :tvos => '13.4' }
14
14
  s.swift_version = '5.4'
15
15
  s.source = { git: 'https://github.com/expo/expo.git' }
16
16
  s.static_framework = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-manifests",
3
- "version": "0.10.0",
3
+ "version": "0.12.0",
4
4
  "description": "Code to parse and use Expo and Expo Updates manifests.",
5
5
  "main": "build/Manifests.js",
6
6
  "types": "build/Manifests.d.ts",
@@ -34,8 +34,8 @@
34
34
  "preset": "expo-module-scripts"
35
35
  },
36
36
  "dependencies": {
37
- "expo-json-utils": "~0.10.0",
38
- "@expo/config": "~8.3.0"
37
+ "expo-json-utils": "~0.12.0",
38
+ "@expo/config": "~8.4.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "expo-module-scripts": "^3.0.0"
@@ -43,5 +43,5 @@
43
43
  "peerDependencies": {
44
44
  "expo": "*"
45
45
  },
46
- "gitHead": "ee2c866ba3c7fbc35ff2a3e896041cf15d3bd7c5"
46
+ "gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
47
47
  }