Skip to content

Commit 9243ed6

Browse files
Mr3zeerenovate[bot]
andcommitted
Dependencies bump (#320)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent d7654ca commit 9243ed6

27 files changed

+86
-67
lines changed

gradle-conventions-settings/develocity/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ configurations.configureEach {
1616

1717
dependencies {
1818
implementation("com.gradle:develocity-gradle-plugin:3.17")
19-
implementation("com.gradle:common-custom-user-data-gradle-plugin:2.1")
19+
implementation("com.gradle:common-custom-user-data-gradle-plugin:2.2.1")
2020
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
distributionBase=GRADLE_USER_HOME
66
distributionPath=wrapper/dists
7-
distributionUrl=https\://packages.jetbrains.team/files/p/krpc/build-deps/distributions/gradle-8.12.1-bin.zip
7+
distributionUrl=https\://packages.jetbrains.team/files/p/krpc/build-deps/distributions/gradle-8.13-bin.zip
88
zipStoreBase=GRADLE_USER_HOME
99
zipStorePath=wrapper/dists

monitor/requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aiohappyeyeballs==2.6.1
2-
aiohttp==3.11.14
2+
aiohttp==3.11.16
33
aiohttp-jinja2==1.6
44
aiosignal==1.3.2
55
anyio==4.9.0
@@ -20,15 +20,15 @@ MarkupSafe==3.0.2
2020
mdit-py-plugins==0.4.2
2121
mdurl==0.1.2
2222
msgpack==1.1.0
23-
multidict==6.1.0
24-
platformdirs==4.3.6
25-
propcache==0.3.0
23+
multidict==6.4.2
24+
platformdirs==4.3.7
25+
propcache==0.3.1
2626
Pygments==2.19.1
27-
rich==13.9.4
27+
rich==14.0.0
2828
sniffio==1.3.1
29-
textual==2.1.2
29+
textual==3.0.1
3030
textual-dev==1.7.0
3131
textual-serve==1.1.1
32-
typing_extensions==4.12.2
32+
typing_extensions==4.13.1
3333
uc-micro-py==1.0.3
34-
yarl==1.18.3
34+
yarl==1.19.0

renovate.json5

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@
5353
],
5454
"enabled": false,
5555
},
56+
{
57+
// Reason: kotlin-dsl updates are to be done manually
58+
"description": "Ignore Kotlin DSL (Gradle) updates",
59+
"matchDepNames": [
60+
"/org.gradle.kotlin:gradle-kotlin-dsl-plugins(:|\\.).*/",
61+
"/org.gradle.kotlin.kotlin-dsl(:|\\.).*/",
62+
],
63+
"enabled": false,
64+
},
5665
{
5766
// Reason: we support java 8, logback 1.4 or later switched to java 11
5867
"description": "Ignore logback in Core",

samples/grpc-app/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
plugins {
66
kotlin("jvm") version "2.1.10"
77
kotlin("plugin.serialization") version "2.1.10"
8-
id("org.jetbrains.kotlinx.rpc.plugin") version "0.5.1-grpc-16"
9-
id("com.google.protobuf") version "0.9.4"
8+
id("org.jetbrains.kotlinx.rpc.plugin") version "0.6.0"
9+
id("com.google.protobuf") version "0.9.5"
1010
}
1111

1212
group = "kotlinx.rpc.sample"
@@ -22,9 +22,9 @@ kotlin {
2222
}
2323

2424
dependencies {
25-
implementation("org.jetbrains.kotlinx:kotlinx-rpc-grpc-core:0.5.1-grpc-16")
26-
implementation("ch.qos.logback:logback-classic:1.5.16")
27-
implementation("io.grpc:grpc-netty:1.69.0")
25+
implementation("org.jetbrains.kotlinx:kotlinx-rpc-grpc-core:0.5.1-grpc-39")
26+
implementation("ch.qos.logback:logback-classic:1.5.18")
27+
implementation("io.grpc:grpc-netty:1.71.0")
2828
}
2929

3030
rpc {
122 Bytes
Binary file not shown.

samples/grpc-app/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
#
2-
# Copyright 2023-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
3-
#
4-
51
distributionBase=GRADLE_USER_HOME
62
distributionPath=wrapper/dists
7-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
84
networkTimeout=10000
95
validateDistributionUrl=true
106
zipStoreBase=GRADLE_USER_HOME

samples/grpc-app/gradlew

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
#!/bin/sh
22

33
#
4-
# Copyright 2023-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
4+
# Copyright © 2015-2021 the original authors.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# https://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
# SPDX-License-Identifier: Apache-2.0
519
#
620

721
##############################################################################
@@ -191,7 +205,7 @@ fi
191205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
192206

193207
# Collect all arguments for the java command:
194-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
195209
# and any embedded shellness will be escaped.
196210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
197211
# treated as '${Hostname}' itself on the command line.

samples/ktor-all-platforms-app/gradle/libs.versions.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
[versions]
22
kotlin = "2.1.20"
33

4-
agp = "8.8.0-alpha05"
4+
agp = "8.9.1"
55
android-compileSdk = "35"
66
android-minSdk = "24"
77
android-targetSdk = "35"
8-
androidx-activityCompose = "1.9.3"
8+
androidx-activityCompose = "1.10.1"
99
androidx-appcompat = "1.7.0"
10-
androidx-constraintlayout = "2.2.0"
11-
androidx-core-ktx = "1.15.0"
10+
androidx-constraintlayout = "2.2.1"
11+
androidx-core-ktx = "1.16.0"
1212
androidx-espresso-core = "3.6.1"
1313
androidx-material = "1.12.0"
1414
androidx-test-junit = "1.2.1"
15-
compose = "1.7.6"
16-
compose-plugin = "1.8.0-alpha01"
15+
compose = "1.7.8"
16+
compose-plugin = "1.8.0-SNAPSHOT+pull-5245"
1717
junit = "4.13.2"
18-
ktor = "3.0.3"
19-
logback = "1.5.16"
20-
serialization = "1.8.0"
21-
coroutines = "1.10.1"
18+
ktor = "3.1.2"
19+
logback = "1.5.18"
20+
serialization = "1.8.1"
21+
coroutines = "1.10.2"
2222
kotlinx-rpc = "0.6.1"
2323

2424
[libraries]
Binary file not shown.

0 commit comments

Comments
 (0)