Skip to content

Commit 9715f3a

Browse files
committed
Update upstream grpc-swift to v1.3.0
1 parent ec71707 commit 9715f3a

File tree

4 files changed

+29
-20
lines changed

4 files changed

+29
-20
lines changed

CombineGRPC.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "CombineGRPC"
4-
spec.version = "1.0.4"
4+
spec.version = "1.0.5"
55
spec.summary = "Combine framework integration for Swift gRPC"
66
spec.description = <<-DESC
77
CombineGRPC is a library that provides Combine framework integration for Swift gRPC. It provides two flavours of functionality, call and handle. Use call to make gRPC calls on the client side, and handle to handle incoming RPC calls on the server side. CombineGRPC provides versions of call and handle for all RPC styles: Unary, server streaming, client streaming and bidirectional streaming RPCs.
@@ -19,7 +19,7 @@ Pod::Spec.new do |spec|
1919
spec.watchos.deployment_target = "6.0"
2020
spec.source_files = 'Sources/CombineGRPC/**/*.swift'
2121

22-
spec.dependency "gRPC-Swift", "1.2.0"
22+
spec.dependency "gRPC-Swift", "1.3.0"
2323
spec.dependency "CombineExt", "1.3.0"
2424

2525
spec.pod_target_xcconfig = { "ENABLE_TESTABILITY" => "YES" }

Package.resolved

+23-14
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"repositoryURL": "https://github.com/pointfreeco/combine-schedulers",
77
"state": {
88
"branch": null,
9-
"revision": "ae2f434e81017bb7de02c168fb0bde83cd8370c1",
10-
"version": "0.3.1"
9+
"revision": "c37e5ae8012fb654af776cc556ff8ae64398c841",
10+
"version": "0.5.0"
1111
}
1212
},
1313
{
@@ -24,17 +24,17 @@
2424
"repositoryURL": "https://github.com/grpc/grpc-swift.git",
2525
"state": {
2626
"branch": null,
27-
"revision": "01bd56e270628ba76189eac2fcc7d7006db5cc79",
28-
"version": "1.2.0"
27+
"revision": "14e1ea3350892a864386517c037e11fb68baf818",
28+
"version": "1.3.0"
2929
}
3030
},
3131
{
3232
"package": "swift-log",
3333
"repositoryURL": "https://github.com/apple/swift-log.git",
3434
"state": {
3535
"branch": null,
36-
"revision": "173f567a2dfec11d74588eea82cecea555bdc0bc",
37-
"version": "1.4.0"
36+
"revision": "5d66f7ba25daf4f94100e7022febf3c75e37a6c7",
37+
"version": "1.4.2"
3838
}
3939
},
4040
{
@@ -51,17 +51,17 @@
5151
"repositoryURL": "https://github.com/apple/swift-nio-extras.git",
5252
"state": {
5353
"branch": null,
54-
"revision": "e5b5d191a80667a14827bfeb0ae4a511f7677942",
55-
"version": "1.7.0"
54+
"revision": "f72c4688f89c28502105509186eadc49a49cb922",
55+
"version": "1.10.0"
5656
}
5757
},
5858
{
5959
"package": "swift-nio-http2",
6060
"repositoryURL": "https://github.com/apple/swift-nio-http2.git",
6161
"state": {
6262
"branch": null,
63-
"revision": "d4060ac4d056a48d946298f04968f6f6080cc618",
64-
"version": "1.16.2"
63+
"revision": "13b6a7a83864005334818d7ea2a3053869a96c04",
64+
"version": "1.18.0"
6565
}
6666
},
6767
{
@@ -78,17 +78,26 @@
7878
"repositoryURL": "https://github.com/apple/swift-nio-transport-services.git",
7979
"state": {
8080
"branch": null,
81-
"revision": "bb56586c4cab9a79dce6ec4738baddb5802c5de7",
82-
"version": "1.9.0"
81+
"revision": "39587bceccda72780e2a8a8c5e857e42a9df2fa8",
82+
"version": "1.11.0"
8383
}
8484
},
8585
{
8686
"package": "SwiftProtobuf",
8787
"repositoryURL": "https://github.com/apple/swift-protobuf.git",
8888
"state": {
8989
"branch": null,
90-
"revision": "426bef0ddfdc6449b7bd1418baafad6bbc56110b",
91-
"version": "1.13.0"
90+
"revision": "1f62db409f2c9b0223a3f68567b4a01333aae778",
91+
"version": "1.17.0"
92+
}
93+
},
94+
{
95+
"package": "xctest-dynamic-overlay",
96+
"repositoryURL": "https://github.com/pointfreeco/xctest-dynamic-overlay",
97+
"state": {
98+
"branch": null,
99+
"revision": "603974e3909ad4b48ba04aad7e0ceee4f077a518",
100+
"version": "0.1.0"
92101
}
93102
}
94103
]

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let package = Package(
1616
targets: ["CombineGRPC"]),
1717
],
1818
dependencies: [
19-
.package(url: "https://github.com/grpc/grpc-swift.git", .exact("1.2.0")),
19+
.package(url: "https://github.com/grpc/grpc-swift.git", .exact("1.3.0")),
2020
.package(url: "https://github.com/CombineCommunity/CombineExt.git", from: "1.3.0"),
2121
],
2222
targets: [

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ To generate Swift code from your .proto files, you'll need to first install the
174174
brew install protobuf
175175
```
176176

177-
Next, download the [swift and grpc-swift protoc plugins](https://github.com/grpc/grpc-swift/releases/download/1.2.0/protoc-grpc-swift-plugins-1.2.0.zip). Unarchive the downloaded file and move the binaries from the `bin/` directory to somewhere in your `$PATH`.
177+
Next, download the [swift and grpc-swift protoc plugins](https://github.com/grpc/grpc-swift/releases/download/1.3.0/protoc-grpc-swift-plugins-1.3.0.zip). Unarchive the downloaded file and move the binaries from the `bin/` directory to somewhere in your `$PATH`.
178178

179179
Now you are ready to generate Swift code from protobuf interface definition files.
180180

@@ -203,7 +203,7 @@ Add the package dependency to your `Package.swift`:
203203

204204
```swift
205205
dependencies: [
206-
.package(url: "https://github.com/vyshane/grpc-swift-combine.git", from: "1.0.4"),
206+
.package(url: "https://github.com/vyshane/grpc-swift-combine.git", from: "1.0.5"),
207207
],
208208
```
209209

@@ -212,7 +212,7 @@ dependencies: [
212212
Add the following line to your `Podfile`:
213213

214214
```text
215-
pod 'CombineGRPC', '~> 1.0.4'
215+
pod 'CombineGRPC', '~> 1.0.5'
216216
```
217217

218218
## Compatibility

0 commit comments

Comments
 (0)