Fixes + version

This commit is contained in:
Brage Skjønborg 2026-01-22 03:03:27 +01:00
parent 75acee51fd
commit 5dfa73af08
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ jobs:
pre-check: pre-check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs: outputs:
sharedDefinitions: ${{ steps.filter.outputs.shared }} sharedDefinitions: ${{ steps.filter.outputs.sharedDefinitions }}
shared: ${{ steps.filter.outputs.shared }} shared: ${{ steps.filter.outputs.shared }}
processer: ${{ steps.filter.outputs.processer }} processer: ${{ steps.filter.outputs.processer }}
converter: ${{ steps.filter.outputs.converter }} converter: ${{ steps.filter.outputs.converter }}

View File

@ -1,5 +1,5 @@
[versions] [versions]
eventi = "1.0-rc23" eventi = "1.0-rc24"
exfl = "1.0-rc1" exfl = "1.0-rc1"
[libraries] [libraries]

View File

@ -15,7 +15,7 @@ object EventStore: EventStore {
override fun getPersistedEventsAfter(timestamp: LocalDateTime): List<PersistedEvent> { override fun getPersistedEventsAfter(timestamp: LocalDateTime): List<PersistedEvent> {
val result = withTransaction { val result = withTransaction {
EventsTable.selectAll() EventsTable.selectAll()
.where { EventsTable.persistedAt greater timestamp } .where { EventsTable.persistedAt greaterEq timestamp }
.map { .map {
PersistedEvent( PersistedEvent(
id = it[EventsTable.id].value.toLong(), id = it[EventsTable.id].value.toLong(),