Skip to content

Commit 7336b82

Browse files
committed
Update CHANGELOG.rst
Signed-off-by: Jono Yang <jyang@nexb.com>
1 parent 68ec4be commit 7336b82

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Next release
88
``licensedcode-data``.
99
https://github.com/aboutcode-org/scancode-toolkit/pull/5056
1010

11+
- Add experimental option for using cached results during scan time.
12+
1113
v33.0.0rc1 - 2026-05-14
1214
------------------------
1315

src/scancode/cli.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ def default_processes():
408408
help_group=cliutils.MISC_GROUP, sort_order=1000, cls=PluggableCommandLineOption)
409409

410410
@click.option(
411-
"--check-version/--no-check-version",
412-
help="Whether to check for new versions. Defaults to true.",
411+
'--check-version/--no-check-version',
412+
help='Whether to check for new versions. Defaults to true.',
413413
default=True,
414414
# not yet supported in Click 6.7 but added in PluggableCommandLineOption
415415
hidden=True,
@@ -419,7 +419,7 @@ def default_processes():
419419
is_flag=True,
420420
default=False,
421421
hidden=True,
422-
help='ScanCode will use cached results during scan time.',
422+
help='(EXPERIMENTAL) ScanCode will use cached results during scan time.',
423423
help_group=cliutils.CORE_GROUP, sort_order=250, cls=PluggableCommandLineOption)
424424
def scancode(
425425
ctx,
@@ -580,7 +580,7 @@ def scancode(
580580

581581

582582
def run_scan(
583-
input, #
583+
input, #
584584
config_file=None,
585585
ignore=[],
586586
from_json=False,
@@ -1153,7 +1153,7 @@ def load_configuration_file(path):
11531153

11541154
click.echo(f"Loading env from {path}")
11551155
try:
1156-
1156+
11571157
config_values = saneyaml.load(path.read())
11581158
ignores = config_values.get("ignored_patterns", [])
11591159
except (saneyaml.YAMLError, Exception):

0 commit comments

Comments
 (0)