Skip to content

Commit 2db0d4f

Browse files
authored
Merge pull request #536 from NordicSemiconductor/bugfix/zip-foundation
ZipFoundation migrated to 0.9.19 - fixed PrivacyInfo
2 parents 2361551 + 4afaedb commit 2db0d4f

12 files changed

+417
-294
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let package = Package(
1717
.library(name: "NordicDFU", targets: ["NordicDFU"])
1818
],
1919
dependencies: [
20-
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: "0.9.18"),
20+
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: "0.9.19"),
2121
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
2222
],
2323
targets: [

Test App/Podfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PODS:
2-
- iOSDFULibrary (4.15.2):
3-
- ZIPFoundation (= 0.9.18)
4-
- ZIPFoundation (0.9.18)
2+
- iOSDFULibrary (4.15.3):
3+
- ZIPFoundation (= 0.9.19)
4+
- ZIPFoundation (0.9.19)
55

66
DEPENDENCIES:
77
- iOSDFULibrary (from `../`)
@@ -15,8 +15,8 @@ EXTERNAL SOURCES:
1515
:path: "../"
1616

1717
SPEC CHECKSUMS:
18-
iOSDFULibrary: eb5445fd152c41e1141050716c47ac1a2b7ae41c
19-
ZIPFoundation: fa9ae5af13b7cf168245f24d1c672a4fb972e37f
18+
iOSDFULibrary: ef7e1fbb3fc7a5fabd106297a9cd0e775bcfcec6
19+
ZIPFoundation: b8c29ea7ae353b309bc810586181fd073cb3312c
2020

2121
PODFILE CHECKSUM: ae4b20f609dc65f886ce92e7f350ae5ef1fa65ca
2222

Test App/Pods/Local Podspecs/iOSDFULibrary.podspec.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Test App/Pods/Manifest.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Test App/Pods/Pods.xcodeproj/project.pbxproj

+349-247
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Test App/Pods/Target Support Files/ZIPFoundation/ResourceBundle-ZIPFoundation_Privacy-ZIPFoundation-Info.plist

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Test App/Pods/Target Support Files/ZIPFoundation/ZIPFoundation-Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Test App/Pods/Target Support Files/iOSDFULibrary/ResourceBundle-NordicDFUPrivacyInfo-iOSDFULibrary-Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Test App/Pods/Target Support Files/iOSDFULibrary/iOSDFULibrary-Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Test App/Pods/ZIPFoundation/Sources/ZIPFoundation/Resources/PrivacyInfo.xcprivacy

+19-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
### Changelog
2+
- **4.15.3**
3+
- Bugfix: Privacy Info fixed in ZipFoundation library (#535).
4+
5+
- **4.15.2**
6+
- Bugfix: Privacy Info fixed (#534).
7+
28
- **4.15.1**
39
- Bugfix: Adding missing privacy manifests keys (#533).
410

iOSDFULibrary.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "iOSDFULibrary"
33
s.module_name = 'NordicDFU'
4-
s.version = "4.15.2"
4+
s.version = "4.15.3"
55
s.summary = "This repository contains a library to perform Device Firmware Update on the nRF5x devices."
66
s.description = <<-DESC
77
The nRF5x Series chips are flash-based SoCs, and as such they represent the most flexible solution available. A key feature of the nRF5x Series and their associated software architecture and S-Series SoftDevices is the possibility for Over-The-Air Device Firmware Upgrade (OTA-DFU). See Figure 1. OTA-DFU allows firmware upgrades to be issued and downloaded to products in the field via the cloud and so enables OEMs to fix bugs and introduce new features to products that are already out on the market. This brings added security and flexibility to product development when using the nRF5x Series SoCs.
@@ -25,6 +25,6 @@ The nRF5x Series chips are flash-based SoCs, and as such they represent the most
2525
'NordicDFUPrivacyInfo' => ['Library/Assets/PrivacyInfo.xcprivacy']
2626
}
2727

28-
s.dependency 'ZIPFoundation', '= 0.9.18'
28+
s.dependency 'ZIPFoundation', '= 0.9.19'
2929

3030
end

0 commit comments

Comments
 (0)