Skip to content
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ on:
required: true
type: string

permissions:
contents: write
# Deny all permissions by default; grant only what each job needs.
permissions: {}

jobs:
release:
name: Create GitHub Release
runs-on: ubuntu-latest
permissions:
contents: write # create/update the GitHub Release and read the tagged ref
env:
RELEASE_TAG: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tag || github.ref_name }}
steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Security

- Raised dependency floors to patched releases: `pyarrow >= 14.0.1` (CVE-2023-47248, RCE via unsafe deserialization) and `pydantic >= 2.4.0` (CVE-2024-3772, regex denial of service).


## [0.3.0] - 2026-06-05

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ requires-python = ">=3.9"
dependencies = [
"urllib3 (>=2.1.0,<3.0.0)",
"python-dateutil (>=2.8.2)",
"pydantic (>=2)",
"pydantic (>=2.4.0)",
"typing-extensions (>=4.7.1)",
]

[project.optional-dependencies]
arrow = ["pyarrow >= 14"]
arrow = ["pyarrow >= 14.0.1"]

[project.urls]
Homepage = "https://www.hotdata.dev"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
urllib3 >= 2.1.0, < 3.0.0
python_dateutil >= 2.8.2
pydantic >= 2
pydantic >= 2.4.0
typing-extensions >= 4.7.1
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mypy >= 1.5
# pyarrow backs the `arrow` extra. Required here (not just an optional extra) so
# the arrow integration scenarios actually run in CI instead of silently
# skipping via importorskip. Keep the floor in sync with pyproject's extra.
pyarrow >= 14
pyarrow >= 14.0.1