]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-13623 Replace "master/slave" with a better terminology
authorWouter Admiraal <wouter.admiraal@sonarsource.com>
Thu, 26 Aug 2021 08:04:55 +0000 (10:04 +0200)
committersonartech <sonartech@sonarsource.com>
Thu, 26 Aug 2021 20:04:29 +0000 (20:04 +0000)
17 files changed:
server/sonar-docs/src/pages/analysis/azuredevops-integration.md
server/sonar-docs/src/pages/analysis/bitbucket-cloud-integration.md
server/sonar-docs/src/pages/analysis/gitlab-integration.md
server/sonar-docs/src/pages/branches/branches-faq.md
server/sonar-docs/src/pages/branches/overview.md
server/sonar-docs/src/pages/setup/operate-cluster.md
server/sonar-docs/src/pages/sonarcloud/integrations/github.md
server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/AnalysisCommand-test.tsx.snap
server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/commands/CFamily.ts
server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/commands/DotNet.ts
server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/commands/Gradle.ts
server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/commands/Maven.ts
server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/commands/Others.ts
server/sonar-web/src/main/js/components/tutorials/github-action/commands/CFamily.tsx
server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/CFamily-test.tsx.snap
server/sonar-web/src/main/js/components/tutorials/gitlabci/commands/PipeCommand.tsx
server/sonar-web/src/main/js/components/tutorials/gitlabci/commands/__tests__/__snapshots__/PipeCommand-test.tsx.snap

index 982b7273dc7823137aa38ab1a07b589fa2126905..540e074e6700c7a7f775981a4948aa3acc10c542 100644 (file)
@@ -87,7 +87,7 @@ Select your build technology below to expand the instructions for configuring br
 | **.yml example**:
 | ```
 | trigger:
-| - master
+| - master # or the name of your main branch
 | - feature/*
 |
 | steps:
@@ -128,7 +128,7 @@ Select your build technology below to expand the instructions for configuring br
 | **.yml example**:
 | ```
 | trigger:
-| - master
+| - master # or the name of your main branch
 | - feature/*
 |
 | steps:
@@ -160,7 +160,7 @@ Select your build technology below to expand the instructions for configuring br
 | **.yml example**:
 | ```
 | trigger:
-| - master
+| - master # or the name of your main branch
 | - feature/*
 |
 | steps:
@@ -233,7 +233,7 @@ Select your build technology below to expand the instructions for configuring br
 | **.yml example**:
 | ```
 | trigger:
-| - master
+| - master # or the name of your main branch
 | - feature/*
 |
 | steps:
index 6722f4d8fb1b7fb52da2fba100bea0454448b147..040e769be65bab67bd4012bc0361a50aea2228ac 100644 (file)
@@ -100,7 +100,7 @@ Click the scanner you're using below to expand the example configuration:
 |
 | pipelines:
 |   branches:
-|     '{master,develop}':
+|     '{master,main,develop}':
 |       - step:
 |           name: SonarQube analysis
 |           caches:
@@ -139,7 +139,7 @@ Click the scanner you're using below to expand the example configuration:
 |
 | pipelines:
 |   branches:
-|     '{master,develop}':
+|     '{master,main,develop}':
 |       - step:
 |           name: SonarQube analysis
 |           caches:
@@ -172,7 +172,7 @@ Click the scanner you're using below to expand the example configuration:
 | image: mcr.microsoft.com/dotnet/core/sdk:latest
 | pipelines:
 |   branches:
-|     '{master}':
+|     '{master,main,develop}':
 |       - step:
 |           name: SonarQube analysis
 |           caches:
@@ -224,7 +224,7 @@ Click the scanner you're using below to expand the example configuration:
 |
 |    pipelines:
 |      branches:
-|        '{master,develop}':
+|        '{master,main,develop}':
 |          - step:
 |              name: SonarQube analysis
 |              image: sonarsource/sonar-scanner-cli:latest
index f13ccd4d78ec18053cb43e87b5ff97693f339efd..93646f1bc4135ba3b49cea72d1582893c3c8627a 100644 (file)
@@ -124,7 +124,7 @@ Click the scanner you're using below to expand an example configuration:
 |   allow_failure: true
 |   only:
 |     - merge_requests
-|     - master
+|     - master # or the name of your main branch
 |     - develop
 | ```
  
@@ -146,7 +146,7 @@ Click the scanner you're using below to expand an example configuration:
 |   allow_failure: true
 |   only:
 |     - merge_requests
-|     - master
+|     - master # or the name of your main branch
 |     - develop
 | ```
 
@@ -170,7 +170,7 @@ Click the scanner you're using below to expand an example configuration:
 |   allow_failure: true
 |   only:
 |     - merge_requests
-|     - master
+|     - master # or the name of your main branch
 |     - develop
 | ```
 |
index c832df0409ab8995a259c9d292a98bfc651d9832..f010555a7ee17ee0b6d5247dc43744e48f6dc7b3 100644 (file)
@@ -12,7 +12,7 @@ Branches will be deleted automatically when they are inactive according to your
 No, you don't need to be connected to a SCM. However, SCM data still enhances the SonarQube experience (including issue auto-assignment and issue backdating), and you will be well prepared to take advantage of [Pull Request Analysis](/analysis/pull-request/)!
 
 ## What if I mark an Issue "Won't Fix" or "False-Positive" in a branch?
-It will be replicated as such when creating a pull request and merging the pull request into the master branch.
+It will be replicated as such when creating a pull request and merging the pull request into the main branch.
 
 If you're using the **Reference Branch** [New Code](/project-administration/new-code-period/) definition, issues in the reference branch that come from a feature branch automatically inherit their attributes (including "Won't Fix" and "False Positive" resolutions) from the feature branch.
 ## Can I manually delete a branch?  
index e44a8bb91784a843d194a029724079ba5381dab9..e0821123b1eba659e28ccb026a8cb64b508bc6e3 100644 (file)
@@ -21,7 +21,7 @@ Starting in [Developer Edition](https://redirect.sonarsource.com/editions/develo
 
 ### Settings and Quality Profiles on Branches
 
-Branch settings and Quality Profiles are the same as those set for the master branch, and by design, it's not possible to configure other values. The New Code Period is the only exception to this as it can be set on a branch-by-branch basis. 
+Branch settings and Quality Profiles are the same as those set for the main branch, and by design, it's not possible to configure other values. The New Code Period is the only exception to this as it can be set on a branch-by-branch basis.
 
 ### New Code
 
@@ -46,17 +46,17 @@ A branch is created when the `sonar.branch.name` parameter is passed during anal
 
 You need to add a condition to your pipeline script to ensure only relevant branches are analyzed. For example, you wouldn't want to run analysis on feature branches that won't need analysis until they have pull requests . 
 
-In the following example, analysis would be limited to branches named `master` or `release/*`.
+In the following example, analysis would be limited to branches named `main` or `release/*`.
 
 ```
-if [[ "$CI_BRANCH_NAME" == master ]] || [[ "$CI_BRANCH_NAME" == release/* ]]; then
+if [[ "$CI_BRANCH_NAME" == main ]] || [[ "$CI_BRANCH_NAME" == release/* ]]; then
   ./gradlew sonarqube
 fi
 ``` 
 
 ### Issue Creation and Synchronization
 
-During the first analysis, issues (type, severity, status, assignee, change log, comments) are synchronized with the Main Branch. In each synchronized issue, a comment is added to the change log of the issue on the branch: "The issue has been copied from branch 'master' to branch 'yyy'".
+During the first analysis, issues (type, severity, status, assignee, change log, comments) are synchronized with the Main Branch. In each synchronized issue, a comment is added to the change log of the issue on the branch: "The issue has been copied from branch 'main' to branch 'yyy'".
 
 At each subsequent analysis of the branch, any new issue in the Main Branch that comes from a pull request automatically inherits its attributes (type, severity, ...) from the pull request. A comment is added to the change log of the issue on the branch: "The issue has been merged from 'xxx' into 'yyy'"
 
index 6395a9c25e3c3748c2ca5dda2dcca40c16d9aaa3..4d0768894257ec0b0a71db582b908f0e92844f9c 100644 (file)
@@ -148,7 +148,7 @@ Property  | Description | Default | Required
 `sonar.cluster.es.hosts`|Comma-delimited list of search hosts in the cluster. The list can contain either the host or the host and port but not both. The item format is `sonar.cluster.node.es.host` for host only or`sonar.cluster.node.es.host:sonar.cluster.node.es.port` for host and port.| |yes
 `sonar.cluster.node.es.host`|Elasticsearch host of the current node used by Elasticsearch internal communication to form a cluster (TCP transport).|localhost|yes
 `sonar.cluster.node.es.port`|Elasticsearch port of the current node used by Elasticsearch internal communication to form a cluster (TCP transport). Port must be accessible to all other search nodes|9002| yes
-`sonar.search.initialStateTimeout`|The timeout for the Elasticsearch nodes to elect a master node. The default value will be fine in most cases, but in a situation where startup is failing because of a timeout, this may need to be adjusted. The value must be set in the format: `{integer}{timeunit}`. Valid `{timeunit}` values are: `ms` (milliseconds); `s` (seconds); `m` (minutes); `h` (hours); `d` (days); `w` (weeks)|cluster: 120s; standalone: 30s|no
+`sonar.search.initialStateTimeout`|The timeout for the Elasticsearch nodes to elect a primary node. The default value will be fine in most cases, but in a situation where startup is failing because of a timeout, this may need to be adjusted. The value must be set in the format: `{integer}{timeunit}`. Valid `{timeunit}` values are: `ms` (milliseconds); `s` (seconds); `m` (minutes); `h` (hours); `d` (days); `w` (weeks)|cluster: 120s; standalone: 30s|no
 
 ### Elasticsearch authentication
 
index fecd6dbc68e654bf823f1dfc21217e7dfa9eb411..a5cf72625d69208f1280583e69ef7e0177484b79 100644 (file)
@@ -40,7 +40,7 @@ If AutoScan does not make sense yet for your repository, you need to configure y
 
 Here is an example of configuration for pull requests when you are not on Travis CI and you need to configure your CI jobs:
 ```
-sonar.pullrequest.base=master
+sonar.pullrequest.base=main
 sonar.pullrequest.branch=feature/my-new-feature
 sonar.pullrequest.key=5
 sonar.pullrequest.provider=GitHub
index fee8cfa96eaf9351a0ea9ac17c7dc7c529623a73..b095418e2c5334c98ac2012e2db63d2205d68b84 100644 (file)
@@ -36,7 +36,7 @@ clone:
 
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: Download and install the build wrapper, build the project
           script:
@@ -96,7 +96,7 @@ clone:
 
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: Download and install the build wrapper, build the project
           script:
@@ -167,7 +167,7 @@ exports[`should render correctly for dotnet 1`] = `
    
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
@@ -222,7 +222,7 @@ exports[`should render correctly for dotnet: with branch enabled 1`] = `
    
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
@@ -296,7 +296,7 @@ clone:
   
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
@@ -348,7 +348,7 @@ clone:
   
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
@@ -410,7 +410,7 @@ clone:
   
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
@@ -462,7 +462,7 @@ clone:
   
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
@@ -524,7 +524,7 @@ clone:
 
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           script:
@@ -576,7 +576,7 @@ clone:
 
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           script:
index 87f30846c4eee836e93fa1f84511b4051edd78b0..bea52d0f86134136d87bfa94be4a6c73a52a97f8 100644 (file)
@@ -26,7 +26,7 @@ clone:
 
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: Download and install the build wrapper, build the project
           script:
index ec1c82fdd1118eba830a566f2c2f13866c00d1fe..1cda1d0a7fd88bdbc1c2e0c09596b3b3f25eafb4 100644 (file)
@@ -23,7 +23,7 @@ export default function dotNetExample(branchesEnabled: boolean, projectKey: stri
    
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
index 78d5bc4c86ba72b7d3661334b68559bbd508789b..35afb573797d80ee1dfcfa92aa473f27da6460b1 100644 (file)
@@ -26,7 +26,7 @@ clone:
   
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
index 7cc04a84a069203c04d4c5be14897c553a4a7531..3ed6af9ad1b6195dcf42cea4a5e01aef5b1e110a 100644 (file)
@@ -26,7 +26,7 @@ clone:
   
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           caches:
index b3e147b98d6daccdca1e0ceb91e10d553aaa8d57..d06403f8b8c87bce14da5510435b6f5b44ac9167 100644 (file)
@@ -26,7 +26,7 @@ clone:
 
 pipelines:
   branches:
-    '{master}':
+    '{master}': # or the name of your main branch
       - step:
           name: SonarQube analysis
           script:
index a75146f9f2b646cf9755ce7aaeaab105f038ea08..e10317533f4b855ae9b6d8a5b0f402b8f37e8faa 100644 (file)
@@ -124,7 +124,7 @@ const cfamilyYamlTemplate = (branchesEnabled: boolean, os: OSs) => `name: Build
 on:
   push:
     branches:
-      - master
+      - master # or the name of your main branch
 ${branchesEnabled ? '  pull_request:\n    types: [opened, synchronize, reopened]' : ''}
 
 jobs:
index 964c6787a55cf092ebed847ab33b86fe460e21cb..38c323434e5268d1deafa077a963c04e4d68f518 100644 (file)
@@ -96,7 +96,7 @@ exports[`should render correctly for linux: branches disabled 1`] = `
 on:
   push:
     branches:
-      - master
+      - master # or the name of your main branch
 
 
 jobs:
@@ -185,7 +185,7 @@ exports[`should render correctly for mac: branches enabled 1`] = `
 on:
   push:
     branches:
-      - master
+      - master # or the name of your main branch
   pull_request:
     types: [opened, synchronize, reopened]
 
@@ -280,7 +280,7 @@ exports[`should render correctly for win: branches enabled 1`] = `
 on:
   push:
     branches:
-      - master
+      - master # or the name of your main branch
   pull_request:
     types: [opened, synchronize, reopened]
 
index e4113bd8e548a620703d88ff715665bcf4238d4f..282bdb14deae87e1c6f44bc34a40586f3b550ce7 100644 (file)
@@ -91,7 +91,7 @@ sonarqube-check:
   } else {
     const onlyBlock = branchesEnabled
       ? `- merge_requests
-    - master
+    - master # or the name of your main branch
     - develop`
       : '- master # or the name of your main branch';
 
index 4be8e72f3d8eb3963e671deb47cbb74867c6699d..e27d0b983b04e7c93b983a60becc96f65be4d142 100644 (file)
@@ -99,7 +99,7 @@ exports[`should render correctly for dotnet: branches enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />
@@ -129,7 +129,7 @@ exports[`should render correctly for dotnet: branches not enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />
@@ -152,7 +152,7 @@ exports[`should render correctly for gradle: branches enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />
@@ -175,7 +175,7 @@ exports[`should render correctly for gradle: branches not enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />
@@ -199,7 +199,7 @@ exports[`should render correctly for maven: branches enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />
@@ -223,7 +223,7 @@ exports[`should render correctly for maven: branches not enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />
@@ -249,7 +249,7 @@ exports[`should render correctly for other: branches enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />
@@ -275,7 +275,7 @@ exports[`should render correctly for other: branches not enabled 1`] = `
   allow_failure: true
   only:
     - merge_requests
-    - master
+    - master # or the name of your main branch
     - develop
 "
   />