Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
30569e2
update knip
achou11 Jun 19, 2026
7c80196
update typescript-eslint
achou11 Jun 19, 2026
81c5fca
update @tanstack/react-virtual
achou11 Jun 19, 2026
e9f4e7f
update @tanstack/react-router
achou11 Jun 19, 2026
7c4f405
update @comapeo/map-server
achou11 Jun 19, 2026
17ab022
update @comapeo/core
achou11 Jun 19, 2026
5e41e46
update @eslint-react/eslint-plugin
achou11 Jun 22, 2026
86ca752
update knip
achou11 Jun 22, 2026
be22e80
update semver
achou11 Jun 22, 2026
9b353e4
update systeminformation
achou11 Jun 22, 2026
9f640e0
update better-sqlite3
achou11 Jun 22, 2026
595d012
update @eslint-react/eslint-plugin
achou11 Jun 22, 2026
1f5c94f
update typescript-eslint
achou11 Jun 22, 2026
892a7f3
update globals
achou11 Jun 22, 2026
857436b
update knip
achou11 Jun 22, 2026
0f5b4d2
update @comapeo/core-react
achou11 Jun 22, 2026
6dd02fb
update patch name
achou11 Jun 22, 2026
0a1f530
update electron
achou11 Jun 22, 2026
e0565af
replace extract-zip with electron alternative
achou11 Jun 22, 2026
78c1343
update actions
achou11 Jun 22, 2026
3562683
run npm audit fix
achou11 Jun 22, 2026
bfada0d
run npm update
achou11 Jun 22, 2026
0489774
pin typebox version used by @comapeo/map-server
achou11 Jun 22, 2026
7710f1b
remove electron from allowScripts
achou11 Jun 22, 2026
5fab656
update @vitejs/plugin-react
achou11 Jun 23, 2026
2feb012
update vite
achou11 Jun 23, 2026
ce6fcc0
update @mui/material
achou11 Jun 23, 2026
d201cfe
update tanstack query deps
achou11 Jun 23, 2026
cad5b76
update playwright deps
achou11 Jun 24, 2026
b5b96ff
update systeminformation
achou11 Jun 24, 2026
347c822
update knip
achou11 Jun 24, 2026
ddbb066
update electron
achou11 Jun 24, 2026
c3a08da
update sentry deps
achou11 Jun 24, 2026
a69ad84
run npm update
achou11 Jun 24, 2026
a91c163
update @electron-internal/extract-zip
achou11 Jun 24, 2026
7988a6e
package.json cleanup
achou11 Jun 24, 2026
b98faea
update systeminformation
achou11 Jun 25, 2026
d79d775
update @eslint-react/eslint-plugin
achou11 Jun 25, 2026
b103d90
run npm update
achou11 Jun 25, 2026
ba7df9e
update prettier
achou11 Jun 26, 2026
23a4e2b
update knip
achou11 Jun 26, 2026
63f591c
update @eslint-react/eslint-plugin
achou11 Jun 26, 2026
2bd71ad
update formatjs deps
achou11 Jun 26, 2026
3b2ddb2
update @tanstack/react-virtual
achou11 Jun 26, 2026
9f6294b
update tar
achou11 Jun 26, 2026
f45d07d
run npm update
achou11 Jun 26, 2026
caceddb
fix electron node version CI check
achou11 Jun 26, 2026
9854175
maybe fix issue with macos builds creation
achou11 Jun 26, 2026
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
4 changes: 2 additions & 2 deletions .github/workflows/check-pr-to-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

steps:
- name: Checkout necessary files
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
sparse-checkout: |
package.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

Expand All @@ -49,7 +49,7 @@ jobs:
env:
EXPECTED_NODE_VERSION: ${{ steps.setup-node.outputs.node-version }}
run: |
electron_node_version=$(ELECTRON_RUN_AS_NODE=true npx electron -e 'console.log(process.versions.node);')
electron_node_version=$(ELECTRON_RUN_AS_NODE=true npx electron -e 'console.log(process.versions.node);' | tail -n 1)

# Version string from setup-node is prefixed with "v"
if [[ "v$electron_node_version" == "$EXPECTED_NODE_VERSION" ]]
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
outputs:
artifact_id: ${{ steps.upload.outputs.artifact-id }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
ref: ${{ env.COMMIT_SHA }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Checkout repository
env:
BUILD_SHA: ${{ env.BUILD_SHA }}
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
ref: ${{ env.BUILD_SHA }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hotfix-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ env.RELEASE_BRANCH }}
token: ${{ steps.app-token.outputs.token }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lockfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out a copy of the repo
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Check package-lock.json version has not been changed
uses: mansona/npm-lockfile-version@85d9138b7776b4f8f768259f8a3e4f2611457d8f # v1
with:
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out a copy of the repo
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Create GitHub App Token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: app-token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post-release-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event.repository.default_branch }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
token: ${{ steps.app-token.outputs.token }}
sparse-checkout: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ env.TRUNK_BRANCH }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# We keep this aligned with the Node version that comes with Electron

24.15.0
24.17.0
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# We keep this aligned with the Node version that comes with Electron

nodejs 24.15.0
nodejs 24.17.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Go to the [Development](./docs/DEVELOPMENT.md) docs to learn about how the proje

Make sure you have the preferred versions of tooling installed:

- [`NodeJS`](https://nodejs.org): 24.15.0
- [`NodeJS`](https://nodejs.org): 24.17.0
- [`npm`](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm): 11.17.0

1. Clone the repo:
Expand Down
Loading
Loading