Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 7月 07, 2020
  2. 7月 01, 2020
  3. 6月 30, 2020
  4. 6月 29, 2020
  5. 6月 27, 2020
  6. 6月 25, 2020
  7. 6月 23, 2020
  8. 6月 22, 2020
  9. 6月 20, 2020
  10. 6月 19, 2020
    • Coung Ngo's avatar
      Add new mentions component to Issues · 01f1788a
      Coung Ngo 创作于
      As part of the refactor from at.js to tribute, the new
      tribute component was added to the Issues description, note
      and comment textareas
      01f1788a
    • jerasmus's avatar
      Bump @toast-ui dependency version · 2e60a325
      jerasmus 创作于
      Bumped the dependency version of ToastUI
      2e60a325
    • derek-knox's avatar
      Initial kramdown SSE parser · 8c4db0dd
      derek-knox 创作于
      Update toast UI so customHTMLRenderer option
      actually works. Implement initial kramdown parse
      and replace with an uneditable node. Additionally
      account for customHTMLRenderers vs. defaults.
      8c4db0dd
  11. 6月 18, 2020
  12. 6月 17, 2020
  13. 6月 16, 2020
  14. 6月 15, 2020
  15. 6月 12, 2020
  16. 6月 11, 2020
    • GitLab Bot's avatar
      Update GitLab UI/SVG · f610f1ff
      GitLab Bot 创作于
      f610f1ff
    • Lukas Eipert's avatar
      Update babel to latest version · 474fb48e
      Lukas Eipert 创作于
      We are updating babel. Newer versions of jest are depending on newer
      versions of jest. By updating babel independently, we can make it easier
      to upgrade jest (smaller diff in dependencies) and easier to revert in
      the unlikely case of a failure.
      未验证
      474fb48e
  17. 6月 10, 2020
  18. 6月 09, 2020
  19. 6月 08, 2020
  20. 6月 06, 2020
  21. 6月 05, 2020
    • Paul Gascou-Vaillancourt's avatar
      Upgrade Bootstrap to v4.4.1 · 69e52948
      Paul Gascou-Vaillancourt 创作于
      69e52948
    • Thomas Randolph's avatar
      Add a seedable UUIDv4 generator · 1f241d28
      Thomas Randolph 创作于
      Most UUID generators assume that you want fully
      random UUIDs. In most cases, this is true.
      
      The `uuid` package allows
      a consumer to pass in `random` values (an array
      of 16 numbers 0-255), or a generator that outputs
      16 random bytes.
      
      This is our hook into being able to provide
      "random" values. We just need a way to get
      "random" values that are actually random in
      most cases, but that we can control if we want
      to.
      
      Enter: the Mersenne Twister.
      Mersenne Twisters can be seeded with a number
      to start. They will derive all of their future twisted
      states from that initial seed. So: we still get
      "randomness," but we can also seed it to make
      the output deterministic.
      
      This `random.js` file outputs a single function
      (for now) called `uuids` that will generate a
      random UUIDv4 string or - if provided seeds -
      will generate the correct resulting UUIDv4
      given those seeds.
      
      Consumers can request multiple values
      to avoid having to constantly call the function
      and/or constantly reconstruct the internal
      Twister.
      未验证
      1f241d28
  22. 6月 04, 2020
  23. 6月 03, 2020
  24. 6月 01, 2020
  25. 5月 30, 2020
  26. 5月 29, 2020
加载中