Skip to content
Open
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.0.5"
".": "2.1.0"
}
20 changes: 20 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

## Unreleased

## 2.1.0 (2026-07-02)

## What's Changed
* feat: add min/max zoom query-parameters to tileset endpoint by @vincentsarago in https://github.com/developmentseed/titiler/pull/1416
* chore(deps): bump aiohttp from 3.13.5 to 3.14.0 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1415
* feat: move from httpx to httpx2 by @vincentsarago in https://github.com/developmentseed/titiler/pull/1419
* chore(deps): bump the all group with 5 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1421
* ci(deps): bump the all group with 3 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1420
* feat: add `zooms` query-parameter to WMTS endpoint to overwrite zoom levels by @vincentsarago in https://github.com/developmentseed/titiler/pull/1423
* chore(deps): bump the all group with 4 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1428
* chore(deps): bump tornado from 6.5.5 to 6.5.6 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1426
* ci(deps): bump the all group with 5 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1427
* feat: add error logging within error handler by @vincentsarago in https://github.com/developmentseed/titiler/pull/1429
* chore(deps): bump the all group with 2 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1439
* fix: only log non-generic 500 errors by @vincentsarago in https://github.com/developmentseed/titiler/pull/1443
* ci(deps): bump actions/checkout from 6.0.3 to 7.0.0 in the all group by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1444


**Full Changelog**: https://github.com/developmentseed/titiler/compare/2.0.5...2.1.0

## 2.0.5 (2026-06-18)

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion deployment/aws/lambda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /tmp
RUN dnf install -y gcc-c++ && dnf clean all

RUN python -m pip install pip -U
RUN python -m pip install "titiler-application==2.0.5" "mangum==0.19.0" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas # x-release-please-version
RUN python -m pip install "titiler-application==2.1.0" "mangum==0.19.0" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas # x-release-please-version

# Reduce package size and remove useless files
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[0-9]*//'); cp $f $n; done;
Expand Down
2 changes: 1 addition & 1 deletion deployment/k8s/charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: "2.0.5" # x-release-please-version
appVersion: "2.1.0" # x-release-please-version
description: A dynamic Web Map tile server
name: titiler
version: 2.1.6
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: GIS",
]
version="2.0.5"
version="2.1.0"
dependencies = [
"titiler-core",
"titiler-xarray",
Expand Down
8 changes: 4 additions & 4 deletions src/titiler/application/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core[telemetry]==2.0.5", # x-release-please-version
"titiler-xarray==2.0.5", # x-release-please-version
"titiler-extensions[cogeo,stac]==2.0.5", # x-release-please-version
"titiler-mosaic[mosaicjson]==2.0.5", # x-release-please-version
"titiler-core[telemetry]==2.1.0", # x-release-please-version
"titiler-xarray==2.1.0", # x-release-please-version
"titiler-extensions[cogeo,stac]==2.1.0", # x-release-please-version
"titiler-mosaic[mosaicjson]==2.1.0", # x-release-please-version
"starlette-cramjam>=0.4,<1.0",
"pydantic-settings~=2.0",
]
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/application/titiler/application/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.application"""

__version__ = "2.0.5" # x-release-please-version
__version__ = "2.1.0" # x-release-please-version
2 changes: 1 addition & 1 deletion src/titiler/core/titiler/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.core"""

__version__ = "2.0.5" # x-release-please-version
__version__ = "2.1.0" # x-release-please-version

from . import dependencies, errors, factory, routing # noqa
from .factory import ( # noqa
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/extensions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core==2.0.5", # x-release-please-version
"titiler-core==2.1.0", # x-release-please-version
"typing-extensions; python_version < '3.12'"
]

Expand Down
2 changes: 1 addition & 1 deletion src/titiler/extensions/titiler/extensions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.extensions"""

__version__ = "2.0.5" # x-release-please-version
__version__ = "2.1.0" # x-release-please-version

from .cogeo import cogValidateExtension # noqa
from .render import stacRenderExtension # noqa
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/mosaic/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core==2.0.5", # x-release-please-version
"titiler-core==2.1.0", # x-release-please-version
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/mosaic/titiler/mosaic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.mosaic"""

__version__ = "2.0.5" # x-release-please-version
__version__ = "2.1.0" # x-release-please-version

from . import errors, factory # noqa
from .factory import MosaicTilerFactory # noqa
2 changes: 1 addition & 1 deletion src/titiler/xarray/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core==2.0.5", # x-release-please-version
"titiler-core==2.1.0", # x-release-please-version
"xarray",
"rioxarray",
"obstore",
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/xarray/titiler/xarray/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.xarray"""

__version__ = "2.0.5" # x-release-please-version
__version__ = "2.1.0" # x-release-please-version
Loading