expo-task-manager 10.2.1 → 11.0.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,21 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 11.0.0 — 2022-10-25
14
+
15
+ ### 🛠 Breaking changes
16
+
17
+ - Bumped iOS deployment target to 13.0 and deprecated support for iOS 12. ([#18873](https://github.com/expo/expo/pull/18873) by [@tsapeta](https://github.com/tsapeta))
18
+
19
+ ### 💡 Others
20
+
21
+ - [plugin] Migrate import from @expo/config-plugins to expo/config-plugins and @expo/config-types to expo/config. ([#18855](https://github.com/expo/expo/pull/18855) by [@brentvatne](https://github.com/brentvatne))
22
+ - Drop `@expo/config-plugins` dependency in favor of peer dependency on `expo`. ([#18595](https://github.com/expo/expo/pull/18595) by [@EvanBacon](https://github.com/EvanBacon))
23
+
24
+ ## 10.3.0 — 2022-07-07
25
+
26
+ _This version does not introduce any user-facing changes._
27
+
13
28
  ## 10.2.1 — 2022-04-25
14
29
 
15
30
  ### 🐛 Bug fixes
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '10.2.1'
6
+ version = '11.0.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -74,7 +74,7 @@ android {
74
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
75
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
76
76
  versionCode 23
77
- versionName "10.2.1"
77
+ versionName "11.0.0"
78
78
  }
79
79
  lintOptions {
80
80
  abortOnError false
@@ -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.platform = :ios, '12.0'
13
+ s.platform = :ios, '13.0'
14
14
  s.source = { git: 'https://github.com/expo/expo-task-manager.git' }
15
15
  s.static_framework = true
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-task-manager",
3
- "version": "10.2.1",
3
+ "version": "11.0.0",
4
4
  "description": "Expo module that provides support for tasks that can run in the background.",
5
5
  "main": "build/TaskManager.js",
6
6
  "types": "build/TaskManager.d.ts",
@@ -33,14 +33,13 @@
33
33
  "license": "MIT",
34
34
  "homepage": "https://docs.expo.dev/versions/latest/sdk/task-manager/",
35
35
  "dependencies": {
36
- "@expo/config-plugins": "^4.0.14",
37
- "unimodules-app-loader": "~3.1.0"
36
+ "unimodules-app-loader": "~4.0.0"
38
37
  },
39
38
  "devDependencies": {
40
- "expo-module-scripts": "^2.0.0"
39
+ "expo-module-scripts": "^3.0.0"
41
40
  },
42
41
  "peerDependencies": {
43
42
  "expo": "*"
44
43
  },
45
- "gitHead": "8fa7ceccfeab2f5090019403d6472fb80d6d7eaf"
44
+ "gitHead": "eab2b09c735fb0fc2bf734a3f29a6593adba3838"
46
45
  }
@@ -1,3 +1,3 @@
1
- import { ConfigPlugin } from '@expo/config-plugins';
1
+ import { ConfigPlugin } from 'expo/config-plugins';
2
2
  declare const _default: ConfigPlugin<void>;
3
3
  export default _default;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const config_plugins_1 = require("@expo/config-plugins");
3
+ const config_plugins_1 = require("expo/config-plugins");
4
4
  const pkg = require('expo-task-manager/package.json');
5
5
  const withTaskManager = (config) => {
6
6
  config = (0, config_plugins_1.withInfoPlist)(config, (config) => {
@@ -1,4 +1,4 @@
1
- import { ConfigPlugin, createRunOncePlugin, withInfoPlist } from '@expo/config-plugins';
1
+ import { ConfigPlugin, createRunOncePlugin, withInfoPlist } from 'expo/config-plugins';
2
2
 
3
3
  const pkg = require('expo-task-manager/package.json');
4
4
 
package/tsconfig.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "outDir": "./build"
6
6
  },
7
7
  "include": ["./src"],
8
- "exclude": ["**/__mocks__/*", "**/__tests__/*"]
8
+ "exclude": ["**/__mocks__/*", "**/__tests__/*", "**/__stories__/*"]
9
9
  }