| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| | |
Fix project dashboard showing the wrong timestamps
Closes #27181
See merge request gitlab-org/gitlab-ce!17504
|
| |
| |
| |
| |
| |
| |
| |
| | |
Use the max of the `last_activity_at` and `last_repository_updated_at`
columns. The latter is updated only when a push happens, but the former is
updated whenever any activity (e.g. issue creation) happens.
Closes #27181
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
into 'master'
Add overview of branches and filtered views for active/stale branches
Closes #40187 et #17293
See merge request gitlab-org/gitlab-ce!15402
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Reload stable object to prevent erase artifacts with old state (Ver 2)
Closes #43641
See merge request gitlab-org/gitlab-ce!17522
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | | |
Resolve "Pipelines view should handle empty state and buttons properly"
Closes #38587
See merge request gitlab-org/gitlab-ce!17433
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* master: (52 commits)
Projects and groups badges API
Keep a commit around if its sha is present
#43691: DiffNotes not counted by ContributionsCalendar
Cleanup after adding MR diff's commit_count
Fix MR merge commit cross-references to the MR itself
Fix n+1 issue by not reloading fully loaded blobs
Add "added" type on changelog
Use limited count queries also for scoped searches
Update changelog
Rename quick actions handler
Adds updated_at filter to issues and merge_requests API
Update API: add search param to branches
Add changelog entry
LabelsSelect DropdownValueCollapsed Component
LabelsSelect DropdownValue Component
LabelsSelect DropdownTitle Component
LabelsSelect DropdownSearchInput Component
LabelsSelect DropdownHiddenInput Component
LabelsSelect DropdownHeader Component
LabelsSelect DropdownFooter Component
...
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adds i18n
Adds test
Fix broken tests
Fixes empty tab state for external CI
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Create CI/CD-only projects by URL -- CE backport
See merge request gitlab-org/gitlab-ce!17342
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
See https://gitlab.com/gitlab-org/gitlab-ee/issues/3839
Conflicts:
app/assets/javascripts/projects/project_new.js
app/views/shared/_import_form.html.haml
ee/app/controllers/ee/projects_controller.rb
ee/spec/features/projects/new_project_spec.rb
locale/gitlab.pot
|
|\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | |
| | | | | |
Reduce usage of deprecated *_with_namespace methods
See merge request gitlab-org/gitlab-ce!17523
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
| |/ / /
| | | |
| | | |
| | | | |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Cleanup after adding MR diff's commit_count
Closes #41698
See merge request gitlab-org/gitlab-ce!17513
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
* processes any pending records which are not migrated yet
* bumps import_export version because of new commits_count attribute
* removes commits_count fallback method
|
|\ \ \ \
| |_|/ /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
into 'master'
Resolve "Reply-by-email did not pick up /unsubscribe quick action"
Closes #43334
See merge request gitlab-org/gitlab-ce!17482
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
There are several quick actions now that don't need this access - /todo and
/unsubscribe for instance - but when these were first added, there
weren't. Quick actions are now responsible for checking their own permissions.
|
|/ / |
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
Moved o_auth/saml/ldap modules under gitlab/auth
See merge request gitlab-org/gitlab-ce!17359
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Resolve "Include cycle time in usage ping"
Closes #41777
See merge request gitlab-org/gitlab-ce!16793
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Display ingress IP address in the Kubernetes page
See merge request gitlab-org/gitlab-ce!17052
|
| | | |
| | | |
| | | |
| | | | |
We need to actually wait for the "Install" button to be enabled before clicking it otherwise we have a race condition where it sometimes works. Also change the `expect(page.find(...))` to `expect(page).to have_css` as this is prefered to avoid race conditions
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Also remove the flakiness by using
`expect(page).to have_css(..., exact_text: '')` instead of
`expect(page.find(...).text).to eq('')` since the former will wait until
the text has this value while the latter will only wait for the element
to exist then test its text straight away which introduces a race
condition if the element is already there with a previous text value.
This test was failing locally most of the time because of this other
way of asserting.
|
| |\ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Removes double quoted string
|
| | | | | |
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* master: (30 commits)
Docs: Pages - clean up articles
Only use features for events
Put all event metrics exposed to prometheus behind a feature flag
Add version which LFS lock was introduced
Remove unecessary validate: true from belongs_to :project
fix broken specs
remove common_d3 bundle
remove graphs_show webpack bundle
Chart.html.haml refactor
Remove extraneous tests from Issues API spec
[GH Import] Create an empty wiki if wiki import failed
Resolve "group request membership mail with too long list of "To:""
Add changelog entry
Fix single digit value clipping
specify date format
Increase feature flag cache TTL to one hour
Convert Gitaly commit parent IDs to array as early as possible
Clarify changelog for squash encoding fix
Avoid slow File Lock checks when not used
Fix squash rebase not working when diff contained encoded data
...
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This was also causing crashes in Chrome V64, so it's best to remove it
for now.
Closes #43636
|
| |_|_|/ /
|/| | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Remove explicit audit event log in MembershipActions
See merge request gitlab-org/gitlab-ce!14824
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
MembershipActions concern
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Clear "Labels" dropdown search filter after selection
Closes #24774
See merge request gitlab-org/gitlab-ce!17393
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
into 'master'
Resolve "Merge requests and issues don't show for all subgroups"
Closes #43510
See merge request gitlab-org/gitlab-ce!17312
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously, these wouldn't count issues or MRs in subgroups - meaning that if
_this_ group had no issues or MRs, we'd show the empty state, which was wrong.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
-> edit Prometheus Service Template"
|
| |_|_|_|/
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This was caused by the element getting cached on the class before the
Vue app has finished rendering.
Closes #43560
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
sequences
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Move RecentSearchesDropdownContent vue component
See merge request gitlab-org/gitlab-ce!16951
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Resolve "Domain validation for Pages custom domains" (master branch)
Closes #29497, #42971, and #42083
See merge request gitlab-org/gitlab-ce!17311
|