Skip to content

Commit

Permalink
Merge pull request #1136 from Bhashinee/netty-version-bump
Browse files Browse the repository at this point in the history
Upgrade Netty version
  • Loading branch information
TharmiganK committed Oct 12, 2023
2 parents a1d1699 + 3ad594d commit a63a9df
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
44 changes: 22 additions & 22 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
org = "ballerina"
name = "websocket"
version = "2.10.0"
version = "2.10.1"
authors = ["Ballerina"]
keywords = ["ws", "network", "bi-directional", "streaming", "service", "client"]
repository = "https://github.com/ballerina-platform/module-ballerina-websocket"
Expand All @@ -15,14 +15,14 @@ graalvmCompatible = true
[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "websocket-native"
version = "2.10.0"
path = "../native/build/libs/websocket-native-2.10.0.jar"
version = "2.10.1"
path = "../native/build/libs/websocket-native-2.10.1-SNAPSHOT.jar"

[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "http-native"
version = "2.10.0"
path = "./lib/http-native-2.10.0.jar"
version = "2.10.3"
path = "./lib/http-native-2.10.3-20231011-163800-7c8069a.jar"

[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
Expand All @@ -39,51 +39,51 @@ path = "./lib/constraint-native-1.4.0.jar"
[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-common"
version = "4.1.94.Final"
path = "./lib/netty-common-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-common-4.1.100.Final.jar"

[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-buffer"
version = "4.1.94.Final"
path = "./lib/netty-buffer-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-buffer-4.1.100.Final.jar"

[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-transport"
version = "4.1.94.Final"
path = "./lib/netty-transport-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-transport-4.1.100.Final.jar"

[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-resolver"
version = "4.1.94.Final"
path = "./lib/netty-resolver-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-resolver-4.1.100.Final.jar"

[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-handler"
version = "4.1.94.Final"
path = "./lib/netty-handler-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-handler-4.1.100.Final.jar"

[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-codec-http"
version = "4.1.94.Final"
path = "./lib/netty-codec-http-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-codec-http-4.1.100.Final.jar"

[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-codec"
version = "4.1.94.Final"
path = "./lib/netty-codec-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-codec-4.1.100.Final.jar"

[[platform.java17.dependency]]
groupId = "io.netty"
artifactId = "netty-handler-proxy"
version = "4.1.94.Final"
path = "./lib/netty-handler-proxy-4.1.94.Final.jar"
version = "4.1.100.Final"
path = "./lib/netty-handler-proxy-4.1.100.Final.jar"

[[platform.java17.dependency]]
path = "../test-utils/build/libs/websocket-test-utils-2.10.0.jar"
path = "../test-utils/build/libs/websocket-test-utils-2.10.1-SNAPSHOT.jar"
scope = "testOnly"
2 changes: 1 addition & 1 deletion ballerina/CompilerPlugin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ id = "websocket-compiler-plugin"
class = "io.ballerina.stdlib.websocket.plugin.WebSocketCompilerPlugin"

[[dependency]]
path = "../compiler-plugin/build/libs/websocket-compiler-plugin-2.10.0.jar"
path = "../compiler-plugin/build/libs/websocket-compiler-plugin-2.10.1-SNAPSHOT.jar"
4 changes: 2 additions & 2 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "http"
version = "2.10.0"
version = "2.10.3"
dependencies = [
{org = "ballerina", name = "auth"},
{org = "ballerina", name = "cache"},
Expand Down Expand Up @@ -329,7 +329,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "websocket"
version = "2.10.0"
version = "2.10.1"
dependencies = [
{org = "ballerina", name = "auth"},
{org = "ballerina", name = "constraint"},
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ group=io.ballerina.stdlib
version=2.10.1-SNAPSHOT
ballerinaLangVersion=2201.8.0
ballerinaTomlParserVersion=1.2.2
nettyVersion=4.1.94.Final
nettyVersion=4.1.100.Final
slf4jVersion=1.7.30
puppycrawlCheckstyleVersion=10.12.0
unirestVersion=1.4.9
Expand Down Expand Up @@ -36,7 +36,7 @@ stdlibJwtVersion=2.10.0
stdlibOAuth2Version=2.10.0

# Level 05
stdlibHttpVersion=2.10.0
stdlibHttpVersion=2.10.3

# Ballerinax Observer
observeVersion=1.2.0
Expand Down

0 comments on commit a63a9df

Please sign in to comment.