summaryrefslogtreecommitdiff
path: root/changelogs
Commit message (Collapse)AuthorAgeFilesLines
* Add a New Copy Button That Works in ModalsAndrew Fontaine2019-06-061-0/+5
| | | | | | | | | | | | This copy button manages a local instance of the Clipboard plugin specific to it, which means it is created/destroyed on the creation/destruction of the component. This allows it to work well in gitlab-ui modals, as the event listeners are bound on creation of the button. It also allows for bindings to the `container` option of the Clipboard plugin, which allows it to work within the focus trap set by bootstrap's modals.
* Always show "Pipelines must succeed" checkboxFabio Pitino2019-06-061-0/+5
| | | | | | | Before: the checkbox was hidden if builds were disabled. The checkbox should not be linked to the builds feature because they are 2 separate functionality.
* Merge branch 'sh-default-visibility-fix' into 'master'Bob Van Landuyt2019-06-061-0/+5
|\ | | | | | | | | | | | | Set project default visibility to max allowed Closes #62298 See merge request gitlab-org/gitlab-ce!28754
| * Set project default visibility to max allowedStan Hu2019-06-051-0/+5
| | | | | | | | | | | | | | | | | | | | If the default, instance-wide visibility were set to internal but a group were private, the radio button would be set on internal even though that setting were not allowed. We now consider the allowed visibility setting for the group in determining what the default should be. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/62298
* | Merge branch 'ci-variable-expression-con-dis-junction' into 'master'Kamil Trzciński2019-06-061-0/+5
|\ \ | | | | | | | | | | | | CI variable expression conjunction/disjunction See merge request gitlab-org/gitlab-ce!27925
| * | && and || operators for CI Pipeline expressions.drew cimino2019-06-041-0/+5
| | | | | | | | | | | | | | | | | | Refactored regex pattern matching to eagerly return tokens Packaged behind a default-enabled feature flag and added operator documentation.
* | | Resolve "Inline validation for user's name and username length"Jiaan2019-06-061-0/+5
| | |
* | | Merge branch '60034-default-web-ide-s-merge-request-checkbox-to-true' into ↵Phil Hughes2019-06-061-0/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' Resolve "Default Web IDE's merge request checkbox to true" Closes #60034 See merge request gitlab-org/gitlab-ce!28665
| * | | Default MR checkbox to true in most cases60034-default-web-ide-s-merge-request-checkbox-to-trueSam Bigelow2019-06-061-0/+5
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Pull the new MR option out into it's own component - Default MR checkbox to true when creating a new MR and committing to a branch that does not have an MR - Still change the MR checkbox to false when a user is on a branch that already has an MR - Hide MR option when on a branch that already has an MR and committing to current branch - Don't default to true when committing directly to master
* | | Use the selected time window for metrics dashboardSarah Yasonik2019-06-061-0/+5
| | |
* | | Update project security dashboard documentationPaul Gascou-Vaillancourt2019-06-061-0/+5
| | |
* | | Merge branch 'ce-jej/fix-git-http-with-sso-enforcement' into 'master'Jan Provaznik2019-06-061-0/+5
|\ \ \ | |/ / |/| | | | | | | | Avoid setting Gitlab::Session on sessionless requests and Git HTTP See merge request gitlab-org/gitlab-ce!29146
| * | Avoid setting Gitlab::Session on sessionless requestsJames Edwards-Jones2019-06-051-0/+5
| | |
* | | Setup Git client for JupyterAmit Rathi2019-06-051-0/+5
| | |
* | | added new styling to the `.flash-warning` styles and moved the bundled style ↵Michel Engelen2019-06-051-0/+5
| | | | | | | | | | | | definitions up to allow overrides for specific flash-types
* | | Merge branch 'issue_49897' into 'master'Robert Speicher2019-06-051-0/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Delete unauthorized Todos when project is private Closes #49897 See merge request gitlab-org/gitlab-ce!28560
| * | | Delete unauthorized Todos when project is privateissue_49897Felipe Artur2019-06-051-0/+5
| | | | | | | | | | | | | | | | | | | | Delete Todos for guest users when project visibility level is updated to private.
* | | | Merge branch '11204-turn-off-mask-by-default' into 'master'Mike Greiling2019-06-051-0/+5
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | Default masked to false for new variables Closes gitlab-ee#11204 See merge request gitlab-org/gitlab-ce!28186
| * | | Default masked to false for new variables11204-turn-off-mask-by-defaultmfluharty2019-06-041-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | Set the default value to false Adjust tests to expect false as the default Update documentation to make new default clear
* | | | Add yaml lintKamil Trzciński2019-06-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds CI job that validates all `*.yml` with `yamllint`. This commit fixes all offenses present in repository.
* | | | Merge branch '54140-non-ar-cache-commit-markdown' into 'master'Douwe Maan2019-06-051-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use Redis for CacheMarkDownField on non AR models Closes #54140 See merge request gitlab-org/gitlab-ce!29054
| * | | | Use Redis for CacheMarkDownField on non AR modelsPatrick Bajao2019-06-051-0/+5
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows using `CacheMarkdownField` for models that are not backed by ActiveRecord. When the including class inherits `ActiveRecord::Base` we include `Gitlab::MarkdownCache::ActiveRecord::Extension`. This will cause the markdown fields to be rendered and the generated HTML stored in a `<field>_html` attribute on the record. We also store the version used for generating the markdown. All other classes that include this model will include the `Gitlab::MarkdownCache::Redis::Extension`. This add the `<field>_html` attributes to that model and will generate the html in them. The generated HTML will be cached in redis under the key `markdown_cache:<class>:<id>`. The class this included in must therefore respond to `id`.
* | | | Merge branch '61246-fix-label-click-scroll-to-top' into 'master'Fatih Acet2019-06-051-0/+5
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | Fix label click scrolling to top Closes #61246 See merge request gitlab-org/gitlab-ce!29202
| * | | Fix label click scrolling to topPaul Slaughter2019-06-051-0/+5
| | | |
* | | | Merge branch '28996-create-mvc-ui-in-haml' into 'master'Filipa Lacerda2019-06-051-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Add Let's Encrypt option in Pages domain new/edit Haml form See merge request gitlab-org/gitlab-ce!26438
| * | | | Add auto SSL toggle to Pages domain settings page28996-create-mvc-ui-in-hamlNathan Friend2019-06-031-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds an auto SSL toggle switch to the settings page of GitLab Pages domains. This toggle enable or disabled auto SSL management via Let's Encrypt. Toggling the button dynamically updates the form using client-side JavaScript. All changes are behind feature flags.
* | | | | Avoid 500's when commit is not reachableOswaldo Ferreira2019-06-051-0/+5
| |/ / / |/| | |
* | | | Merge branch 'bvl-use-global-ids-graphql' into 'master'Jan Provaznik2019-06-051-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use global IDs when exposing GraphQL resources Closes #62650 See merge request gitlab-org/gitlab-ce!29080
| * | | | Expose IDs in GraphQL as a GlobalIDBob Van Landuyt2019-06-031-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This exposes all fields named `id` as GlobalIDs so they can be used across our entire GraphQL implementation. When the objects loaded are `ApplicationRecord`s. We'll use our existing batchloading to find them. Otherwise, we'll fall back to the default implementation of `GlobalID`: Calling the `.find` method on the class.
* | | | | Merge branch '62713-fix-uninstalling-cluster-apps' into 'master'Douglas Barbosa Alexandre2019-06-051-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix connection to Tiller error while uninstalling Closes #62713 See merge request gitlab-org/gitlab-ce!29131
| * | | | | Fix connection to Tiller error while uninstalling62713-fix-uninstalling-cluster-appsThong Kuah2019-06-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Both the `install-<app>` and `uninstall-<app>` pods loads the `values-content-configuration-<app>` configmap into the pod (see `#volume_specification`). This configmap contains the cert necessary to connect to Tiller. The cert though is only valid for 30 minutes. So this fixes the bug where the configmap when uninstalling should be updated as well.
* | | | | | Merge branch 'revert-git-depth-for-merge-request' into 'master'Kamil Trzciński2019-06-051-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert a default GIT_DEPTH for MR pipeline See merge request gitlab-org/gitlab-ce!28926
| * | | | | | Revert a default GIT_DEPTH for MR pipelinerevert-git-depth-for-merge-requestFabio Pitino2019-05-311-0/+5
| | | | | | |
* | | | | | | Add multiple extends supportWolphin2019-06-051-0/+5
| | | | | | |
* | | | | | | Merge branch '55253-activity-feed-ui-enhance-line-height' into 'master'Phil Hughes2019-06-051-0/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Activity feed UI: Enhance line-height" Closes #55253 See merge request gitlab-org/gitlab-ce!28856
| * | | | | | | Enhance line-height of Activity feed UI55253-activity-feed-ui-enhance-line-heightJacopo2019-05-311-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enhances line-height of Activity feed UI to 20px.
* | | | | | | | Fix whitespace changes visibility when the related file was initially collapsedOndřej Budai2019-06-051-0/+5
| |_|_|_|_|/ / |/| | | | | |
* | | | | | | Merge branch 'ce-9578-adjust-opened-issues-count-and-completion-rate' into ↵Robert Speicher2019-06-041-0/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' Port: EE adjust burndown chart opened issues count See merge request gitlab-org/gitlab-ce!28777
| * | | | | | | Adjust burndown chart opened issues countce-9578-adjust-opened-issues-count-and-completion-rateAlexandru Croitor2019-06-041-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adjust opened issues count in the milestone burndown chart to match current opened issues in the milestone. * Fix completion rate calculation to include milestones only.
* | | | | | | | Resolve "Charts with many overlapping series display incorrectly"Adriel Santiago2019-06-041-0/+5
| | | | | | | |
* | | | | | | | Merge branch 'bump-auto-devops-helm-2-14-0' into 'master'Mayra Cabrera2019-06-041-0/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump Helm version in Auto-DevOps.gitlab-ci.yml See merge request gitlab-org/gitlab-ce!28527
| * | | | | | | | Bump Helm version in Auto-DevOps.gitlab-ci.ymlbump-auto-devops-helm-2-14-0Thong Kuah2019-06-041-0/+5
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://github.com/helm/helm/releases/tag/v2.14.0 for upstream changelog
* | | | | | | | Update CHANGELOG.md for 11.11.2GitLab Release Tools Bot2019-06-046-30/+0
| | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | Update CHANGELOG.md for 11.10.6GitLab Release Tools Bot2019-06-042-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | Merge branch 'pb-update-gitaly-1-45-0' into 'master'Bob Van Landuyt2019-06-041-0/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update GITALY_SERVER_VERSION to 1.45.0 See merge request gitlab-org/gitlab-ce!29109
| * | | | | | | | Update GITALY_SERVER_VERSION to 1.45.0pb-update-gitaly-1-45-0Patrick Bajao2019-06-041-0/+5
| | |_|_|_|_|_|/ | |/| | | | | |
* | | | | | | | Merge branch '57037-fix-mr-checkboxes-mobile-alignment' into 'master'Fatih Acet2019-06-041-0/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix MR checkboxes alignment on mobile Closes #57037 See merge request gitlab-org/gitlab-ce!28845
| * | | | | | | | Fix MR checkboxes alignment on mobile57037-fix-mr-checkboxes-mobile-alignmentPaul Slaughter2019-05-301-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It does this by removing the `.accept-control` class which was only causing problems.
* | | | | | | | | Merge branch 'increase-move-issue-dropdown-height' into 'master'Filipa Lacerda2019-06-041-0/+5
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Increase height of move issue dropdown See merge request gitlab-org/gitlab-ce!29087
| * | | | | | | | | Increase height of move issue dropdownincrease-move-issue-dropdown-heightAnnabel Dunstone Gray2019-06-031-0/+5
| | | | | | | | | |