-
Notifications
You must be signed in to change notification settings - Fork 3
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
V3 casl 658 activitylog migration #403
base: v3
Are you sure you want to change the base?
Conversation
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
…-migration # Conflicts: # here-naksha-handler-activitylog/src/main/java/com/here/naksha/handler/activitylog/ActivityLogHandler.java # here-naksha-handler-activitylog/src/test/java/com/here/naksha/handler/activitylog/assertions/ActivityLogSuccessResultAssertions.java # here-naksha-lib-model/src/commonMain/kotlin/naksha/model/objects/NakshaProperties.kt # here-naksha-lib-model/src/commonMain/kotlin/naksha/model/request/Write.kt
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
This reverts commit e98e748.
Signed-off-by: phmai <[email protected]>
…-migration # Conflicts: # build.gradle.kts
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Code Coverage
Files
|
settings.gradle.kts
Outdated
@@ -4,6 +4,9 @@ pluginManagement { | |||
maven("https://plugins.gradle.org/m2/") | |||
gradlePluginPortal() | |||
} | |||
plugins { | |||
kotlin("jvm") version "2.1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you move it to builSrc/build.gradle.kts? in dependencies section we have configuration of other plugins' versions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
roger that
Signed-off-by: phmai <[email protected]>
Signed-off-by: phmai <[email protected]>
Code Coverage
Files
|
import naksha.base.NullableProperty | ||
import naksha.model.objects.NakshaProperties | ||
|
||
class NakshaActivityLog : AnyObject() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like that you mixed in kotlin for making your life easier!
.toArray(PQuery[]::new); | ||
final ReadFeatures readFeatures = new ReadFeatures(properties.getSpaceId()); | ||
readFeatures.setQueryHistory(true); | ||
readFeatures.setVersions(Integer.MAX_VALUE); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line needs clarification (I think we should ask Alex) - whether the
.withReturnAllVersions(true)
from v2 is equal to .setQueryHistory(true).setVersions(Integere.MAX_VALUE)
.
It's a fair assumption but double-checking wouldn't harm
Code Coverage
Files
|
No description provided.