Skip to content

Commit

Permalink
Bump io.arrow-kt:arrow-core from 1.2.4 to 2.0.1
Browse files Browse the repository at this point in the history
Bumps [io.arrow-kt:arrow-core](https://github.com/arrow-kt/arrow) from 1.2.4 to 2.0.1.
- [Release notes](https://github.com/arrow-kt/arrow/releases)
- [Changelog](https://github.com/arrow-kt/arrow/blob/main/RELEASE.md)
- [Commits](arrow-kt/arrow@1.2.4...2.0.1)

---
updated-dependencies:
- dependency-name: io.arrow-kt:arrow-core
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 27, 2025
1 parent 163a9cb commit b81f6b0
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion auth-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation(project(":json"))
implementation(project(":logging"))

implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:$kotlinxCoroutinesVersion")

// Caching
Expand Down
2 changes: 1 addition & 1 deletion auth-ktor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
api(project(":ktor-common"))
api(project(":logging"))

implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")

// Vi ønsker at konsumentene bruker sine egne versjoner av ktor
compileOnly("io.ktor:ktor-server-core:$ktorVersion")
Expand Down
2 changes: 1 addition & 1 deletion auth-test-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
api(project(":test-common"))
api(project(":auth-core"))

api("io.arrow-kt:arrow-core:1.2.4")
api("io.arrow-kt:arrow-core:2.0.1")

// Auth
api("com.auth0:java-jwt:4.4.0")
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
implementation(project(":periodisering"))
implementation(project(":logging"))
implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
implementation("com.aallam.ulid:ulid-kotlin:1.3.0")

Expand Down
2 changes: 1 addition & 1 deletion jobber/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dependencies {
implementation(project(":logging"))
implementation(project(":json"))

implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")
implementation("org.jetbrains.kotlinx:atomicfu:0.27.0")

testImplementation(project(":test-common"))
Expand Down
2 changes: 1 addition & 1 deletion ktor-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation(project(":logging"))
implementation(project(":json"))

implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")

// Vi ønsker at konsumentene bruker sine egne versjoner av ktor
compileOnly("io.ktor:ktor-server-core:$ktorVersion")
Expand Down
2 changes: 1 addition & 1 deletion ktor-test-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
implementation(project(":auth-ktor"))
implementation(project(":auth-test-core"))

implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")

// Vi ønsker at konsumentene bruker sine egne versjoner av ktor
compileOnly("io.ktor:ktor-server-core:$ktorVersion")
Expand Down
2 changes: 1 addition & 1 deletion persistering/persistering-domene/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
implementation(project(":logging"))
implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")

testImplementation(project(":test-common"))
Expand Down
2 changes: 1 addition & 1 deletion persistering/persistering-infrastruktur/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation(project(":logging"))
implementation(project(":json"))
implementation(project(":persistering:persistering-domene"))
implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
implementation("com.github.seratch:kotliquery:1.9.1")

Expand Down
2 changes: 1 addition & 1 deletion personklient/personklient-domene/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
implementation(project(":common"))
implementation(project(":person-dtos"))
implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")
}

tasks.withType<Jar> {
Expand Down
2 changes: 1 addition & 1 deletion personklient/personklient-infrastruktur/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
implementation(project(":common"))
implementation(project(":personklient:personklient-domene"))

implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")

Expand Down
2 changes: 1 addition & 1 deletion test-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
api(project(":common"))
api(project(":persistering:persistering-domene"))

api("io.arrow-kt:arrow-core:1.2.4")
api("io.arrow-kt:arrow-core:2.0.1")

api("io.kotest:kotest-assertions-core:$kotestVersion")
api("io.kotest:kotest-assertions-json:$kotestVersion")
Expand Down
2 changes: 1 addition & 1 deletion tiltak-dtos/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
implementation("io.arrow-kt:arrow-core:1.2.4")
implementation("io.arrow-kt:arrow-core:2.0.1")
}

0 comments on commit b81f6b0

Please sign in to comment.