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: Release/v2.0.4 #5636

Merged
merged 23 commits into from
Jul 4, 2024
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e249f5d
fix: 'fetch' operation for parallel steps (#5615)
rangoo94 Jun 27, 2024
f994ef3
whitelist containers for which logs should be extracted (#5612)
dejanzele Jun 27, 2024
4b47821
build(deps): bump amannn/action-semantic-pull-request
dependabot[bot] Jun 28, 2024
bd6de5b
feat: improved debug cmd (#5617)
exu Jun 28, 2024
7b2ad57
fix: (TKC-2164) valid container executor exit code handling (#5614)
exu Jul 2, 2024
b343903
feat: check for test workflow execution for execute action
vsukhin Jun 26, 2024
acb57f0
fix: add extended model
vsukhin Jun 26, 2024
e3f8a56
feat: queued cd event for test workflow
vsukhin Jun 27, 2024
cc70b45
feat: start event for test workflow
vsukhin Jun 27, 2024
becb554
feat: finish cd event for test workflow
vsukhin Jun 27, 2024
667ed79
feat: log cd event for test workflow
vsukhin Jun 27, 2024
d7903fe
feat: cd event test workflow atifact
vsukhin Jun 28, 2024
8778b28
feat: unit tests for cd events mapper test workflows
vsukhin Jul 1, 2024
8f14515
fix: rename field
vsukhin Jul 1, 2024
21fe239
fix: integration test
vsukhin Jul 1, 2024
1444718
fix: unmarshaling typo
vsukhin Jul 2, 2024
79bddc4
fix: error handling when creating TW (#5631)
exu Jul 3, 2024
811d1b7
fix: user friendly oss error
vsukhin Jul 2, 2024
8141bad
fix: add comment
vsukhin Jul 2, 2024
a01b222
fix: paarse error message
vsukhin Jul 3, 2024
678df05
Update CODEOWNERS
ed382 Jul 4, 2024
5597434
fix: Conflicting KV create (#5635)
exu Jul 4, 2024
7da22fd
Merge branch 'main' into develop
vsukhin Jul 4, 2024
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 cmd/logs-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func main() {
log.Warnw("error setting expiration policy", "error", err)
}

kv := Must(js.CreateKeyValue(ctx, jetstream.KeyValueConfig{Bucket: cfg.KVBucketName}))
kv := Must(js.CreateOrUpdateKeyValue(ctx, jetstream.KeyValueConfig{Bucket: cfg.KVBucketName}))
state := state.NewState(kv)

svc := logs.NewLogsService(nc, js, state, logStream).
Expand Down
Loading