Skip to content

Commit b84f2ed

Browse files
authored
Merge branch 'grpc:master' into master
2 parents 43dc50e + 478f30e commit b84f2ed

File tree

53 files changed

+242
-169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+242
-169
lines changed

RELEASING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ Finally, document and publicize the release.
210210
2. Post a release announcement to [grpc-io](https://groups.google.com/forum/#!forum/grpc-io)
211211
(`[email protected]`). The title should be something that clearly identifies
212212
the release (e.g.`GRPC-Java <tag> Released`).
213+
- Note that there may have been backports to the release branch since you
214+
generated the release notes. Please verify that any backports are reflected
215+
in the release notes before sending them out.
213216

214217
Update Hosted Javadoc
215218
---------------------

alts/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ plugins {
99

1010
description = "gRPC: ALTS"
1111

12-
evaluationDependsOn(project(':grpc-core').path)
13-
1412
dependencies {
1513
api project(':grpc-core')
1614
implementation project(':grpc-auth'),
@@ -28,7 +26,7 @@ dependencies {
2826
shadow project(path: ':grpc-netty-shaded', configuration: 'shadow')
2927

3028
testImplementation project(':grpc-testing'),
31-
project(':grpc-core').sourceSets.test.output,
29+
testFixtures(project(':grpc-core')),
3230
project(':grpc-testing-proto'),
3331
libraries.guava,
3432
libraries.junit,

android-interop-testing/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ android {
3030
sourceCompatibility JavaVersion.VERSION_1_8
3131
targetCompatibility JavaVersion.VERSION_1_8
3232
}
33-
compileSdkVersion 31
33+
compileSdkVersion 33
3434

3535
defaultConfig {
3636
applicationId "io.grpc.android.integrationtest"
3737
minSdkVersion 19
38-
targetSdkVersion 31
38+
targetSdkVersion 33
3939
versionCode 1
4040
versionName "1.0"
4141
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ android {
1212
sourceCompatibility JavaVersion.VERSION_1_8
1313
targetCompatibility JavaVersion.VERSION_1_8
1414
}
15-
compileSdkVersion 31
15+
compileSdkVersion 33
1616
defaultConfig {
1717
consumerProguardFiles "proguard-rules.txt"
1818
minSdkVersion 19
19-
targetSdkVersion 31
19+
targetSdkVersion 33
2020
versionCode 1
2121
versionName "1.0"
2222
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

api/build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
id "java-library"
3+
id "java-test-fixtures"
34
id "maven-publish"
45

56
id "me.champeau.jmh"
@@ -8,15 +9,16 @@ plugins {
89

910
description = 'gRPC: API'
1011

11-
evaluationDependsOn(project(':grpc-context').path)
12-
1312
dependencies {
1413
api project(':grpc-context'),
1514
libraries.jsr305,
1615
libraries.errorprone.annotations
1716
implementation libraries.guava
1817

19-
testImplementation project(':grpc-context').sourceSets.test.output,
18+
testFixturesImplementation libraries.guava,
19+
libraries.junit,
20+
libraries.mockito.core
21+
testImplementation testFixtures(project(':grpc-context')),
2022
project(':grpc-testing'),
2123
project(':grpc-grpclb')
2224
testImplementation (libraries.guava.testlib) {
@@ -32,3 +34,6 @@ tasks.named("javadoc").configure {
3234
// We want io.grpc.Internal, but not io.grpc.Internal*
3335
exclude 'io/grpc/Internal?*.java'
3436
}
37+
38+
components.java.withVariantsFromConfiguration(configurations.testFixturesApiElements) { skip() }
39+
components.java.withVariantsFromConfiguration(configurations.testFixturesRuntimeElements) { skip() }

authz/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919

2020
testImplementation project(':grpc-testing'),
2121
project(':grpc-testing-proto'),
22-
project(':grpc-core').sourceSets.test.output // for FakeClock
22+
testFixtures(project(':grpc-core'))
2323
testImplementation (libraries.guava.testlib) {
2424
exclude group: 'junit', module: 'junit'
2525
}

0 commit comments

Comments
 (0)