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(deps): Bump io.arrow-kt:arrow-fx-coroutines from 1.2.4 to 2.0.0 #1280

Merged
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 build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ subprojects {
implementation("com.apicatalog:titanium-json-ld:1.4.1")
implementation("org.glassfish:jakarta.json:2.0.1")

implementation("io.arrow-kt:arrow-fx-coroutines:1.2.4")
implementation("io.arrow-kt:arrow-fx-coroutines:2.0.0")

implementation("org.locationtech.jts.io:jts-io-common:1.20.0")

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.egm.stellio.search.authorization.web

import arrow.core.computations.ResultEffect.bind
import arrow.core.left
import arrow.core.raise.either
import com.egm.stellio.search.authorization.service.AuthorizationService
Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
testFixturesImplementation("org.springframework.security:spring-security-oauth2-jose")
testFixturesImplementation("org.springframework.security:spring-security-test")
testFixturesImplementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
testFixturesImplementation("io.arrow-kt:arrow-fx-coroutines:1.2.4")
testFixturesImplementation("io.arrow-kt:arrow-fx-coroutines:2.0.0")
testFixturesImplementation("org.springframework.boot:spring-boot-starter-test") {
// to ensure we are using mocks and spies from springmockk lib instead
exclude(module = "mockito-core")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.egm.stellio.shared.model

import arrow.core.Either
import arrow.core.left
import arrow.core.mapNotNull
import arrow.core.mapValuesNotNull
import arrow.core.right
import com.egm.stellio.shared.util.JsonLdUtils
import com.egm.stellio.shared.util.JsonLdUtils.JSONLD_CONTEXT
Expand Down Expand Up @@ -102,7 +102,7 @@ data class ExpandedEntity(
members.filterKeys {
includedAttributes.isEmpty() ||
JSONLD_EXPANDED_ENTITY_CORE_MEMBERS.plus(includedAttributes).contains(it)
}.mapNotNull { entry ->
}.mapValuesNotNull { entry ->
if (entry.key in JSONLD_EXPANDED_ENTITY_CORE_MEMBERS)
entry.value
else (entry.value as ExpandedAttributeInstances).filter { expandedAttributeInstance ->
Expand Down
Loading