Skip to content

Fix warning: character class has duplicated range

Peter Leitzen requested to merge pl-fix-warning-regexp-duplicate-range into master

What does this MR do?

This MR fixes the follow warning:

warning: character class has duplicated range

Part of #196852

Not easy fixable

The following warning cannot be fixed easily:

lib/gitlab/regex.rb:8: warning: character class has duplicated range: /\A[\p{Alnum}©-🧀_][\p{Alnum}\p{Pd}©-🧀_\. ]$\z/

The reason is that \p{Alnum} overlaps with \u{00A9}-\u{1f9ff}.

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • [-] Label as security and @ mention @gitlab-com/gl-security/appsec
  • [-] The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • [-] Security reports checked/validated by a reviewer from the AppSec team
Edited by Peter Leitzen

Merge request reports