Skip to content

Commit

Permalink
feat(3322): bump tb from 0.15.4 to 0.16.29
Browse files Browse the repository at this point in the history
  • Loading branch information
koekiebox committed Feb 27, 2025
1 parent b02616e commit b1757f7
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 56 deletions.
2 changes: 1 addition & 1 deletion infrastructure/helm/tigerbeetle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ statefulset:
repository: ghcr.io/tigerbeetle/tigerbeetle
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "0.15.4"
tag: "0.16.29"

proxyImage:
repository: nginx
Expand Down
2 changes: 1 addition & 1 deletion localenv/tigerbeetle/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
tigerbeetle:
image: ghcr.io/tigerbeetle/tigerbeetle:0.15.4
image: ghcr.io/tigerbeetle/tigerbeetle:0.16.29
privileged: true
volumes:
- tigerbeetle-data:/var/lib/tigerbeetle
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"pg": "^8.11.3",
"pino": "^8.19.0",
"raw-body": "^2.5.2",
"tigerbeetle-node": "0.15.4",
"tigerbeetle-node": "0.16.29",
"token-introspection": "workspace:*",
"uuid": "^9.0.1"
}
Expand Down
6 changes: 5 additions & 1 deletion packages/backend/src/accounting/tigerbeetle/transfers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ export async function getAccountTransfers(
timestamp_min: 0n,
timestamp_max: 0n,
limit,
flags: AccountFilterFlags.credits | AccountFilterFlags.debits
flags: AccountFilterFlags.credits | AccountFilterFlags.debits,
code: 0, //disabled
user_data_32: 0, //disabled
user_data_64: 0n, //disabled
user_data_128: 0n //disabled
}
const tbAccountTransfers: TbTransfer[] =
await deps.tigerBeetle.getAccountTransfers(filter)
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/tests/tigerbeetle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function startTigerBeetleContainer(clusterId?: number): Promise<{
const tigerBeetleClusterId = clusterId || Config.tigerBeetleClusterId
const { name: tigerBeetleDir } = tmp.dirSync({ unsafeCleanup: true })
const tigerBeetleFile = `cluster_${tigerBeetleClusterId}_replica_0_test.tigerbeetle`
const tigerBeetleContainerVersion = 'ghcr.io/tigerbeetle/tigerbeetle:0.15.4'
const tigerBeetleContainerVersion = 'ghcr.io/tigerbeetle/tigerbeetle:0.16.29'

const tbContFormat = await new GenericContainer(tigerBeetleContainerVersion)
.withExposedPorts(TIGERBEETLE_PORT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ services:
- '3005:3005'

tigerbeetle:
image: ghcr.io/tigerbeetle/tigerbeetle:0.15.4
image: ghcr.io/tigerbeetle/tigerbeetle:0.16.29
privileged: true
volumes:
- tigerbeetle-data:/var/lib/tigerbeetle
Expand Down
Loading

0 comments on commit b1757f7

Please sign in to comment.