Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-45132: Fix change log for 2.0.0 release, update dependencies #150

Merged
merged 3 commits into from
Jul 5, 2024
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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.6
rev: v0.5.1
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Find changes for the upcoming release in the project's [changelog.d directory](h

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

## (2024-06-28)
## 2.0.0 (2024-06-28)

### Backwards-incompatible changes

- Update to a new version of daf_butler, with support for the new release of Butler server with a new REST API which broke backwards compatibility with the previous version we were using.
- Update to a new version of `lsst.daf.butler`, which changes the REST API implementation in a backward-incompatible way to match the new release of the Butler server.

<a id='changelog-1.7.1'></a>
## 1.7.1 (2024-04-11)
Expand Down
2 changes: 1 addition & 1 deletion changelog.d/20240701_153114_david.irving_DM_45088.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Backwards-incompatible changes

- Rolled back the Butler version due to a bug that makes the new release unusable.
- Pin `lsst.daf.butler` to an older version since the new Butler server that implements the new REST API has a bug that makes it unusable.
557 changes: 308 additions & 249 deletions requirements/dev.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion requirements/main.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ boto3
google-cloud-storage
httpx
jinja2
lsst-daf-butler[postgres,remote]
lsst-daf-butler[postgres,remote]<=26.2024.1500
lsst-resources[s3,gs]
pydantic
pydantic-settings
Expand Down
1,227 changes: 719 additions & 508 deletions requirements/main.txt

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ async def client(app: FastAPI) -> AsyncIterator[AsyncClient]:
transport=ASGITransport(app=app), # type: ignore[arg-type]
base_url="https://example.com/",
headers={"X-Auth-Request-Token": "sometoken"},
timeout=10,
) as client:
yield client

Expand Down