Skip to content

Commit

Permalink
Merge pull request #329 from rollbar/upd_locks
Browse files Browse the repository at this point in the history
* Updated Podfile.locks for the integration examples so they don't point locally
* Updated SPMApp demo to use 3.1.0 instead of branch
* Fixed cocoapods issue when archiving apps
* Changelog for 3.1.1
  • Loading branch information
matux authored Aug 2, 2023
2 parents 37b6481 + c3e720f commit 811acc2
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 51 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Release Notes

### 3.1.1

- Fixed archiving issue when integrating the SDK using Cocoapods.
- Updating is unnecessary if using any other package manager like SPM.

### 3.1.0

- The `KSCrash` dependency has been completely dropped.
Expand Down
26 changes: 10 additions & 16 deletions Examples/Integration/CocoapodsApp/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,21 @@ PODS:
- RollbarCrash (~> 3.1.0)

DEPENDENCIES:
- RollbarCommon (from `../../../`)
- RollbarCrash (from `../../../`)
- RollbarNotifier (from `../../../`)
- RollbarReport (from `../../../`)
- RollbarNotifier (~> 3.1.0)

EXTERNAL SOURCES:
RollbarCommon:
:path: "../../../"
RollbarCrash:
:path: "../../../"
RollbarNotifier:
:path: "../../../"
RollbarReport:
:path: "../../../"
SPEC REPOS:
trunk:
- RollbarCommon
- RollbarCrash
- RollbarNotifier
- RollbarReport

SPEC CHECKSUMS:
RollbarCommon: 125fb7e9fa63ea79ef33ee0f0e50456bb9f9cdf5
RollbarCrash: d831f9c067bbe2147080a700c0a7ebc346d31db3
RollbarNotifier: c712946d79d82103fc2ae07956c768ba8705dee2
RollbarReport: 2f42cb47ce9f0be32c5e040e702f936b99e62542
RollbarNotifier: 3213f4466b7f239c06d67e2c4963177e694df91b
RollbarReport: 55693c386a511cd37272fb2bfc8a6c1b333cd749

PODFILE CHECKSUM: 67f7079dea0a413cbd163635c7d721b213865260
PODFILE CHECKSUM: 5bf17b88c31394fd8e7ce6804c149a42c077e1a8

COCOAPODS: 1.12.1
26 changes: 10 additions & 16 deletions Examples/Integration/CocoapodsFramework/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,21 @@ PODS:
- RollbarCrash (~> 3.1.0)

DEPENDENCIES:
- RollbarCommon (from `../../../`)
- RollbarCrash (from `../../../`)
- RollbarNotifier (from `../../../`)
- RollbarReport (from `../../../`)
- RollbarNotifier (~> 3.1.0)

EXTERNAL SOURCES:
RollbarCommon:
:path: "../../../"
RollbarCrash:
:path: "../../../"
RollbarNotifier:
:path: "../../../"
RollbarReport:
:path: "../../../"
SPEC REPOS:
trunk:
- RollbarCommon
- RollbarCrash
- RollbarNotifier
- RollbarReport

SPEC CHECKSUMS:
RollbarCommon: 125fb7e9fa63ea79ef33ee0f0e50456bb9f9cdf5
RollbarCrash: d831f9c067bbe2147080a700c0a7ebc346d31db3
RollbarNotifier: c712946d79d82103fc2ae07956c768ba8705dee2
RollbarReport: 2f42cb47ce9f0be32c5e040e702f936b99e62542
RollbarNotifier: 3213f4466b7f239c06d67e2c4963177e694df91b
RollbarReport: 55693c386a511cd37272fb2bfc8a6c1b333cd749

PODFILE CHECKSUM: 5275e0d96c9f6b1d06ef6f586fede164fdb00d8c
PODFILE CHECKSUM: 94655f4f87e1ff194ba9a4cc27c389b9a098a8a5

COCOAPODS: 1.12.1
18 changes: 9 additions & 9 deletions Examples/Integration/SPMApp/SPMApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
3B18792E2A69C9CD00265B15 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B18792D2A69C9CD00265B15 /* ContentView.swift */; };
3B1879302A69C9CD00265B15 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3B18792F2A69C9CD00265B15 /* Assets.xcassets */; };
3B1879332A69C9CD00265B15 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3B1879322A69C9CD00265B15 /* Preview Assets.xcassets */; };
3B6CB15B2A69CBEA00FDE6D8 /* RollbarNotifier in Frameworks */ = {isa = PBXBuildFile; productRef = 3B6CB15A2A69CBEA00FDE6D8 /* RollbarNotifier */; };
3B7FEF1E2A7AB663000CFD64 /* RollbarNotifier in Frameworks */ = {isa = PBXBuildFile; productRef = 3B7FEF1D2A7AB663000CFD64 /* RollbarNotifier */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -27,7 +27,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3B6CB15B2A69CBEA00FDE6D8 /* RollbarNotifier in Frameworks */,
3B7FEF1E2A7AB663000CFD64 /* RollbarNotifier in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -86,7 +86,7 @@
);
name = SPMApp;
packageProductDependencies = (
3B6CB15A2A69CBEA00FDE6D8 /* RollbarNotifier */,
3B7FEF1D2A7AB663000CFD64 /* RollbarNotifier */,
);
productName = SPMApp;
productReference = 3B1879282A69C9CD00265B15 /* SPMApp.app */;
Expand Down Expand Up @@ -117,7 +117,7 @@
);
mainGroup = 3B18791F2A69C9CD00265B15;
packageReferences = (
3B6CB1592A69CBEA00FDE6D8 /* XCRemoteSwiftPackageReference "rollbar-apple" */,
3B7FEF1C2A7AB663000CFD64 /* XCRemoteSwiftPackageReference "rollbar-apple" */,
);
productRefGroup = 3B1879292A69C9CD00265B15 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -349,20 +349,20 @@
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
3B6CB1592A69CBEA00FDE6D8 /* XCRemoteSwiftPackageReference "rollbar-apple" */ = {
3B7FEF1C2A7AB663000CFD64 /* XCRemoteSwiftPackageReference "rollbar-apple" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "[email protected]:rollbar/rollbar-apple.git";
requirement = {
branch = integration_examples;
kind = branch;
kind = upToNextMajorVersion;
minimumVersion = 3.1.0;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
3B6CB15A2A69CBEA00FDE6D8 /* RollbarNotifier */ = {
3B7FEF1D2A7AB663000CFD64 /* RollbarNotifier */ = {
isa = XCSwiftPackageProductDependency;
package = 3B6CB1592A69CBEA00FDE6D8 /* XCRemoteSwiftPackageReference "rollbar-apple" */;
package = 3B7FEF1C2A7AB663000CFD64 /* XCRemoteSwiftPackageReference "rollbar-apple" */;
productName = RollbarNotifier;
};
/* End XCSwiftPackageProductDependency section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "[email protected]:rollbar/rollbar-apple.git",
"state" : {
"branch" : "integration_examples",
"revision" : "eb1e002d38dbca25873b3524e11ccdd43841305b"
"revision" : "37b6481208eade23be9cb61bc53b3fb8884d4de2",
"version" : "3.1.0"
}
},
{
Expand Down
9 changes: 3 additions & 6 deletions RollbarNotifier.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarNotifier"
s.version = "3.1.0"
s.version = "3.1.1"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down Expand Up @@ -35,10 +35,7 @@ Pod::Spec.new do |s|
s.swift_versions = "5.5"
s.requires_arc = true

s.osx.xcconfig = {
"USE_HEADERMAP" => "NO",
"HEADER_SEARCH_PATHS" => \
"$(PODS_ROOT)/#{s.name}/#{s.name}/Sources/#{s.name}/** " \
"$(PODS_ROOT)/RollbarCommon/RollbarCommon/Sources/RollbarCommon/include"
s.xcconfig = {
"HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/RollbarCrash/RollbarNotifier/Sources/RollbarCrash/include"
}
end
4 changes: 2 additions & 2 deletions RollbarReport.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarReport"
s.version = "3.1.0"
s.version = "3.1.1"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down Expand Up @@ -31,7 +31,7 @@ Pod::Spec.new do |s|
s.swift_versions = "5.5"
s.requires_arc = true

s.osx.xcconfig = {
s.xcconfig = {
"USE_HEADERMAP" => "NO"
}
end

0 comments on commit 811acc2

Please sign in to comment.