Skip to content
Snippets Groups Projects
  1. Jan 15, 2019
  2. Nov 09, 2018
  3. Oct 22, 2018
  4. Oct 11, 2018
  5. May 31, 2018
  6. May 29, 2018
  7. May 24, 2018
  8. May 02, 2018
  9. Mar 05, 2018
  10. Mar 01, 2018
  11. Feb 02, 2018
  12. Jan 03, 2018
  13. Dec 21, 2017
  14. Nov 09, 2017
  15. Sep 22, 2017
  16. Sep 07, 2017
  17. Sep 05, 2017
  18. Aug 31, 2017
    • Sean McGivern's avatar
      `current_application_settings` belongs on `Gitlab::CurrentSettings` · 5883ce95
      Sean McGivern authored
      The initializers including this were doing so at the top level, so every object
      loaded after them had a `current_application_settings` method. However, if
      someone had rack-attack enabled (which was loaded before these initializers), it
      would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't
      have that method.
      
      To fix this:
      
      1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need
         `Object.new.current_application_settings` to work.
      2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it
         like that in several places.
      3. Change the initializers to use that new form.
      5883ce95
  19. Jun 29, 2017
  20. May 26, 2017
  21. May 21, 2017
  22. May 18, 2017
  23. May 05, 2017
  24. Apr 28, 2017
  25. Apr 13, 2017
  26. Mar 14, 2017
  27. Mar 07, 2017
  28. Mar 06, 2017
    • Eric Eastwood's avatar
    • Eric Eastwood's avatar
      Use native unicode emojis · e6fc0207
      Eric Eastwood authored
       - gl_emoji for falling back to image/css-sprite when the browser
         doesn't support an emoji
       - Markdown rendering (Banzai filter)
       - Autocomplete
       - Award emoji menu
          - Perceived perf
          - Immediate response because we now build client-side
       - Update `digests.json` generation in gemojione rake task to be more
         useful and  include `unicodeVersion`
      
      MR: !9437
      
      See issues
      
       - #26371
       - #27250
       - #22474
      e6fc0207
  29. Mar 01, 2017
  30. Feb 23, 2017
  31. Jan 23, 2017
    • Luke Bennett's avatar
      Added raven and raven-vue plugin, updated gon_helper with data needed for... · c252c034
      Luke Bennett authored and Luke "Jared" Bennett's avatar Luke "Jared" Bennett committed
      Added raven and raven-vue plugin, updated gon_helper with data needed for raven and created raven_config, required by application.js
      
      Added is_production to define sentry environment
      
      Removed as much jQuery as possible
      
      Added public_sentry_dsn application_settings helper method
      
      Use URI module instead of regex for public dsn
      
      Removed raven-vue and load raven on if sentry is enabled
      
      Add load_script spec
      
      added raven_config spec
      
      added class_spec_helper and tests
      
      added sentry_helper spec
      
      added feature spec
      Verified
      c252c034
  32. Jan 09, 2017
  33. Dec 14, 2016
Loading