- 04 Jun, 2020 40 commits
-
-
Peter Leitzen authored
Add Timezone to incident Start Time See merge request gitlab-org/gitlab!32702
-
Allison Browne authored
Add start_time to the alert presenter
-
Craig Norris authored
Docs: Fix broken links See merge request gitlab-org/gitlab!33894
-
Bob Van Landuyt authored
Add support for event creation on designs See merge request gitlab-org/gitlab!33449
-
Mayra Cabrera authored
Stop recording connection pool metrics for load balancing hosts See merge request gitlab-org/gitlab!33749
-
Imre Farkas authored
Add Hugo logo to project templates Closes #28686 See merge request gitlab-org/gitlab!33402
-
Imre Farkas authored
Add GitBook logo to project templates Closes #28686 See merge request gitlab-org/gitlab!33403
-
Andrew Fontaine authored
Add links section in metrics dashboard See merge request gitlab-org/gitlab!32895
-
Mayra Cabrera authored
Add project_id, user_id, status, ref index to ci_pipelines See merge request gitlab-org/gitlab!33290
-
Amy Qualls authored
Update external links to point to the correct place.
-
Craig Norris authored
Docs: tone and style, GitLab metrics page See merge request gitlab-org/gitlab!33889
-
Amy Qualls authored
RSS is well known, and UNIX is ubiquitous. They don't need parenthetical explanations.
-
Alex Kalderimis authored
-
Alex Kalderimis authored
Add methods for adding design events to the EventCreateService, and uses these methods in the design management services. A new spec support class is added (MultiChangeValue) to help testing several change values at once, without having to perform the action multiple times. Deletion in particular is made efficient by ensuring that we perform just a single insert when creating events.
-
Andrew Fontaine authored
Merge branch '217985-use-glinfinitescroll-s-default-slot-in-the-project-selector-vue-component-2' into 'master' Translate the legend text in ProjectSelector component See merge request gitlab-org/gitlab!33771
-
Mark Florian authored
The "legend" text in the ProjectSelector component was previously only defined in the GlInfiniteScroll component from GitLab UI. There are two problems with that: strings defined in GitLab UI aren't translatable, and also the string is generic and referred to "items" rather than "projects". This also updates the existing `items` slot to use the Vue 2.6+ sytax. Addresses https://gitlab.com/gitlab-org/gitlab/-/issues/217985.
-
Imre Farkas authored
Support first_name and last_name attributes in LDAP user sync Closes #11805 See merge request gitlab-org/gitlab!29542
-
Blair Lunceford authored
-
Craig Norris authored
Docs: Style updates for pgbouncer page See merge request gitlab-org/gitlab!33880
-
Craig Norris authored
Style work, node exporter page See merge request gitlab-org/gitlab!33874
-
Amy Qualls authored
Tone, style, and word choice updates. Remove outdated info.
-
Mark Florian authored
Add a seedable UUIDv4 generator See merge request gitlab-org/gitlab!32792
-
Craig Norris authored
Tone and style updates See merge request gitlab-org/gitlab!33884
-
Mike Jang authored
Added group and project share permissions See merge request gitlab-org/gitlab!32996
-
Jefferson Jones authored
-
Douglas Barbosa Alexandre authored
Geo: Track PackageFile sync counts in Geo node statuses Closes #215461 See merge request gitlab-org/gitlab!33079
-
Nick Gaskill authored
Document configuring Conan projects See merge request gitlab-org/gitlab!33444
-
mo khan authored
-
Toon Claes authored
Geo - Make Geo::RegistryConsistencyWorker clean up unused registries Closes #204797 See merge request gitlab-org/gitlab!32695
-
Amy Qualls authored
Update two of the exporter pages for tone and style. Remove mentions of outdated versions of GitLab. Shift the comments on a code block to separate lines, rather than the end of each line, for legibility.
-
Martin Wortschack authored
Transform issues analytics filter params See merge request gitlab-org/gitlab!33709
-
Brandon Labuschagne authored
The filters used for the filters do not conform to the same pattern as used for the API. In this MR we transform the labels filters to match that of the API.
-
Grzegorz Bizon authored
Replace --all with --workspace on cargo test. See merge request gitlab-org/gitlab!33517
-
Markus Becker authored
According to the official cargo documentation at https://doc.rust-lang.org/cargo/commands/cargo-build.html `--all` is deprecated. """ --all Deprecated alias for --workspace. """
-
Dhiraj Bodicherla authored
User-defined links can be specific in dashboard yml file. This MR renders links in the metrics dashboard
-
Dmytro Zaporozhets authored
Fix relative URL root in wiki_base_path See merge request gitlab-org/gitlab!33841
-
Amy Qualls authored
Light updates for tone and style.
-
Thomas Randolph authored
Most UUID generators assume that you want fully random UUIDs. In most cases, this is true. The `uuid` package allows a consumer to pass in `random` values (an array of 16 numbers 0-255), or a generator that outputs 16 random bytes. This is our hook into being able to provide "random" values. We just need a way to get "random" values that are actually random in most cases, but that we can control if we want to. Enter: the Mersenne Twister. Mersenne Twisters can be seeded with a number to start. They will derive all of their future twisted states from that initial seed. So: we still get "randomness," but we can also seed it to make the output deterministic. This `random.js` file outputs a single function (for now) called `uuids` that will generate a random UUIDv4 string or - if provided seeds - will generate the correct resulting UUIDv4 given those seeds. Consumers can request multiple values to avoid having to constantly call the function and/or constantly reconstruct the internal Twister.
-
Dmytro Zaporozhets authored
RSpec zero monkey patching mode See merge request gitlab-org/gitlab!33726
-
Markus Koller authored
Fix "Invalid state of snippets after Project import" See merge request gitlab-org/gitlab!33621
-