expo-manifests 0.11.0 → 0.13.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.13.0 — 2023-12-12
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 0.12.0 — 2023-11-14
18
+
19
+ ### 🛠 Breaking changes
20
+
21
+ - Bumped iOS deployment target to 13.4. ([#25063](https://github.com/expo/expo/pull/25063) by [@gabrieldonadel](https://github.com/gabrieldonadel))
22
+ - On `Android` bump `compileSdkVersion` and `targetSdkVersion` to `34`. ([#24708](https://github.com/expo/expo/pull/24708) by [@alanjhughes](https://github.com/alanjhughes))
23
+
13
24
  ## 0.11.0 — 2023-10-17
14
25
 
15
26
  _This version does not introduce any user-facing changes._
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '0.11.0'
6
+ version = '0.13.0'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  if (expoModulesCorePlugin.exists()) {
@@ -60,11 +60,11 @@ if (!safeExtGet("expoProvidesDefaultConfig", false)) {
60
60
  android {
61
61
  // Remove this if and it's contents, when support for SDK49 is dropped
62
62
  if (!safeExtGet("expoProvidesDefaultConfig", false)) {
63
- compileSdkVersion safeExtGet("compileSdkVersion", 33)
63
+ compileSdkVersion safeExtGet("compileSdkVersion", 34)
64
64
 
65
65
  defaultConfig {
66
66
  minSdkVersion safeExtGet("minSdkVersion", 23)
67
- targetSdkVersion safeExtGet("targetSdkVersion", 33)
67
+ targetSdkVersion safeExtGet("targetSdkVersion", 34)
68
68
  }
69
69
 
70
70
  publishing {
@@ -93,7 +93,7 @@ android {
93
93
  namespace "expo.modules.manifests"
94
94
  defaultConfig {
95
95
  versionCode 31
96
- versionName '0.11.0'
96
+ versionName '0.13.0'
97
97
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
98
98
  }
99
99
  testOptions {
@@ -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
@@ -9,7 +9,7 @@ enum ManifestTestError: Error {
9
9
  }
10
10
 
11
11
  class BareManifestSpec : ExpoSpec {
12
- override func spec() {
12
+ override class func spec() {
13
13
  describe("instantiation") {
14
14
  it("instantiates and reads properties") {
15
15
  let manifestJson = "{\"id\":\"0eef8214-4833-4089-9dff-b4138a14f196\",\"commitTime\":1609975977832}"
@@ -5,7 +5,7 @@ import ExpoModulesTestCore
5
5
  @testable import EXManifests
6
6
 
7
7
  class LegacyManifestSpec : ExpoSpec {
8
- override func spec() {
8
+ override class func spec() {
9
9
  describe("instantiation") {
10
10
  it("instantiates and reads properties") {
11
11
  let manifestJson = "{\"sdkVersion\":\"39.0.0\",\"id\":\"@esamelson/native-component-list\",\"releaseId\":\"0eef8214-4833-4089-9dff-b4138a14f196\",\"commitTime\":\"2020-11-11T00:17:54.797Z\",\"bundleUrl\":\"https://classic-assets.eascdn.net/%40esamelson%2Fnative-component-list%2F39.0.0%2F01c86fd863cfee878068eebd40f165df-39.0.0-ios.js\"}"
@@ -5,7 +5,7 @@ import ExpoModulesTestCore
5
5
  @testable import EXManifests
6
6
 
7
7
  final class ManifestSpec: ExpoSpec {
8
- override func spec() {
8
+ override class func spec() {
9
9
  describe("getPluginProperties") {
10
10
  it("should return nil when plugin is not matched") {
11
11
  var manifestJson: [String: Any] = [:]
@@ -5,7 +5,7 @@ import ExpoModulesTestCore
5
5
  @testable import EXManifests
6
6
 
7
7
  class NewManifestSpec : ExpoSpec {
8
- override func spec() {
8
+ override class func spec() {
9
9
  describe("instantiation") {
10
10
  it("instantiates and reads properties") {
11
11
  let manifestJson = "{\"runtimeVersion\":\"1\",\"id\":\"0eef8214-4833-4089-9dff-b4138a14f196\",\"createdAt\":\"2020-11-11T00:17:54.797Z\",\"launchAsset\":{\"url\":\"https://classic-assets.eascdn.net/%40esamelson%2Fnative-component-list%2F39.0.0%2F01c86fd863cfee878068eebd40f165df-39.0.0-ios.js\",\"contentType\":\"application/javascript\"}}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-manifests",
3
- "version": "0.11.0",
3
+ "version": "0.13.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.11.0",
38
- "@expo/config": "~8.4.0"
37
+ "expo-json-utils": "~0.12.0",
38
+ "@expo/config": "~8.5.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": "da25937e2a99661cbe5eb60ca1d8d6245fc96a50"
46
+ "gitHead": "6aca7ce098ddc667776a3d7cf612adbb985e264a"
47
47
  }