- 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 9 (2201.9.2)
Swan Lake Update 9 (2201.9.2) is the second patch release of Ballerina 2201.9.0 (Swan Lake Update 9) and it includes a new set of bug fixes to the language server, runtime, library and developer tooling.
Update Ballerina
Run the command below to update your current Ballerina installation directly to 2201.9.2 by using the Ballerina Update Tool.
$ bal dist pull 2201.9.2
Install Ballerina
If you have not installed Ballerina, then, download the installers to install.
Language updates
Bug fixes
To view bug fixes, see the GitHub milestone for Swan Lake Update 9 (2201.9.2).
Runtime updates
Bug fixes
To view bug fixes, see the GitHub milestone for Swan Lake Update 9 (2201.9.2).
Ballerina library updates
Bug fixes
To view bug fixes, see the GitHub milestone for Swan Lake Update 9 (2201.9.2).
Developer tools updates
New features
WSDL tool
Introduced the WSDL CLI tool as an experimental feature that generates Ballerina types from a WSDL file. This tool can be accessed by pulling it from the Ballerina Central and running it with an input WSDL file.
Execute the following command to pull the tool from the Ballerina Central.
$ bal tool pull wsdl
Execute the following command to generate Ballerina types from a WSDL file.
$ bal wsdl -i <FILE_NAME> [--operations <COMMA_SEPARATED_OPERATION_NAMES>] # -i, --input <FILE_NAME> # Input WSDL file from which to generate Ballerina types. # --operations <COMMA_SEPARATED_OPERATION_NAMES> # Optional. Specify the list of operations, for which Ballerina types need to be generated.
Bug fixes
To view bug fixes, see the GitHub milestone for Swan Lake Update 9 (2201.9.2) of the repositories below.
Ballerina packages updates
Improvements
Introduced an experimental build option to enable memory-efficient compilation of package dependencies. This can help prevent out-of-memory issues during the initial compilation with a clean central cache. Pass the flag to the bal
command or specify the build option in the Ballerina.toml
file to enable this experimental feature.
$ bal build --optimize-dependency-compilation
Specifying the build option in the Ballerina.toml
file:
[build-options] optimizeDependencyCompilation = true