Skip to content

Commit 88c3058

Browse files
authored
Merge branch 'main' into mlm
2 parents a22d987 + 065a631 commit 88c3058

File tree

319 files changed

+14624
-19135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

319 files changed

+14624
-19135
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- macos-latest
3434
steps:
3535
- uses: actions/checkout@v5
36-
- uses: astral-sh/setup-uv@v6
36+
- uses: astral-sh/setup-uv@v7
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Sync
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/checkout@v5
59-
- uses: astral-sh/setup-uv@v6
59+
- uses: astral-sh/setup-uv@v7
6060
- name: Install with dependencies
6161
run: uv sync --all-extras
6262
- name: Run coverage with orjson
@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ubuntu-latest
8686
steps:
8787
- uses: actions/checkout@v5
88-
- uses: astral-sh/setup-uv@v6
88+
- uses: astral-sh/setup-uv@v7
8989
- name: Sync
9090
run: uv sync
9191
- name: Uninstall orjson
@@ -100,10 +100,10 @@ jobs:
100100
runs-on: ubuntu-latest
101101
steps:
102102
- uses: actions/checkout@v5
103-
- uses: actions/setup-python@v5
103+
- uses: actions/setup-python@v6
104104
with:
105105
python-version: "3.10"
106-
- uses: astral-sh/setup-uv@v6
106+
- uses: astral-sh/setup-uv@v7
107107
with:
108108
enable-cache: true
109109
- name: Sync
@@ -117,7 +117,7 @@ jobs:
117117
runs-on: ubuntu-latest
118118
steps:
119119
- uses: actions/checkout@v5
120-
- uses: astral-sh/setup-uv@v6
120+
- uses: astral-sh/setup-uv@v7
121121
- name: Install pandoc
122122
run: sudo apt-get install pandoc
123123
- name: Sync

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v5
2020
- name: Set up Python 3.x
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: "3.x"
2424
- name: Install build

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,27 @@
22

33
## [Unreleased]
44

5+
- Remove unused pystac.validation import ([#1583](https://github.com/stac-utils/pystac/pull/1583))
6+
7+
## [v1.14.1] - 2025-09-18
8+
9+
### Fixed
10+
11+
- Support older versions of urllib3 ([#1580](https://github.com/stac-utils/pystac/pull/1580))
12+
13+
## [v1.14.0] - 2025-09-11
14+
515
### Added
616

717
- Added to pystac.MediaType values VND_APACHE_PARQUET and VND_ZARR with the current standard
818
media type value for these types and new media types COPC and VND_PMTILES
919
([#1554](https://github.com/stac-utils/pystac/pull/1554))
1020

21+
### Changed
22+
23+
- Pass "User-Agent": "pystac/3.13.0" in request headers to work around urllib's default "User-Agent" being blocked by readthedocs ([#1576](https://github.com/stac-utils/pystac/pull/1576))
24+
- Include a plain text repr in notebooks so untrusted notebooks look better ([#1577](https://github.com/stac-utils/pystac/pull/1577))
25+
1126
### Fixed
1227

1328
- More permissive collection extent deserialization ([#1559](https://github.com/stac-utils/pystac/pull/1559))
@@ -942,7 +957,9 @@ use `Band.create`
942957

943958
Initial release.
944959

945-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.13.0..main>
960+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.14.1..main>
961+
[v1.14.1]: <https://github.com/stac-utils/pystac/compare/v1.14.0..v1.14.1>
962+
[v1.14.0]: <https://github.com/stac-utils/pystac/compare/v1.13.0..v1.14.0>
946963
[v1.13.0]: <https://github.com/stac-utils/pystac/compare/v1.12.2..v1.13.0>
947964
[v1.12.2]: <https://github.com/stac-utils/pystac/compare/v1.12.1..v1.12.2>
948965
[v1.12.1]: <https://github.com/stac-utils/pystac/compare/v1.12.0..v1.12.1>

0 commit comments

Comments
 (0)