Skip to content

Tags: aep/apogy

Tags

v0.0.21

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
oops

v0.0.20

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
allow concurrent delete

v0.0.19

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
reduce mut contention with a pessimistic lock

v0.0.18

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
delete reconciler needs to run before commit

thats because it needs to be able to prevent a resource from being
deleted if cleanup fails

v0.0.17

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
accept document mutation from validator

v0.0.16

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
https to reactors

v0.0.15

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
https to reactors

v0.0.14

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
implement skip filter

this allows using keys like a directory listing.

    apogy q 'ixeri.Object(val.path^"/foo/bar")'

would normally list all keys with that prefix, i.e. "recursive" ls

    apogy q 'ixeri.Object(val.path^"/foo/bar"$"/")'

will stop scanning after /foo/bar/aaa/something/deep and restart the
scan with /foo/bar/aab , ignoring any key that was "deeper" inbetween

v0.0.13

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
health and stats endpoint

v0.0.12

Verified

This commit was signed with the committer’s verified signature.
aep Arvid E. Picciani
fix limits in Query

forgot counting the limit in the query response loop, causing Query to
loop indefinately with limit = 1