aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-engine
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-22537 add support for short and full description in adhoc rule created ↵Steve Marion2024-07-292-8/+40
| | | | from SARIF import.
* SONAR-22541 Import SARIF stacks as issue flowsJulien HENRY2024-07-264-70/+187
|
* SONAR-22538 Import SARIF related locations as secondary issue locationsJulien HENRY2024-07-252-3/+31
|
* NO-JIRA Fix Quality Gate IssuesMatteo Mara2024-07-251-1/+0
|
* SONAR-22603 Use generated code for the SARIF parserJulien HENRY2024-07-2418-140/+141
|
* SONAR-22542 Index new STIG security standardLéo Geoffroy2024-07-231-0/+5
|
* Revert "SONAR-22447 jakarta-annotation-api version bump"Matteo Mara2024-07-021-1/+1
| | | | This reverts commit f4ea3e9ab60aad9d268aad316f8fb13f1c54aa8b.
* SONAR-22447 jakarta-annotation-api version bumplukasz-jarocki-sonarsource2024-07-011-1/+1
|
* SONAR-22447 updated rename findbugs dependencylukasz-jarocki-sonarsource2024-06-281-1/+1
|
* SONAR-22152 Remove JGit workaroundEric Giffon2024-06-201-12/+0
| | | | No longer needed as the update to JGit 6.10 fixes the issue.
* SONAR-22423 Prevent log message about optional autowired constructorEric Giffon2024-06-181-1/+1
|
* Fix stacktrace in the Json outputJulien HENRY2024-05-132-4/+12
|
* Log the max memory allocated to the scanner engineJulien HENRY2024-05-131-0/+4
|
* SONAR-22152 Silent NoClassDefFoundError: ThrowableProxy from JGitJulien HENRY2024-05-131-0/+12
|
* Change log level to debug for user cacheJulien HENRY2024-05-131-1/+1
|
* Log the Java versionJulien HENRY2024-05-131-0/+15
|
* Unwrap MessageExceptionJulien HENRY2024-05-132-34/+91
|
* SONAR-22194 Use Okhttp interceptor to log requestsJulien HENRY2024-05-072-65/+66
|
* Fix some quality flawsJulien HENRY2024-05-024-23/+26
|
* SONAR-22159 Modify the way the creation date is set in junit testMatteo Mara2024-04-301-0/+11
|
* SONAR-22086 Add support to configure scanner with env variablesJulien HENRY2024-04-304-0/+273
|
* SONAR-22038 Support new SSL properties (#10987)Julien HENRY2024-04-3068-533/+1933
| | | | | * Move scanner HttpClient code in its own package * Factorize the computation of the Sonar User Home
* SONAR-22036 Fix logback initialization for old bootstrappersJulien HENRY2024-04-163-20/+29
| | | | | | | Because of https://jira.qos.ch/browse/LOGBACK-1537 it is not possible to use an include + configuring Logback manually via classpath loading without having very verbose logs appearing at startup. Duplicated the shared content in each log config file to fix the issue.
* SONAR-22039 Support new timeout propertiesJulien HENRY2024-04-152-11/+77
|
* SONAR-22037 Support new HTTP proxy propertiesJulien HENRY2024-04-152-25/+181
|
* SONAR-22036 Add a main to the scanner engineJulien HENRY2024-04-1510-25/+532
|
* SONAR-22054 Make property sonar.projectBaseDir optionalJulien HENRY2024-04-152-2/+18
|
* SONAR-22074 enable DownloadOnlyRequired by default10.5.0.89998Pierre2024-04-121-1/+1
|
* SONAR-22009 Fix NPE on SARIF import when Extensions don't have Rulesantoine.vinot2024-04-052-1/+37
|
* SGB-11 Do not cleanup tempdirDejan Milisavljevic2024-04-041-1/+5
|
* SONAR-21972 Fix tests to not depend on the operating system's localeJulien HENRY2024-04-032-4/+14
|
* SONAR-21587 adjust logging of SCM revision IDlukasz-jarocki-sonarsource2024-03-261-1/+1
|
* NO JIRA fix code smells after moving to lang3 libraryMatteo Mara2024-03-224-3/+4
|
* SONAR-21857 fix ssflukasz-jarocki-sonarsource2024-03-192-2/+2
|
* SONAR-21885 Fix native Git blame with Git CLI >= 2.43Julien HENRY2024-03-191-2/+2
|
* SONAR-21452 move from commons-lang:commons-lang to ↵Matteo Mara2024-03-1661-115/+116
| | | | org.apache.commons:commons-lang3
* SONAR-21643 Fix IT CompositeBlameCommandIT (#10709)Dejan Milisavljevic2024-02-231-21/+23
|
* SONAR-21643 Convert some IT tests to Junit 5 (#10672)Dejan Milisavljevic2024-02-224-65/+79
|
* SONAR-21643 Convert some parameterized tests to Junit 5 (#10666)Dejan Milisavljevic2024-02-216-205/+200
|
* SONAR-20958 Improve error message for startColumn on empty line (#10628)Dejan Milisavljevic2024-02-152-1/+35
|
* SONAR-21575 Populate the issue filter chain after optional plugins have been ↵Julien HENRY2024-02-099-69/+314
| | | | | | | loaded Optional plugins can contribute IssueFilter, so we should not load the list of extensions too early. Moving the IssueFilters class in the child container was not possible due to many dependencies, so the choice has been made to make it "mutable": it is instantiated early to allow injection, but the list of IssueFilter is populated later.
* Fix test depending on user localeJulien HENRY2024-02-091-1/+1
|
* SONAR-21195 sonar.plugins.downloadOnlyRequired defaults to false if not definedMatteo Mara2024-01-314-1/+9
|
* SONAR-20479 Replace "[re-]indexation" with "[re-]indexing" in user-facing ↵David Cho-Lerat2024-01-301-1/+1
| | | | messages and code comments
* NO-JIRA Make Gson usage more type-safeMarcono12342024-01-291-2/+1
| | | | | | Uses `Gson.fromJson(..., TypeToken<T>)` instead of `fromJson(..., Type)` Also replaces some usage of the deprecated `JsonParser()` constructor.
* SONAR-21195 Support deprecated file suffixes properties from optional analyzersMatteo Mara2024-01-261-0/+14
|
* SONAR-21195 Ensure properties from optional analyzers are available in the ↵Matteo Mara2024-01-191-0/+2
| | | | ProjectSensorContext
* SONAR-21195 Handle correctly .file.suffixes properties when their deprecated ↵Matteo Mara2024-01-191-4/+10
| | | | key is used
* SONAR-21195 Move ProjectSensorOptimizer to the correct containerMatteo Mara2024-01-192-5/+4
|
* SONAR-21195 Ensure deprecated properties from optional analyzers are respectedMatteo Mara2024-01-171-1/+3
|