Skip to content

feat: fix backward compatibility pg 14 for postgres trigger #5851

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0c8076a
remove macro query when interacting with remote db
dieriba May 8, 2025
b3ca9ec
Merge branch 'main' into dieri/fix-backward-compatibility-pg-14-for-p…
dieriba May 8, 2025
5d9c283
fix compatibility and nits
dieriba May 9, 2025
c1ad8fb
Merge branch 'main' into dieri/fix-backward-compatibility-pg-14-for-p…
dieriba May 9, 2025
c212a3a
fix bug save for publication tracking all table
dieriba May 9, 2025
24dcf39
fix infinite loop svelte 5
dieriba May 9, 2025
8c4e301
nits on (gcp/postgres) trigger+ refactor on postgres trigger
dieriba May 9, 2025
2e06438
update .sqlx
dieriba May 9, 2025
7d7c510
update repo ref
dieriba May 9, 2025
f0b37df
uodate repo ref
dieriba May 10, 2025
d818bd8
fix
dieriba May 11, 2025
34a301b
fix
dieriba May 11, 2025
90eb073
nits + extend postgres capture
dieriba May 11, 2025
903564e
fix import gcp
dieriba May 11, 2025
843e56d
Merge branch 'main' into dieri/fix-backward-compatibility-pg-14-for-p…
dieriba May 11, 2025
ae97f28
fix reactivity issue
dieriba May 11, 2025
f39b0a8
add postgres transaction for successive write operation
dieriba May 12, 2025
b7a4cd0
fix isValid state edge cases
dieriba May 12, 2025
8fb7f76
fix reorder transaction
dieriba May 12, 2025
11fc085
reorder transaction
dieriba May 12, 2025
fa01b96
remove unused import
dieriba May 12, 2025
88d4cfa
update test connection
dieriba May 12, 2025
a935d3f
Merge branch 'main' into dieri/fix-backward-compatibility-pg-14-for-p…
dieriba May 24, 2025
bc24bcf
add missing props
dieriba May 24, 2025
35729b0
fix import/bugs and nits
dieriba May 24, 2025
a9fce53
Merge branch 'main' into dieri/fix-backward-compatibility-pg-14-for-p…
dieriba Jun 1, 2025
da0a50a
nits and fix small bugs
dieriba Jun 1, 2025
75c6b37
add missing colon
dieriba Jun 1, 2025
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

3 changes: 2 additions & 1 deletion backend/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
"remote.autoForwardPorts": true,
"conventionalCommits.scopes": [
"restructring triggers, decoding trigger message on work"
]
],
"rust-analyzer.cargo.features": ["postgres_trigger"]
}
2 changes: 1 addition & 1 deletion backend/ee-repo-ref.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8a2506e86b923c00522cb83b052586f705f7aa8e
8a2506e86b923c00522cb83b052586f705f7aa8e
17 changes: 17 additions & 0 deletions backend/windmill-api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9821,6 +9821,23 @@ paths:
items:
type: string

/w/{workspace}/postgres_triggers/postgres/version/{path}:
get:
summary: get postgres version
operationId: getPostgresVersion
tags:
- postgres_trigger
parameters:
- $ref: "#/components/parameters/WorkspaceId"
- $ref: "#/components/parameters/Path"
responses:
"200":
description: postgres version
content:
application/json:
schema:
type: string

/w/{workspace}/postgres_triggers/is_valid_postgres_configuration/{path}:
get:
summary: check if postgres configuration is set to logical
Expand Down
Loading