Skip to content

Commit

Permalink
Change getsentry.com => sentry.io (getsentry#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar authored and denstepa committed Jan 5, 2017
1 parent 8bc6a48 commit 3c2e4a7
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
## 1.2.0
* BUGFIX: Error in cases where a `document` context doesn't exist. See: https://github.com/getsentry/raven-js/pull/383
* BUGFIX: Trailing comma when using unminified dist which affects IE9. See: https://github.com/getsentry/raven-js/pull/385
* NEW: Add ability to swap in a custom transport. Adds `Raven.setTransport`, and `transport` option to config. Docs: https://docs.getsentry.com/hosted/clients/javascript/config/
* NEW: Add ability to swap in a custom transport. Adds `Raven.setTransport`, and `transport` option to config. Docs: https://docs.sentry.io/hosted/clients/javascript/config/
* CHANGE: Always expose `Raven` to `window`. Please call `Raven.noConflict()` if you want it restored to what it was. See: https://github.com/getsentry/raven-js/pull/393
* DEPRECATED: Replace `Raven.setReleaseContext` with `Raven.setRelease`.
* NEW: Add `Raven.clearContext()` to empty all of the context.
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ $ grunt run:docs
* `$ npm publish` to push to npm.
* Confirm that the new version exists behind `cdn.ravenjs.com`
* Bump version in the `gh-pages` branch specifically for http://ravenjs.com/.
* Bump marketing pages on getsentry.com, e.g. https://getsentry.com/for/javascript/
* Bump getsentry.com `<script>` tag of raven.js
* Bump marketing pages on sentry.io, e.g. https://sentry.io/for/javascript/
* Bump sentry.io `<script>` tag of raven.js
* Bump `package.json` in Sentry repo https://github.com/getsentry/sentry/blob/master/package.json
* Bump version for Segment integration since they don't: https://github.com/segment-integrations/analytics.js-integration-sentry
* glhf
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Raven.js [![Build Status](https://travis-ci.org/getsentry/raven-js.svg?branch=master)](https://travis-ci.org/getsentry/raven-js)

Raven.js is the official browser JavaScript client for [Sentry](https://getsentry.com/).
Raven.js is the official browser JavaScript client for [Sentry](https://sentry.io/).

**Raven.js v2.0 requires Sentry v8.0.0 or later.**

## Resources

* [Download](http://ravenjs.com)
* [Documentation](https://docs.getsentry.com/hosted/clients/javascript/)
* [Documentation](https://docs.sentry.io/hosted/clients/javascript/)
* [Bug Tracker](https://github.com/getsentry/raven-js/issues)
* [IRC](irc://chat.freenode.net/sentry) (chat.freenode.net, #sentry)
* Follow [@mattrobenolt](https://twitter.com/mattrobenolt) on Twitter for updates
2 changes: 1 addition & 1 deletion docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Those configuration options are documented below:
.. describe:: tags

Additional `tags <https://www.getsentry.com/docs/tags/>`__ to assign to each event.
Additional `tags <https://www.sentry.io/docs/tags/>`__ to assign to each event.

.. code-block:: javascript
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Configuring the Client
----------------------

Now you need to set up Raven.js to use your `Sentry DSN
<https://docs.getsentry.com/hosted/quickstart/#configure-the-dsn>`_:
<https://docs.sentry.io/hosted/quickstart/#configure-the-dsn>`_:

.. code-block:: javascript
Expand Down
2 changes: 1 addition & 1 deletion docs/integrations/react-native.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ To generate both an application JavaScript file (main.jsbundle) and source map f
--sourcemap-output main.jsbundle.map
This will write both main.jsbundle and main.jsbundle.map to the current directory. Next, you'll need to `create a new release and upload these files as release artifacts
<https://docs.getsentry.com/hosted/clients/javascript/sourcemaps/#uploading-source-maps-to-sentry>`__.
<https://docs.sentry.io/hosted/clients/javascript/sourcemaps/#uploading-source-maps-to-sentry>`__.

Naming your Artifacts
~~~~~~~~~~~~~~~~~~~~~
Expand Down
10 changes: 5 additions & 5 deletions docs/sourcemaps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Source Maps
===========

Sentry supports un-minifying JavaScript via `Source Maps
<http://blog.getsentry.com/2015/10/29/debuggable-javascript-with-source-maps.html>`_. This lets you
<http://blog.sentry.io/2015/10/29/debuggable-javascript-with-source-maps.html>`_. This lets you
view source code context obtained from stack traces in their original untransformed form, which is
is particularly useful for debugging minified code (e.g. UglifyJS), or transpiled code from a higher-level
language (e.g. TypeScript, ES6).
Expand Down Expand Up @@ -157,7 +157,7 @@ sourcemaps point to.
.. code-block:: bash
# Create a new release
$ curl https://app.getsentry.com/api/0/projects/:organization_slug/:project_slug/releases/ \
$ curl https://sentry.io/api/0/projects/:organization_slug/:project_slug/releases/ \
-X POST \
-H 'Authorization: Bearer {TOKEN}' \
-H 'Content-Type: application/json'
Expand All @@ -178,7 +178,7 @@ reference to ``app.map.js``, the name of the uploaded file should be ``http://ex
.. code-block:: bash
# Upload a file for the given release
$ curl https://app.getsentry.com/api/0/projects/:organization_slug/:project_slug/releases/2da95dfb052f477380608d59d32b4ab9/files/ \
$ curl https://sentry.io/api/0/projects/:organization_slug/:project_slug/releases/2da95dfb052f477380608d59d32b4ab9/files/ \
-X POST \
-H 'Authorization: Bearer {TOKEN}' \
-F file=@app.js.map \
Expand All @@ -198,7 +198,7 @@ reference to ``app.map.js``, the name of the uploaded file should be ``http://ex
.. code-block:: bash
# If you make a mistake, you can also simply clear out the release
$ curl https://app.getsentry.com/api/0/projects/:organization_slug/:project_slug/releases/2da95dfb052f477380608d59d32b4ab9/ \
$ curl https://sentry.io/api/0/projects/:organization_slug/:project_slug/releases/2da95dfb052f477380608d59d32b4ab9/ \
-H 'Authorization: Bearer {TOKEN}' \
-X DELETE
Expand All @@ -215,7 +215,7 @@ but without them the grouping algorithm will not be as strong, and the UI
will not show any contextual source.

Additional information can be found in the `Releases API documentation
<https://docs.getsentry.com/hosted/api/releases/>`_.
<https://docs.sentry.io/hosted/api/releases/>`_.


.. _assets_multiple_origins:
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ functions all allow passing additional data to be tagged onto the error.

.. describe:: tags

`Tags <https://www.getsentry.com/docs/tags/>`__ to assign to the event.
`Tags <https://www.sentry.io/docs/tags/>`__ to assign to the event.

.. code-block:: javascript
Expand Down Expand Up @@ -223,7 +223,7 @@ Raven and Sentry support `Source Maps
<http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/>`_.

We have provided some instructions to creating Source Maps over at
https://docs.getsentry.com/hosted/clients/javascript/sourcemaps/. Also, checkout our `Gruntfile
https://docs.sentry.io/hosted/clients/javascript/sourcemaps/. Also, checkout our `Gruntfile
<https://github.com/getsentry/raven-js/blob/master/Gruntfile.js>`_ for a
good example of what we're doing.

Expand Down
6 changes: 3 additions & 3 deletions typescript/raven-tests.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Raven = require('..');

Raven.config('https://public@getsentry.com/1').install();
Raven.config('https://public@sentry.io/1').install();

var options = {
logger: 'my-logger',
Expand All @@ -14,15 +14,15 @@ var options = {
],
includePaths: [
/https?:\/\/(www\.)?getsentry\.com/,
'https://www.getsentry.com'
'https://www.sentry.io'
],
whitelistUrls: [
/https?:\/\/google\.com/,
'https://www.google.com'
]
};

Raven.config('https://public@getsentry.com/1', options).install();
Raven.config('https://public@sentry.io/1', options).install();

var throwsError = () => {
throw new Error('broken');
Expand Down

0 comments on commit 3c2e4a7

Please sign in to comment.