Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0e1603c
first change to libsql
Lokowitz Oct 20, 2025
000d6ad
Merge remote-tracking branch 'upstream/dev' into db-switch
Lokowitz Oct 21, 2025
acf23cc
merge upstream
Lokowitz Oct 21, 2025
d20dead
add local test
Lokowitz Oct 21, 2025
ac04eec
migrations
Lokowitz Oct 21, 2025
fcad3a1
set min version to 1.11.2
Lokowitz Oct 21, 2025
80be0da
test
Lokowitz Oct 21, 2025
7755334
Merge remote-tracking branch 'upstream/main' into db-switch
Lokowitz Oct 21, 2025
3555a20
merge main
Lokowitz Oct 21, 2025
c751929
more logs in migration
Lokowitz Oct 21, 2025
6fe5916
update version
Lokowitz Oct 21, 2025
1d25812
updatre const
Lokowitz Oct 21, 2025
779f0d3
fix typo
Lokowitz Oct 21, 2025
ab98944
fix migration check
Lokowitz Oct 21, 2025
d9e1739
Fix zod test (#416)
Lokowitz Oct 21, 2025
568e98f
Merge remote-tracking branch 'origin/db-switch' into test-with-all-up…
Lokowitz Oct 21, 2025
f7b1312
update package
Lokowitz Oct 21, 2025
e18a968
update all to latest
Lokowitz Oct 21, 2025
d8bb74e
update node to 24 and go version to 1.25
Lokowitz Oct 21, 2025
de97ab6
removed override
Lokowitz Oct 21, 2025
1be2498
update packages
Lokowitz Oct 22, 2025
914866c
Merge remote-tracking branch 'upstream/dev' into test-with-all-updates
Lokowitz Oct 23, 2025
1c2039e
update packages
Lokowitz Oct 23, 2025
bcfe24e
Merge remote-tracking branch 'upstream/dev' into test-with-all-updates
Lokowitz Oct 24, 2025
4124f63
update packages
Lokowitz Oct 24, 2025
d794b65
Merge remote-tracking branch 'upstream/dev' into test-with-all-updates
Lokowitz Oct 25, 2025
2299645
update packages
Lokowitz Oct 25, 2025
8d5d55d
Merge remote-tracking branch 'upstream/dev' into test-with-all-updates
Lokowitz Oct 26, 2025
77c8af8
remove old sqlite migration
Lokowitz Oct 26, 2025
58364fd
move to version 1.12.0
Lokowitz Oct 26, 2025
10881b0
more zod upgrade
Lokowitz Oct 26, 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
14 changes: 2 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,9 @@ updates:
schedule:
interval: "daily"
groups:
dev-patch-updates:
dependency-type: "development"
patch-updates:
update-types:
- "patch"
dev-minor-updates:
dependency-type: "development"
minor-updates:
update-types:
- "minor"
prod-patch-updates:
dependency-type: "production"
update-types:
- "patch"
prod-minor-updates:
dependency-type: "production"
update-types:
- "minor"
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: 1.24
go-version: 1.25

- name: Update version in package.json
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: '22'
node-version: 24

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: '22'
node-version: 24

- name: Copy config file
run: cp config/config.example.yml config/config.yml
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine AS builder
FROM node:24-alpine AS builder

WORKDIR /app

Expand Down Expand Up @@ -40,7 +40,7 @@ RUN test -f dist/server.mjs

RUN npm run build:cli

FROM node:22-alpine AS runner
FROM node:24-alpine AS runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine
FROM node:24-alpine

WORKDIR /app

Expand Down
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,13 @@ test:

clean:
docker rmi pangolin

test-local:
cp config/config.example.yml config/config.yml
npm run set:oss
npm run set:sqlite
npm run db:sqlite:generate
npm run db:sqlite:push
- npx tsc --noEmit
- docker build --build-arg DATABASE=pg -t fosrl/pangolin:postgresql-latest .
- docker build --build-arg DATABASE=sqlite -t fosrl/pangolin:latest .
2 changes: 1 addition & 1 deletion esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ esbuild
}),
],
sourcemap: "inline",
target: "node22",
target: "node24",
})
.then((result) => {
// Check if there were any errors in the build result
Expand Down
2 changes: 1 addition & 1 deletion install/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module installer

go 1.24.0
go 1.25

require (
golang.org/x/term v0.36.0
Expand Down
Loading
Loading