Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 2月 27, 2024
  2. 2月 26, 2024
    • Andrew Evans's avatar
      Additional cleanup for external usernames on oAuth and LDAP sign up · fdba0601
      Andrew Evans 创作于
      Currently if a user joins a GitLab instance via oAuth, LDAP, or SCIM and
      their username begins with multiple `--` characters, these characters
      are removed to ensure a valid username can be created for the new user.
      Illegal characters such as `*&^()` are removed, and illegal extensions
      such as `.git` and `.atom` are also removed.
      
      This change extends the behavior to include all leading legal
      characters: `-` , `_` and `.` . It also trims from the end of the
      potential username, and removes consecutive legal characters so the
      resulting username will pass the check for
      `Gitlab::Regex.oci_repository_path_regex` .
      
      Changelog: changed
      fdba0601
    • Avielle Wolfe's avatar
      Fix boolean and number input types · a4032ae6
      Avielle Wolfe 创作于
      Boolean and number input types were not be respected by CI
      interpolation. They were being cast to strings when interpolated by
      `gsub`. This commit fixes that by replacing the entire node with the
      input value when the interpolation block is the entire length of the
      node. In other cases, we can assume that the input is being inserted
      into a string, so it's safe for us to use `gsub` to cast the value to a
      string and perform the insertion.
      
      This commit also ensures that the ability to match and replace multiple
      interpolation blocks in a single node is not affected. A previous
      attempt to fix this bug caused an incident because it only interpolated
      the first block in a node.
      
      Changelog: fixed
      Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/434826
      a4032ae6
    • Furkan Ayhan's avatar
      Enable ci_parallel_remote_includes feature flag · fb8c2c6f
      Furkan Ayhan 创作于
      This FF is already enabled on `gitlab.com` and it seems stable.
      
      Related to https://gitlab.com/gitlab-org/gitlab/-/issues/413770
      
      Changelog: performance
      fb8c2c6f
    • Marc Shaw's avatar
      Add new generic worker to handle auto merges from events · c8d7ec7f
      Marc Shaw 创作于
      Changelog: added
      c8d7ec7f
  3. 2月 24, 2024
  4. 2月 23, 2024
  5. 2月 22, 2024
  6. 2月 21, 2024
加载中