- 30 Oct, 2019 39 commits
-
-
Yorick Peterse authored
Share groups with groups (BE) See merge request gitlab-org/gitlab!17117
-
Imre Farkas authored
It's implemented in a similar fashion as sharing a project with a group.
-
Tim Zallmann authored
Add @iamphill to CODEOWNERS file See merge request gitlab-org/gitlab!19356
-
Jan Provaznik authored
Fix errors in GraphQL Todos API due to missing TargetTypeEnum values See merge request gitlab-org/gitlab!19052
-
Andreas Brandl authored
Add endpoint for a group's vulnerable projects in the API See merge request gitlab-org/gitlab!15317
-
Avielle Wolfe authored
* Adds `/group/:group_id/-/security/vulnerable_projects` which returns a list of the group's projects with vulnerabilities * Adds Vulnerabilities::Occurrence.batch_count_by_project_and_severity which batch loads vulnerability counts grouped by severity and by project * Adds Group#vulnerable_projects which returns a list of the group's vulnerable projects * Adds VulnerableProjectSerializer and VulnerableProjectEntity, which exposes a vulnerability count method for each severity * Adds VulnerableProjectPresenter which creates the vulnerability count method exposed in VulnerableProjectEntity https://gitlab.com/gitlab-org/gitlab-ee/issues/11190
-
Kamil Trzciński authored
Allow management_project_id to be unset See merge request gitlab-org/gitlab!19330
-
Andreas Brandl authored
Remove empty Github service templates from db See merge request gitlab-org/gitlab!18868
-
Marius Bobin authored
When creating a new Github integration, it looks for a service record of the same type, but with the template flag set to true, and clone its attributes before presenting the record to the user. `https://gitlab.com/gitlab-org/gitlab/merge_requests/15737/diffs` added `static_context` as a default attribute on for this service but it clashes with the empty template on .com. This commit removes Github templates that have `nil` or `{}` as properties, allowing new services to set the `static_context` default value from the code.
-
André Luís authored
-
Andreas Brandl authored
Enforce global default project and snippet visibilities to private Closes #35013 See merge request gitlab-org/gitlab!19188
-
Fatih Acet authored
Reuse PathIdSeparator constants See merge request gitlab-org/gitlab!19299
-
Winnie Hellmann authored
-
Andreas Brandl authored
Dynamically set db pool size in Puma Closes #32562 See merge request gitlab-org/gitlab!19286
-
Matthias Käppler authored
Before Puma, we had 1 rails process talk to the database at any given time, which meant a connection pool size of 1 was sufficient to support that model. With Puma and its worker thread pool, there can now be many threads simultaneously trying to talk to the database. This change makes sure that we allow the db pool size to scale along with the maximum number of worker threads configured.
-
Fatih Acet authored
Make arrow buttons work within search box See merge request gitlab-org/gitlab!18685
-
Heinrich Lee Yu authored
Fixes a bug where hidden.bs.dropdown was manually triggered but the dropdown was not actually hidden. Triggering the event caused the event handlers to be unloaded. The events are supposed to be attached again when the dropdown is opened but in this case the dropdown is still open.
-
Fatih Acet authored
Resolve "Update expired trial copy" Closes #34717 See merge request gitlab-org/gitlab!18962
-
Bob Van Landuyt authored
Refactor tree controls into Vue Closes #34794 See merge request gitlab-org/gitlab!19065
-
Yorick Peterse authored
Merge branch '35175-post_deployment_migration-generator-should-use-same-timezone-settings-as-rails-database' into 'master' Resolve "post_deployment_migration generator should use same timezone settings as rails database migrations" Closes #35175 See merge request gitlab-org/gitlab!19316
-
Doug Stull authored
- in order to match rails migration timezone settings
-
Sean McGivern authored
Merge branch '20825-controller-boards-issuescontroller-update-executes-more-than-100-sql-queries' into 'master' Remove query limit whitelist for Boards::IssuesController#update Closes #20825 See merge request gitlab-org/gitlab!19307
-
Tim Zallmann authored
Fix ref switcher not working on Microsoft Edge Closes #31373 See merge request gitlab-org/gitlab!19335
-
Grzegorz Bizon authored
Improve support for graceful shutdown on Puma/Unicorn See merge request gitlab-org/gitlab!19223
-
Mark Lapierre authored
Quarantine failing test See merge request gitlab-org/gitlab!19343
-
Alper Akgun authored
-
Heinrich Lee Yu authored
-
Natalia Tepluhina authored
Adds discussion to the optimistic design response See merge request gitlab-org/gitlab!19297
-
Sam Beckham authored
This prevents a warning from occouring when we upload a design
-
Mark Lapierre authored
-
Stan Hu authored
Microsoft Edge has a bug in FormData.getAll() that returns an undefined value for each form element that does not match the given key: https://github.com/jimmywarting/FormData/issues/80 To work around this issue, we just filter out undefined values. Closes https://gitlab.com/gitlab-org/gitlab/issues/31373
-
Natalia Tepluhina authored
Fix HAML comment being visible in merge modal Closes #35080 See merge request gitlab-org/gitlab!19224
-
Natalia Tepluhina authored
Move Vulnerabilities API to Vulnerability Findings API See merge request gitlab-org/gitlab!19029
-
Victor Zagorodny authored
The /api/v4/project/:id/vulnerabilities is going to be used for serving the new Vulnerability model instances for First-class Vulnerabilities feature. The previous behavior (responding with Vulnerabilities::Occurrence) is moved to /api/v4/project/:id/vulnerability_findings path unconditionally (regardless of the feature flag). This is a breaking change.
-
Luke Duncalfe authored
Fixes missing target types in `TargetTypeEnum` and separates the EE-specific types. Adds `calls_gitaly` for the `TodoType#body` field, as an error is raised when requesting the `todo.body field` for a `Commit` `Todo`: RuntimeError (Gitaly is called for field 'body' on Types::TodoType - please either specify a constant complexity or add `calls_gitaly: true` to the field declaration) When the `Todo` (a polymorphic model) has a `target_type` of `Commit`, requesting the `body` field calls Gitaly (`Todo#body` calls `Todo#target` which fetches the `Commit` from Gitaly) and we get the above error. I've set `calls_gitaly: true` for the `TodoType#body` field (affecting all Todos, regardless of the `target_type`) in order to avoid the error, while we work out a better solution. https://gitlab.com/gitlab-org/gitlab/issues/34757 https://gitlab.com/gitlab-org/gitlab/issues/34757#note_234752665
-
Stan Hu authored
Revert "Merge branch '33601-use-ci-default-branch' into 'master'" See merge request gitlab-org/gitlab!19334
-
Avielle Wolfe authored
This reverts merge request !18915
-
Stan Hu authored
Fix Prometheus duplicate metrics See merge request gitlab-org/gitlab!19327
-
David Wilkins authored
- Issue 34887 details prometheus metrics being duplicated once with one line having a 0 count and the other having a valid count - Update lib/gitlab/metrics/requests_rack_middleware.rb to add .to_i to the status value. - Add changelog for https://gitlab.com/gitlab-org/gitlab/merge_requests/19327
-
- 29 Oct, 2019 1 commit
-
-
Mark Lapierre authored
Quarantine create project with Auto DevOps See merge request gitlab-org/gitlab!19332
-