Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ on:
pull_request:
branches:
- "*"
types:
# NOTE: these are the defaults
- opened
- synchronize
- reopened
# NOTE: we add this to let the conversion from draft trigger the workflows
- ready_for_review
merge_group:
types:
- "checks_requested"
Expand All @@ -15,7 +22,10 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
java: [ 8, 17, 19 ] # Oldest, LTS, Latest
java:
- 8 # Oldest
- 21 # LTS
- 24 # Latest
name: "Java ${{ matrix.java }} Build"
steps:
- uses: "actions/checkout@v4"
Expand All @@ -35,7 +45,10 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
java: [ 8, 17, 19 ] # Oldest, LTS, Latest
java:
- 8 # Oldest
- 21 # LTS
- 24 # Latest
name: "Java ${{ matrix.java }} Test"
steps:
- uses: "actions/checkout@v4"
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
.gradle
.idea
build
bin
gradle/wrapper
!gradle/wrapper/gradle-wrapper.jar
!gradle/wrapper/gradle-wrapper.properties
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Most commonly, if you are using [Maven] you can add the following to your pom.xm
<dependency>
<groupId>com.authzed.api</groupId>
<artifactId>authzed</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ javadoc { options.addStringOption('Xdoclint:none', '-quiet') }

def grpcVersion = "1.71.0"
def protocVersion = "4.30.2"
def authzedProtoCommit = "v1.40.0"
def authzedProtoCommit = "v1.41.0"
def bufDir = "${buildDir}/buf"
def protocPlatformTag = project.findProperty('protoc_platform') ? ":${protoc_platform}" : ""

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-rc-1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
37 changes: 22 additions & 15 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

186 changes: 94 additions & 92 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading