cordova.plugins.diagnostic 6.0.2 → 6.1.1

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.
@@ -0,0 +1,17 @@
1
+ # Number of days of inactivity before an issue becomes stale
2
+ daysUntilStale: 60
3
+ # Number of days of inactivity before a stale issue is closed
4
+ daysUntilClose: 7
5
+ # Issues with these labels will never be considered stale
6
+ exemptLabels:
7
+ - pinned
8
+ - security
9
+ # Label to use when marking an issue as stale
10
+ staleLabel: wontfix
11
+ # Comment to post when marking an issue as stale. Set to `false` to disable
12
+ markComment: >
13
+ This issue has been automatically marked as stale because it has not had
14
+ recent activity. It will be closed if no further activity occurs. Thank you
15
+ for your contributions.
16
+ # Comment to post when closing a stale issue. Set to `false` to disable
17
+ closeComment: false
package/CHANGELOG.md CHANGED
@@ -1,4 +1,31 @@
1
1
  # CHANGELOG
2
+ **v6.1.1**
3
+ * Assorted type corrections
4
+ * Merged from PR [#446](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/446)
5
+ * Pin `colors` to `1.4.0`
6
+ * Resolves [#451](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/451).
7
+ * Merged from PR [#452](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/452)
8
+
9
+ **v6.1.0**
10
+ * (Android, iOS) Add `getCurrentBatteryLevel()` to core module to retrieve current device battery level.
11
+
12
+ **v6.0.4**
13
+ * (iOS) Add support for Provisional and Ephemeral notification permission statuses,
14
+ * Merged from PR [#437](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/437)
15
+ * (Android) Add support for `ACTIVITY_RECOGNITION` runtime permission
16
+ * Merged from PR [#430](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/430)
17
+ * (Android) Add `switchToNotifications()`
18
+ * Merged from PR [#434](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/434)
19
+ * (Android): Add separate plugin variable for AndroidX appcompat vs legacy version and pin to exact version numbers.
20
+ * Resolves [#440](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/440).
21
+ * Based on PR [#441](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/441).
22
+
23
+ **v6.0.3**
24
+ * (iOS) Update assertion to require `NSLocationAlwaysAndWhenInUseUsageDescription` instead of `NSLocationAlwaysUsageDescription` since the latter is deprecated since iOS 11.
25
+ * Fix docs referring to `NOT_REQUESTED` constant
26
+ * Merged from PR [#414](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/414)
27
+ * (Android) Fix issues with background location permission when running on less than Android API 29 / 10.0.
28
+ * Resolves [#423](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/423).
2
29
 
3
30
  **v6.0.2**
4
31
  * (iOS) Update location accuracy authorization logic based on iOS 14 Beta 3.