该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 7月 25, 2023
-
-
由 Sascha Eggenberger 创作于
Changelog: changed
-
由 Rajendra Kadam 创作于
-
-
Added a test for emoji updates Fixed the spec for updating upvotes Fixed stylelint and jest jobs
-
-
由 Heinrich Lee Yu 创作于
This is going to be used for partitioning the table. Also prepares the async index on the column so we can add the foreign key constraint to this column. Changelog: other
-
由 Luke Duncalfe 创作于
This flag was previously default enabled in 16.2. https://gitlab.com/gitlab-org/gitlab/-/issues/300031 https://gitlab.com/gitlab-org/gitlab/-/issues/415025 Changelog: other
-
由 Abdul Wadood 创作于
This is a follow-up to a production incident See https://gitlab.com/gitlab-com/gl-infra/production/-/issues/16022#note_1467672642. The incident happened because some new validations were added that were preventing existing user records from getting updated. We save the user when doing 2FA sign-in so users not passing the validations were unable to sign in. ActiveRecord::RecordInvalid caused the SessionsController to return 422 but we have changed that to 500 to improve observability/alerting. Changelog: other
-
由 Sascha Eggenberger 创作于
Changelog: changed
-
由 Thiago Figueiró 创作于
-
由 GitLab Dependency Bot 创作于
-
由 Missy Davies 创作于
Fixed the issue and merge request update mutations to include a validation to ensure time estimates are greater than or equal to zero. Changelog: fixed
-
由 Miguel Rincon 创作于
We can make better use of the current runner performance single stat and add it to the dashboard. This allows users to see a snapshot of the current runner wait times in their instance.
-
由 Kerri Miller 创作于
-
由 Suzanne Selhorn 创作于
Related to: https://gitlab.com/gitlab-org/gitlab/-/issues/384335
-
由 Rahul Chanila 创作于
This check is handled within the component itself See https://gitlab.com/gitlab-org/gitlab-ui/-/merge_requests/3520
-
由 Eduardo Bonet 创作于
If a candidate is not defined, creates a new random composed of 'animal-animal-animal-number'. This will improve the UI and allow users to search better through candidates. Existing candidates that don't have a name will continue to not have a name. There are 141 animal names in https://github.com/ffaker/ffaker/blob/main/lib/ffaker/data/animal/common_names, so that means there are 28B (141*141*141*10000) possible combinations per project. Names can be duplicated. Changelog: changed
-
由 Vasilii Iakliushin 创作于
Contributes to https://gitlab.com/gitlab-org/gitlab/-/issues/356094 **Problem** Push rules validations for files don't work on the first push to the empty repository. The root cause is a `git diff-tree` behavior for an initial commit. It returns an empty result if we provide a sha of the initial commit, but it works correctly for all following commits. **Solution** Use tree ids to get the diff of the initial commit. Git has a special empty tree id `4b825dc642cb6eb9a060e54bf8d69288fbee4904` that corresponds to the empty repository state. Instead of `git diff-tree <commit_id>` we can request a diff between two trees: `git diff-tree <empty_tree_id> <commit_tree_id>`. This approach returns a correct diff for the initial commit.
-
由 Stan Hu 创作于
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/117468 in GitLab 15.11 updated the ruby-jwt gem to v2.5.0. In v2.2.0, ruby-jwt removed the `iat_leeway` parameter (https://github.com/jwt/ruby-jwt/pull/274). As a result, if a gitlab-shell host creates a JWT token with an issued-at (IAT) claim that is slightly behind the host handling API the request, users will receive a 401 error. Disable this IAT verification by default since it's not serving a useful purpose, since expiration times are already validated. We already made a similar change in Geo. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/417543 Changelog: fixed
-
由 bmarjanovic 创作于
-
由 Jerry Seto 创作于
Frontend changes to support fully qualified refs on blob and tree view Changelog: fixed
-
- 7月 24, 2023
-
-
Removes unnecessary attributes and adds snapshot spec.
-
由 Jerry Seto 创作于
Add a feature flag to enable logging differences between determining repository size by the repository info repository call and the existing repository size rpc call Contributes to: https://gitlab.com/gitlab-org/gitlab/-/issues/418243
-
由 Erick Bajao 创作于
This prevents environment scopes to be queried by non-group-owners through GraphQL. Changelog: fixed
-
由 Lucas Zampieri 创作于
Added diffs to commit endpoint, similar to "GET /projects/:id/repository/commits/:sha/diff"; Added Graphql diffs type; Changelog: added Signed-off-by:
Lucas Zampieri <lzampier@redhat.com>
-
由 Elwyn Benson 创作于
Adds new readonly prop, which defaults to false inline with native input element. Update all usages to preserve current behaviour.
-
由 Sascha Eggenberger 创作于
Changelog: changed
-
由 Carla Drago 创作于
This removes text that matches the link format for a slack message Changelog: other
-
由 Samantha Ming 创作于
Fix spec violation in preparation for Vue 3.
-
由 Thomas Hutterer 创作于
Behind the super_sidebar_flyout_menus feature flag. Part of https://gitlab.com/gitlab-org/gitlab/-/issues/415343.
-
由 Hinam Mehra 创作于
- Aggregate open abuse reports to show administrators that a user has been reported by multiple other users for abuse - Add an option to sort by the number of reports in desc order - When sorting by the number of reports, reports that have a count = 1 should be sorted by created_at DESC by default - No changes have been made for closed abuse reports Changelog: added
-
由 Janis Altherr 创作于
Changelog: changed
-
由 Sascha Eggenberger 创作于
Changelog: changed
-
由 Deepika Guliani 创作于
Changelog: changed
-
由 Alex Buijs 创作于
Refactor email verification from HAML into a Vue application.
-
由 Mughees Pervaiz 创作于
-
由 Eduardo Bonet 创作于
When a package of type ml_model_package is created through the api, creates also a companion Ml::ModelVersion Changelog: added FeatureFlag: model_registry
-
由 Jacques 创作于
Fixes scrolling to the URL hash when viewing Markdown files Changelog: fixed
-
由 Samantha Ming 创作于
Fix spec violation in preparation for Vue 3.
-
由 Patrick Bajao 创作于
When a review is created we send an email to notify users and we want to include the review summary generated by AI. To do that, we delay the sending of the `new_review_email` by 2 minutes as we make a request to AI to generate the review summary asynchronously. If after 2 minutes the review summary is still not available for a specific review, then the new review email will be sent without it. We are still generating review summary behind `automatically_summarize_mr_review` feature flag.
-