该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 6月 30, 2022
-
-
由 Stan Hu 创作于
This commit vendors the omniauth-gem v4.0.0 to support: 1. OmniAuth v1 and v2. OmniAuth v2 disables GET requests by default and defaults to POST. GitLab already has patched v1 to use POST, but other dependencies need to be updated: https://gitlab.com/gitlab-org/gitlab/-/issues/30073. 2. [`oauth2`](https://github.com/oauth-xx/oauth2) v1.4.9 and up. [v1.4.9 fixed relative URL handling](https://github.com/oauth-xx/oauth2/pull/469). However, this breaks the default GitLab.com configuration and existing configurations that use the `/api/v4` suffix in the `site` parameter. [omniauth-gitlab v4.0.0 fixed the first issue](https://github.com/linchus/omniauth-gitlab/pull/22), but the second issue requires an admin to update `site` to drop the suffix. This fork restores backwards compatibility that was removed in omniauth-gitlab v2.0.0. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/361284 Changelog: changed
-
由 Jan Provaznik 创作于
Do not show guest users as participants when mentioned on internal note See merge request gitlab-org/gitlab!90073
-
由 Pavel Shutsin 创作于
Revert "Merge branch 'sy-add-member-limit-banner-...' into 'master'" See merge request gitlab-org/gitlab!91463
-
由 Serhii Yarynovskyi 创作于
This reverts merge request !89233
-
由 Peter Leitzen 创作于
Merge branch '11298-flaky-spec-api-namespaces-put-id-gitlab_subscription-when-authenticated-as-an-admin-when' into 'master' Resolve "Flaky spec: "ee/spec/requests/api/namespaces_spec.rb" See merge request gitlab-org/gitlab!91016
-
由 Tarun Vellishetty 创作于
-
由 Miguel Rincon 创作于
Merge branch '363955-migrate-app-views-projects-blob-viewers-_stl-html-haml-to-pajamas-buttoncomponent' into 'master' Migrate button for stl file type viewer See merge request gitlab-org/gitlab!89935
-
由 Marcel van Remmerden 创作于
Changelog: changed
-
由 Savas Vedova 创作于
Add false positive alert to Vulnerability Details See merge request gitlab-org/gitlab!91254
-
由 Alexandru Croitor 创作于
Fix GraphQL API to fetch clusterAgents from instanceSecurity Dashboard See merge request gitlab-org/gitlab!91314
-
Changelog: fixed EE: true
-
由 Felipe Artur 创作于
Do not add guest users as participants when they are mentioned on not readable internal notes. This should happen only when guest user is the note author. Changelog: fixed
-
由 Peter Leitzen 创作于
Remove pod logs services and update specs See merge request gitlab-org/gitlab!91451
-
由 Rajendra Kadam 创作于
Update translations and specs Changelog: removed
-
由 Robert Hunt 创作于
Introduce CloudSQL Frontend Components See merge request gitlab-org/gitlab!90261
-
由 Marcel Amirault 创作于
Update doc/update/index.md to fix hyperlink See merge request gitlab-org/gitlab!91354
-
由 Pavel Shutsin 创作于
Add project export relations models to Import/Export See merge request gitlab-org/gitlab!90624
-
由 Rodrigo Tomonari 创作于
In order to parallelize the project export in Import/Export, two new are being added to Import/Export to track and store the partial export files. The table `project_export_relations` will hold the status of the relation exportation. And the table `project_export_relation_uploads` will store the location of the exported file. Changelog: added
-
由 Dave Pisek 创作于
This commit adds the false-positive alert to the vulnerability details component. This is part of the work related to the GraphQL migration for the pipeline tab and will support rendering a pipeline finding using the above mentioned component. Changelog: added EE: true
-
由 Robert Hunt 创作于
Fix avatars displaying as block elements See merge request gitlab-org/gitlab!91464
-
由 Huzaifa Iftikhar 创作于
Rename `audit_logs*` spec variables to `audit_events*` See merge request gitlab-org/gitlab!90995
-
由 Savas Vedova 创作于
Add crashState to vulnerability details See merge request gitlab-org/gitlab!90816
-
由 Sri 创作于
Introduce a set of frontend components for the CloudSQL (databases) functionality of Cloud Seed ## Components List 1. CloudSQL/CreateInstanceForm Create CloudSQL database instances 2. CloudSQL/InstanceTable View list of created instances 3. Databases/ServiceTable View list of database services
-
由 David O'Regan 创作于
Use UTC for trial end date in popover See merge request gitlab-org/gitlab!91096
-
由 Peter Leitzen 创作于
Improve event data matcher to use RSpec::Matchers::Composable See merge request gitlab-org/gitlab!91446
-
由 Natalia Tepluhina 创作于
Replace Geo node with Geo site See merge request gitlab-org/gitlab!91385
-
由 Sunjung Park 创作于
Changelog: changed EE: true
-
由 Phil Hughes 创作于
Refactor security config spec See merge request gitlab-org/gitlab!91277
-
由 Alexandru Croitor 创作于
Collapsed Ipynb diffs not loading in MRs See merge request gitlab-org/gitlab!91063
-
由 Miguel Rincon 创作于
Agent status page: Update icons list in the agent list See merge request gitlab-org/gitlab!91298
-
由 Kati Paizee 创作于
Document `object_attributes.oldrev` in the merge request webhook event See merge request gitlab-org/gitlab!91266
-
由 Camilla Conte 创作于
Source: merge request which introduced it - https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/5535
-
由 Natalia Tepluhina 创作于
Add ability to edit work items weight widget See merge request gitlab-org/gitlab!90044
-
由 Coung Ngo 创作于
The weight widget updates are only persisted in the frontend Apollo Cache for now. When the backend mutation for updating the weight has been created, the weight widget will be updated again to use this mutation.
-
由 Nicolas Dular 创作于
Because we create a `Date` Object and pass it to the frontend, the end date of the trial is shown in the browser's timezone. However, we store the end date in UTC and also show the end date in UTC on the billing page. To streamline the dates, this MR changes the formatted date in the trial popover to be in UTC as well. Changelog: fixed EE: True
-
由 Alexandru Croitor 创作于
Fix issue list for closed issues without closed_at See merge request gitlab-org/gitlab!91442
-
由 Eduardo Bonet 创作于
Ipynb diffs would still be generated when the file was collpsed, which would cause MRs to not be able to load the diff when clicking "Load Anyway" Changelog: fixed
-
由 Jan Provaznik 创作于
Remove JSON format for epics index page See merge request gitlab-org/gitlab!89490
-
由 Coung Ngo 创作于
Avatars started displaying as block elements after they were updated with `display: flow-root`. This created a BFC which we wanted in order to contain the floated avatars. However, this makes the element a block. We can make the element inline instead with a BFC with `display: inline-block`. Changelog: fixed
-
由 Jacob Vosmaer 创作于
workhorse: Update module gitlab.com/gitlab-org/gitaly/v14 to v15 See merge request gitlab-org/gitlab!91304
-