aboutsummaryrefslogtreecommitdiffstats
path: root/server
Commit message (Collapse)AuthorAgeFilesLines
...
* SONAR-14932 Improve design for non-admin usersPhilippe Perrin2021-06-286-267/+270
|
* SONAR-14932 Add support for Bibucket Cloud project creationPhilippe Perrin2021-06-284-7/+22
|
* SONAR-13509 Adding title and link to rule in hotspot page.Mathieu Suen2021-06-282-22/+173
|
* SONAR-14760 Fix quality gate condition link in the overview page.Mathieu Suen2021-06-283-133/+179
|
* SSF-173 SONAR-15074Lukasz Jarocki2021-06-254-225/+267
|
* SONAR-14935 Display banner for project onlyPhilippe Perrin2021-06-242-1/+8
|
* SONAR-13191 Fail analysis when project is using an invalid keyJacek2021-06-242-52/+41
|
* SONAR-14844 Document the limitations on block PR policy when using a monorepomichaelbirnstiehl2021-06-241-1/+1
|
* SONAR-14943 Adjust project creation menu layoutWouter Admiraal2021-06-248-64/+151
|
* SONAR-14935 Fix banner display at low widthPhilippe Perrin2021-06-231-1/+0
|
* SONAR-14854 Support TLSv1.3,TLSv1.2 for Elasticsearch transport connection ↵Jacek2021-06-232-1/+4
| | | | encryption
* SONAR-11586 Do not let admin remove their own admin rightZipeng WU2021-06-232-2/+43
|
* SONAR-15057 Change Optional<Long> type to long, to comply CeTasksMBean with ↵Jacek2021-06-233-8/+6
| | | | JMX spec
* SONAR-15069 Adding tooltips for github DevOps settingsMathieu Suen2021-06-233-1/+13
|
* SONAR-15068 Adding tooltips for bitbucket DevOps settingsMathieu Suen2021-06-232-0/+77
|
* SONAR-15029 C-Family tutorial for Bitbucket PipelinesJeremy Davis2021-06-2211-161/+490
|
* SONAR-15034 Adding C/C++/Objective C to gitlab tutorial.Mathieu Suen2021-06-2212-110/+545
|
* SONAR-15028 C-Family config for GitHub ActionsJeremy Davis2021-06-2210-12/+615
|
* SONAR-15033 Add C/C++ tutorial for JenkinsMathieu Suen2021-06-2223-65/+543
|
* SONAR-15033 Adding compilation info boxMathieu Suen2021-06-223-0/+141
|
* SONAR-15028 Add HOC for C Language Feature flagJeremy Davis2021-06-222-0/+83
|
* SONAR-14851 Github QG status reporting - Add a note about App permissionsJeremy Davis2021-06-222-4/+64
|
* SONAR-14942 Improve Pull Request Decoration form if no DevOps Platforms are ↵Wouter Admiraal2021-06-223-17/+40
| | | | configured
* SONAR-14938 Fallback on the Create Project page on brand new instanceWouter Admiraal2021-06-225-131/+157
|
* SONAR-14851 updated docs and upgrade notes to inform user about permissions ↵Lukasz Jarocki2021-06-212-0/+11
| | | | needed
* SONAR-15056 It should be possible to create external issues with project ↵Tobias Stadler2021-06-191-1/+4
| | | | location
* SONAR-15035 Fix SQ quality issues related to the use of ImmutableListDuarte Meneses2021-06-181-1/+1
|
* DOCS add note about JS custom rule API removal to upgrade notesmichaelbirnstiehl2021-06-181-0/+3
|
* SONAR-14939 Mention in all tutorials that Pull Request Decoration will be ↵Wouter Admiraal2021-06-1833-121/+778
| | | | automatically set up
* Improve test coverageDuarte Meneses2021-06-1711-71/+347
|
* SONAR-14925 Remove code deprecated before 7.0 in the Plugin APIDuarte Meneses2021-06-1718-344/+55
|
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'snapshots' tableJacek2021-06-1713-4/+309
|
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'issues' tableJacek2021-06-1713-4/+367
|
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'events' tableJacek2021-06-1713-4/+300
|
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'ce_activity'Jacek2021-06-1714-39/+296
| | | | | | When switching from ID to UUID for 'ce_activity' table, it has been forgotten to drop unique index on UUID, though PK has been created. In all DBs it worked well, but for Oracle already existing index has been associated with PK (worked well on upgrade path). When new schema has been introduced, that's not the case, as for Oracle when creating PK, unique index also will be created. That means we tried to create another index on top of PK index, which was causing failures. To fix that issue previous UUID index will be dropped and PK will be recreated, so that we end with clean state.
* SONAR-14960 Fix Elasticsearch deprecation warning for JAVA_HOMEJacek2021-06-172-4/+4
|
* SONAR-14933 Fix missing SVG pathWouter Admiraal2021-06-172-22/+13
|
* SONAR-14934 Improve the manual tutorialWouter Admiraal2021-06-1744-260/+1102
|
* SONAR-14935 Prompt users for next steps once the first analysis is finishedWouter Admiraal2021-06-1716-301/+1030
|
* SONAR-14935 add 'detectedCI' fieldJacek2021-06-1710-29/+106
|
* SONAR-14792 Add 9.0 nop migration to not enforce DB downgradeJacek2021-06-167-1/+186
|
* DOCS add Java 11 requirement to upgrade notesmichaelbirnstiehl2021-06-161-1/+7
|
* SONAR-14792 Code smell fixesJacek2021-06-161-120/+132
|
* SONAR-14792 Drop `newLenientVarcharBuilder` method from initial schemaJacek2021-06-161-150/+143
|
* SONAR-14792 Fix schema-sq.ddl - order of PKsJacek2021-06-161-32/+32
|
* SONAR-14792 Fix PopulateInitialSchemaTestJacek2021-06-163-1050/+972
|
* SONAR-14792 cleanup CreateInitialSchema to be 9.0Jacek2021-06-163-251/+450
|
* SONAR-14792 Drop not existing tables from init schemaJacek2021-06-163-204/+50
|
* SONAR-14792 Bump min upgrade version to current LTSJacek2021-06-162-14/+15
|
* SONAR-14792 Drop migration classes prior 8.9Jacek2021-06-161417-63888/+2
|