Skip to content

Commit f997791

Browse files
authored
Merge branch 'develop' into fix/fib-start-date-nearest-lookup
2 parents 405ddf4 + ebee248 commit f997791

7 files changed

Lines changed: 1515 additions & 1244 deletions

File tree

cli/poetry.lock

Lines changed: 940 additions & 745 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

desktop/src-tauri/src/tauri_handlers/startup.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -797,13 +797,7 @@ pub async fn install_conda(directory: String, window: Window) -> Result<bool, St
797797
log::debug!(
798798
"Executing installer via start /B: {} with args: {:?}",
799799
installer_path.to_string_lossy(),
800-
&[
801-
"/InstallationType=JustMe",
802-
"/RegisterPython=0",
803-
"/AddToPath=0",
804-
"/S",
805-
&format!("/D={}", conda_dir.to_string_lossy())
806-
]
800+
args
807801
);
808802

809803
// Run the installer via cmd start

openbb_platform/extensions/mcp_server/poetry.lock

Lines changed: 560 additions & 490 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openbb_platform/providers/sec/openbb_sec/models/company_filings.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,19 @@ def transform_data(
275275
"""Transform the data."""
276276
# pylint: disable=import-outside-toplevel
277277
from numpy import nan
278+
from openbb_core.provider.utils.helpers import run_async
278279
from pandas import NA, DataFrame, to_datetime
279280

281+
# XOM got a new CIK in July 2026, so all historical filings are under the old CIK.
282+
# This is special handling for the transition.
283+
if query.symbol == "XOM":
284+
query.symbol = None
285+
query.cik = "0000034088"
286+
legacy_filings = run_async(
287+
SecCompanyFilingsFetcher.aextract_data, query, None
288+
)
289+
data.extend(legacy_filings)
290+
280291
if not data:
281292
raise EmptyDataError(
282293
f"No filings found for CIK {query.cik}, or symbol {query.symbol}"

openbb_platform/providers/sec/openbb_sec/utils/company_facts.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ def order_field_meta(
130130
"DIS": ["0001744489", "0001001039"],
131131
"BLK": ["0002012383", "0001364742"],
132132
"GOOG": ["0001652044", "0001288776"],
133+
"XOM": ["0000034088", "0002115436"],
133134
}
134135

135136

openbb_platform/providers/sec/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openbb-sec"
3-
version = "1.6.6"
3+
version = "1.6.7"
44
description = "SEC extension for OpenBB"
55
authors = ["OpenBB Team <hello@openbb.co>"]
66
license = "AGPL-3.0-only"

openbb_platform/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ openbb-government-us = "^1.6.1"
2828
openbb-imf = "^2.1.3"
2929
openbb-intrinio = "^1.6.1"
3030
openbb-oecd = "^1.6.1"
31-
openbb-sec = "^1.6.6"
31+
openbb-sec = "^1.6.7"
3232
openbb-tiingo = "^1.6.1"
3333
openbb-tradingeconomics = "^1.6.1"
3434
openbb-us-eia = "^1.3.1"

0 commit comments

Comments
 (0)