Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install npm
uses: actions/setup-node@v6
with:
node-version: 24.14.0
node-version: 24.15.0
- run: |
npm ci
working-directory: web
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install npm
uses: actions/setup-node@v6
with:
node-version: 24.14.0
node-version: 24.15.0
- name: Run Semantic Release
run: |
uvx python-semantic-release version
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ services:
condition: service_healthy

web:
image: node:24.14.0
image: node:24.15.0
command: ["sh", "-c", "npm install && npm run serve -- --host 0.0.0.0"]
working_dir: /web
volumes:
Expand Down
26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@ license-files = ["LICENSE", "NOTICE"]
classifiers = ["Private :: Do Not Upload"]
dependencies = [
# Runtime dependencies, always needed
"celery==5.6.2",
"celery==5.6.3",
"channels-redis==4.3.0",
"channels[daphne]==4.3.2",
"django[argon2]==6.0.3",
"django-allauth==65.15.0",
"django[argon2]==6.0.4",
"django-allauth==65.16.0",
"django-auth-style==0.15.0",
"django-click==2.5.0",
"django-cors-headers==4.9.0",
"django-environ==0.13.0",
"django-extensions==4.1",
"django-filter==25.2",
"django-guardian==3.3.0",
"django-guardian==3.3.1",
"django-large-image==0.10.3",
"django-oauth-toolkit==3.2.0",
"django-resonant-settings[allauth,celery]==0.48.1",
"django-resonant-utils[allauth,s3_storage]==0.19.0",
"django-stubs-ext==6.0.1",
"djangorestframework==3.17.0",
"djangorestframework==3.17.1",
"drf-yasg==1.21.15",
# Needed for GeoDjango and "large-image[gdal]"
'gdal==3.12.3.1',
Expand All @@ -37,21 +37,21 @@ dependencies = [
"large-image[gdal]==1.34.1",
"matplotlib==3.10.8", # for raster colormaps
"networkx==3.6.1",
"numpy==2.4.3",
"numpy==2.4.4",
"pooch[progress]==1.9.0",
"psycopg[binary,pool]==3.3.3",
# Needed by "large-image-converter"
"pylibtiff==0.7.0.4.7.1",
"pyshp==3.0.3",
"rasterio==1.5.0",
"rich==14.3.3",
"rich==14.3.4",
"webcolors==25.10.0",
"whitenoise[brotli]==6.12.0",
# Production-only
"django-s3-file-field[s3]==1.1.0",
"django-storages[s3]==1.14.6",
"sentry-sdk[celery,django,pure_eval]==2.55.0",
"uvicorn==0.42.0",
"sentry-sdk[celery,django,pure_eval]==2.58.0",
"uvicorn==0.44.0",
"websockets==16.0",
]

Expand All @@ -60,16 +60,16 @@ development = [
# Runtime dependencies, only needed with "development" settings
"daphne==4.2.1",
"django-browser-reload==1.21.0",
"django-debug-toolbar==6.2.0",
"django-debug-toolbar==6.3.0",
"django-minio-storage==0.5.9",
"django-resonant-utils[minio_storage]==0.19.0",
"django-s3-file-field[minio]==1.1.0",
"ipython==9.11.0",
"ipython==9.12.0",
"watchdog==6.0.0",
"werkzeug==3.1.6",
"werkzeug==3.1.8",
]
tasks = [
"geoai-py==0.35.0",
"geoai-py==0.37.2",
"osmnx==2.1.0",
# Needed by "uvdat-flood-sim[large-image-writer]"
"pyvips==3.1.1.8.18.1",
Expand Down
60 changes: 30 additions & 30 deletions terraform/.terraform.lock.hcl

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

2 changes: 1 addition & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
}
cloudflare = {
source = "cloudflare/cloudflare"
version = "4.52.6"
version = "4.52.7"
}
}
}
Expand Down
Loading