Skip to content

Commit 9f9c371

Browse files
LiedtkeV8-internal LUCI CQ
authored andcommitted
Update swift-protobuf version and pin it to a strict version
The pinning ensures that our presubmit-check and all developers working on Fuzzilli have a consistent version used for regenerating the *.bp.swift files. The non-exact version caused the GitHub run to fail as a newer swift-protobuf version now resulted in diffs in the generated files. Change-Id: I4edeae1a38e0b912a45e17b20b950066db4b24d4 Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/9032256 Commit-Queue: Matthias Liedtke <mliedtke@google.com> Auto-Submit: Matthias Liedtke <mliedtke@google.com> Reviewed-by: Michael Achenbach <machenbach@google.com>
1 parent 0043c8b commit 9f9c371

File tree

5 files changed

+231
-227
lines changed

5 files changed

+231
-227
lines changed

Package.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ let package = Package(
2525
.library(name: "Fuzzilli",targets: ["Fuzzilli"]),
2626
],
2727
dependencies: [
28-
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.31.0"),
28+
// We use an exact version here as we also use this version to generate the .pb.swift to
29+
// ensure that they are always regenerated with a consistent version. So this entry locks
30+
// the version. It can be bumped arbitrarily, however, the generated files should be
31+
// regenerated, whenever the version is bumped.
32+
.package(url: "https://github.com/apple/swift-protobuf.git", exact: "1.35.0"),
2933
.package(
3034
url: "https://github.com/apple/swift-collections.git",
3135
.upToNextMinor(from: "1.2.0")

0 commit comments

Comments
 (0)