diff options
author | Arinde Eniola <eniolaarinde1@gmail.com> | 2016-04-19 11:48:37 +0100 |
---|---|---|
committer | Arinde Eniola <eniolaarinde1@gmail.com> | 2016-04-19 11:48:37 +0100 |
commit | 5661f47d3834edb81dbddf4c272bcd49f2195a14 (patch) | |
tree | def5c5259329c6e07b54eccfb899eb87eb56dab6 | |
parent | 3e62dc3be5c0f4874c100f6cde5c6762bae754c5 (diff) | |
download | gitlab-ce-5661f47d3834edb81dbddf4c272bcd49f2195a14.tar.gz |
some changes and add item to changelog
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | app/assets/javascripts/application.js.coffee | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG index 350be45627f..2fa5299acf6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -75,6 +75,7 @@ v 8.7.0 (unreleased) - Fix repository cache invalidation issue when project is recreated with an empty repo (Stan Hu) - Fix: Allow empty recipients list for builds emails service when pushed is added (Frank Groeneveld) - Improved markdown forms + - Show JavaScript errors in sentry - Delete tags using Rugged for performance reasons (Robert Schilling) - Diffs load at the correct point when linking from from number - Selected diff rows highlight diff --git a/app/assets/javascripts/application.js.coffee b/app/assets/javascripts/application.js.coffee index d4c399f7be2..83d52cabcda 100644 --- a/app/assets/javascripts/application.js.coffee +++ b/app/assets/javascripts/application.js.coffee @@ -299,6 +299,7 @@ $ -> if gon.sentry_dsn? Raven.config(gon.sentry_dsn, { + includePaths: [/gon.relative_url_root/] ignoreErrors: [ # Random plugins/extensions 'top.GLOBALS', @@ -336,6 +337,5 @@ $ -> if gon.current_user_id Raven.setUserContext({ - api_token: gon.api_token, id: gon.current_user_id })
\ No newline at end of file |