Skip to content

Commit 49a7026

Browse files
Merge pull request #1288 from ballerina-platform/netty-fix
2 parents b193615 + 02f5da4 commit 49a7026

File tree

15 files changed

+48
-50
lines changed

15 files changed

+48
-50
lines changed

.github/workflows/build-timestamped-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ jobs:
1414
call_workflow:
1515
name: Run Build Workflow
1616
if: ${{ github.repository_owner == 'ballerina-platform' }}
17-
uses: ballerina-platform/ballerina-library/.github/workflows/build-timestamp-master-template.yml@main
17+
uses: ballerina-platform/ballerina-library/.github/workflows/build-timestamp-master-template.yml@2201.10.x
1818
secrets: inherit

.github/workflows/build-with-bal-test-graalvm.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
lang_tag:
77
description: Branch/Release Tag of the Ballerina Lang
88
required: true
9-
default: master
9+
default: 2201.9.x
1010
lang_version:
11-
description: Ballerina Lang Version (If given ballerina lang buid will be skipped)
11+
description: Ballerina Lang Version (If given ballerina lang build will be skipped)
1212
required: false
13-
default: ''
13+
default: 2201.9.0
1414
native_image_options:
1515
description: Default native-image options
1616
required: false
@@ -19,7 +19,7 @@ on:
1919
- cron: '30 18 * * *'
2020
pull_request:
2121
branches:
22-
- main
22+
- 2201.9.x
2323
types: [ opened, synchronize, reopened, labeled, unlabeled ]
2424

2525
concurrency:
@@ -30,7 +30,7 @@ jobs:
3030
call_stdlib_workflow:
3131
name: Run StdLib Workflow
3232
if: ${{ github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository_owner == 'ballerina-platform') }}
33-
uses: ballerina-platform/ballerina-library/.github/workflows/build-with-bal-test-graalvm-template.yml@main
33+
uses: ballerina-platform/ballerina-library/.github/workflows/build-with-bal-test-graalvm-template.yml@2201.10.x
3434
with:
3535
lang_tag: ${{ inputs.lang_tag }}
3636
lang_version: ${{ inputs.lang_version }}

.github/workflows/central-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
call_workflow:
1616
name: Run Central Publish Workflow
1717
if: ${{ github.repository_owner == 'ballerina-platform' }}
18-
uses: ballerina-platform/ballerina-library/.github/workflows/central-publish-template.yml@main
18+
uses: ballerina-platform/ballerina-library/.github/workflows/central-publish-template.yml@2201.10.x
1919
secrets: inherit
2020
with:
2121
environment: ${{ github.event.inputs.environment }}

.github/workflows/process-load-test-result.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
call_stdlib_process_load_test_results_workflow:
88
name: Run StdLib Process Load Test Results Workflow
9-
uses: ballerina-platform/ballerina-library/.github/workflows/process-load-test-results-template.yml@main
9+
uses: ballerina-platform/ballerina-library/.github/workflows/process-load-test-results-template.yml@2201.10.x
1010
with:
1111
results: ${{ toJson(github.event.client_payload.results) }}
1212
secrets:

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
call_workflow:
1010
name: Run Release Workflow
1111
if: ${{ github.repository_owner == 'ballerina-platform' }}
12-
uses: ballerina-platform/ballerina-library/.github/workflows/release-package-template.yml@main
12+
uses: ballerina-platform/ballerina-library/.github/workflows/release-package-template.yml@2201.10.x
1313
secrets: inherit
1414
with:
1515
package-name: udp

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ jobs:
1010
call_workflow:
1111
name: Run PR Build Workflow
1212
if: ${{ github.repository_owner == 'ballerina-platform' }}
13-
uses: ballerina-platform/ballerina-library/.github/workflows/pull-request-build-template.yml@main
13+
uses: ballerina-platform/ballerina-library/.github/workflows/pull-request-build-template.yml@2201.10.x
1414
secrets: inherit

.github/workflows/stale_check.yml

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

.github/workflows/trigger-load-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
call_stdlib_trigger_load_test_workflow:
2323
name: Run StdLib Load Test Workflow
2424
if: ${{ github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository_owner == 'ballerina-platform') }}
25-
uses: ballerina-platform/ballerina-library/.github/workflows/trigger-load-tests-template.yml@main
25+
uses: ballerina-platform/ballerina-library/.github/workflows/trigger-load-tests-template.yml@2201.10.x
2626
with:
2727
repo_name: 'module-ballerina-udp'
2828
runtime_artifacts_url: 'https://api.github.com/repos/ballerina-platform/module-ballerina-udp/actions/artifacts'

.github/workflows/trivy-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
call_workflow:
1010
name: Run Trivy Scan Workflow
1111
if: ${{ github.repository_owner == 'ballerina-platform' }}
12-
uses: ballerina-platform/ballerina-library/.github/workflows/trivy-scan-template.yml@main
12+
uses: ballerina-platform/ballerina-library/.github/workflows/trivy-scan-template.yml@2201.10.x
1313
secrets: inherit

ballerina/Ballerina.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
org = "ballerina"
33
name = "udp"
4-
version = "1.10.0"
4+
version = "1.10.1"
55
authors = ["Ballerina"]
66
keywords = ["UDP", "datagram", "transport"]
77
repository = "https://github.com/ballerina-platform/module-ballerina-udp"
@@ -15,39 +15,39 @@ graalvmCompatible = true
1515
[[platform.java17.dependency]]
1616
groupId = "io.ballerina.stdlib"
1717
artifactId = "udp-native"
18-
version = "1.10.0"
19-
path = "../native/build/libs/udp-native-1.10.0.jar"
18+
version = "1.10.1"
19+
path = "../native/build/libs/udp-native-1.10.1-SNAPSHOT.jar"
2020

2121
[[platform.java17.dependency]]
22-
path = "../test-utils/build/libs/udp-test-utils-1.10.0.jar"
22+
path = "../test-utils/build/libs/udp-test-utils-1.10.1-SNAPSHOT.jar"
2323
scope = "testOnly"
2424

2525
[[platform.java17.dependency]]
2626
groupId = "io.netty"
2727
artifactId = "netty-handler"
28-
version = "4.1.108.Final"
29-
path = "./lib/netty-handler-4.1.108.Final.jar"
28+
version = "4.1.115.Final"
29+
path = "./lib/netty-handler-4.1.115.Final.jar"
3030

3131
[[platform.java17.dependency]]
3232
groupId = "io.netty"
3333
artifactId = "netty-buffer"
34-
version = "4.1.108.Final"
35-
path = "./lib/netty-buffer-4.1.108.Final.jar"
34+
version = "4.1.115.Final"
35+
path = "./lib/netty-buffer-4.1.115.Final.jar"
3636

3737
[[platform.java17.dependency]]
3838
groupId = "io.netty"
3939
artifactId = "netty-transport"
40-
version = "4.1.108.Final"
41-
path = "./lib/netty-transport-4.1.108.Final.jar"
40+
version = "4.1.115.Final"
41+
path = "./lib/netty-transport-4.1.115.Final.jar"
4242

4343
[[platform.java17.dependency]]
4444
groupId = "io.netty"
4545
artifactId = "netty-common"
46-
version = "4.1.108.Final"
47-
path = "./lib/netty-common-4.1.108.Final.jar"
46+
version = "4.1.115.Final"
47+
path = "./lib/netty-common-4.1.115.Final.jar"
4848

4949
[[platform.java17.dependency]]
5050
groupId = "io.netty"
5151
artifactId = "netty-resolver"
52-
version = "4.1.108.Final"
53-
path = "./lib/netty-resolver-4.1.108.Final.jar"
52+
version = "4.1.115.Final"
53+
path = "./lib/netty-resolver-4.1.115.Final.jar"

0 commit comments

Comments
 (0)