Skip to content

release: 2.0.0-alpha.9 #34

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

Merged
merged 9 commits into from
Apr 28, 2025
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
18 changes: 10 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- next
branches-ignore:
- 'generated'
- 'codegen/**'
- 'integrated/**'
- 'stl-preview-head/**'
- 'stl-preview-base/**'

jobs:
lint:
timeout-minutes: 10
name: lint
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/hubmap-entity-sdk-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand All @@ -30,8 +31,9 @@ jobs:
run: ./scripts/lint

test:
timeout-minutes: 10
name: test
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/hubmap-entity-sdk-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.0.0-alpha.8"
".": "2.0.0-alpha.9"
}
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 2.0.0-alpha.9 (2025-04-24)

Full Changelog: [v2.0.0-alpha.8...v2.0.0-alpha.9](https://github.com/hubmapconsortium/entity-python-sdk/compare/v2.0.0-alpha.8...v2.0.0-alpha.9)

### Bug Fixes

* **pydantic v1:** more robust ModelField.annotation check ([391134e](https://github.com/hubmapconsortium/entity-python-sdk/commit/391134eb9c51f557e8002453ba5541e682051748))


### Chores

* broadly detect json family of content-type headers ([30016c2](https://github.com/hubmapconsortium/entity-python-sdk/commit/30016c26d05a36d50d85918eb4a47ef4a4d4f7f1))
* **ci:** add timeout thresholds for CI jobs ([450c68c](https://github.com/hubmapconsortium/entity-python-sdk/commit/450c68cfb629bc8ec623127682e27ec1fcb7f27c))
* **ci:** only use depot for staging repos ([d396fe5](https://github.com/hubmapconsortium/entity-python-sdk/commit/d396fe5a12e35c6dda03f29b5ed3f2804b66f110))
* **internal:** codegen related update ([253a0b9](https://github.com/hubmapconsortium/entity-python-sdk/commit/253a0b9cab5265efc1d4b9b310f539fc159e102e))
* **internal:** fix list file params ([e602a9c](https://github.com/hubmapconsortium/entity-python-sdk/commit/e602a9c84299af8efd2c2b39ad18ebf2a84f7458))
* **internal:** import reformatting ([75ad1ca](https://github.com/hubmapconsortium/entity-python-sdk/commit/75ad1ca17a62f704d9e8f1af6e2e5c5a0abeafc7))
* **internal:** refactor retries to not use recursion ([92c3694](https://github.com/hubmapconsortium/entity-python-sdk/commit/92c3694e1495fa631f4373aa88dd452ca6945106))

## 2.0.0-alpha.8 (2025-04-19)

Full Changelog: [v2.0.0-alpha.7...v2.0.0-alpha.8](https://github.com/hubmapconsortium/entity-python-sdk/compare/v2.0.0-alpha.7...v2.0.0-alpha.8)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hubmap_entity_sdk"
version = "2.0.0-alpha.8"
version = "2.0.0-alpha.9"
description = "The official Python library for the hubmap-entity-sdk API"
dynamic = ["readme"]
license = "MIT"
Expand Down
Loading