You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/commands/status.md
+15
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,21 @@ A dependency will fail the status checks if:
31
31
- If `license: other` is specified and all of the `licenses` entries match an `allowed` license a failure will not be logged
32
32
- A `reviewed` entry must reference a specific version of the depdency, e.g. `<name>@<version>`. The version identifier must specify a specific dependency version, ranges are not allowed.
33
33
34
+
## Detect and alert on stale cached metadata files
35
+
36
+
Licensed can alert on any metadata files that don't correlate to a currently used dependency when `licensed status` is run. To configure this behavior, set a root-level `stale_records_action` value in your [licensed configuration file](./../configuration.md).
37
+
38
+
Available values are:
39
+
40
+
1.`'error'`: Treat stale cached records as errors. Licensed will output errors for any stale metadata files and will cause `licensed status` to fail.
41
+
1.`'warn'`, `''`, or unset (default): Treat stale cached records as warnings. Licensed will output warnings for any stale metadata files but will not cause `licensed status` to fail.
42
+
1.`'ignore'`, any other value: Ignore stale cached records. Licensed will not output any notifications about stale metadata files.
43
+
44
+
```yaml
45
+
# in the licensed configuration file
46
+
stale_records_action: 'warn'
47
+
```
48
+
34
49
## Options
35
50
36
51
- `--config`/`-c`: the path to the licensed configuration file
Copy file name to clipboardexpand all lines: lib/licensed/commands/status.rb
+62-1
Original file line number
Diff line number
Diff line change
@@ -23,10 +23,48 @@ def default_reporter(options)
23
23
# Returns whether the command succeeded based on the call to super
24
24
defrun_command(report)
25
25
superdo |result|
26
-
nextifresult
26
+
stale_records=stale_cached_records
27
+
ifstale_records.any?
28
+
messages=stale_records.map{ |f| "Stale dependency record found: #{f}"}
29
+
messages << "Please run the licensed cache command to clean up stale records"
30
+
31
+
caseconfig["stale_records_action"].to_s
32
+
when"error"
33
+
report.errors.concatmessages
34
+
result=false
35
+
when"warn",""
36
+
report.warnings.concatmessages
37
+
end
38
+
end
39
+
40
+
nextresultifresult
27
41
28
42
report.errors << "Licensed found errors during source enumeration. Please see https://github.com/github/licensed/tree/master/docs/commands/status.md#status-errors-and-resolutions for possible resolutions."
43
+
44
+
result
29
45
end
46
+
ensure
47
+
cache_paths.clear
48
+
files.clear
49
+
end
50
+
51
+
# Run the command for all enumerated dependencies found in a dependency source,
52
+
# recording results in a report.
53
+
# Enumerating dependencies in the source is skipped if a :sources option
54
+
# is provided and the evaluated `source.class.type` is not in the :sources values
55
+
#
56
+
# app - The application configuration for the source
57
+
# source - A dependency source enumerator
58
+
#
59
+
# Returns whether the command succeeded for the dependency source enumerator
60
+
defrun_source(app,source,report)
61
+
result=super
62
+
63
+
# add the full cache path to the list of cache paths
64
+
# that should be checked for extra files after the command run
0 commit comments