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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A clear and concise description of the bug.

## Endpoint / Method Affected

Which API endpoint or client method is involved? (e.g., `ThetaDataDx::stock_history_eod`, `ThetaDataDx::subscribe_quotes`)
Which API endpoint or client method is involved? (e.g., `ThetaDataDxClient::stock_history_eod`, `ThetaDataDxClient::subscribe(Contract::stock("AAPL").quote())`)

## Steps to Reproduce

Expand Down
482 changes: 482 additions & 0 deletions .github/release-notes/v9.1.0.md

Large diffs are not rendered by default.

23 changes: 22 additions & 1 deletion .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,31 @@ jobs:
- name: Build native addon
working-directory: sdks/typescript
run: npx napi build --platform --release --target ${{ matrix.target }} --strip
# H9: run `npm test` on every advertised platform (Linux,
# macOS, Windows) rather than gating to Linux only. CI parity
# with the Python and Rust matrices: every platform we ship a
# prebuilt addon for has its tests run on that platform.
- name: Test
if: matrix.target == 'x86_64-unknown-linux-gnu'
working-directory: sdks/typescript
run: npm test
# H9: emit the public-surface shape manifest so the
# cross-language agreement validator (`scripts/validate_agreement.py`)
# can compare TypeScript field sets against the Python / CLI /
# C++ runtime artifacts. Manifest is platform-independent —
# only run on Linux to avoid duplicate uploads.
- name: Emit TypeScript shape manifest
if: matrix.os == 'ubuntu-latest'
run: node sdks/typescript/scripts/emit_validator_manifest.mjs
- name: Validator self-test (Python diff engine)
if: matrix.os == 'ubuntu-latest'
run: python3 scripts/validate_agreement_test.py
- name: Upload TypeScript shape manifest
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v7
with:
name: validator-typescript
path: artifacts/validator_typescript.json
if-no-files-found: error
- uses: actions/upload-artifact@v7
with:
name: bindings-${{ matrix.target }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ private/
artifacts/
todo.md
out/
report/
806 changes: 764 additions & 42 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The SDK speaks three independent ThetaData surfaces — MDDS (gRPC), FPSS
an issue or PR that touches any of them, name the surface in the title
prefix: `feat(mdds): ...`, `feat(fpss): ...`, `feat(flatfiles): ...`.
Cross-language binding parity is tracked under separate per-binding
issues; see [`ROADMAP.md`](./ROADMAP.md#flatfiles--binding-coverage)
issues; see [`docs/ROADMAP.md`](docs/ROADMAP.md#flatfiles--binding-coverage)
for the FLATFILES coverage matrix.

## Prerequisites
Expand Down
142 changes: 129 additions & 13 deletions Cargo.lock

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

Loading
Loading