Skip to content
Snippets Groups Projects
  1. Dec 31, 2024
  2. Dec 18, 2024
  3. Dec 04, 2024
  4. Nov 08, 2024
  5. Oct 18, 2024
  6. Oct 22, 2024
  7. Sep 19, 2024
  8. Sep 11, 2024
  9. Sep 18, 2024
  10. Sep 17, 2024
  11. Sep 04, 2024
  12. Aug 26, 2024
  13. Aug 23, 2024
  14. Aug 19, 2024
  15. Aug 14, 2024
  16. Aug 13, 2024
  17. Aug 01, 2024
  18. Jul 15, 2024
  19. Apr 15, 2024
  20. Apr 08, 2024
  21. Jun 27, 2024
    • Stan Hu's avatar
      Fix Redis password handling with reserved characters · ba009e3bf187
      Stan Hu authored
      Previously including reserved characters such as `@` in the Redis
      password would fail because `URI::Generic::DEFAULT_PARSER.escape` did
      not consider `@` unsafe, which it generally isn't per RFC 2396 and
      3986. However, the `@` is not allowed in the userinfo field, and the
      URI builder for Ruby fails if using a reserved character were
      included.
      
      To fix this, use `ERB.url_encode`, which always escapes any
      non-alphanumeric string.
      
      Relates to https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/8602
      
      Changelog: fixed
      ba009e3bf187
  22. Jun 24, 2024
    • Ian Baum's avatar
      Add gitlab-backup user · ab269a7991a2
      Ian Baum authored
      * Creates the gitlab-backup user and groups if they dont' exist
      * Adds the user to other groups
      * For use by gitlab-backup-cli for read/write permission to data for
        backups and restores
      
      Changelog: added
      ab269a7991a2
  23. Jun 04, 2024
  24. May 22, 2024
  25. Apr 18, 2024
  26. May 21, 2024
    • Stan Hu's avatar
      redis: Fix handling of passwords with a space · 191ff5a0879a
      Stan Hu authored
      Previously we used `CGI.escape(password)`, but this escapes spaces as
      `+` instead of `%20`. However, RFC 3986 says the password should be
      percent-encoded. In fact, while the Ruby Redis client appears to
      connect fine with the `+`, the Go client doesn't work with that.
      Update the helper to encode passwords according to RFC 3986.
      
      Changelog: fixed
      191ff5a0879a
  27. May 15, 2024
  28. May 17, 2024
  29. Apr 26, 2024
  30. May 04, 2024
  31. Apr 24, 2024
  32. Apr 15, 2024
  33. Apr 01, 2024
  34. Mar 27, 2024
  35. Mar 19, 2024
  36. Mar 13, 2024
  37. Mar 12, 2024
Loading