chore(release): v8.1.0#184
Merged
Merged
Conversation
## Added - v2 export signals API in `ExportApi`, with support for `DerivedSignal` and `Column` arguments in `signal_query()` / `batched_signal_query()`. ## Changed - Prepared timestamp handling for pandas 2.x: new resolution-agnostic datetime conversion helpers used by `TimeSeriesApi` and related data classes. - Removed usage of pandas APIs deprecated in 2.x across `ExportApi`, `FileTimeSeriesParser`, and the `check_company_identifiers_in_csv` script. - Internal code cleanups from expanded linter rule sets; no behavioral changes.
The monorepo-to-SDK copy script renames the package path from `exabel_data_sdk/` to `exabel/`, which shortens path literals inside tests by ~9 characters. Several lines that were split across implicit string concatenations in the monorepo (over 100 chars) now fit on a single line in the SDK and need to be rejoined to pass the ruff formatter check. Bumping ruff to match the monorepo side is a separate cleanup.
Pin ruff to the same version the monorepo uses so that code the
monorepo formatter and linter consider clean is also clean here.
Pinning also bounds future drift: new ruff rules don't silently
block an SDK release.
Add PLC0207 (missing-maxsplit-arg) to the ignore list to match the
monorepo; several call sites use .split("/")[-1] intentionally.
With PLC0207 added to the ignore list, ruff 0.15.11 passes both check and format. Keep ruff unpinned and rely on the ignore list to absorb new rules mirrored from the monorepo.
Monorepo regenerated protobuf stubs with grpcio-tools >=1.78.0, so the copied stubs require grpcio >=1.78.0 at runtime. The locked grpcio 1.76.0 in this repo caused pytest collection to fail.
The copied protobuf stubs hard-code GRPC_GENERATED_VERSION = '1.78.0' and raise at import time if the installed grpcio is older. Pinning a floor in the runtime dependency means external `pip install exabel` users get a compatible grpcio automatically.
Constrain both to the current major (`grpcio>=1.78.0,<2`, `protobuf>=6,<7`) so external installs don't silently resolve to a future major with breaking changes.
Libraries shouldn't cap dependencies on a future major — it blocks downstream users whose other packages need newer versions. Keep floors only (matching the monorepo convention).
ivarurdalen
approved these changes
Apr 21, 2026
Contributor
ivarurdalen
left a comment
There was a problem hiding this comment.
@ivarurdalen reviewed 103 files and all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved.
ivarurdalen
approved these changes
Apr 21, 2026
Contributor
ivarurdalen
left a comment
There was a problem hiding this comment.
@ivarurdalen reviewed 1 file and all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added
ExportApi, with support forDerivedSignalandColumnarguments insignal_query()/batched_signal_query().Changed
conversion helpers used by
TimeSeriesApiand related data classes.ExportApi,FileTimeSeriesParser, and thecheck_company_identifiers_in_csvscript.