Skip to content

resc-3.0.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 02 Feb 13:49
da618d7

馃帀 Migration to Vue3 (and more)

Full re-implementation of the front-end with TypeScript and using Composition API on Vue3.

  • Vue2 鉃★笍 Vue3
  • Option API 鉃★笍 Composition API (in Vue)
  • JavaScript 鉃★笍 TypeScript
  • Vue CLI with Webpack 鉃★笍 Vite bundler
  • Jest testing framework 鉃★笍 Vitest testing framework
  • BootstrapVue (Bootstrap 4) 鉃★笍 BootstrapVueNext (Bootstrap 5).

馃檲 Ignore Finding

It is possible to ignore some blocker findings (e.g. false positive) by providing
a resc-ignore.dsv file. The bockers will be downgraded to a warning level and marked as ignored. Such file has the following structure:

# This is a comment
finding_path|finding_rule|finding_line_number|expiration_date
finding_path_2|finding_rule_2|finding_line_number_2
  • finding_path contains the path to the file with the blocking finding.
  • finding_rule contains the name of the blocking rule.
  • finding_line_number contains the line number of the finding.
  • expiration_date is optional, contains the date in ISO 8601 format until which this ignore rule should be considered valid.

For example, if we want to ignore the finding in file /etc/passwd for rule root_value_found on line 1 until April 1st 2024 at 23:59 the following line should be used.

/etc/passwd|root_value_found|1|2024-04-01T23:59:00

To ignore this finding ad vitam aeternam:

/etc/passwd|root_value_found|1

馃弳 Third party library maintenance

Update most third party libraries to the latest versions.

馃悰 Multiple Bug Fixes & 馃摝 other minor stuff

New Contributors

Full Changelog: resc-2.0.0...resc-3.0.0