该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 2月 12, 2024
-
-
由 Miguel Rincon 创作于
This change refactors a commonly used group of fields used to render a CI icon status into a GraphQL fragment so it can be reused.
-
- 2月 06, 2024
-
-
由 路志远 创作于
-
- 12月 20, 2023
-
-
由 Igor Drozdov 创作于
It will be used for tracking the commit that were signed with a certificate and that certificate has been issued by a CA that can be successfully associated with a group EE: true Changelog: added
-
- 12月 08, 2023
-
-
由 Miguel Rincon 创作于
ci_icon.vue is used widely by components in CI, by moving it to its own directory we can document it with storybook stories moving forward.
-
- 10月 24, 2023
-
-
由 Sascha Eggenberger 创作于
Refactores CiIcon as SSoT and migrates CiBadgeLink towards it. Changelog: changed
-
- 9月 27, 2023
-
-
由 Miguel Rincon 创作于
This change updates the text in the CI status labels to a use "Sentence case". This casing is up to date with the latest Pajamas guidelines. Changelog: changed
-
- 9月 25, 2023
-
-
由 Sascha Eggenberger 创作于
Updates the appearance of the pipeline icon. Changelog: changed
-
- 9月 21, 2023
-
-
由 Frédéric Caplette 创作于
To make the pipelines_table component more reusable, we extract the the event hub and mixin logic out of the components and instead emit native vue events and let the wrapper components handle it.
-
- 9月 14, 2023
-
-
由 Frédéric Caplette 创作于
With the recent change to the ci directory, we move the new graphql pipelines_table to the right directory and rename the older implementation to `legacy` to avoid naming confusion.
-
- 9月 07, 2023
-
-
由 Frédéric Caplette 创作于
Restructure this section so that each feature has a self contained structured.
-
- 9月 01, 2023
-
-
由 Frédéric Caplette 创作于
Restructure of the ci directories part 1.
-
- 8月 24, 2023
-
-
由 Frédéric Caplette 创作于
In an effort to migrate away from REST, we are migrating the pipeline tables to Apollo. This is the first MR that introduce the FF, adds the initial graphql query, polling, etag and specs.
-
- 8月 09, 2023
-
-
由 Briley Sandlin 创作于
-
- 7月 26, 2023
-
-
由 Briley Sandlin 创作于
-
- 7月 17, 2023
-
-
由 Miguel Rincon 创作于
-
- 6月 01, 2023
-
-
由 Briley Sandlin 创作于
This will currently consolidate 2 files and more in the future.
-
- 5月 31, 2023
-
-
由 Nataliia Radina 创作于
-
- 5月 25, 2023
-
-
由 Nataliia Radina 创作于
Changelog: changed
-
- 5月 17, 2023
-
-
由 Nataliia Radina 创作于
Add new CommitReferences component, fetch references on the frontend Changelog: changed
-
- 5月 03, 2023
-
-
由 Andrew Fontaine 创作于
Provide keys and routes so that the expensive GraphQL query can rely on caching.
-
- 4月 13, 2023
-
-
由 Miguel Rincon 创作于
-
- 3月 10, 2023
-
-
由 Nataliia Radina 创作于
-
- 3月 09, 2023
-
-
* update @gitlab/eslint-plugin to the 18.2.0 * enable vtu-no-explicit-wrapper-destroy rule for spec files
-
- 3月 07, 2023
-
-
由 Eduardo Sanz García 创作于
Replace old `flash` import to the newer `alert`. Follow-up of https://gitlab.com/gitlab-org/gitlab/-/merge_requests/109449+
-
- 3月 06, 2023
-
-
由 Eduardo Sanz García 创作于
Replace old `flash` import to the newer `alert`. Follow-up of https://gitlab.com/gitlab-org/gitlab/-/merge_requests/109449+
-
- 3月 02, 2023
-
-
由 Frédéric Caplette 创作于
In the effort to migrate to Vue3, we are updating older specs file to get rid of things like `setData` and `mockImplementation` on the `vm` of components. This commit fixes this.
-
- 2月 15, 2023
-
-
由 Mireya Andres 创作于
This updates the mini pipeline graph for the MR widget and the pipelines table. Changelog: fixed
-
- 2月 02, 2023
-
-
由 Mireya Andres 创作于
Changelog: fixed
-
- 1月 31, 2023
-
-
由 Coung Ngo 创作于
Converts 200s to HTTP_STATUS_OK constants in frontend code to avoid magic numbers
-
由 Mireya Andres 创作于
Retrying a trigger job will create a new downstream pipeline. Which means the pipeline graphs can show multiple outdated downstream pipelines. This MR creates a util function for filtering out the outdated downstream pipelines via the `sourceJob.retried` property. If the the source job (trigger job) has `retried = false`, this means that it is the latest trigger job, which means the pipeline associated to it will be rendered. This is tested on the mini pipeline graph for the pipeline editor, which uses GraphQL. Updates for other mini pipeline graphs (some of which use REST or Rails injection) will be done in future MRs. Since the retry trigger job feature is not yet available, this should not affect how we render existing pipeline graphs today.
-
- 1月 23, 2023
-
-
由 Coung Ngo 创作于
Converts 500s to HTTP_STATUS_INTERNAL_SERVER_ERROR constants in frontend code to avoid magic numbers
-
- 1月 10, 2023
-
-
由 Coung Ngo 创作于
Refactor to primitive constants to satisfy FE coding practise
-
- 12月 20, 2022
-
-
由 Coung Ngo 创作于
Refactor to primitive constants to satisfy FE coding practise
-
- 9月 30, 2022
-
-
由 Eduardo Sanz García 创作于
Automatic replacement of deprecated `createFlash` function by Pajamas compliant `createAlert`. There is a small change in the look and feel: the createAlert adds an icon based on the variant type.
-
- 9月 27, 2022
-
-
由 Eduardo Sanz García 创作于
Automatic replacement of deprecated `createFlash` function by Pajamas compliant `createAlert`. There is a small change in the look and feel: the createAlert adds an icon based on the variant type.
-
- 9月 10, 2022
-
-
由 Eduardo Sanz García 创作于
Part 1 Automatic conversion of Vue Test Util `Wrapper#find` for `Wrapper#findComponent` when applied to a Vue component. From the Vue Test Util page: https://v1.test-utils.vuejs.org/api/wrapper/#find ``` Deprecation warning Using find to search for a Component is deprecated and will be removed. Use findComponent instead. The find method will continue to work for finding elements using any valid selector. ```
-
- 8月 25, 2022
-
-
由 Payton Burdette 创作于
Fix issue where forked MRs cannot run a pipeline if they get stuck where pipelines were not created for the MR. Changelog: fixed
-
- 8月 18, 2022
-
-
由 Briley Sandlin 创作于
This commit adds a parent component to the pipeline mini graph. Changelog: changed EE: true
-
- 7月 27, 2022
-
-
由 Payton Burdette 创作于
-
由 Payton Burdette 创作于
Show the mr pipeline tab if pipelines are enabled. Changelog: fixed
-