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
6 changes: 3 additions & 3 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ graalvmCompatible = true
groupId = "io.ballerina.stdlib"
artifactId = "websocket-native"
version = "2.14.3"
path = "../native/build/libs/websocket-native-2.14.3-SNAPSHOT.jar"
path = "../native/build/libs/websocket-native-2.14.3.jar"

[[platform.java21.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "http-native"
version = "2.14.9"
path = "./lib/http-native-2.14.9-20251222-133200-2af6855.jar"
path = "./lib/http-native-2.14.9.jar"

[[platform.java21.dependency]]
groupId = "io.ballerina.stdlib"
Expand Down Expand Up @@ -85,5 +85,5 @@ version = "4.1.130.Final"
path = "./lib/netty-handler-proxy-4.1.130.Final.jar"

[[platform.java21.dependency]]
path = "../test-utils/build/libs/websocket-test-utils-2.14.3-SNAPSHOT.jar"
path = "../test-utils/build/libs/websocket-test-utils-2.14.3.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.14.3-SNAPSHOT.jar"
path = "../compiler-plugin/build/libs/websocket-compiler-plugin-2.14.3.jar"
24 changes: 6 additions & 18 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ modules = [
[[package]]
org = "ballerina"
name = "crypto"
version = "2.9.3"
version = "2.9.2"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "time"}
Expand Down Expand Up @@ -242,7 +242,7 @@ modules = [
[[package]]
org = "ballerina"
name = "log"
version = "2.14.0"
version = "2.12.0"
dependencies = [
{org = "ballerina", name = "io"},
{org = "ballerina", name = "jballerina.java"},
Expand Down Expand Up @@ -283,7 +283,7 @@ modules = [
[[package]]
org = "ballerina"
name = "observe"
version = "1.6.0"
version = "1.5.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]
Expand All @@ -300,11 +300,10 @@ dependencies = [
[[package]]
org = "ballerina"
name = "task"
version = "2.11.0"
version = "2.7.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "time"},
{org = "ballerina", name = "uuid"}
{org = "ballerina", name = "time"}
]

[[package]]
Expand Down Expand Up @@ -335,22 +334,11 @@ modules = [
[[package]]
org = "ballerina"
name = "url"
version = "2.6.1"
version = "2.6.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]

[[package]]
org = "ballerina"
name = "uuid"
version = "1.10.0"
dependencies = [
{org = "ballerina", name = "crypto"},
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.int"},
{org = "ballerina", name = "time"}
]

[[package]]
org = "ballerina"
name = "websocket"
Expand Down
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ This file contains all the notable changes done to the Ballerina WebSocket packa

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.14.3] - 2026-01-09

### Fixed

- [Address `CVE-2025-67735`, `CVE-2025-12183` and `CVE-2025-66566` security vulnerabilities](https://github.com/ballerina-platform/ballerina-library/issues/8538)

## [2.14.2] - 2025-09-09

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.caching=true
group=io.ballerina.stdlib
version=2.14.3-SNAPSHOT
version=2.14.4-SNAPSHOT
ballerinaLangVersion=2201.12.0
ballerinaTomlParserVersion=1.2.2
nettyVersion=4.1.130.Final
Expand Down Expand Up @@ -42,7 +42,7 @@ stdlibJwtVersion=2.15.1
stdlibOAuth2Version=2.14.1

# Level 05
stdlibHttpVersion=2.14.9-20251222-133200-2af6855
stdlibHttpVersion=2.14.9

# Ballerinax Observer
observeVersion=1.5.0
Expand Down