ballerina-lang icon indicating copy to clipboard operation
ballerina-lang copied to clipboard

The Ballerina Programming Language

Results 632 ballerina-lang issues
Sort by recently updated
recently updated
newest added

```ballerina import ballerina/io; public function main() { io:println(1f === 1d); } ``` Above program prints `true` in 2201.2.3 but `false` in `2201.3.0`. In `2201.3.0`, value is equivalent to `1.0d`.

Type/Bug
Type/SpecDeviation
Team/jBallerina

**Description:** $title. Works if the logic is extracted out to a function. **Steps to reproduce:** ```ballerina import ballerina/io; type Employee record {| string name; decimal salary; |}; function filterEmployees(Employee[] employees,...

Type/Bug
Area/UnitTest
Team/CompilerFE

I followed the steps from the repo's README.md to build on Windows. I'm using latest version of JDK 8. I get three test failures all in ballerina-toml-parser-test-suite: 1. ManifestProcessorTest. testMultipleDependencies...

Type/Bug
Type/TestFailure
Team/DevTools
Points/2
Area/TOMLParser

**Description:** The following test cases are failing in Windows. Failing with error `java.lang.NumberFormatException: For input string: "sers"` - org.ballerinalang.toml.ManifestProcessorTest > testMultipleDependencies - org.ballerinalang.toml.ManifestProcessorTest > testSingleDependencies These two are failing because...

Type/Bug
Type/TestFailure
Team/DevTools
Area/TOMLParser

Decided to check the feasibility of $subject by following the below steps. - Keep track of langlibs being used from source - Keep map of transitive depencies - Update dependency...

Type/Improvement
Team/CompilerFE

### Description $subject. Noticed :jballerina-debugger-integration-test:test failure in master quite frequently in recent times. Has to trigger the builds mutiple times to get the build passed. Sample: https://github.com/ballerina-platform/ballerina-lang/actions/runs/6859271233/job/18651316246?pr=41683 1. ``` debugger-intg-test-suite...

Type/Bug
Priority/High
Area/Debugger
Type/TestFailure
Team/DevTools

### Description The trivy scanner identified the following security vulnerabilities for the Ballerina 1.2.45 release build. ![image](https://github.com/ballerina-platform/ballerina-lang/assets/39415471/f7dd2d62-f9a7-4415-8fdf-b9677490bba7) `CVE-2021-38153` - from kafka-clients-2.3.1.jar and kafka_2.11-2.3.1.jar is fixed by https://github.com/ballerina-platform/ballerina-lang/pull/41595 and need to...

Type/Bug

Let say the below code is in a separate module. ```ballerina public type Error1 distinct error; type Error2 distinct error; type NonPublicError int|Error2; public function getValueOrError4() returns NonPublicError|Error1 => 1;...

Type/Bug
Team/LanguageServer

### Description Implement a new code action `Add arguments to match "functionName(param1, param2)"` to insert default values for any missing arguments. This is similar to the `Fill "RecordName" required fields`...

Type/NewFeature
Priority/Low
Team/LanguageServer
Area/CodeAction