Skip to content

Commit 38c0cfe

Browse files
authored
Merge branch 'main' into 6_1_nightly_ci
2 parents c075cba + 3279c13 commit 38c0cfe

File tree

19 files changed

+1711
-725
lines changed

19 files changed

+1711
-725
lines changed

.spi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: 1
22
builder:
33
configs:
4-
- documentation_targets: [GRPCHealthService, GRPCInterceptors]
4+
- documentation_targets: [GRPCHealthService, GRPCInteropTests, GRPCReflectionService, GRPCOTelTracingInterceptors, GRPCServiceLifecycle]
55
swift_version: 6.0

Package.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ let products: [Product] = [
2727
targets: ["GRPCReflectionService"]
2828
),
2929
.library(
30-
name: "GRPCInterceptors",
31-
targets: ["GRPCInterceptors"]
30+
name: "GRPCOTelTracingInterceptors",
31+
targets: ["GRPCOTelTracingInterceptors"]
3232
),
3333
.library(
3434
name: "GRPCServiceLifecycle",
@@ -43,11 +43,11 @@ let products: [Product] = [
4343
let dependencies: [Package.Dependency] = [
4444
.package(
4545
url: "https://github.com/grpc/grpc-swift.git",
46-
branch: "main"
46+
exact: "2.0.0-rc.1"
4747
),
4848
.package(
4949
url: "https://github.com/grpc/grpc-swift-protobuf.git",
50-
exact: "1.0.0-beta.3"
50+
exact: "1.0.0-rc.1"
5151
),
5252
.package(
5353
url: "https://github.com/apple/swift-protobuf.git",
@@ -115,19 +115,19 @@ let targets: [Target] = [
115115
swiftSettings: defaultSwiftSettings
116116
),
117117

118-
// Common interceptors for gRPC.
118+
// gRPC OTel tracing interceptors.
119119
.target(
120-
name: "GRPCInterceptors",
120+
name: "GRPCOTelTracingInterceptors",
121121
dependencies: [
122122
.product(name: "GRPCCore", package: "grpc-swift"),
123123
.product(name: "Tracing", package: "swift-distributed-tracing"),
124124
],
125125
swiftSettings: defaultSwiftSettings
126126
),
127127
.testTarget(
128-
name: "GRPCInterceptorsTests",
128+
name: "GRPCOTelTracingInterceptorsTests",
129129
dependencies: [
130-
.target(name: "GRPCInterceptors"),
130+
.target(name: "GRPCOTelTracingInterceptors"),
131131
.product(name: "GRPCCore", package: "grpc-swift"),
132132
.product(name: "Tracing", package: "swift-distributed-tracing"),
133133
],

Sources/GRPCInterceptors/ClientTracingInterceptor.swift

Lines changed: 0 additions & 140 deletions
This file was deleted.

Sources/GRPCInterceptors/OnFinishAsyncSequence.swift

Lines changed: 0 additions & 56 deletions
This file was deleted.

0 commit comments

Comments
 (0)