]> source.dussan.org Git - sonarqube.git/log
sonarqube.git
19 months agoSONAR-18408 Integrate git-files-blame algorithm to scanner-engine
Léo Geoffroy [Tue, 14 Mar 2023 15:22:08 +0000 (16:22 +0100)]
SONAR-18408 Integrate git-files-blame algorithm to scanner-engine

Co-authored-by: lukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com>
Co-authored-by: leo-geoffroy-sonarsource <leo.geoffroy@sonarsource.com>
Co-authored-by: benjamin-campomenosi-sonarsource <benjamin.campomenosi@sonarsource.com>
Co-authored-by: Duarte Meneses <duarte.meneses@sonarsource.com>
19 months ago[No JIRA] Fix coverage for the design system
Jeremy Davis [Tue, 14 Mar 2023 13:58:35 +0000 (14:58 +0100)]
[No JIRA] Fix coverage for the design system

19 months agoSONAR-18679 move old UTs to ITs in sonar modules
Léo Geoffroy [Tue, 14 Mar 2023 11:08:58 +0000 (12:08 +0100)]
SONAR-18679 move old UTs to ITs in sonar modules

19 months agoFix some code smells in MMF-3035
David Cho-Lerat [Mon, 13 Mar 2023 11:35:13 +0000 (12:35 +0100)]
Fix some code smells in MMF-3035

19 months agoSONAR-18638 Drop deprecated fields in Rules WS API.
Dimitris Kavvathas [Thu, 9 Mar 2023 16:19:37 +0000 (17:19 +0100)]
SONAR-18638 Drop deprecated fields in Rules WS API.

Drop "effortToFixDescription" and replace with "gapDescription".
Drop "debtRemFnCoeff" and replace with "remFnGapMultiplier".
Drop "defaultDebtRemFnCoeff" and replace with "defaultRemFnGapMultiplier".
Drop "debtRemFnOffset" and replace with "remFnBaseEffort".
Drop "defaultDebtRemFnOffset" and replace with "defaultRemFnBaseEffort".
Correct the version when the field 'scope' was added.
Drop "debtOverloaded" and replace with "remFnOverloaded".
Deprecate "defaultDebtRemFnType" and "debtRemFnType" and replace with "defaultRemFnType" and "remFnType" accordingly.
Deprecate "defaultDebtRemFn" and "debtRemFn" and replace with "defaultRemFn" and "remFn" accordingly.

19 months agoSONAR-18638 Remove deprecated fields in Rule API response
Ambroise C [Thu, 9 Mar 2023 10:37:28 +0000 (11:37 +0100)]
SONAR-18638 Remove deprecated fields in Rule API response

19 months agoActivate useful @typescript-eslint rules & fix warnings in `design-system/` and relat...
David Cho-Lerat [Mon, 13 Mar 2023 16:51:08 +0000 (17:51 +0100)]
Activate useful @typescript-eslint rules & fix warnings in `design-system/` and related components (#7759)

19 months agoSONAR-18679 refactored sonar-db-core and sonar-db-dao to match testing strategy
Lukasz Jarocki [Mon, 13 Mar 2023 16:06:21 +0000 (17:06 +0100)]
SONAR-18679 refactored sonar-db-core and sonar-db-dao to match testing strategy

19 months agoSONAR-18679 refactored sonar-db-core and sonar-db-dao to match testing strategy
Lukasz Jarocki [Fri, 10 Mar 2023 08:42:50 +0000 (09:42 +0100)]
SONAR-18679 refactored sonar-db-core and sonar-db-dao to match testing strategy

19 months agoSONAR-18573 - Improve login validation for User creation
Benjamin Campomenosi [Mon, 13 Mar 2023 15:46:03 +0000 (16:46 +0100)]
SONAR-18573 - Improve login validation for User creation

19 months agoAdd "ts-check" script for `design-system/`
David Cho-Lerat [Mon, 13 Mar 2023 12:24:38 +0000 (13:24 +0100)]
Add "ts-check" script for `design-system/`

19 months agoSONAR-18629 Drop deprecated test utility methods in Issue and Rule testing
Zipeng WU [Fri, 10 Mar 2023 12:45:43 +0000 (13:45 +0100)]
SONAR-18629 Drop deprecated test utility methods in Issue and Rule testing

19 months agoSONAR-18524 New Main App bar
Jeremy Davis [Wed, 22 Feb 2023 15:18:48 +0000 (16:18 +0100)]
SONAR-18524 New Main App bar

19 months agoSONAR-18707 Drop and refactor BBTs for quality profile
stanislavh [Fri, 10 Mar 2023 08:10:21 +0000 (09:10 +0100)]
SONAR-18707 Drop and refactor BBTs for quality profile

19 months ago[SONAR-15839] add reversing of metric deprecation changelog.
Steve Marion [Fri, 10 Mar 2023 08:46:49 +0000 (09:46 +0100)]
[SONAR-15839] add reversing of metric deprecation changelog.

19 months agoSONAR-17705 update of the changelog of ce/activity_status
Matteo Mara [Fri, 10 Mar 2023 11:05:05 +0000 (12:05 +0100)]
SONAR-17705 update of the changelog of ce/activity_status

19 months agoSONAR-18647 Remove parameter period in api/measures endpoints
Zipeng WU [Thu, 9 Mar 2023 15:16:52 +0000 (16:16 +0100)]
SONAR-18647 Remove parameter period in api/measures endpoints

19 months ago[NO-JIRA] optimize slow selectProjectUuidsAssociatedToDefaultQualityProfileByLanguage
Thomas de Grenier de Latour [Wed, 1 Mar 2023 23:49:03 +0000 (00:49 +0100)]
[NO-JIRA] optimize slow selectProjectUuidsAssociatedToDefaultQualityProfileByLanguage

The project DAO `selectProjectUuidsAssociatedToDefaultQualityProfileByLanguage`
SQL query implies scanning through many rows of the `live_measures` table . This
takes several minutes to execute in some setups (Postgres 13, 200M rows in the
table), making SonarQube upgrades painfully slow (this request is executed for
each update of a bundled quality profile).

A similar query can be achieved by joining the `projects` table, with a drastic
improvement to the execution plan. The results are not the same though: this new
version only returns uuids of actual projects, whereas the original one also
returns uuids of other components (not existing in the projects table). But this
is actually an improvement too: the only call sites for this DAO method (in
`QualityProfileChangeEventServiceImpl`) uses the results as an input for the
`ProjectDAO.selectByUuids()` method, which only looks at the `projects` table.

19 months agoSONAR-18627 Drop overridden deprecated methods from DbTester
Dimitris Kavvathas [Wed, 8 Mar 2023 17:05:26 +0000 (18:05 +0100)]
SONAR-18627 Drop overridden deprecated methods from DbTester

19 months agoSONAR-18600 Remove deprecated and unused function scrollHorizontally
Ambroise C [Wed, 8 Mar 2023 13:32:19 +0000 (14:32 +0100)]
SONAR-18600 Remove deprecated and unused function scrollHorizontally

19 months agoSONAR-18675 Drop UI selenium tests for settings page
stanislavh [Tue, 7 Mar 2023 11:17:26 +0000 (12:17 +0100)]
SONAR-18675 Drop UI selenium tests for settings page

19 months agoSONAR-18649 Remove the deprecated SANS Top 25 Security report
Philippe Perrin [Thu, 9 Mar 2023 08:08:40 +0000 (09:08 +0100)]
SONAR-18649 Remove the deprecated SANS Top 25 Security report

19 months agoNO-JIRA using Scanner Gradle 4 to scan SonarQube
Lukasz Jarocki [Tue, 7 Mar 2023 09:51:30 +0000 (10:51 +0100)]
NO-JIRA using Scanner Gradle 4 to scan SonarQube

19 months agoNO-JIRA updated tutorial to use latest Scanner Gradle
Lukasz Jarocki [Tue, 7 Mar 2023 09:51:03 +0000 (10:51 +0100)]
NO-JIRA updated tutorial to use latest Scanner Gradle

19 months agoSONAR-18628 Drop GlobalPermissions class and replace with GlobalPermission enum.
Dimitris Kavvathas [Mon, 6 Mar 2023 14:38:50 +0000 (15:38 +0100)]
SONAR-18628 Drop GlobalPermissions class and replace with GlobalPermission enum.

19 months agoSONAR-18600 Remove deprecated items that are not used anymore
Zipeng WU [Mon, 6 Mar 2023 17:46:02 +0000 (18:46 +0100)]
SONAR-18600 Remove deprecated items that are not used anymore

19 months agoSONAR-18593 Migrate rtl for settings
stanislavh [Fri, 3 Mar 2023 12:48:04 +0000 (13:48 +0100)]
SONAR-18593 Migrate rtl for settings

19 months agoSONAR-18536 Migrate enzyme to RTL for Project Overview
guillaume-peoch-sonarsource [Wed, 22 Feb 2023 16:43:10 +0000 (17:43 +0100)]
SONAR-18536 Migrate enzyme to RTL for Project Overview

19 months agoSONAR-18214 Add documentation url to api/navigation/global
Eric Giffon [Fri, 3 Mar 2023 10:54:13 +0000 (11:54 +0100)]
SONAR-18214 Add documentation url to api/navigation/global

19 months agoSONAR-18600 Remove unused frontend deprecated functions
Ambroise C [Fri, 3 Mar 2023 13:50:17 +0000 (14:50 +0100)]
SONAR-18600 Remove unused frontend deprecated functions

19 months agoSONAR-18553 Migrate concise issues list components tests to RTL
7PH [Thu, 2 Mar 2023 10:21:09 +0000 (11:21 +0100)]
SONAR-18553 Migrate concise issues list components tests to RTL

19 months ago[SONAR-16198] update text in the administration panel regarding common repositories
Matteo Mara [Fri, 3 Mar 2023 16:01:35 +0000 (17:01 +0100)]
[SONAR-16198] update text in the administration panel regarding common repositories

19 months agoSONAR-18565 - Improve IssueIndexer performance to use markAsUnchanged flag
Antoine Vinot [Fri, 24 Feb 2023 15:50:16 +0000 (16:50 +0100)]
SONAR-18565 - Improve IssueIndexer performance to use markAsUnchanged flag

19 months agoSONAR-18431 Migrate activity tests to RTL
Wouter Admiraal [Tue, 28 Feb 2023 11:32:55 +0000 (12:32 +0100)]
SONAR-18431 Migrate activity tests to RTL

19 months agoSONAR-18580 add RTL for settings (part1)
stanislavh [Wed, 1 Mar 2023 12:32:28 +0000 (13:32 +0100)]
SONAR-18580 add RTL for settings (part1)

19 months agoSONAR-18552 Migrate issues app components to RTL
7PH [Fri, 24 Feb 2023 10:38:09 +0000 (11:38 +0100)]
SONAR-18552 Migrate issues app components to RTL

19 months agoSONAR-13615 Prevent scanner failure in case of null character in issue message
Eric Giffon [Wed, 1 Mar 2023 15:54:44 +0000 (16:54 +0100)]
SONAR-13615 Prevent scanner failure in case of null character in issue message

19 months agoNO-JIRA Fix unit test on windows
Eric Giffon [Thu, 2 Mar 2023 09:30:30 +0000 (10:30 +0100)]
NO-JIRA Fix unit test on windows

19 months ago[NO JIRA] Revert NVARCHAR to VARCHAR conversion for MSSQL
Alain Kermis [Wed, 1 Mar 2023 15:41:07 +0000 (16:41 +0100)]
[NO JIRA] Revert NVARCHAR to VARCHAR conversion for MSSQL

19 months agoSONAR-18372 Display specific error message when failing password change
Ambroise C [Wed, 1 Mar 2023 08:49:07 +0000 (09:49 +0100)]
SONAR-18372 Display specific error message when failing password change

Also remove some code smells

19 months agoSONAR-18372 Return 400 Bad Request with message on changePasswordAction when user...
Dimitris Kavvathas [Tue, 28 Feb 2023 10:43:10 +0000 (11:43 +0100)]
SONAR-18372 Return 400 Bad Request with message on changePasswordAction when user input is incorrect.

19 months agoSONAR-18561 Add IT to document SonarLint URL access
Mathieu Suen [Mon, 27 Feb 2023 08:34:36 +0000 (09:34 +0100)]
SONAR-18561 Add IT to document SonarLint URL access

19 months agoSONAR-17525 MSSQL UUID column should use VARCHAR instead NVARCHAR
Alain Kermis [Tue, 28 Feb 2023 09:40:14 +0000 (10:40 +0100)]
SONAR-17525 MSSQL UUID column should use VARCHAR instead NVARCHAR

19 months agoSONAR-18535 SONAR-18547 Microfocus compilation constants for COBOL language is broken...
stanislavh [Fri, 24 Feb 2023 14:20:44 +0000 (15:20 +0100)]
SONAR-18535 SONAR-18547 Microfocus compilation constants for COBOL language is broken on ui

19 months agoSONAR-18267 Fix duplicate issue changes
Eric Giffon [Tue, 28 Feb 2023 09:45:39 +0000 (10:45 +0100)]
SONAR-18267 Fix duplicate issue changes

19 months agoSONAR-18429 Migrate permission templates app tests to RTL
Wouter Admiraal [Thu, 23 Feb 2023 14:27:41 +0000 (15:27 +0100)]
SONAR-18429 Migrate permission templates app tests to RTL

19 months agoSONAR-16198 removing the 6 built in common rules
Matteo Mara [Fri, 24 Feb 2023 11:01:45 +0000 (12:01 +0100)]
SONAR-16198 removing the 6 built in common rules

19 months agoBUILD-2475 Cirrus-ci task name are too long (#7680)
Sebastien Vermeille [Mon, 27 Feb 2023 16:36:25 +0000 (17:36 +0100)]
BUILD-2475 Cirrus-ci task name are too long (#7680)

* Define a name pattern instead of letting cirrus generating it
  That way it is more concise
* Add alias
  That way this task can still be retrieved via depend_on

19 months ago[NO-JIRA] Remove obsolete generate_batch_reports.sh and replay_batch.sh
Zipeng WU [Mon, 27 Feb 2023 13:16:22 +0000 (14:16 +0100)]
[NO-JIRA] Remove obsolete generate_batch_reports.sh and replay_batch.sh

19 months agoSONAR-18444 RTL migration tutorials
stanislavh [Tue, 21 Feb 2023 14:45:45 +0000 (15:45 +0100)]
SONAR-18444 RTL migration tutorials

19 months ago[NO-JIRA] Change memory and CPU for cirrus devops platform tasks
Kevin Silva [Thu, 23 Feb 2023 15:55:51 +0000 (16:55 +0100)]
[NO-JIRA] Change memory and CPU for cirrus devops platform tasks

19 months agoSONAR-18464 React Testing Library for Security Hotspot - As a user without edit permi...
Kevin Silva [Wed, 22 Feb 2023 09:55:59 +0000 (10:55 +0100)]
SONAR-18464 React Testing Library for Security Hotspot - As a user without edit permissions

19 months ago[NO-JIRA] Increase memory and CPU on cirrus for devops
Kevin Silva [Thu, 23 Feb 2023 13:52:38 +0000 (14:52 +0100)]
[NO-JIRA] Increase memory and CPU on cirrus for devops

19 months ago[NO-JIRA] remove assumption on a random value that could fail
Steve Marion [Thu, 23 Feb 2023 13:34:44 +0000 (14:34 +0100)]
[NO-JIRA] remove assumption on a random value that could fail

19 months ago[SONAR-18502] add test for index drop change
Steve Marion [Thu, 23 Feb 2023 10:46:40 +0000 (11:46 +0100)]
[SONAR-18502] add test for index drop change

explicitely test the case where actual index is different and longer than authorized

19 months agoSONAR-18545 Report processing fails when a warning message is too long
Zipeng WU [Wed, 22 Feb 2023 13:57:06 +0000 (14:57 +0100)]
SONAR-18545 Report processing fails when a warning message is too long

19 months ago[SONAR-18476] fix measures/component changelog
Matteo Mara [Wed, 22 Feb 2023 10:00:29 +0000 (11:00 +0100)]
[SONAR-18476] fix measures/component changelog

19 months ago[SONAR-18502] move validation of drop index param
Steve Marion [Wed, 22 Feb 2023 11:03:09 +0000 (12:03 +0100)]
[SONAR-18502] move validation of drop index param

This is done to allow to run query based on an actual index name than may not be valid instead of expected one.
Refactor drop index structure to make it simpler and safer.

19 months agoSONAR-18430 Migrate permissions app tests to RTL
Wouter Admiraal [Tue, 21 Feb 2023 07:17:04 +0000 (08:17 +0100)]
SONAR-18430 Migrate permissions app tests to RTL

19 months ago[NO-JIRA] Adjust our supported browser list
Philippe Perrin [Thu, 9 Feb 2023 16:04:59 +0000 (17:04 +0100)]
[NO-JIRA] Adjust our supported browser list

19 months agoSONAR-18391 Improve layout landmark
Mathieu Suen [Fri, 17 Feb 2023 11:29:23 +0000 (12:29 +0100)]
SONAR-18391 Improve layout landmark

19 months ago[SONAR-18510] Fix typo in Administration page
Zipeng WU [Wed, 22 Feb 2023 13:12:19 +0000 (14:12 +0100)]
[SONAR-18510] Fix typo in Administration page

19 months agoRevert "[NO-JIRA] Skip SQ analysis"
Jacek Poreda [Wed, 22 Feb 2023 09:53:28 +0000 (10:53 +0100)]
Revert "[NO-JIRA] Skip SQ analysis"

This reverts commit f7800eedc2ef38582b45f0d39360e8ea6c48a12a.

19 months agoSONAR-18484 fix startup of Web API v2 in DCE mode
Aurelien Poscia [Wed, 22 Feb 2023 11:16:16 +0000 (12:16 +0100)]
SONAR-18484 fix startup of Web API v2 in DCE mode

19 months ago[NO-JIRA] Skip SQ analysis
Jacek Poreda [Wed, 22 Feb 2023 09:47:59 +0000 (10:47 +0100)]
[NO-JIRA] Skip SQ analysis

19 months agoSONAR-17714 Fix elasticsearch/bin directory issue
Jacek Poreda [Wed, 22 Feb 2023 09:39:50 +0000 (10:39 +0100)]
SONAR-17714 Fix elasticsearch/bin directory issue

Elasticsearch requires to not have empty elasticsearch/bin directory, hence we are excluding some of the scripts from the archive

19 months agoSONAR-18491 Set up the build system for the new UI
David Cho-Lerat [Mon, 13 Feb 2023 18:02:44 +0000 (19:02 +0100)]
SONAR-18491 Set up the build system for the new UI

19 months agoSONAR-18458 React Testing Library for Security Hotspot - As any user
Kevin Silva [Mon, 20 Feb 2023 14:08:48 +0000 (15:08 +0100)]
SONAR-18458 React Testing Library for Security Hotspot - As any user

19 months agoSONAR-18399 Use react day picker native navigation instead of our custom one
7PH [Tue, 21 Feb 2023 08:29:35 +0000 (09:29 +0100)]
SONAR-18399 Use react day picker native navigation instead of our custom one

19 months ago[NO-JIRA] fix DateTimeFormatter to accept different locales
Kevin Silva [Tue, 21 Feb 2023 11:01:13 +0000 (12:01 +0100)]
[NO-JIRA] fix DateTimeFormatter to accept different locales

19 months agoSONAR-18484 - Add api/v2/system/health endpoint
Antoine Vigneau [Fri, 17 Feb 2023 09:33:06 +0000 (10:33 +0100)]
SONAR-18484 - Add api/v2/system/health endpoint

19 months agoSONAR-18484 Documentation for SonarQube Web API V2 (OpenApi/Swagger)
Aurelien Poscia [Wed, 15 Feb 2023 10:48:25 +0000 (11:48 +0100)]
SONAR-18484 Documentation for SonarQube Web API V2 (OpenApi/Swagger)

19 months agoSONAR-18484 Add api/v2/system/liveness endpoint
Pierre [Wed, 27 Jul 2022 08:32:33 +0000 (10:32 +0200)]
SONAR-18484 Add api/v2/system/liveness endpoint

19 months ago[NO-JIRA] Optimize query for 'ncloc' metric for largest branch per project
Jacek Poreda [Mon, 20 Feb 2023 11:05:32 +0000 (12:05 +0100)]
[NO-JIRA] Optimize query for 'ncloc' metric for largest branch per project

19 months agoSONAR-18472 Resolve telemetry performance issue
Alain Kermis [Fri, 17 Feb 2023 10:44:37 +0000 (11:44 +0100)]
SONAR-18472 Resolve telemetry performance issue

Co-authored-by: Jacek Poreda <jacek.poreda@sonarsource.com>
19 months agoSONAR-17810 Use Visibility enum instead of hard-coded strings
Wouter Admiraal [Tue, 14 Feb 2023 09:59:50 +0000 (10:59 +0100)]
SONAR-17810 Use Visibility enum instead of hard-coded strings

19 months agoSONAR-18217 Correct order of conditions in quality gate page
stanislavh [Fri, 17 Feb 2023 13:32:39 +0000 (14:32 +0100)]
SONAR-18217 Correct order of conditions in quality gate page

19 months agoSONAR-17812 Upgrade intl to 6.2.5
stanislavh [Thu, 16 Feb 2023 08:55:38 +0000 (09:55 +0100)]
SONAR-17812 Upgrade intl to 6.2.5

19 months agoSONAR-8219 Make users.user_local column not nullable
Eric Giffon [Wed, 15 Feb 2023 14:56:20 +0000 (15:56 +0100)]
SONAR-8219 Make users.user_local column not nullable

19 months agoSONAR-18415 Fix day picker keyboard navigation triggering page shortcut due to React...
7PH [Wed, 15 Feb 2023 11:03:56 +0000 (12:03 +0100)]
SONAR-18415 Fix day picker keyboard navigation triggering page shortcut due to React 16 event delegation

20 months agoSONAR-18481 Readjust the heights of security reports categories
guillaume-peoch-sonarsource [Wed, 15 Feb 2023 16:26:30 +0000 (17:26 +0100)]
SONAR-18481 Readjust the heights of security reports categories

20 months ago[NO JIRA] rename private settings.gradle to private-settings.gradle
Steve Marion [Fri, 17 Feb 2023 14:09:46 +0000 (15:09 +0100)]
[NO JIRA] rename private settings.gradle to private-settings.gradle

There can only be one settings.gradle file per project, this extra one is confusing intellij (thinking private is a root project) and block the usage of features such a dependency analysis on any private modules.

20 months agoSONAR-14640 Add sonar.projectName scanner parameter in tutorials
stanislavh [Wed, 15 Feb 2023 09:25:20 +0000 (10:25 +0100)]
SONAR-14640 Add sonar.projectName scanner parameter in tutorials

20 months agoSONAR-18215 Add property to override the documentation base url
Eric Giffon [Wed, 8 Feb 2023 14:16:21 +0000 (15:16 +0100)]
SONAR-18215 Add property to override the documentation base url

20 months agoOptimize gradle build to use the incremental build feature
Olaf Śnieżek [Thu, 17 Nov 2022 11:53:52 +0000 (12:53 +0100)]
Optimize gradle build to use the incremental build feature

20 months agoSONAR-18465 Remove sonar-check-api from SonarQube
Duarte Meneses [Thu, 9 Feb 2023 16:08:06 +0000 (10:08 -0600)]
SONAR-18465 Remove sonar-check-api from SonarQube

20 months agoSONAR-18128 SONAR-18358 SONAR-18368 Page titles do not identify purpose of pages
stanislavh [Mon, 13 Feb 2023 10:44:11 +0000 (11:44 +0100)]
SONAR-18128 SONAR-18358 SONAR-18368 Page titles do not identify purpose of pages

20 months agoSONAR-18405 SONAR-18420 Update the Security Report PDF template
guillaume-peoch-sonarsource [Fri, 10 Feb 2023 15:51:56 +0000 (16:51 +0100)]
SONAR-18405 SONAR-18420 Update the Security Report PDF template

20 months agoSONAR-18361 Improve accessibility of the quality profile compare page
7PH [Thu, 9 Feb 2023 09:34:39 +0000 (10:34 +0100)]
SONAR-18361 Improve accessibility of the quality profile compare page

20 months agoSONAR-18130 Breadcrumb region is missing appropriate roles and/or attributes
stanislavh [Fri, 10 Feb 2023 11:20:50 +0000 (12:20 +0100)]
SONAR-18130 Breadcrumb region is missing appropriate roles and/or attributes

20 months agoSONAR-18369 Text spacing content cut off
stanislavh [Fri, 10 Feb 2023 09:57:31 +0000 (10:57 +0100)]
SONAR-18369 Text spacing content cut off

20 months agoSONAR-18364 An icon lacks 3 to 1 contrast ratio
stanislavh [Fri, 10 Feb 2023 09:57:22 +0000 (10:57 +0100)]
SONAR-18364 An icon lacks 3 to 1 contrast ratio

20 months agoSONAR-18362 Text Alternative is missing
stanislavh [Fri, 10 Feb 2023 09:54:39 +0000 (10:54 +0100)]
SONAR-18362 Text Alternative is missing

20 months agoSONAR-18397 add ITs for permanent users de-provisioning triggered by Azure (SCIM)
Aurelien Poscia [Fri, 10 Feb 2023 09:47:32 +0000 (10:47 +0100)]
SONAR-18397 add ITs for permanent users de-provisioning triggered by Azure (SCIM)

20 months agoSONAR-18466 reindexing a project should not delete activities of other projects
Pierre [Thu, 9 Feb 2023 16:35:43 +0000 (17:35 +0100)]
SONAR-18466 reindexing a project should not delete activities of other projects

20 months agoSONAR-18396 - Support user soft deletion on Azure through SCIM
Antoine Vigneau [Wed, 8 Feb 2023 09:39:00 +0000 (10:39 +0100)]
SONAR-18396 - Support user soft deletion on Azure through SCIM

20 months agoSONAR-18397 Add SCIM protocol DELETE /Users endpoint.
Wojtek Wajerowicz [Wed, 8 Feb 2023 14:00:03 +0000 (15:00 +0100)]
SONAR-18397 Add SCIM protocol DELETE /Users endpoint.

20 months agoSONAR-18356 Visual heading text is not marked as heading
stanislavh [Wed, 8 Feb 2023 10:46:28 +0000 (11:46 +0100)]
SONAR-18356 Visual heading text is not marked as heading

20 months agoSONAR-18347 Elements must have sufficient color contrast
stanislavh [Wed, 8 Feb 2023 10:45:47 +0000 (11:45 +0100)]
SONAR-18347 Elements must have sufficient color contrast

20 months agoSONAR-18343 Purpose of link is not clear in context
stanislavh [Tue, 7 Feb 2023 09:32:49 +0000 (10:32 +0100)]
SONAR-18343 Purpose of link is not clear in context