Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 3 additions & 2 deletions lib/stac-api/runtime/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ description = "stac-api runtime"
authors = [{ name = "hrodmn", email = "henry@developmentseed.org" }]
requires-python = ">=3.12"
dependencies = [
"stac-fastapi-pgstac[awslambda]>=6.0,<6.1",
"starlette-cramjam>=0.4,<0.5",
"stac-fastapi-pgstac>=6.2,<6.3",
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also update stac-fastapi-pgstac

"starlette-cramjam>=0.6,<1.0",
"mangum==0.19.0",
]

[build-system]
Expand Down
11 changes: 5 additions & 6 deletions lib/stac-api/runtime/src/stac_api/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@

secret = get_secret_dict(secret_arn_env_var="PGSTAC_SECRET_ARN")
postgres_settings = PostgresSettings(
postgres_host_reader=secret["host"],
postgres_host_writer=secret["host"],
postgres_dbname=secret["dbname"],
postgres_user=secret["username"],
postgres_pass=secret["password"],
postgres_port=int(secret["port"]),
pghost=secret["host"],
pgdatabase=secret["dbname"],
pguser=secret["username"],
pgpassword=secret["password"],
pgport=int(secret["port"]),
)

_connection_initialized = False
Expand Down
208 changes: 14 additions & 194 deletions lib/stac-api/runtime/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/stac-auth-proxy/runtime/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
description = "stac-auth-proxy-api runtime"
requires-python = ">=3.12"
dependencies = [
"mangum>=0.19.0",
"mangum==0.19.0",
"stac-auth-proxy>=0.6,<1",
]

Expand Down
4 changes: 2 additions & 2 deletions lib/stac-auth-proxy/runtime/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/tipg-api/runtime/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
description = "tipg-api runtime"
requires-python = ">=3.12"
dependencies = [
"mangum>=0.19.0",
"mangum==0.19.0",
"tipg>=1.2,<1.3",
]

Expand Down
4 changes: 2 additions & 2 deletions lib/tipg-api/runtime/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/titiler-pgstac-api/runtime/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "titiler-pgstac-api runtime"
requires-python = ">=3.12"
dependencies = [
"titiler-pgstac[psycopg-binary]>=1.9.0,<1.10",
"mangum>=0.19.0",
"mangum==0.19.0",
]

[dependency-groups]
Expand Down
4 changes: 2 additions & 2 deletions lib/titiler-pgstac-api/runtime/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading