Skip to content

Commit 2994b73

Browse files
Merge pull request #258 from stac-utils/release/2.1.0
update for 2.1.0
2 parents 303cb4f + eff1752 commit 2994b73

8 files changed

Lines changed: 669 additions & 608 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
needs: [tests]
6464
runs-on: ubuntu-latest
6565
env:
66-
PGSTAC_VERSION: '0.9.8'
66+
PGSTAC_VERSION: '0.9.10'
6767
steps:
6868
- uses: actions/checkout@v6
6969

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 2.1.0 (2026-03-05)
6+
57
* disable tests for pre-0.9 pgstac versions
68
* address several instances of validation failures returning 500 instead of 4xx HTTP responses
79

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ RUN apt update && apt upgrade -y \
77

88
# Ensure root certificates are always updated at evey container build
99
# and curl is using the latest version of them
10-
RUN mkdir /usr/local/share/ca-certificates/cacert.org
11-
RUN cd /usr/local/share/ca-certificates/cacert.org && curl -k -O https://www.cacert.org/certs/root.crt
12-
RUN cd /usr/local/share/ca-certificates/cacert.org && curl -k -O https://www.cacert.org/certs/class3.crt
10+
# RUN mkdir /usr/local/share/ca-certificates/cacert.org
11+
# RUN cd /usr/local/share/ca-certificates/cacert.org && curl -k -O https://www.cacert.org/certs/root.crt
12+
# RUN cd /usr/local/share/ca-certificates/cacert.org && curl -k -O https://www.cacert.org/certs/class3.crt
13+
# ENV CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
1314
RUN update-ca-certificates
14-
ENV CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
1515

1616
WORKDIR /tmp
1717

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ filterwarnings = [
159159
]
160160

161161
[tool.bumpversion]
162-
current_version = "2.0.0"
162+
current_version = "2.1.0"
163163
search = "{current_version}"
164164
replace = "{new_version}"
165165
regex = false

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def load_json(filepath: str):
7676
@pytest.fixture(
7777
params=[
7878
"0.9.8",
79+
"0.9.10",
7980
],
8081
scope="session",
8182
)

tests/test_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ def test_collections_cql_filter(filter_expr, filter_lang, app):
685685
f"/collections/{collection_id}/point/-85.5,36.1624/assets",
686686
params={
687687
"filter": filter_expr,
688-
"filter-lanq": filter_lang,
688+
"filter-lang": filter_lang,
689689
},
690690
)
691691
assert response.status_code == 200

titiler/pgstac/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.pgstac"""
22

3-
__version__ = "2.0.0"
3+
__version__ = "2.1.0"

uv.lock

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

0 commit comments

Comments
 (0)