summaryrefslogtreecommitdiff
path: root/changelogs
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch ↵Kamil Trzciński2018-02-141-0/+5
|\ | | | | | | | | | | | | | | | | '39885-ensure-users-cannot-create-environments-with-leading-slashes' into 'master' Resolve "Environment with starting slash in name causes error" Closes #39885 See merge request gitlab-org/gitlab-ce!17071
| * Update issue-39885.ymlKamil Trzciński2018-02-141-2/+2
| |
| * Ensure users can't create environments with leading or trailing slashes ↵39885-ensure-users-cannot-create-environments-with-leading-slashesDylan Griffith2018-02-131-0/+5
| | | | | | | | (Fixes #39885)
* | Merge branch '42800-change-usage-of-avatar_icon' into 'master'Yorick Peterse2018-02-141-0/+6
|\ \ | | | | | | | | | | | | | | | | | | Change all occurrences of ApplicationHelper#avatar_icon to use a User object where possible Closes #42800 See merge request gitlab-org/gitlab-ce!16976
| * | Add changelog.Andreas Brandl2018-02-131-0/+6
| | | | | | | | | | | | Closes #42800.
* | | Merge branch 'expired-ci-artifacts' into 'master'Grzegorz Bizon2018-02-141-0/+5
|\ \ \ | | | | | | | | | | | | | | | | Change SQL for expired artifacts to use new ci_job_artifacts.expire_at See merge request gitlab-org/gitlab-ce!16578
| * | | Add indexes and change SQL for expired artifacts to deal with artifacts ↵Greg Stark2018-02-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | migration efficiently Artifacts are in the middle of being migrated from ci_builds to ci_job_artifacts. The expiration date is currently visible in both of these tables and the test for whether an expired artifact is present for a job is complex as it requires checking both the of the tables. Add two new indexes, one on ci_builds.artifacts_expire_at and one on ci_job_artifacts.expire_at to enable finding expired artifacts efficiently. And until the migration is finished, replace the SQL for finding expired and non-expired artifacts with a hand-crafted UNION ALL based query instead of using OR. This overcomes a database optimizer limitation that prevents it from using these indexes. When the migration is finished the next version should remove this query and replace it with a much simpler query on just ci_job_artifacts. See https://gitlab.com/gitlab-org/gitlab-ce/issues/42561 for followup.
* | | | Merge branch 'fix/template-project-visibility' into 'master'Douwe Maan2018-02-141-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Respect description and visibility when creating project from template Closes #42601 See merge request gitlab-org/gitlab-ce!16820
| * | | | Add description, visibility to CreateFromTemplateService specGeorge Tsiolis2018-02-141-0/+5
| | | | |
* | | | | Resolve "Remove notification settings for groups and projects you were ↵🙈 jacopo beschi 🙉2018-02-141-0/+5
| | | | | | | | | | | | | | | | | | | | previously a member of"
* | | | | Merge branch 'feature/include-custom-attributes-in-api' into 'master'Douwe Maan2018-02-141-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Allow including custom attributes in API responses See merge request gitlab-org/gitlab-ce!16526
| * | | | | Allow including custom attributes in API responsesMarkus Koller2018-02-081-0/+5
| | | | | |
* | | | | | Merge branch '37050-ext-issue-tracker' into 'master'Sean McGivern2018-02-141-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Display a link to external issue tracker when enabled Closes #37050 See merge request gitlab-org/gitlab-ce!17030
| * | | | | | Display a link to external issue tracker when enabledJarka Kadlecová2018-02-141-0/+5
| | | | | | |
* | | | | | | Merge branch 'api-refs-for-commit' into 'master'Douwe Maan2018-02-141-0/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | API: Get refs for a particular commit Closes #18014 See merge request gitlab-org/gitlab-ce!15026
| * | | | | | | Refactor commits/refs API to use hash and add pagination headersRobert Schilling2018-02-141-1/+1
| | | | | | | |
| * | | | | | | Separate branch and tag namesRobert Schilling2018-02-091-1/+1
| | | | | | | |
| * | | | | | | Add docsRobert Schilling2018-02-091-0/+5
| |/ / / / / /
* | | | | | | Merge branch '42314-diff-file' into 'master'Douwe Maan2018-02-141-0/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Diff file navigation shows renamed files as deleted" Closes #42314 See merge request gitlab-org/gitlab-ce!17091
| * | | | | | | Render modified icon for moved file42314-diff-fileFilipa Lacerda2018-02-131-0/+5
| | | | | | | |
* | | | | | | | Merge branch 'remove_ldap_person_validation' into 'master'Stan Hu2018-02-131-0/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove problematic LDAP::Person validation for new strategy Closes #42412 and #42359 See merge request gitlab-org/gitlab-ce!16727
| * | | | | | | | Revert problematic LDAP person validation that threw exceptionsDrew Blessing2018-02-131-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Constructors shouldn't throw exceptions. We also learned that different LDAP servers behave a bit unexpectedly sometimes - returning attributes we didn't ask for, or returned attributes with language subtypes.
* | | | | | | | | Merge branch '43198-fix-settings-panel-expanding-when-fragment-hash-linked' ↵Phil Hughes2018-02-131-0/+5
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into 'master' Fix settings panels not expanding when fragment hash linked Closes #43198 See merge request gitlab-org/gitlab-ce!17074
| * | | | | | | | Fix settings panel not expanding when fragment hash linkedEric Eastwood2018-02-131-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://gitlab.com/gitlab-org/gitlab-ce/issues/43198
* | | | | | | | | Merge branch '26466-natural-sort-mrs' into 'master'Sean McGivern2018-02-131-0/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Group MR numbers on issue show page by project and namespace Closes #26466 See merge request gitlab-org/gitlab-ce!8494
| * | | | | | | | | Change issue show page to group MRs by projects and namespacesJeff Stubler2018-02-131-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #26466.
* | | | | | | | | | Merge branch 'mk-fix-no-untracked-upload-files-error' into 'master'Douwe Maan2018-02-131-0/+5
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "PrepareUntrackedUploads PostgreSQL syntax error" Closes #42881 See merge request gitlab-org/gitlab-ce!17019
| * | | | | | | | | | Add changelog entryMichael Kozono2018-02-121-0/+5
| | | | | | | | | | |
* | | | | | | | | | | Merge branch '42923-close-issue' into 'master'Phil Hughes2018-02-131-0/+5
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Can't close issue through buttons in the textarea on mobile" Closes #42923 See merge request gitlab-org/gitlab-ce!17043
| * | | | | | | | | | [ci skip] Merge branch 'master' into 42923-close-issueFilipa Lacerda2018-02-135-5/+20
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (25 commits) Addressed mr observations Clean new Flash() and stop disabling no-new (eslint) when possible Disable query limiting warnings for now on GitLab.com Revert "Merge branch 'rd-40552-gitlab-should-check-if-keys-are-valid-before-saving' into 'master'" Fix warning messages for promoting labels and milestones Fixed missing js selector for the realtime pipelines commit comp Honour workhorse provided file name Create an empty wiki when there is no wiki in the gitlab export bundle Revert and remove header_title line from labels issue Fixed bug with param config changed params passed to from a string to an object Move IssuableTimeTracker vue component Fix breadcrumb on labels page for groups Convert groups_select ajax to use axios Default CI variables to unprotected make sure there is a dependency on Gitlab::CurrentSettings is Make GITLAB_FEATURES in build_spec compatible with EE Update jquery.waitforimages & use npm version Fixed typo, updated test, and removed commented code Replaced use of $.get with axios.get and updated tests ...
| * \ \ \ \ \ \ \ \ \ \ [ci skip] Merge branch 'master' into 42923-close-issueFilipa Lacerda2018-02-121-0/+5
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (21 commits) GitLab QA: Add GITLAB_USER_TYPE to support different login types (e.g. standard, LDAP) Return a warning string if we try to encode to unsupported encoding Remove confirmation_input Resolve failures in GitHub-ish import controller specs Remove changelogs for already-released security patches Merge branch 'mc/bug/38984-wildcard-protected-tags' into 'security-10-4' Merge branch 'fix/gh-namespace-issue' into 'security-10-4' Merge branch 'security-10-4-todo-api-reveals-sensitive-information' into 'security-10-4' Merge branch 'fix-mermaid-xss' into 'security-10-4' Merge branch 'security-10-4-25223-snippets-finder-doesnt-obey-feature-visibility' into 'security-10-4' API - fix searching in group/project specified by path Add documentation on how to build a QA Docker image Fix english in style_guide_js.md Adds tooltip for environment name Adds CSS for child envrionments Do not attach runner to a non-exsiting network in QA Remove not needed default statement Improve docs about allowing some side effects on the constructor Move all ENV to Runtime::Env Rename .scss files to use snake_case Moves missing branch into a vue file ...
| * | | | | | | | | | | | Makes close/reopen issue request to inside the vue appFilipa Lacerda2018-02-091-0/+5
| | |_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | |
* | | | | | | | | | | | Merge branch 'winh-new-branch-dropdown-style' into 'master'Phil Hughes2018-02-131-0/+5
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cleanup new branch/merge request form in issues Closes #41938 See merge request gitlab-org/gitlab-ce!16854
| * | | | | | | | | | | Cleanup new branch/merge request form in issueswinh-new-branch-dropdown-styleWinnie Hellmann2018-02-121-0/+5
| | | | | | | | | | | |
* | | | | | | | | | | | Merge branch 'jivl-update-katex' into 'master'Clement Ho2018-02-121-0/+5
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated katex library Closes #43032 See merge request gitlab-org/gitlab-ce!15864
| * | | | | | | | | | | Merge branch 'master' into jivl-update-katexJose Ivan Vargas2018-02-1241-0/+204
| |\ \ \ \ \ \ \ \ \ \ \ | | | |_|_|/ / / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' into jivl-update-katexJose Ivan Vargas2018-02-05298-847/+3912
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Updated katex libraryJose Ivan Vargas2017-12-211-0/+5
| | | | | | | | | | | | |
* | | | | | | | | | | | | Revert "Merge branch ↵rd-43185-revert-sanitize-extra-blank-spaces-used-when-uploading-a-ssh-keyRubén Dávila2018-02-121-5/+0
| |_|/ / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'rd-40552-gitlab-should-check-if-keys-are-valid-before-saving' into 'master'" This reverts commit a58f8c32c62bcf5824d1fe1d0de53e9bda974d65, reversing changes made to cd5d75c362cdf06efb8174eddfbd0f4b65687dec.
* | | | | | | | | | | | Create an empty wiki when there is no wiki in the gitlab export bundleValery Sizov2018-02-121-0/+5
| | | | | | | | | | | |
* | | | | | | | | | | | Merge branch 'group-label-page-breadcrumb' into 'master'Phil Hughes2018-02-121-0/+5
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix breadcrumb on labels page for groups Closes #42909 See merge request gitlab-org/gitlab-ce!17045
| * | | | | | | | | | | Revert and remove header_title line from labels issueOnuwa Nnachi Isaac2018-02-121-0/+5
| | | | | | | | | | | |
* | | | | | | | | | | | Merge branch 'refactor/move-issuable-time-tracker-vue-component' into 'master'Filipa Lacerda2018-02-121-0/+5
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move IssuableTimeTracker vue component See merge request gitlab-org/gitlab-ce!16948
| * | | | | | | | | | | Move IssuableTimeTracker vue componentGeorge Tsiolis2018-02-121-0/+5
| | |_|_|_|_|_|_|/ / / | |/| | | | | | | | |
* | | | | | | | | | | Adds tooltip for environment name42922-environment-nameFilipa Lacerda2018-02-091-0/+5
| |_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds CSS for child envrionments
* | | | | | | | | | Update vue component naming guidelinesGeorge Tsiolis2018-02-081-0/+5
|/ / / / / / / / /
* | | | | | | | | Added 'clear' button to ci lint editorLin Jen-Shin2018-02-081-0/+4
| | | | | | | | |
* | | | | | | | | Merge branch 'feature/oidc-groups-claim' into 'master'Douwe Maan2018-02-081-0/+4
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | Add groups to OpenID Connect claims See merge request gitlab-org/gitlab-ce!16929
| * | | | | | | | Add groups to OpenID Connect claimsHassan Zamani2018-02-081-0/+4
| | | | | | | | |
* | | | | | | | | Merge branch 'bvl-fix-concurrent-fork-network-migrations' into 'master'42861-include-external-files-in-gitlab-ci-yml-move-from-eep-to-ceYorick Peterse2018-02-081-0/+5
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix concurrent fork network migrations Closes #41487 See merge request gitlab-org/gitlab-ce!16988