该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 8月 31, 2023
-
-
由 Kos Palchyk 创作于
-
由 Phillip Wells 创作于
Add upgrade notes for the fix on group updates See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130291 Merged-by:
Phillip Wells <pwells@gitlab.com> Approved-by:
Phillip Wells <pwells@gitlab.com> Reviewed-by:
David Fernandez <dfernandez@gitlab.com> Co-authored-by:
David Fernandez <dfernandez@gitlab.com>
-
由 David Fernandez 创作于
The index introduced for https://gitlab.com/gitlab-org/gitlab/-/issues/419289 requires an ANALYZE before being useable.
-
由 Amy Qualls 创作于
Add Toggle File Browser shortcut to docs See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130497 Merged-by:
Amy Qualls <aqualls@gitlab.com> Approved-by:
Amy Qualls <aqualls@gitlab.com> Co-authored-by:
Stanislav Lashmanov <slashmanov@gitlab.com>
-
由 Stanislav Lashmanov 创作于
Changes more lines in the table to space them out, but ZOMG so nice.
-
由 Stan Hu 创作于
Test mail-smtp_pool on Ruby 3.1 and 3.2 See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130045 Merged-by:
Stan Hu <stanhu@gmail.com> Approved-by:
Hitesh Raghuvanshi <hraghuvanshi@gitlab.com> Approved-by:
Stan Hu <stanhu@gmail.com> Reviewed-by:
Heinrich Lee Yu <heinrich@gitlab.com> Co-authored-by:
Heinrich Lee Yu <heinrich@gitlab.com>
-
由 Miguel Rincon 创作于
Add license column to group-level dependencies listing See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129881 Merged-by:
Miguel Rincon <mrincon@gitlab.com> Approved-by:
Zamir Martins <zfilho@gitlab.com> Approved-by:
mo khan <mo@mokhan.ca> Approved-by:
Miguel Rincon <mrincon@gitlab.com> Reviewed-by:
Miguel Rincon <mrincon@gitlab.com> Reviewed-by:
David Pisek <dpisek@gitlab.com> Co-authored-by:
Dave Pisek <dpisek@gitlab.com>
-
由 David Pisek 创作于
This commit adds a column with a dependencie's license information to the group-level dependencies table.
-
由 George Koltsov 创作于
Add username to users mapper See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/128999 Merged-by:
George Koltsov <gkoltsov@gitlab.com> Approved-by:
George Koltsov <gkoltsov@gitlab.com> Reviewed-by:
George Koltsov <gkoltsov@gitlab.com> Reviewed-by:
Bojan Marjanovic <bmarjanovic@gitlab.com> Co-authored-by:
carlad-gl <cdrago@gitlab.com>
-
由 Carla Drago 创作于
This change updates the get_members graphql query to include the username in the returned result. It updates the user_mapper with methods to create and save the source_username and destination_username as a hash in redis. It adds a usernames pipeline for updating all issue/mr/note username mentions with the correct username where necessary. Changelog: fixed
-
由 Miguel Rincon 创作于
Add zoekt search indicator See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129376 Merged-by:
Miguel Rincon <mrincon@gitlab.com> Approved-by:
Serena Fang <sfang@gitlab.com> Approved-by:
Nataliia Radina <nradina@gitlab.com> Approved-by:
Miguel Rincon <mrincon@gitlab.com> Reviewed-by:
Miguel Rincon <mrincon@gitlab.com> Reviewed-by:
Nataliia Radina <nradina@gitlab.com> Co-authored-by:
Tomas Bulva <tbulva@gitlab.com>
-
由 Tomas Bulva 创作于
Changelog: added EE: true
-
由 Gosia Ksionek 创作于
Update AI client SLI See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129367 Merged-by:
Gosia Ksionek <mksionek@gitlab.com> Approved-by:
Gosia Ksionek <mksionek@gitlab.com> Reviewed-by:
Bob Van Landuyt <bob@gitlab.com> Reviewed-by:
Gosia Ksionek <mksionek@gitlab.com> Co-authored-by:
Jan Provaznik <jprovaznik@gitlab.com>
-
由 Jan Provaznik 创作于
* with this change success ratio of AI requests is measured outside of exponential backoff * llm_chat_answers SLI is replaced with more generic llm_completion which tracks error ratio of all AI actions
-
由 Jose Ivan Vargas 创作于
Add Toggle File Browser shortcut to Merge Request keybindings See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130498 Merged-by:
Jose Ivan Vargas <jvargas@gitlab.com> Approved-by:
Jose Ivan Vargas <jvargas@gitlab.com> Co-authored-by:
Stanislav Lashmanov <slashmanov@gitlab.com>
-
由 Lin Jen-Shin 创作于
Fix gdk docker image build rules See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130523 Merged-by:
Lin Jen-Shin <jen-shin@gitlab.com> Approved-by:
Lin Jen-Shin <jen-shin@gitlab.com> Co-authored-by:
Andrejs Cunskis <acunskis@gitlab.com>
-
-
由 Andy Soiron 创作于
Add archived project filter for Vulnerabilities See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/126921 Merged-by:
Andy Soiron <asoiron@gitlab.com> Approved-by:
Eugie Limpin <elimpin@gitlab.com> Approved-by:
Madelein van Niekerk <mvanniekerk@gitlab.com> Approved-by:
Andy Soiron <asoiron@gitlab.com> Reviewed-by:
Andy Soiron <asoiron@gitlab.com> Reviewed-by:
Madelein van Niekerk <mvanniekerk@gitlab.com> Co-authored-by:
Michael Becker <11881043-wandering_person@users.noreply.gitlab.com>
-
由 Michael Becker 创作于
In [issue 213144][0] we defined new default expected behavior. We want the default behavior for all finders to be: Do not include vulnerability` or `vulnerability_read` objects in the result-set if the project they are associated with is currently `archived` At the same time we want to, in a followup commit, provide API access to toggle on/off the inclusion of `archived` objects While implementing this behavior the following behavior was encountered: 1. `vulnerability_read` vs `vulnerability` differences The [existing behavior][1] of `Group.vulnerabilities` is to ignore vulnerabilities associated with archived projects. The [existing behavior][2] of `Group.vulnerability_reads` does not necessarily account for the archived status of associated projects This commit unifies both to ignoring archive status, leaving that to be done in filters for the finders. [0]:https://gitlab.com/gitlab-org/gitlab/-/issues/213144 [1]:https://gitlab.com/gitlab-org/gitlab/-/blob/45e01fad9dffb4c447bf701e040d552077f60dac/ee/app/models/ee/group.rb#L555-557 [2]:https://gitlab.com/gitlab-org/gitlab/-/blob/45e01fad9dffb4c447bf701e040d552077f60dac/ee/app/models/ee/group.rb#L559-561 Changelog: fixed EE: true
-
由 Kerri Miller 创作于
Revert urgency of notes endpoint to low See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130207 Merged-by:
Kerri Miller <kerrizor@kerrizor.com> Approved-by:
Hercules Merscher <hmerscher@gitlab.com> Approved-by:
Kerri Miller <kerrizor@kerrizor.com> Co-authored-by:
Heinrich Lee Yu <heinrich@gitlab.com>
-
由 Alexandru Croitor 创作于
Remove ai_chat_history_context feature flag See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130396 Merged-by:
Alexandru Croitor <acroitor@gitlab.com> Approved-by:
Gosia Ksionek <mksionek@gitlab.com> Approved-by:
Alexandru Croitor <acroitor@gitlab.com> Approved-by:
Vitaly Slobodin <vslobodin@gitlab.com> Co-authored-by:
Jan Provaznik <jprovaznik@gitlab.com>
-
由 Stan Hu 创作于
Prevents Mail::SMTP monkey patch from overriding defaults See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130185 Merged-by:
Stan Hu <stanhu@gmail.com> Approved-by:
Heinrich Lee Yu <heinrich@gitlab.com> Approved-by:
Stan Hu <stanhu@gmail.com> Reviewed-by:
Heinrich Lee Yu <heinrich@gitlab.com> Reviewed-by:
Marc Saleiko <msaleiko@gitlab.com> Co-authored-by:
Marc Saleiko <msaleiko@gitlab.com>
-
由 Marc Saleiko 创作于
When changing the delivery method settings of a Mail::Message the monkey patch constructor would override the defaults of Mail::SMTP with the configured settings. Now we ensure we use fresh defaults for every new delivery method settings. Changelog: fixed
-
由 Jarka Košanová 创作于
Move `Project#pages_lookup_path` to `Pages::VirtualDomain` See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130406 Merged-by:
Jarka Košanová <jarka@gitlab.com> Approved-by:
Jarka Košanová <jarka@gitlab.com> Approved-by:
mo khan <mo@mokhan.ca> Co-authored-by:
Kassio Borges <kassioborgesm@gmail.com>
-
由 Laura Montemayor 创作于
Add ci catalog component usage tracking See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129016 Merged-by:
Laura Montemayor <lmontemayor@gitlab.com> Approved-by:
Laura Montemayor <lmontemayor@gitlab.com> Approved-by:
Avielle Wolfe <awolfe@gitlab.com> Approved-by:
Sebastian Rehm <srehm@gitlab.com> Reviewed-by:
Avielle Wolfe <awolfe@gitlab.com> Co-authored-by:
Kasia Misirli <kmisirli@gitlab.com>
-
由 Kasia Misirli 创作于
-
由 Miguel Rincon 创作于
Update job sidebar UI See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130220 Merged-by:
Miguel Rincon <mrincon@gitlab.com> Approved-by:
Lorenz van Herwaarden <lvanherwaarden@gitlab.com> Approved-by:
Sascha Eggenberger <seggenberger@gitlab.com> Approved-by:
Artur Fedorov <afedorov@gitlab.com> Approved-by:
Miguel Rincon <mrincon@gitlab.com> Reviewed-by:
Miguel Rincon <mrincon@gitlab.com> Reviewed-by:
Artur Fedorov <afedorov@gitlab.com> Reviewed-by:
Lorenz van Herwaarden <lvanherwaarden@gitlab.com> Co-authored-by:
Annabel Dunstone Gray <annabel.dunstone@gmail.com>
-
由 Harsimar Sandhu 创作于
Remove redundant method from audit changes module See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130184 Merged-by:
Harsimar Sandhu <hsandhu@gitlab.com> Approved-by:
Harsimar Sandhu <hsandhu@gitlab.com> Co-authored-by:
huzaifaiftikhar1 <hiftikhar@gitlab.com>
-
由 Marcin Sedlak-Jakubowski 创作于
Create redirect file for ai_features.md See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130545 Merged-by:
Marcin Sedlak-Jakubowski <msedlakjakubowski@gitlab.com> Approved-by:
Marcin Sedlak-Jakubowski <msedlakjakubowski@gitlab.com> Co-authored-by:
Małgorzata Ksionek <mksionek@gitlab.com>
-
由 Gosia Ksionek 创作于
-
由 Olena Horal-Koretska 创作于
Fix vertical alignment of emoji in cover status See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130443 Merged-by:
Olena Horal-Koretska <ohoralkoretska@gitlab.com> Approved-by:
Paulina Sedlak-Jakubowska <psedlak-jakubowska@gitlab.com> Approved-by:
Olena Horal-Koretska <ohoralkoretska@gitlab.com> Co-authored-by:
Tan Le <tle@gitlab.com>
-
由 Luke Duncalfe 创作于
Convert integrations field to DSL See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130263 Merged-by:
Luke Duncalfe <lduncalfe@gitlab.com> Approved-by:
George Koltsov <gkoltsov@gitlab.com> Approved-by:
Luke Duncalfe <lduncalfe@gitlab.com> Co-authored-by:
bmarjanovic <bmarjanovic@gitlab.com>
-
由 Phillip Wells 创作于
Update API documentation - feature flag strategies type to array See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130386 Merged-by:
Phillip Wells <pwells@gitlab.com> Approved-by:
Shinya Maeda <shinya@gitlab.com> Co-authored-by:
Andy Soiron <asoiron@gitlab.com>
-
由 Andy Soiron 创作于
-
- 8月 30, 2023
-
-
由 Amy Qualls 创作于
Add database_reviews docs section describing final query plans See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130487 Merged-by:
Amy Qualls <aqualls@gitlab.com> Approved-by:
Amy Qualls <aqualls@gitlab.com> Approved-by:
Diogo Frazão <dfrazao@gitlab.com> Co-authored-by:
Dylan Griffith <dyl.griffith@gmail.com>
-
由 Dylan Griffith 创作于
This comes up all the time in code review and having it spelled out more clearly in the docs may make it easier for newer contributors to know about this requirement. Currently it's only vaguely described on this page.
-
由 Roy Zwambag 创作于
Remove PAT field for Code Suggestions: UI part See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129493 Merged-by:
Roy Zwambag <rzwambag@gitlab.com> Approved-by:
Ammar Alakkad <aalakkad@gitlab.com> Approved-by:
Nikola Milojevic <nmilojevic@gitlab.com> Approved-by:
Roy Zwambag <rzwambag@gitlab.com> Co-authored-by:
Aleksei Lipniagov <alipniagov@gitlab.com>
-
由 Gosia Ksionek 创作于
Add ability to stream chat responses See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129966 Merged-by:
Gosia Ksionek <mksionek@gitlab.com> Approved-by:
Gosia Ksionek <mksionek@gitlab.com> Reviewed-by:
Gosia Ksionek <mksionek@gitlab.com> Reviewed-by:
Nicolas Dular <ndular@gitlab.com> Reviewed-by:
Eulyeon Ko <5961404-euko@users.noreply.gitlab.com> Co-authored-by:
Nicolas Dular <ndular@gitlab.com>
-
由 Nicolas Dular 创作于
This adds the capabilities to stream messages for GitLab Duo chat. The streamed chunks get send over `aiCompletionResponse` but the order is not guaranteed on the client. Each chunk has a `chunkId` which has a guaranteed order, starting with `1`. Changelog: changed EE: true
-
由 Felipe Artur 创作于
Fix flaky ee/spec/features/epics/update_epic_spec.rb by accepting alert See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/130216 Merged-by:
Felipe Artur <fcardozo@gitlab.com> Approved-by:
Felipe Artur <fcardozo@gitlab.com> Approved-by:
Alina Mihaila <amihaila@gitlab.com> Co-authored-by:
John Hope <jhope@gitlab.com>
-