From 81be7790319dfac6f395c11e2d91a054ab6eea50 Mon Sep 17 00:00:00 2001 From: Mathias Lohne Date: Tue, 3 Jun 2025 12:45:51 +0200 Subject: [PATCH] In `unstable`: Rename the local file override `-l` / `--local-override` is renamed to `-f` / `--force-local-config` to align with the dotnet version Breaking changes are accepted in the `unstable` package. --- CHANGELOG.md | 6 ++++++ cognite/extractorutils/unstable/core/runtime.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea414996..de91a17f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,12 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## Next + +### Changed + +* In the `unstable` package: `-l` / `--local-override` is renamed to `-f` / `--force-local-config` + ## 7.5.14 ### Added diff --git a/cognite/extractorutils/unstable/core/runtime.py b/cognite/extractorutils/unstable/core/runtime.py index 991e9a15..32dd0470 100644 --- a/cognite/extractorutils/unstable/core/runtime.py +++ b/cognite/extractorutils/unstable/core/runtime.py @@ -73,8 +73,8 @@ def _create_argparser(self) -> ArgumentParser: help="Connection parameters", ) argparser.add_argument( - "-l", - "--local-override", + "-f", + "--force-local-config", nargs=1, type=Path, required=False,