Alina Dolgikh [JB]
Matt Robertson
08/22/2024, 4:42 PMSupport for UUIDs has been added to the common Kotlin Standard Libraryππ»
eygraber
08/22/2024, 6:11 PMThe @ExperimentalWasmDsl annotation in Kotlin/Wasm has a new location
How is this a highlight? What benefit is there to this? To me all it means is that instead of a simple update I now have to change an import in 20 different projects in order to update to 2.0.20
Stefan Oltmann
08/22/2024, 8:33 PMeygraber
08/22/2024, 8:34 PMlouiscad
08/22/2024, 10:29 PMeygraber
08/22/2024, 10:31 PMSabeeh
08/23/2024, 6:04 AMeygraber
08/23/2024, 6:07 AMallWarningsAsErrors
enabled, which fails my build.Stefan Oltmann
08/23/2024, 6:11 AMMervyn McCreight
08/23/2024, 10:35 PMeygraber
08/23/2024, 11:08 PMNorbi
08/24/2024, 11:51 AMGilles Barbier
08/26/2024, 10:39 AMRequired version must not be null
(after PublishToMavenLocal
) from the POM file. Here is the diff for the generated pom file - with the 2.0.10 version I had:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>2.0.10</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Now when compiling with 2.0.20 I have (triggering the Required version must not be null
error)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>2.0.20</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Ivan Kubyshkin [JetBrains]
08/28/2024, 8:59 AMGilles Barbier
08/29/2024, 9:07 AMCies
09/04/2024, 11:51 AM