Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
3bda78f
Add support for incrementing version number
na-ka-na May 13, 2025
011e3a3
Update README
na-ka-na Jun 11, 2025
9b88963
feat: WIP
mscottx88 Jun 18, 2025
77237a5
feat: WIP
Jun 24, 2025
710731a
feat: WIP
Jun 24, 2025
aa2a651
feat: WIP
Jun 24, 2025
83b9aea
feat: wip
Jun 24, 2025
627e1c4
feat: fixes
Jun 26, 2025
e5d8e41
Update versioning section in the README with actual subscriptions tab…
na-ka-na Jun 26, 2025
da0dafa
feat: tests overhaul WIP
Jun 27, 2025
1705e31
feat: formatting
Jun 27, 2025
43ebcd9
feat: WIP
Jun 27, 2025
a5b09f4
feat: wip
Jun 27, 2025
06956b4
feat: WIP
Jun 27, 2025
9225573
feat: wip
Jun 27, 2025
195e63b
feat: actions
Jun 27, 2025
99d7b57
feat: fix test runner
Jun 30, 2025
5eecb59
feat: fix scripts
Jun 30, 2025
0611a2b
feat: keep it DRY
Jun 30, 2025
db684ee
feat: server versions
Jun 30, 2025
9fe51d4
feat: server versions
Jun 30, 2025
ffc0548
Add tests for increment version
na-ka-na Jun 30, 2025
b432ba8
feat: wip
Jun 30, 2025
c5d844e
feat: wip
Jun 30, 2025
3ff101b
feat: wip
Jun 30, 2025
7ff495e
feat: docs
Jun 30, 2025
fe3f532
Merge commit '08fff5de0f2f2618917f00e05b105dd0ffe5d6d9' into feature/…
Jul 1, 2025
81d95bd
feat: docs
Jul 1, 2025
452d7ed
feat: lint
Jul 1, 2025
03631bc
feat: comparison reports
Jul 2, 2025
b3e3300
feat: wip
Jul 2, 2025
0a880c1
feat: tests
Jul 2, 2025
6cd52ce
Merge branch 'master' of https://github.com/na-ka-na/temporal_tables
Jul 2, 2025
6eda315
chore: revert
Jul 2, 2025
e659a8a
chore: revert
Jul 2, 2025
b085f74
chore: cleanup
Jul 2, 2025
73f990a
feat: docs
Jul 2, 2025
f8b2163
chore: revert
Jul 2, 2025
3152d31
Merge branch 'master' of https://github.com/nearform/temporal_tables
Jul 10, 2025
3786584
Merge branch 'master' into feature/static-trigger-generator
Jul 10, 2025
bd346ae
feat: wip
Jul 11, 2025
489ff3c
feat: wip
Jul 11, 2025
f8e0a22
feat: wip
Jul 12, 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
5 changes: 5 additions & 0 deletions .commitlintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"@commitlint/config-conventional"
]
}
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 2
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

strategy:
matrix:
pg: ["postgres:9.5-alpine", "postgres:9.6-alpine", "postgres:10-alpine", "postgres:11-alpine", "postgres:12-alpine", "postgres:13-alpine", "postgres:14-alpine", "postgres:15-alpine", "postgres:16-alpine", "postgres:17-alpine"]
pg: ["postgres:13-alpine", "postgres:14-alpine", "postgres:15-alpine", "postgres:16-alpine", "postgres:17-alpine"]

steps:
- uses: actions/checkout@v4
Expand All @@ -41,3 +41,11 @@ jobs:
- name: Run tests no check
run: |
make run_test_nochecks

- name: Run Node.js e2e Tests
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run build --if-present
- run: npm run test:e2e:runner
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
test/result
.env
.envrc
.eslintcache
test/remote_expected
test/remote_sql
test/remote_result
node_modules
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/*
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"semi": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none"
}
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Test File w/ ts-node",
"protocol": "inspector",
"runtimeArgs": ["--loader", "ts-node/esm/transpile-only", "--test"],
"args": ["${relativeFile}"],
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart",
"envFile": "${workspaceRoot}/.env",
"skipFiles": [
"${workspaceRoot}/../../node_modules/**/*",
"<node_internals>/**/*"
],
"windows": {
"skipFiles": ["C:\\**\\node_modules\\**\\*", "<node_internals>/**/*"]
},
"disableOptimisticBPs": true
}
]
}
Loading