Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: provide info for EU endpoints #1401

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/esbuild-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
<dt><code>endpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/source_maps")</dt>
<dd>Where to upload your source maps to. Perhaps you have a self hosted
source map server you would like to upload your source maps to instead
of Honeybadger.</dd>
of Honeybadger. If you are using our EU stack, you should set this to "https://eu-api.honeybadger.io/v1/source_maps".</dd>

<dt><code>revision</code> (optional &mdash; default: "main")</dt>
<dd>The deploy revision (i.e. commit hash) that your source map applies to. This could also be a code version. For best results, set it to something unique every time your code changes. <a href="https://docs.honeybadger.io/lib/javascript/guides/using-source-maps.html#versioning-your-project">See the Honeybadger docs for examples</a>.</dd>
Expand All @@ -53,7 +53,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
</dd>

<dt><code>deployEndpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/deploys")</dt>
<dd>Where to send deployment notifications.</dd>
<dd>Where to send deployment notifications. If you are using our EU stack, you should set this to "https://eu-api.honeybadger.io/v1/deploys".</dd>

<dt><code>deploy</code> (optional &mdash; default: false)</dt>
<dd>
Expand Down
4 changes: 2 additions & 2 deletions packages/rollup-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
<dt><code>endpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/source_maps")</dt>
<dd>Where to upload your source maps to. Perhaps you have a self hosted
source map server you would like to upload your source maps to instead
of Honeybadger.</dd>
of Honeybadger. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/source_maps".</dd>

<dt><code>revision</code> (optional &mdash; default: "main")</dt>
<dd>The deploy revision (i.e. commit hash) that your source map applies to. This could also be a code version. For best results, set it to something unique every time your code changes. <a href="https://docs.honeybadger.io/lib/javascript/guides/using-source-maps.html#versioning-your-project">See the Honeybadger docs for examples</a>.</dd>
Expand All @@ -55,7 +55,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
</dd>

<dt><code>deployEndpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/deploys")</dt>
<dd>Where to send deployment notifications.</dd>
<dd>Where to send deployment notifications. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/deploys".</dd>

<dt><code>deploy</code> (optional &mdash; default: false)</dt>
<dd>
Expand Down
5 changes: 4 additions & 1 deletion packages/webpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
<dt><code>endpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/source_maps")</dt>
<dd>Where to upload your source maps to. Perhaps you have a self hosted
source map server you would like to upload your source maps to instead
of honeybadger.</dd>
of honeybadger. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/source_maps".</dd>

<dt><code>revision</code> (optional &mdash; default: "main")</dt>
<dd>The deploy revision (i.e. commit hash) that your source map applies to. This could also be a code version. For best results, set it to something unique every time your code changes. <a href="https://docs.honeybadger.io/lib/javascript/guides/using-source-maps.html#versioning-your-project">See the Honeybadger docs for examples.</a></dd>
Expand All @@ -61,6 +61,9 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
are being uploaded in parallel.</br>
Limited parallelism helps with connection issues in Docker environments.</dd>

<dt><code>deployEndpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/deploys")</dt>
<dd>Where to send deployment notifications. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/deploys".</dd>

<dt><code>deploy</code> (optional &mdash; default: false)</dt>
<dd>
Configuration for deployment notifications. To disable deployment notifications, ignore this option. To enable deployment notifications, set this to <code>true</code>, or to an object containing any of these fields (see the <a href="https://docs.honeybadger.io/api/reporting-deployments/">API reference</a>):</br>
Expand Down
Loading