Skip to content

Commit 2acde12

Browse files
committed
chore: 升级依赖
1 parent 3a33db0 commit 2acde12

File tree

9 files changed

+26
-19
lines changed

9 files changed

+26
-19
lines changed

core/src/main/kotlin/io/github/shoaky/sourcedownloader/repo/exposed/ExposedProcessingStorage.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ class ExposedProcessingStorage : ProcessingStorage {
185185
val ids = paths.map { it.toString() }
186186
return transaction {
187187
val existingIds = TargetPaths
188-
.select { TargetPaths.id inList ids and (TargetPaths.itemHashing neq excludedItemHashing) }
188+
.selectAll().where {
189+
TargetPaths.id inList ids and (TargetPaths.itemHashing neq excludedItemHashing)
190+
}
189191
.map { it[TargetPaths.id].value }
190192
.toSet()
191193
ids.map { existingIds.contains(it) }

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
kapt.use.k2=true
1+
#kapt.use.k2=true

gradle/libs.versions.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
[versions]
2-
spring-boot = "3.3.0"
3-
guava = "33.2.0-jre"
4-
commons-lang3 = "3.14.0"
5-
cel = "0.4.4"
6-
kotlinx-coroutines = "1.8.1"
7-
kotlin = "2.0.0"
2+
spring-boot = "3.3.4"
3+
guava = "33.3.1-jre"
4+
commons-lang3 = "3.17.0"
5+
cel = "0.5.1"
6+
kotlinx-coroutines = "1.9.0"
7+
kotlin = "2.0.20"
88
graalvm-plugin = "0.10.2"
9-
graalvm = "24.0.1"
10-
sqlite = "3.46.0.0"
9+
graalvm = "24.1.0"
10+
sqlite = "3.46.1.3"
1111
commons-collections4 = "4.4"
12-
axion-release = "1.17.2"
12+
axion-release = "1.18.11"
1313
zxing = "3.5.3"
1414
telegram4j = "0.1.0-SNAPSHOT"
15-
rssreader = "3.7.0"
15+
rssreader = "3.8.2"
1616
anitomyJ = "0.0.7"
1717
atomashpolskiy-bt = "1.10"
1818
tika = "2.9.2"
19-
jsoup = "1.17.2"
20-
exposed = "0.51.1"
19+
jsoup = "1.18.1"
20+
exposed = "0.55.0"
2121
protobuf = "3.25.2"
2222
dokka = "1.9.20"
2323
springdocs = "2.5.0"
2424
therapi-javadoc = "0.15.0"
2525
json-path = "2.9.0"
2626
fuzzywuzzy = "1.4.0"
27-
gradle-git-properties = "2.4.1"
27+
gradle-git-properties = "2.4.2"
2828
commons-text = "1.12.0"
2929

3030
[libraries]

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

plugins/common-plugin/src/main/kotlin/io/github/shoaky/sourcedownloader/common/anime/AnimeVariableProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ private class TitleScore(
219219

220220
private val log = LoggerFactory.getLogger(AnimeVariableProvider::class.java)
221221

222-
internal data class Anime(
222+
data class Anime(
223223
val romajiName: String? = null,
224224
val nativeName: String? = null
225225
) : PatternVariables

sdk/src/main/kotlin/io/github/shoaky/sourcedownloader/sdk/component/ComponentRule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import kotlin.reflect.KClass
44
import kotlin.reflect.full.isSuperclassOf
55

66
@Suppress("UNUSED")
7-
data class ComponentRule internal constructor(
7+
data class ComponentRule(
88
val isAllow: Boolean,
99
val type: ComponentTopType,
1010
val value: KClass<out SdComponent>

0 commit comments

Comments
 (0)