Skip to content

Commit 6662c1b

Browse files
Update all non-major dependencies
1 parent 252f89b commit 6662c1b

10 files changed

Lines changed: 299 additions & 286 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
lint-client:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v6
13+
- uses: actions/checkout@v6.0.2
1414
- name: Install npm
15-
uses: actions/setup-node@v6
15+
uses: actions/setup-node@v6.3.0
1616
with:
17-
node-version: 24.14.0
17+
node-version: 24.14.1
1818
- run: |
1919
npm ci
2020
working-directory: web
@@ -67,9 +67,9 @@ jobs:
6767
- 6379:6379
6868
steps:
6969
- name: Checkout repository
70-
uses: actions/checkout@v6
70+
uses: actions/checkout@v6.0.2
7171
- name: Install uv
72-
uses: astral-sh/setup-uv@v7
72+
uses: astral-sh/setup-uv@v7.6.0
7373
- name: Run tests
7474
run: |
7575
uv run tox

.github/workflows/nightly_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
- 6379:6379
5353
steps:
5454
- name: Checkout repository
55-
uses: actions/checkout@v6
55+
uses: actions/checkout@v6.0.2
5656
- name: Install uv
57-
uses: astral-sh/setup-uv@v7
57+
uses: astral-sh/setup-uv@v7.6.0
5858
- name: Run tests
5959
run: |
6060
uv run tox -e test -- -m slow

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@v6.0.2
1515
with:
1616
fetch-depth: 0
1717
- name: Install uv
18-
uses: astral-sh/setup-uv@v7
18+
uses: astral-sh/setup-uv@v7.6.0
1919
- name: Install npm
20-
uses: actions/setup-node@v6
20+
uses: actions/setup-node@v6.3.0
2121
with:
22-
node-version: 24.14.0
22+
node-version: 24.14.1
2323
- name: Run Semantic Release
2424
run: |
2525
uvx python-semantic-release version

docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ services:
102102
condition: service_healthy
103103

104104
web:
105-
image: node:24.14.0
105+
image: node:24.14.1
106106
command: ["sh", "-c", "npm install && npm run serve -- --host 0.0.0.0"]
107107
working_dir: /web
108108
volumes:

pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ license-files = ["LICENSE", "NOTICE"]
1111
classifiers = ["Private :: Do Not Upload"]
1212
dependencies = [
1313
# Runtime dependencies, always needed
14-
"celery==5.6.2",
14+
"celery==5.6.3",
1515
"channels-redis==4.3.0",
1616
"channels[daphne]==4.3.2",
17-
"django[argon2]==6.0.3",
18-
"django-allauth==65.15.0",
17+
"django[argon2]==6.0.4",
18+
"django-allauth==65.15.1",
1919
"django-auth-style==0.15.0",
2020
"django-click==2.5.0",
2121
"django-cors-headers==4.9.0",
2222
"django-environ==0.13.0",
2323
"django-extensions==4.1",
2424
"django-filter==25.2",
25-
"django-guardian==3.3.0",
25+
"django-guardian==3.3.1",
2626
"django-large-image==0.10.3",
2727
"django-oauth-toolkit==3.2.0",
2828
"django-resonant-settings[allauth,celery]==0.48.1",
2929
"django-resonant-utils[allauth,s3_storage]==0.19.0",
3030
"django-stubs-ext==6.0.1",
31-
"djangorestframework==3.17.0",
31+
"djangorestframework==3.17.1",
3232
"drf-yasg==1.21.15",
3333
# Needed for GeoDjango and "large-image[gdal]"
3434
'gdal==3.12.3.1',
@@ -37,21 +37,21 @@ dependencies = [
3737
"large-image[gdal]==1.34.1",
3838
"matplotlib==3.10.8", # for raster colormaps
3939
"networkx==3.6.1",
40-
"numpy==2.4.3",
40+
"numpy==2.4.4",
4141
"pooch[progress]==1.9.0",
4242
"psycopg[binary,pool]==3.3.3",
4343
# Needed by "large-image-converter"
4444
"pylibtiff==0.7.0.4.7.1",
4545
"pyshp==3.0.3",
4646
"rasterio==1.5.0",
47-
"rich==14.3.3",
47+
"rich==14.3.4",
4848
"webcolors==25.10.0",
4949
"whitenoise[brotli]==6.12.0",
5050
# Production-only
5151
"django-s3-file-field[s3]==1.1.0",
5252
"django-storages[s3]==1.14.6",
53-
"sentry-sdk[celery,django,pure_eval]==2.55.0",
54-
"uvicorn==0.42.0",
53+
"sentry-sdk[celery,django,pure_eval]==2.57.0",
54+
"uvicorn==0.44.0",
5555
"websockets==16.0",
5656
]
5757

@@ -60,16 +60,16 @@ development = [
6060
# Runtime dependencies, only needed with "development" settings
6161
"daphne==4.2.1",
6262
"django-browser-reload==1.21.0",
63-
"django-debug-toolbar==6.2.0",
63+
"django-debug-toolbar==6.3.0",
6464
"django-minio-storage==0.5.9",
6565
"django-resonant-utils[minio_storage]==0.19.0",
6666
"django-s3-file-field[minio]==1.1.0",
67-
"ipython==9.11.0",
67+
"ipython==9.12.0",
6868
"watchdog==6.0.0",
69-
"werkzeug==3.1.6",
69+
"werkzeug==3.1.8",
7070
]
7171
tasks = [
72-
"geoai-py==0.35.0",
72+
"geoai-py==0.37.1",
7373
"osmnx==2.1.0",
7474
# Needed by "uvdat-flood-sim[large-image-writer]"
7575
"pyvips==3.1.1.8.18.1",

terraform/.terraform.lock.hcl

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terraform/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ terraform {
1818
}
1919
cloudflare = {
2020
source = "cloudflare/cloudflare"
21-
version = "4.52.6"
21+
version = "4.52.7"
2222
}
2323
}
2424
}

0 commit comments

Comments
 (0)