Skip to content
Closed
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.2"
".": "2.0.3"
}
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

## Unreleased

## 2.0.3 (2026-05-28)

## What's Changed
* docs: Add TiTiler extension links to external_links.md by @jo-chemla in https://github.com/developmentseed/titiler/pull/1381
* ci(deps): bump the all group with 4 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1386
* chore(deps): bump pillow from 12.1.1 to 12.2.0 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1388
* chore(deps): bump the all group with 11 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1387
* chore(deps): bump jupyterlab from 4.5.6 to 4.5.7 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1385
* chore(deps): bump notebook from 7.5.5 to 7.5.6 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1384
* chore(deps): bump jupyter-server from 2.17.0 to 2.18.0 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1390
* chore(deps): bump the all group across 1 directory with 15 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1402
* ci(deps): bump the all group across 1 directory with 4 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1401
* fix: starlette path security issue and update dependencies by @vincentsarago in https://github.com/developmentseed/titiler/pull/1404


**Full Changelog**: https://github.com/developmentseed/titiler/compare/2.0.2...2.0.3

## 2.0.2 (2026-04-27)

## 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.2" "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.0.3" "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.2" # x-release-please-version
appVersion: "2.0.3" # x-release-please-version
description: A dynamic Web Map tile server
name: titiler
version: 2.1.3
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.2"
version="2.0.3"
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.2", # x-release-please-version
"titiler-xarray==2.0.2", # x-release-please-version
"titiler-extensions[cogeo,stac]==2.0.2", # x-release-please-version
"titiler-mosaic[mosaicjson]==2.0.2", # x-release-please-version
"titiler-core[telemetry]==2.0.3", # x-release-please-version
"titiler-xarray==2.0.3", # x-release-please-version
"titiler-extensions[cogeo,stac]==2.0.3", # x-release-please-version
"titiler-mosaic[mosaicjson]==2.0.3", # 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.2" # x-release-please-version
__version__ = "2.0.3" # 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.2" # x-release-please-version
__version__ = "2.0.3" # 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.2", # x-release-please-version
"titiler-core==2.0.3", # 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.2" # x-release-please-version
__version__ = "2.0.3" # 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.2", # x-release-please-version
"titiler-core==2.0.3", # 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.2" # x-release-please-version
__version__ = "2.0.3" # 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.2", # x-release-please-version
"titiler-core==2.0.3", # 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.2" # x-release-please-version
__version__ = "2.0.3" # x-release-please-version
Loading