Skip to content

Commit

Permalink
Update to Netty 5.0.0.Alpha3
Browse files Browse the repository at this point in the history
Fixes #1873
  • Loading branch information
violetagg committed Jul 8, 2022
1 parent 57f82b7 commit 4f08788
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check_transport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
- os: windows-2019
transport: native
# macOS - https://github.com/netty/netty/issues/9689
- os: macos-10.15
transport: native
#- os: macos-10.15
# transport: native
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -80,13 +80,13 @@ jobs:
distribution: 'temurin'
java-version: 17
- name: Build codec-haproxy
run: ./mvnw install -DskipTests=true
run: ./mvnw install -DskipTests=true -Dnetty.version=5.0.0.Alpha3
working-directory: ./codec-haproxy
- name: Build codec-extras
run: ./mvnw install -DskipTests=true
run: ./mvnw install -DskipTests=true -Dnetty.version=5.0.0.Alpha3
working-directory: ./codec-extras
- name: Build socks-proxy
run: ./mvnw install -DskipTests=true
run: ./mvnw install -DskipTests=true -Dnetty.version=5.0.0.Alpha3
working-directory: ./socks-proxy
- name: Build with Gradle
run: ./gradlew clean check --no-daemon -PforceTransport=${{ matrix.transport }} -PspotlessFrom=origin/netty5
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ext {
logbackVersion = '1.2.11'

// Netty
nettyDefaultVersion = '5.0.0.Alpha3-SNAPSHOT'
nettyDefaultVersion = '5.0.0.Alpha3'
if (!project.hasProperty("forceNettyVersion")) {
nettyVersion = nettyDefaultVersion
}
Expand Down

0 comments on commit 4f08788

Please sign in to comment.