- 1.2.57
- 1.2.56
- 1.2.55
- 1.2.54
- 1.2.53
- 1.2.52
- 1.2.51
- 1.2.50
- 1.2.49
- 1.2.48
- 1.2.47
- 1.2.46
- 1.2.45
- 1.2.44
- 1.2.43
- 1.2.42
- 1.2.41
- 1.2.40
- 1.2.39
- 1.2.38
- 1.2.37
- 1.2.36
- 1.2.35
- 1.2.34
- 1.2.33
- 1.2.32
- 1.2.31
- 1.2.30
- 1.2.29
- 1.2.28
- 1.2.27
- 1.2.26
- 1.2.25
- 1.2.24
- 1.2.23
- 1.2.22
- 1.2.21
- 1.2.20
- 1.2.19
- 1.2.18
- 1.2.17
- 1.2.16
- 1.2.15
- 1.2.14
- 1.2.13
- 1.2.12
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
Overview of Ballerina Swan Lake Update 12 (2201.12.0)
Swan Lake Update 12 (2201.12.0) is the twelfth update release of Ballerina Swan Lake, and it includes a new set of features and significant improvements to the compiler, runtime, Ballerina library, and developer tooling. It is based on the 2024R1 version of the Language Specification.
Update Ballerina
Update your current Ballerina installation directly to 2201.12.0 using the Ballerina Update Tool as follows.
- Run
bal update
to get the latest version of the Update Tool. - Run
bal dist update
to update to this latest distribution.
Install Ballerina
If you have not installed Ballerina, download the installers to install.
Language updates
Bug fixes
To view bug fixes, see the GitHub milestone for Swan Lake Update 12 (2201.12.0).
Runtime updates
Bug fixes
To view bug fixes, see the GitHub milestone for Swan Lake Update 12 (2201.12.0).
Ballerina library updates
New features
http
package
-
Introduced the default HTTP listener, allowing multiple services from different Ballerina packages to be attached to the same listener. By default, the listener runs on port
9090
import ballerina/http; listener http:Listener httpListener = http:getDefaultListener(); service /api/v1 on httpListener { resource function get greeting() returns string { return "Hello, World from Service 1!"; } }
The port and configuration of the default listener can be customized in
Config.toml
as follows:[ballerina.http] defaultListenerPort = 8080 [ballerina.http.defaultListenerConfig] httpVersion = "1.1" [ballerina.http.defaultListenerConfig.secureSocket.key] path = "resources/certs/ballerinaKeystore.p12" password = "ballerina"
-
Introduced an API to convert an
http:Response
object into ahttp:StatusCodeRecord
, which includes the status code, body, and headershttp:Client clientEP = check new ("localhost:9090/api"); http:Response res = check clientEP->/path; http:StatusCodeRecord statusCodeRes = check res.getStatusCodeRecord();
Improvements
http
package
- Improved HTTP client performance particularly when using a trust store with multiple certificates
- Added TLS v1.3-supported cipher suites to the default listener configuration
- Added support for X25519MLKEM768 key encapsulation in TLS v1.3, replacing X25519Kyber768 key encapsulation algorithm
persist
package
-
Added new
@sql:Schema
annotation to define the schema of a entity record in the database. The schema can be defined using the@sql:Schema
annotation as follows:import ballerina/persist.sql; @sql:Schema {value: "my_schema"} type Person record {| readonly int id; string name; string address; |};
The
@sql:Schema
annotation is currently supported for MSSQL and PostgreSQL databases.
Breaking changes
crypto
package
-
Updated the OIDs of Post-Quantum Algorithms
Due to changes in the FIPS standardization of post-quantum algorithms, the OIDs for MLDSA and MLKEM algorithms have been updated. As a result, key pairs generated by the previous version of the crypto package and data encrypted using MLDSA or MLKEM will not be compatible with this release
Bug fixes
To view bug fixes, see the GitHub milestone for Swan Lake Update 12 (2201.12.0).
Developer tools updates
New features
Consolidate-packages tool
-
Introduced the
consolidated-packages
bal tool to generate code required to consolidate multiple Ballerina services into a single executable. -
Simplifies service consolidation to enable monolith-style deployments.
[package] org = "myorg" name = "myapp" version = "0.1.0" [[tool.consolidate-packages]] id = "consolidateSvc" options.services = ["myorg/menu_service", "myorg/order_service"]
Automation tools and CI/CD pipelines can integrate the CLI tool to automatically generate a Ballerina package containing the consolidated services.
-
To install the tool, run:
$ bal tool pull consolidate-packages
-
To create a package, use:
$ bal consolidate-packages new --package-path <path> <comma-separated-list-of-services>
For more information, see consolidate-packages tool.
Persist tool
-
Introduced support to define default schema for all entities in the database using configuration. This is an optional configuration and only supported in MSSQL and PostgreSQL. This can be set in the
Config.toml
file along with other database configurations as follows:[<packageName>.<moduleName>] host = "localhost" port = 5432 user = "postgres" password = "" database = "" defaultSchema = "EMPLOYEE"
The priority order for schema resolution is as follows:
- The schema defined in the model using the
@sql:Schema
annotation. - The default schema specified in the
Config.toml
file. - The default schema of the database.
- The schema defined in the model using the