- 27 Feb, 2020 5 commits
-
-
Evan Read authored
Update Group Import/Export docs See merge request gitlab-org/gitlab!25604
-
Ray Paik authored
documentation - small typo in 'Secure coding guidlines' See merge request gitlab-org/gitlab!25897
-
Michael Kozono authored
Make Repository track shard See merge request gitlab-org/gitlab!25911
-
Mike Greiling authored
Update `convertToCamelCase` utility function to ignore leading and trailing underscores Closes #207853 See merge request gitlab-org/gitlab!26011
-
Nathan Friend authored
Updates the convertToCamelCase function to ignore leading and trailing underscores. Also updates code that was relying on the old behavior.
-
- 26 Feb, 2020 35 commits
-
-
Michael Kozono authored
Add confidential attribute to notes See merge request gitlab-org/gitlab!25784
-
Evan Read authored
Docs: Add missing serial commas to text See merge request gitlab-org/gitlab!26031
-
Paul Slaughter authored
Remove refreshData function logic from issue.js See merge request gitlab-org/gitlab!21409
-
-
Amy Qualls authored
The pages included in this commit all had missing Oxford (serial) commas. In most cases, I added the comma but took no other action; a few pages required slight rewording.
-
Mayra Cabrera authored
Update security release template for the new setup See merge request gitlab-org/gitlab!25901
-
Paul Slaughter authored
Jestodus lib utils common utils See merge request gitlab-org/gitlab!25676
-
Ragnar Hardarson authored
- Keeps specs that require browser environment in a new `browser_spec` - https://gitlab.com/gitlab-org/gitlab/-/merge_requests/25676
-
Paul Slaughter authored
Convert dashboard keys (e.g. panel_groups) to camel case See merge request gitlab-org/gitlab!25522
-
Mayra Cabrera authored
Remove project_path key in environments entity See merge request gitlab-org/gitlab!25365
-
Mayra Cabrera authored
Add project and group to feature flag check See merge request gitlab-org/gitlab!25894
-
Nicolò Maria Mezzopera authored
- group page - project page
-
Heinrich Lee Yu authored
Scope name uniqueness of approval rules to type See merge request gitlab-org/gitlab!25875
-
Peter Leitzen authored
Add file path validator to custom validations module Closes #33768 See merge request gitlab-org/gitlab!24223
-
Rajendra Kadam authored
-
Marcia Ramos authored
Removing Bronze Plan from Repository size limit See merge request gitlab-org/gitlab!25787
-
Natalia Tepluhina authored
Refactor vulnerability-details component for better reusability See merge request gitlab-org/gitlab!25830
-
Paul Slaughter authored
Update babel to latest version (7.7.5 -> 7.8.5) See merge request gitlab-org/gitlab!25964
-
-
Stan Hu authored
Add storage consideration Closes #35641 See merge request gitlab-org/gitlab!24479
-
Mark Florian authored
-
Kamil Trzciński authored
This extends Definition of Done to add storage consideration when dealing with temporary and persistent storage.
-
Achilleas Pipinellis authored
Include Separation of Duties in compliance docs See merge request gitlab-org/gitlab!24110
-
Jackie Meshell authored
-
Achilleas Pipinellis authored
Docs: Fix style issues on applications page See merge request gitlab-org/gitlab!25653
-
Amy Qualls authored
The WAF portion of the Applications page needed some minor style fixes, and also contained the remnant of an incomplete merge. This merge request corrects these style issues.
-
Michael Kozono authored
Don't parse undefined severity confidence from reports See merge request gitlab-org/gitlab!25884
-
Stan Hu authored
Return commits by author See merge request gitlab-org/gitlab!25597
-
Mark Florian authored
- Fix ESLint errors - Update gitlab.pot translations - Use optional chaining - Make template prettier - Extract `find` helper in specs - [Use refs][1] instead of legacy `js-` classes for component testing And last but not least: import used `expand-button` component. It turns out the original creation of this component wasn't perfect, done in 18d13bf7, as it didn't bring over the `expand-button` component from the parent modal from which it was extracted. Still, this went unnoticed for around 10 months, so I'm not convinced `instances` are often - or ever - present in vulnerabilities/findings. The snapshot test has been updated to include it as well. [1]: https://docs.gitlab.com/ce/development/testing_guide/frontend_testing.html#how-to-query-dom-elements
-
Mark Florian authored
This completely removes the old `vulnerability-details` component and replaces it with the new one. Now that the bulk of snapshots have served their purpose, they have been removed, along with now-unsued mocks.
-
Mark Florian authored
This modifies the modal component to use the new `vulnerability-details` component, and removes now-unused store mutations and state. This also: - moves the `modal.data.project` store state to `modal.project` - removes an unused `project_id` field from the modal, since it was guaranteed to always be `undefined`, and was not consumed by any child component
-
Mark Florian authored
Now that the details are rendered explicitly, the markup had a lot of duplication. This abstracts that duplication into a functional component.
-
Mark Florian authored
This refactors the new `vulnerability-details` component to explicitly render the markup for the various details of the vulnerability, without going through an unnecessary transformation stage. This is preferable (though more verbose) because different details are rendered in different ways. Before, the template resembled the [loop-switch sequence][2] anti-pattern, and adding special cases was awkward. The snapshot changes in this commit are simply whitespace changes and added/missing HTML comments, resulting from the different conditional rendering logic. This addresses [issue 32039][1]. [1]: https://gitlab.com/gitlab-org/gitlab/issues/32039 [2]: https://en.wikipedia.org/wiki/Loop-switch_sequence
-
Mark Florian authored
This swaps out the component factory functions which rendered the old `vulnerability-details` component, in each of the MR and Security Dashboard contexts, with a new factory function that renders only the new version of the component. The snapshot changes in this commit correspond to the expected changes: - the MR context now includes (if available): - the project the vulnerability belongs to - the report type of the vulnerability - the line number information for the `file` - the Security Dashboard context now includes (if available): - the method in which the vulnerability was detected
-
Mark Florian authored
This ports the existing tests for the old `vulnerability-details` component to the new one, since it now accepts a `vulnerability` prop rather than a `details` prop.
-