Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: dependency upgrades #393

Merged
merged 15 commits into from
Sep 12, 2023
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
2 changes: 1 addition & 1 deletion .release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0-v3-alpha5-b13
1.0-v3-alpha5-b14
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0-v3-alpha5-b13
1.0-v3-alpha5-b14
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Felide-dev%2Fv3.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Felide-dev%2Fv3?ref=badge_shield)
[![Java 20](https://img.shields.io/badge/Java-20-blue.svg?logo=oracle)](https://openjdk.org/projects/jdk/19/)
[![GraalVM](https://img.shields.io/badge/GraalVM-23.x.x-blue.svg?logo=oracle)](https://www.graalvm.org/)
[![Kotlin](https://img.shields.io/badge/Kotlin-1.9.10-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/Kotlin-1.9.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin/JS. IR supported](https://img.shields.io/badge/kotlin-IR-yellow?logo=kotlin&logoColor=yellow)](https://kotl.in/jsirsupported)
[![ECMA](https://img.shields.io/badge/ECMA-2020-blue.svg?logo=javascript)](https://262.ecma-international.org/11.0/)
[![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/7690/badge)](https://bestpractices.coreinfrastructure.org/projects/7690)
Expand Down Expand Up @@ -317,7 +317,7 @@ not need some of these components:

| Status | **Java** | **Kotlin** | **GraalVM** | **Micronaut** | **React** | **Protobuf/gRPC** |
|-----------------------------------------------------------------|-------------|---------------|-------------|---------------|-----------|--------------------|
| ![Status](https://img.shields.io/badge/-experimental-important) | `Java 20` | `1.9.10-wasm` | `23.0.x` | `4.0.x` | `18.x` | `3.21.11`/`1.56.1` |
| ![Status](https://img.shields.io/badge/-experimental-important) | `Java 20` | `1.9.20-Beta` | `23.0.x` | `4.0.x` | `18.x` | `3.21.11`/`1.56.1` |
| ![Status](https://img.shields.io/badge/-tested-success) | `Java 20` | `1.9.10` | `23.0.x` | `3.10.x` | `18.x` | `3.21.11`/`1.56.1` |
| ![Status](https://img.shields.io/badge/-tested-success) | `Java 17` | `1.8.20` | `22.3.x` | `3.9.x` | `18.x` | `3.21.11`/`1.42.0` |
| ![Status](https://img.shields.io/badge/-tested-success) | `Java 11` | `1.7.22` | `22.3.x` | `3.5.x` | `18.x` | `3.20.1`/`1.46.0` |
Expand Down
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ plugins {
jacoco
signing
`project-report`
`embedded-kotlin` apply false
kotlin("multiplatform") apply false

id(libs.plugins.sonar.get().pluginId)
id(libs.plugins.dokka.get().pluginId)
Expand All @@ -41,8 +41,12 @@ plugins {
id(libs.plugins.detekt.get().pluginId)
id(libs.plugins.nexusPublishing.get().pluginId)
alias(libs.plugins.gradle.testretry)
alias(libs.plugins.buildTimeTracker)
alias(libs.plugins.dependencyAnalysis)
alias(libs.plugins.versionCatalogUpdate)
alias(libs.plugins.gradle.checksum)
alias(libs.plugins.spdx.sbom)
alias(libs.plugins.cyclonedx)
alias(libs.plugins.ktlint)
alias(libs.plugins.openrewrite)
alias(libs.plugins.lombok)
Expand Down
11 changes: 5 additions & 6 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
"DSL_SCOPE_VIOLATION",
)

val kotlinVersion = "1.9.10"
val kotlinVersion = "1.9.20-Beta"

plugins {
`kotlin-dsl`
`kotlin-dsl-precompiled-script-plugins`
`embedded-kotlin`
}

val buildDocs by properties
Expand All @@ -45,10 +44,10 @@ dependencies {
implementation(libs.plugin.versionCheck)
implementation(libs.plugin.ksp)
implementation(libs.plugin.kotlinx.abiValidator)
implementation(embeddedKotlin("allopen"))
implementation(embeddedKotlin("noarg"))
implementation(embeddedKotlin("lombok"))
implementation(embeddedKotlin("serialization"))
implementation(kotlin("allopen"))
implementation(kotlin("noarg"))
implementation(kotlin("lombok"))
implementation(kotlin("serialization"))
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-sam-with-receiver")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle-ci.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ org.gradle.jvmargs = -Xmx4096m -XX:MaxMetaspaceSize=1024m
# # Settings: Languages
versions.java.language = 17
versions.ecma.language = v5
versions.kotlin.sdk = 1.9.10
versions.kotlin.sdk = 1.9.20-Beta
versions.kotlin.language = 1.9

# # Settings: Kotlin
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildPlugins = false
buildDocs = false
buildDocsSite = false
buildBenchmarks = false
buildMingw = false
buildMingw = true
buildUuid = false
buildRpc = true
buildSsg = false
Expand Down Expand Up @@ -68,7 +68,7 @@ versions.java.language = 17
versions.java.minimum = 11
versions.java.target = 17
versions.ecma.language = v5
versions.kotlin.sdk = 1.9.10
versions.kotlin.sdk = 1.9.20-Beta
versions.kotlin.language = 1.9
versions.android.sdk.target = 33

Expand All @@ -87,14 +87,14 @@ kotlin.experimental.tryK2 = false
kotlin.mpp.stability.nowarn = true
kotlin.mpp.enableCInteropCommonization = true
kotlin.stdlib.default.dependency = false
kotlin.native.binary.memoryModel = experimental
kotlin.native.ignoreDisabledTargets = true
kotlinx.atomicfu.enableJvmIrTransformation = true
kotlinx.atomicfu.enableJsIrTransformation = true
kotlin.daemon.jvmargs=-Xmx2G -XX:+UseParallelGC
kotlin.compiler.preciseCompilationResultsBackup = true
kotlin.compiler.execution.strategy = daemon
kotlin.compiler.suppressExperimentalICOptimizationsWarning = true
kotlin.mpp.applyDefaultHierarchyTemplate=false

kotlin.build.report.http.include_git_branch.name = true
kotlin.build.report.include_compiler_arguments= true
Expand Down
21 changes: 14 additions & 7 deletions gradle/elide.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
elide = "1.0-v3-alpha4-b12"
elide_plugin = "1.0.0-beta23"
kotlin_sdk = "1.9.10"
kotlin_sdk = "1.9.20-Beta"
kotlin_language = "1.9"
confundus = "1.0.0"
jna = "5.8.0"
ksp = "1.9.10-1.0.13"
ksp = "1.9.20-Beta-1.0.13"
koin = "3.4.3"
koin_ksp = "1.2.2"
graalvm = "23.0.1"
Expand All @@ -28,6 +28,7 @@ testcontainers = "1.17.6"
dependencyAnalysis = "1.21.0"
errorprone = "2.21.1"
jline = "3.23.0"
spdx = "0.2.0"
netty = "4.1.97.Final"
capnproto = "0.1.16"
netty_iouring = "0.0.21.Final"
Expand All @@ -39,7 +40,7 @@ micronaut_plugin = "4.0.3"
compose = "1.5.2"
wasmtime = "0.18.0"
kotlinx_coroutines = "1.7.3"
kotlinx_collections = "0.4-wasm0"
kotlinx_collections = "0.3.5"
kotlinx_datetime = "0.4.1"
kotlinx_serialization = "1.6.0"
atomicfu = "0.22.0"
Expand All @@ -56,8 +57,9 @@ ktlintGradle = "11.5.0"
qodanaGradle = "0.1.13"
pluginPublish = "0.21.0"
pluginProtobuf = "0.9.4"
versionCheck = "0.47.0"
sonar = "4.3.0.3225"
versionCheck = "0.48.0"
versionCatalogUpdate = "0.8.1"
sonar = "4.3.1.3277"
truth = "1.1.5"
soy = "2022-03-07" # next: "2022-07-20"
closure = "v20221004"
Expand All @@ -80,7 +82,7 @@ gauth_plugin = "2.2.0"
kotest = "5.5.4"
kotest_plugin = "0.8.18"
testLoggerPlugin = "3.2.0"
elide_uuid = "0.9.10"
elide_uuid = "1.9.20-Beta-0.9.21"
guava = "32.1.1-jre"
gax = "2.31.1"
mosaic = "0.9.0"
Expand Down Expand Up @@ -197,7 +199,6 @@ auto_common = "1.2.2"
auto_service = "1.1.1"
auto_factory = "1.0.1"
auto_value = "1.10.1"
kotter = "1.0.0"
pluginBuf = "0.8.5"
lmaxDisruptor = "3.4.4"
lmaxDisruptorProxy = "2.0.7"
Expand All @@ -213,6 +214,8 @@ gradleChecksum = "1.4.0"
gradleTestRetry = "1.5.4"
lombok = "8.3"
jetbrains_annotations = "24.0.1"
buildTimeTracker = "4.3.0"
cyclonedx = "1.7.4"

[plugins]
elide = { id = "dev.elide.buildtools.plugin", version.ref = "elide_plugin" }
Expand Down Expand Up @@ -267,6 +270,10 @@ gradle_commonCustomUserData = { id = "com.gradle.common-custom-user-data-gradle-
gradle_checksum = { id = "org.gradle.crypto.checksum", version.ref = "gradleChecksum" }
gradle_testretry = { id = "org.gradle.test-retry", version.ref = "gradleTestRetry" }
sigstore = { id = "dev.sigstore.sign", version.ref = "sigstore" }
versionCatalogUpdate = { id = "nl.littlerobots.version-catalog-update", version.ref = "versionCatalogUpdate" }
buildTimeTracker = { id = "com.asarkar.gradle.build-time-tracker", version.ref = "buildTimeTracker" }
spdx_sbom = { id = "org.spdx.sbom", version.ref = "spdx" }
cyclonedx = { id = "org.cyclonedx.bom", version.ref = "cyclonedx" }

[libraries]
jetbrains_annotations = { group = "org.jetbrains", name = "annotations", version.ref = "jetbrains_annotations" }
Expand Down
Binary file modified gradle/verification-keyring.gpg
Binary file not shown.
Loading
Loading