Skip to content
Merged
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
7 changes: 1 addition & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.9.2"
UV_VERSION: "0.9.14"

"on":
merge_group: {}
Expand Down Expand Up @@ -32,11 +32,6 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"

- name: Install uv
uses: astral-sh/setup-uv@v7
with:
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/periodic-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.9.2"
UV_VERSION: "0.9.14"

"on":
schedule:
Expand All @@ -24,11 +24,6 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"

- name: Install uv
uses: astral-sh/setup-uv@v7
with:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.0
rev: v0.14.7
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.9.2
rev: 0.9.14
hooks:
- id: uv-lock
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ Find changes for the upcoming release in the project's [changelog.d directory](h

<!-- scriv-insert-here -->

<a id='changelog-5.0.0'></a>
## 5.0.0 (2025-12-01)

### Backwards-incompatible changes

- Add new `CUTOUTDETAIL` parameter that can be set to `Image`, `MaskedImage`, or `Exposure`, where `Exposure` provides the previous behavior. This parameter controls what information is included in the cutout. The new default is `Image`, which includes only the image pixels in the cutout.

### New features

- Add support for reporting errors to Sentry in the frontend. Sentry support is not enabled in the workers for now since they run on a different Python stack and do not necessarily have Safir.
- Publish multi-platform images that support both linux/amd64 and linux/arm64.
- Allow changing the structlog logging profile via the Helm `config.logProfile` setting.

<a id='changelog-4.1.3'></a>
## 4.1.3 (2025-08-26)

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
FROM base-image AS install-image

# Install uv.
COPY --from=ghcr.io/astral-sh/uv:0.9.2 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.9.14 /uv /bin/uv

# Install system packages only needed for building dependencies.
COPY scripts/install-dependency-packages.sh .
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021-2023 Association of Universities for Research in Astronomy, Inc. (AURA)
Copyright (c) 2021-2025 Association of Universities for Research in Astronomy, Inc. (AURA)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 0 additions & 3 deletions changelog.d/20251015_172619_rra_DM_52929.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20251016_074617_rra_DM_52929.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20251201_092825_rra_DM_52929.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20251201_100727_rra_DM_52929.md

This file was deleted.

1 change: 0 additions & 1 deletion ruff-shared.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
# Reference for rules: https://docs.astral.sh/ruff/rules/
exclude = ["docs/**"]
line-length = 79
target-version = "py312"

[format]
docstring-code-format = true
Expand Down
852 changes: 459 additions & 393 deletions uv.lock

Large diffs are not rendered by default.