Sentry improvements (#652)

* Update Sentry in CMS

update turbo

Add test logs for cms

test sentry

Update sentry config and next config

* resolve conflict

* Add changesets

* Remove test code
This commit is contained in:
Lukasz Ostrowski 2023-06-20 10:06:18 +02:00 committed by GitHub
parent 8d3588c18f
commit ec68ed53a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
79 changed files with 4119 additions and 4346 deletions

View file

@ -0,0 +1,14 @@
---
"saleor-app-emails-and-messages": patch
"saleor-app-data-importer": patch
"saleor-app-products-feed": patch
"saleor-app-invoices": patch
"saleor-app-klaviyo": patch
"saleor-app-search": patch
"saleor-app-slack": patch
"saleor-app-taxes": patch
"saleor-app-cms": patch
"saleor-app-crm": patch
---
Updated Sentry package and config. Set Sentry release to match package.json version. Now Sentry will use semver version instead a commit

3
apps/cms/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
# Sentry Auth Token
.sentryclirc

View file

@ -1,20 +1,28 @@
// This file sets a custom webpack configuration to use your Next.js app
// with Sentry.
// https://nextjs.org/docs/api-reference/next.config.js/introduction
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
const { withSentryConfig } = require("@sentry/nextjs"); const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment = const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG; process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
module.exports = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
sentry: {
disableServerWebpackPlugin: !isSentryPropertiesInEnvironment,
disableClientWebpackPlugin: !isSentryPropertiesInEnvironment,
},
transpilePackages: ["@saleor/apps-shared"], transpilePackages: ["@saleor/apps-shared"],
}; };
module.exports = withSentryConfig(module.exports, { silent: true }, { hideSourcemaps: true }); const configWithSentry = withSentryConfig(
nextConfig,
{
silent: true,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
},
{
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: "/monitoring",
hideSourceMaps: true,
disableLogger: true,
}
);
module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;

View file

@ -20,7 +20,7 @@
"@saleor/app-sdk": "0.40.1", "@saleor/app-sdk": "0.40.1",
"@saleor/apps-shared": "workspace:*", "@saleor/apps-shared": "workspace:*",
"@saleor/macaw-ui": "^0.7.2", "@saleor/macaw-ui": "^0.7.2",
"@sentry/nextjs": "^7.43.0", "@sentry/nextjs": "7.55.2",
"@urql/exchange-auth": "^2.1.4", "@urql/exchange-auth": "^2.1.4",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"graphql": "16.6.0", "graphql": "16.6.0",

View file

@ -1,17 +0,0 @@
// This file configures the initialization of Sentry on the browser.
// The config you add here will be used whenever a page is visited.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
// ...
// Note: if you want to override the automatic release value, do not set a
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
// that it will also get attached to your source maps
});

View file

@ -0,0 +1,37 @@
/*
* This file configures the initialization of Sentry on the client.
* The config you add here will be used whenever a users loads a page in their browser.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
replaysOnErrorSampleRate: 1.0,
/*
* This sets the sample rate to be 10%. You may want this to be 100% while
* in development and sample at a lower rate in production
*/
replaysSessionSampleRate: 0.1,
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
new Sentry.Replay({
// Additional Replay configuration goes in here, for example:
maskAllText: true,
blockAllMedia: true,
}),
],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -1,17 +0,0 @@
// This file configures the initialization of Sentry on the server.
// The config you add here will be used whenever middleware or an Edge route handles a request.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
// ...
// Note: if you want to override the automatic release value, do not set a
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
// that it will also get attached to your source maps
});

View file

@ -0,0 +1,21 @@
/*
* This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
* The config you add here will be used whenever one of the edge features is loaded.
* Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -1,17 +0,0 @@
// This file configures the initialization of Sentry on the server.
// The config you add here will be used whenever the server handles a request.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
// ...
// Note: if you want to override the automatic release value, do not set a
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
// that it will also get attached to your source maps
});

View file

@ -5,17 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({ Sentry.init({
dsn: SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0, tracesSampleRate: 0.5,
/*
* ... // Setting this option to true will print useful information to the console while you're setting up Sentry.
* Note: if you want to override the automatic release value, do not set a debug: false,
* `release` value here - use the environment variable `SENTRY_RELEASE`, so environment: process.env.SENTRY_ENVIRONMENT,
* that it will also get attached to your source maps release: `${pkg.name}@${pkg.version}`,
*/
}); });

View file

@ -60,6 +60,7 @@ export const ProviderInstanceConfigurationForm = <TProvider extends CMSProviderS
React.useEffect(() => { React.useEffect(() => {
resetField("providerName" as Path<ProvidersSchema[TProvider]>, { resetField("providerName" as Path<ProvidersSchema[TProvider]>, {
// @ts-ignore todo
defaultValue: provider.name, defaultValue: provider.name,
}); });

View file

@ -12,7 +12,13 @@
"VERCEL_URL", "VERCEL_URL",
"REST_APL_ENDPOINT", "REST_APL_ENDPOINT",
"REST_APL_TOKEN", "REST_APL_TOKEN",
"ALLOWED_DOMAIN_PATTERN" "ALLOWED_DOMAIN_PATTERN",
"NEXT_PUBLIC_SENTRY_DSN",
"SENTRY_ENV",
"SENTRY_PROJECT",
"SENTRY_ORG",
"SENTRY_AUTH_TOKEN",
"SENTRY_ENVIRONMENT"
] ]
} }
} }

View file

@ -1,4 +1,5 @@
const { z } = require("zod"); const { z } = require("zod");
const { withSentryConfig } = require("@sentry/nextjs");
const RequiredEnvs = z.object({ const RequiredEnvs = z.object({
MAILCHIMP_CLIENT_ID: z.string().min(5), MAILCHIMP_CLIENT_ID: z.string().min(5),
@ -6,7 +7,7 @@ const RequiredEnvs = z.object({
}); });
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
module.exports = () => { const nextConfig = () => {
try { try {
RequiredEnvs.parse(process.env); RequiredEnvs.parse(process.env);
} catch (e) { } catch (e) {
@ -21,49 +22,23 @@ module.exports = () => {
}; };
}; };
const isSentryEnvAvailable = const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
process.env.SENTRY_PROJECT &&
process.env.SENTRY_ORG &&
process.env.SENTRY_AUTH_TOKEN;
const { withSentryConfig } = require("@sentry/nextjs"); const configWithSentry = withSentryConfig(
nextConfig,
module.exports = withSentryConfig(
module.exports,
{ {
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options
*/
// Suppresses source map uploading logs during build
silent: true, silent: true,
org: process.env.SENTRY_ORG, org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT, project: process.env.SENTRY_PROJECT,
}, },
{ {
disableClientWebpackPlugin: !isSentryEnvAvailable,
disableServerWebpackPlugin: !isSentryEnvAvailable,
/*
* For all available options, see:
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
*/
// Upload a larger set of source maps for prettier stack traces (increases build time)
widenClientFileUpload: true, widenClientFileUpload: true,
// Transpiles SDK to be compatible with IE11 (increases bundle size)
transpileClientSDK: true, transpileClientSDK: true,
// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
tunnelRoute: "/monitoring", tunnelRoute: "/monitoring",
// Hides source maps from generated client bundles
hideSourceMaps: true, hideSourceMaps: true,
// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true, disableLogger: true,
} }
); );
module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;

View file

@ -16,7 +16,7 @@
"@saleor/app-sdk": "0.40.1", "@saleor/app-sdk": "0.40.1",
"@saleor/apps-shared": "workspace:*", "@saleor/apps-shared": "workspace:*",
"@saleor/macaw-ui": "0.8.0-pre.95", "@saleor/macaw-ui": "0.8.0-pre.95",
"@sentry/nextjs": "^7.52.1", "@sentry/nextjs": "7.55.2",
"@tanstack/react-query": "^4.28.0", "@tanstack/react-query": "^4.28.0",
"@trpc/client": "^10.18.0", "@trpc/client": "^10.18.0",
"@trpc/next": "^10.18.0", "@trpc/next": "^10.18.0",

View file

@ -5,12 +5,13 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
@ -31,4 +32,6 @@ Sentry.init({
blockAllMedia: true, blockAllMedia: true,
}), }),
], ],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -6,13 +6,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -5,13 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -18,7 +18,8 @@
"NEXT_PUBLIC_SENTRY_DSN", "NEXT_PUBLIC_SENTRY_DSN",
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_AUTH_TOKEN", "SENTRY_AUTH_TOKEN",
"SENTRY_ORG" "SENTRY_ORG",
"SENTRY_ENVIRONMENT"
] ]
} }
} }

View file

@ -1,27 +1,28 @@
/*
* This file sets a custom webpack configuration to use your Next.js app
* with Sentry.
* https://nextjs.org/docs/api-reference/next.config.js/introduction
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
*/
const { withSentryConfig } = require("@sentry/nextjs"); const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment = const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG; process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
/** /** @type {import('next').NextConfig} */
* @type {import('next').NextConfig} const nextConfig = {
*/
module.exports = {
reactStrictMode: true, reactStrictMode: true,
experimental: { transpilePackages: ["@saleor/apps-shared", "nuvo-react"],
esmExternals: true,
},
transpilePackages: ["nuvo-react", "@saleor/apps-shared"],
sentry: {
disableServerWebpackPlugin: !isSentryPropertiesInEnvironment,
disableClientWebpackPlugin: !isSentryPropertiesInEnvironment,
},
}; };
module.exports = withSentryConfig(module.exports, { silent: true }, { hideSourcemaps: true }); const configWithSentry = withSentryConfig(
nextConfig,
{
silent: true,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
},
{
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: "/monitoring",
hideSourceMaps: true,
disableLogger: true,
}
);
module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;

View file

@ -18,7 +18,7 @@
"@saleor/app-sdk": "0.40.1", "@saleor/app-sdk": "0.40.1",
"@saleor/apps-shared": "workspace:*", "@saleor/apps-shared": "workspace:*",
"@saleor/macaw-ui": "^0.7.2", "@saleor/macaw-ui": "^0.7.2",
"@sentry/nextjs": "^7.39.0", "@sentry/nextjs": "7.55.2",
"@urql/exchange-auth": "^2.1.4", "@urql/exchange-auth": "^2.1.4",
"@vitejs/plugin-react": "4.0.0", "@vitejs/plugin-react": "4.0.0",
"clsx": "^1.2.1", "clsx": "^1.2.1",

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the browser.
* The config you add here will be used whenever a page is visited.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,37 @@
/*
* This file configures the initialization of Sentry on the client.
* The config you add here will be used whenever a users loads a page in their browser.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
replaysOnErrorSampleRate: 1.0,
/*
* This sets the sample rate to be 10%. You may want this to be 100% while
* in development and sample at a lower rate in production
*/
replaysSessionSampleRate: 0.1,
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
new Sentry.Replay({
// Additional Replay configuration goes in here, for example:
maskAllText: true,
blockAllMedia: true,
}),
],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the server.
* The config you add here will be used whenever middleware or an Edge route handles a request.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,21 @@
/*
* This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
* The config you add here will be used whenever one of the edge features is loaded.
* Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -5,17 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({ Sentry.init({
dsn: SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0, tracesSampleRate: 0.5,
/*
* ... // Setting this option to true will print useful information to the console while you're setting up Sentry.
* Note: if you want to override the automatic release value, do not set a debug: false,
* `release` value here - use the environment variable `SENTRY_RELEASE`, so environment: process.env.SENTRY_ENVIRONMENT,
* that it will also get attached to your source maps release: `${pkg.name}@${pkg.version}`,
*/
}); });

View file

@ -20,7 +20,9 @@
"SENTRY_AUTH_TOKEN", "SENTRY_AUTH_TOKEN",
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_ORG", "SENTRY_ORG",
"SENTRY_DSN" "SENTRY_DSN",
"SENTRY_ENVIRONMENT",
"NEXT_PUBLIC_SENTRY_DSN"
] ]
} }
} }

View file

@ -1,52 +1,28 @@
const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
module.exports = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"], transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
}; };
const isSentryEnvAvailable = const configWithSentry = withSentryConfig(
process.env.SENTRY_AUTH_TOKEN && nextConfig,
process.env.SENTRY_PROJECT &&
process.env.SENTRY_ORG &&
process.env.SENTRY_AUTH_TOKEN;
const { withSentryConfig } = require("@sentry/nextjs");
module.exports = withSentryConfig(
module.exports,
{ {
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options
*/
// Suppresses source map uploading logs during build
silent: true, silent: true,
org: process.env.SENTRY_ORG, org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT, project: process.env.SENTRY_PROJECT,
}, },
{ {
disableClientWebpackPlugin: !isSentryEnvAvailable,
disableServerWebpackPlugin: !isSentryEnvAvailable,
/*
* For all available options, see:
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
*/
// Upload a larger set of source maps for prettier stack traces (increases build time)
widenClientFileUpload: true, widenClientFileUpload: true,
// Transpiles SDK to be compatible with IE11 (increases bundle size)
transpileClientSDK: true, transpileClientSDK: true,
// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
tunnelRoute: "/monitoring", tunnelRoute: "/monitoring",
// Hides source maps from generated client bundles
hideSourceMaps: true, hideSourceMaps: true,
// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true, disableLogger: true,
} }
); );
module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;

View file

@ -21,7 +21,7 @@
"@saleor/react-hook-form-macaw": "workspace:*", "@saleor/react-hook-form-macaw": "workspace:*",
"@sendgrid/client": "^7.7.0", "@sendgrid/client": "^7.7.0",
"@sendgrid/mail": "^7.7.0", "@sendgrid/mail": "^7.7.0",
"@sentry/nextjs": "^7.52.1", "@sentry/nextjs": "7.55.2",
"@tanstack/react-query": "^4.24.4", "@tanstack/react-query": "^4.24.4",
"@trpc/client": "^10.13.0", "@trpc/client": "^10.13.0",
"@trpc/next": "^10.13.0", "@trpc/next": "^10.13.0",

View file

@ -5,12 +5,13 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
@ -31,4 +32,6 @@ Sentry.init({
blockAllMedia: true, blockAllMedia: true,
}), }),
], ],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -6,13 +6,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -5,13 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -17,7 +17,9 @@
"SENTRY_ORG", "SENTRY_ORG",
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_DSN", "SENTRY_DSN",
"SENTRY_AUTH_TOKEN" "SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_SENTRY_DSN",
"SENTRY_ENVIRONMENT"
] ]
} }
} }

View file

@ -1,54 +1,28 @@
/*
* This file sets a custom webpack configuration to use your Next.js app
* with Sentry.
* https://nextjs.org/docs/api-reference/next.config.js/introduction
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
const { withSentryConfig } = require("@sentry/nextjs"); const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment = const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG; process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
/** /** @type {import('next').NextConfig} */
* @type import("@sentry/nextjs").ExportedNextConfig const nextConfig = {
*/
const moduleExports = {
sentry: {
/*
* Use `hidden-source-map` rather than `source-map` as the Webpack `devtool`
* for client-side builds. (This will be the default starting in
* `@sentry/nextjs` version 8.0.0.) See
* https://webpack.js.org/configuration/devtool/ and
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/#use-hidden-source-map
* for more information.
*/
hideSourceMaps: true,
disableServerWebpackPlugin: !isSentryPropertiesInEnvironment,
disableClientWebpackPlugin: !isSentryPropertiesInEnvironment,
},
reactStrictMode: true, reactStrictMode: true,
transpilePackages: ["@saleor/apps-shared"], transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
}; };
const sentryWebpackPluginOptions = { const configWithSentry = withSentryConfig(
/* nextConfig,
* Additional config options for the Sentry Webpack plugin. Keep in mind that {
* the following options are set automatically, and overriding them is not silent: true,
* recommended: org: process.env.SENTRY_ORG,
* release, url, org, project, authToken, configFile, stripPrefix, project: process.env.SENTRY_PROJECT,
* urlPrefix, include, ignore },
*/ {
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: "/monitoring",
hideSourceMaps: true,
disableLogger: true,
}
);
silent: true, // Suppresses all logs module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options.
*/
};
/*
* Make sure adding Sentry options is the last code to run before exporting, to
* ensure that your source maps include changes from all other Webpack plugins
*/
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions);

View file

@ -16,7 +16,7 @@
"@saleor/app-sdk": "0.40.1", "@saleor/app-sdk": "0.40.1",
"@saleor/apps-shared": "workspace:*", "@saleor/apps-shared": "workspace:*",
"@saleor/macaw-ui": "0.8.0-pre.95", "@saleor/macaw-ui": "0.8.0-pre.95",
"@sentry/nextjs": "^7.36.0", "@sentry/nextjs": "7.55.2",
"@tanstack/react-query": "^4.24.4", "@tanstack/react-query": "^4.24.4",
"@trpc/client": "^10.10.0", "@trpc/client": "^10.10.0",
"@trpc/next": "^10.10.0", "@trpc/next": "^10.10.0",

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the browser.
* The config you add here will be used whenever a page is visited.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN;
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,37 @@
/*
* This file configures the initialization of Sentry on the client.
* The config you add here will be used whenever a users loads a page in their browser.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
replaysOnErrorSampleRate: 1.0,
/*
* This sets the sample rate to be 10%. You may want this to be 100% while
* in development and sample at a lower rate in production
*/
replaysSessionSampleRate: 0.1,
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
new Sentry.Replay({
// Additional Replay configuration goes in here, for example:
maskAllText: true,
blockAllMedia: true,
}),
],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the server.
* The config you add here will be used whenever middleware or an Edge route handles a request.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,21 @@
/*
* This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
* The config you add here will be used whenever one of the edge features is loaded.
* Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -5,17 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({ Sentry.init({
dsn: SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0, tracesSampleRate: 0.5,
/*
* ... // Setting this option to true will print useful information to the console while you're setting up Sentry.
* Note: if you want to override the automatic release value, do not set a debug: false,
* `release` value here - use the environment variable `SENTRY_RELEASE`, so environment: process.env.SENTRY_ENVIRONMENT,
* that it will also get attached to your source maps release: `${pkg.name}@${pkg.version}`,
*/
}); });

View file

@ -18,7 +18,9 @@
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_DSN", "SENTRY_DSN",
"SENTRY_ORG", "SENTRY_ORG",
"SENTRY_AUTH_TOKEN" "SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_SENTRY_DSN",
"SENTRY_ENVIRONMENT"
] ]
} }
} }

View file

@ -1,5 +1,3 @@
/** @type {import('next').NextConfig} */
const { withSentryConfig } = require("@sentry/nextjs"); const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment = const isSentryPropertiesInEnvironment =
@ -8,11 +6,7 @@ const isSentryPropertiesInEnvironment =
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
sentry: { transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
disableServerWebpackPlugin: !isSentryPropertiesInEnvironment,
disableClientWebpackPlugin: !isSentryPropertiesInEnvironment,
},
transpilePackages: ["@saleor/apps-shared"],
redirects() { redirects() {
return [ return [
{ {
@ -24,24 +18,20 @@ const nextConfig = {
}, },
}; };
const sentryWebpackPluginOptions = { const configWithSentry = withSentryConfig(
/* nextConfig,
* Additional config options for the Sentry Webpack plugin. Keep in mind that {
* the following options are set automatically, and overriding them is not silent: true,
* recommended: org: process.env.SENTRY_ORG,
* release, url, org, project, authToken, configFile, stripPrefix, project: process.env.SENTRY_PROJECT,
* urlPrefix, include, ignore },
*/ {
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: "/monitoring",
hideSourceMaps: true,
disableLogger: true,
}
);
silent: true, // Suppresses all logs module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options.
*/
};
/*
* Make sure adding Sentry options is the last code to run before exporting, to
* ensure that your source maps include changes from all other Webpack plugins
*/
module.exports = withSentryConfig(nextConfig, sentryWebpackPluginOptions);

View file

@ -17,7 +17,7 @@
"@saleor/app-sdk": "0.40.1", "@saleor/app-sdk": "0.40.1",
"@saleor/apps-shared": "workspace:*", "@saleor/apps-shared": "workspace:*",
"@saleor/macaw-ui": "^0.7.2", "@saleor/macaw-ui": "^0.7.2",
"@sentry/nextjs": "^7.36.0", "@sentry/nextjs": "7.55.2",
"@urql/exchange-auth": "^2.1.4", "@urql/exchange-auth": "^2.1.4",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"graphql": "16.6.0", "graphql": "16.6.0",

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the browser.
* The config you add here will be used whenever a page is visited.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,37 @@
/*
* This file configures the initialization of Sentry on the client.
* The config you add here will be used whenever a users loads a page in their browser.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
replaysOnErrorSampleRate: 1.0,
/*
* This sets the sample rate to be 10%. You may want this to be 100% while
* in development and sample at a lower rate in production
*/
replaysSessionSampleRate: 0.1,
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
new Sentry.Replay({
// Additional Replay configuration goes in here, for example:
maskAllText: true,
blockAllMedia: true,
}),
],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -0,0 +1,21 @@
/*
* This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
* The config you add here will be used whenever one of the edge features is loaded.
* Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -5,17 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({ Sentry.init({
dsn: SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0, tracesSampleRate: 0.5,
/*
* ... // Setting this option to true will print useful information to the console while you're setting up Sentry.
* Note: if you want to override the automatic release value, do not set a debug: false,
* `release` value here - use the environment variable `SENTRY_RELEASE`, so environment: process.env.SENTRY_ENVIRONMENT,
* that it will also get attached to your source maps release: `${pkg.name}@${pkg.version}`,
*/
}); });

View file

@ -17,7 +17,8 @@
"SENTRY_ORG", "SENTRY_ORG",
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_AUTH_TOKEN", "SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_VERCEL_ENV" "NEXT_PUBLIC_VERCEL_ENV",
"SENTRY_ENVIRONMENT"
] ]
} }
} }

View file

@ -1,53 +1,28 @@
const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
module.exports = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"], transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
}; };
const isSentryEnvAvailable = const configWithSentry = withSentryConfig(
process.env.SENTRY_AUTH_TOKEN && nextConfig,
process.env.SENTRY_PROJECT &&
process.env.SENTRY_ORG &&
process.env.SENTRY_AUTH_TOKEN &&
process.env.NEXT_PUBLIC_SENTRY_DSN;
const { withSentryConfig } = require("@sentry/nextjs");
module.exports = withSentryConfig(
module.exports,
{ {
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options
*/
// Suppresses source map uploading logs during build
silent: true, silent: true,
org: process.env.SENTRY_ORG, org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT, project: process.env.SENTRY_PROJECT,
}, },
{ {
disableServerWebpackPlugin: !isSentryEnvAvailable,
disableClientWebpackPlugin: !isSentryEnvAvailable,
/*
* For all available options, see:
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
*/
// Upload a larger set of source maps for prettier stack traces (increases build time)
widenClientFileUpload: true, widenClientFileUpload: true,
// Transpiles SDK to be compatible with IE11 (increases bundle size)
transpileClientSDK: true, transpileClientSDK: true,
// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
tunnelRoute: "/monitoring", tunnelRoute: "/monitoring",
// Hides source maps from generated client bundles
hideSourceMaps: true, hideSourceMaps: true,
// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true, disableLogger: true,
} }
); );
module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;

View file

@ -19,7 +19,7 @@
"@saleor/apps-ui": "workspace:*", "@saleor/apps-ui": "workspace:*",
"@saleor/macaw-ui": "0.8.0-pre.95", "@saleor/macaw-ui": "0.8.0-pre.95",
"@saleor/react-hook-form-macaw": "workspace:*", "@saleor/react-hook-form-macaw": "workspace:*",
"@sentry/nextjs": "^7.52.1", "@sentry/nextjs": "7.55.2",
"@tanstack/react-query": "^4.24.2", "@tanstack/react-query": "^4.24.2",
"@trpc/client": "^10.9.0", "@trpc/client": "^10.9.0",
"@trpc/next": "^10.9.0", "@trpc/next": "^10.9.0",

View file

@ -5,12 +5,13 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
@ -31,4 +32,6 @@ Sentry.init({
blockAllMedia: true, blockAllMedia: true,
}), }),
], ],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -6,13 +6,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -5,13 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -19,7 +19,8 @@
"NEXT_PUBLIC_VERCEL_ENV", "NEXT_PUBLIC_VERCEL_ENV",
"FEED_CACHE_MAX_AGE", "FEED_CACHE_MAX_AGE",
"VERCEL_URL", "VERCEL_URL",
"PORT" "PORT",
"SENTRY_ENVIRONMENT"
] ]
} }
} }

View file

@ -1,62 +1,28 @@
/*
* This file sets a custom webpack configuration to use your Next.js app
* with Sentry.
* https://nextjs.org/docs/api-reference/next.config.js/introduction
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
const { withSentryConfig } = require("@sentry/nextjs"); const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment = const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG; process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
/** /** @type {import('next').NextConfig} */
* @type {import('next').NextConfig} const nextConfig = {
*/
const moduleExports = {
reactStrictMode: true, reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"], transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
sentry: { };
/*
* Use `hidden-source-map` rather than `source-map` as the Webpack `devtool` const configWithSentry = withSentryConfig(
* for client-side builds. (This will be the default starting in nextConfig,
* `@sentry/nextjs` version 8.0.0.) See {
* https://webpack.js.org/configuration/devtool/ and silent: true,
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/#use-hidden-source-map org: process.env.SENTRY_ORG,
* for more information. project: process.env.SENTRY_PROJECT,
*/
hideSourceMaps: true,
disableServerWebpackPlugin: !isSentryPropertiesInEnvironment,
disableClientWebpackPlugin: !isSentryPropertiesInEnvironment,
}, },
}; {
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: "/monitoring",
hideSourceMaps: true,
disableLogger: true,
}
);
const sentryWebpackPluginOptions = { module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;
/*
* Additional config options for the Sentry Webpack plugin. Keep in mind that
* the following options are set automatically, and overriding them is not
* recommended:
* release, url, org, project, authToken, configFile, stripPrefix,
* urlPrefix, include, ignore
*/
silent: true, // Suppresses all logs
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options.
*/
};
/*
* Make sure adding Sentry options is the last code to run before exporting, to
* ensure that your source maps include changes from all other Webpack plugins
*/
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions);

View file

@ -18,7 +18,7 @@
"@saleor/apps-ui": "workspace:*", "@saleor/apps-ui": "workspace:*",
"@saleor/macaw-ui": "0.8.0-pre.95", "@saleor/macaw-ui": "0.8.0-pre.95",
"@saleor/react-hook-form-macaw": "workspace:*", "@saleor/react-hook-form-macaw": "workspace:*",
"@sentry/nextjs": "^7.46.0", "@sentry/nextjs": "7.55.2",
"@types/debug": "^4.1.7", "@types/debug": "^4.1.7",
"@urql/exchange-auth": "^2.1.4", "@urql/exchange-auth": "^2.1.4",
"algoliasearch": "4.14.2", "algoliasearch": "4.14.2",

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the browser.
* The config you add here will be used whenever a page is visited.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from '@sentry/nextjs';
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,37 @@
/*
* This file configures the initialization of Sentry on the client.
* The config you add here will be used whenever a users loads a page in their browser.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
replaysOnErrorSampleRate: 1.0,
/*
* This sets the sample rate to be 10%. You may want this to be 100% while
* in development and sample at a lower rate in production
*/
replaysSessionSampleRate: 0.1,
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
new Sentry.Replay({
// Additional Replay configuration goes in here, for example:
maskAllText: true,
blockAllMedia: true,
}),
],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the server.
* The config you add here will be used whenever middleware or an Edge route handles a request.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from '@sentry/nextjs';
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,21 @@
/*
* This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
* The config you add here will be used whenever one of the edge features is loaded.
* Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the server.
* The config you add here will be used whenever the server handles a request.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from '@sentry/nextjs';
const SENTRY_DSN = process.env.SENTRY_DSN
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,20 @@
/*
* This file configures the initialization of Sentry on the server.
* The config you add here will be used whenever the server handles a request.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -15,7 +15,9 @@
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_DSN", "SENTRY_DSN",
"SENTRY_ORG", "SENTRY_ORG",
"NEXT_PUBLIC_VERCEL_ENV" "NEXT_PUBLIC_VERCEL_ENV",
"NEXT_PUBLIC_SENTRY_DSN",
"SENTRY_ENVIRONMENT"
] ]
} }
} }

View file

@ -1,52 +1,28 @@
/*
* This file sets a custom webpack configuration to use your Next.js app
* with Sentry.
* https://nextjs.org/docs/api-reference/next.config.js/introduction
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
const { withSentryConfig } = require("@sentry/nextjs"); const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment = const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG; process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
const moduleExports = { /** @type {import('next').NextConfig} */
transpilePackages: ["@saleor/apps-shared"], const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
};
sentry: { const configWithSentry = withSentryConfig(
disableServerWebpackPlugin: !isSentryPropertiesInEnvironment, nextConfig,
disableClientWebpackPlugin: !isSentryPropertiesInEnvironment, {
/* silent: true,
* Use `hidden-source-map` rather than `source-map` as the Webpack `devtool` org: process.env.SENTRY_ORG,
* for client-side builds. (This will be the default starting in project: process.env.SENTRY_PROJECT,
* `@sentry/nextjs` version 8.0.0.) See
* https://webpack.js.org/configuration/devtool/ and
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/#use-hidden-source-map
* for more information.
*/
hideSourceMaps: true,
}, },
}; {
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: "/monitoring",
hideSourceMaps: true,
disableLogger: true,
}
);
const sentryWebpackPluginOptions = { module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;
/*
* Additional config options for the Sentry Webpack plugin. Keep in mind that
* the following options are set automatically, and overriding them is not
* recommended:
* release, url, org, project, authToken, configFile, stripPrefix,
* urlPrefix, include, ignore
*/
silent: true, // Suppresses all logs
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options.
*/
};
/*
* Make sure adding Sentry options is the last code to run before exporting, to
* ensure that your source maps include changes from all other Webpack plugins
*/
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions);

View file

@ -17,7 +17,7 @@
"@saleor/app-sdk": "0.40.1", "@saleor/app-sdk": "0.40.1",
"@saleor/apps-shared": "workspace:*", "@saleor/apps-shared": "workspace:*",
"@saleor/macaw-ui": "^0.7.2", "@saleor/macaw-ui": "^0.7.2",
"@sentry/nextjs": "^7.30.0", "@sentry/nextjs": "7.55.2",
"@urql/exchange-auth": "^2.1.4", "@urql/exchange-auth": "^2.1.4",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"eslint": "8.42.0", "eslint": "8.42.0",

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the browser.
* The config you add here will be used whenever a page is visited.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,37 @@
/*
* This file configures the initialization of Sentry on the client.
* The config you add here will be used whenever a users loads a page in their browser.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
replaysOnErrorSampleRate: 1.0,
/*
* This sets the sample rate to be 10%. You may want this to be 100% while
* in development and sample at a lower rate in production
*/
replaysSessionSampleRate: 0.1,
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
new Sentry.Replay({
// Additional Replay configuration goes in here, for example:
maskAllText: true,
blockAllMedia: true,
}),
],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -1,21 +0,0 @@
/*
* This file configures the initialization of Sentry on the server.
* The config you add here will be used whenever middleware or an Edge route handles a request.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
Sentry.init({
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
/*
* ...
* Note: if you want to override the automatic release value, do not set a
* `release` value here - use the environment variable `SENTRY_RELEASE`, so
* that it will also get attached to your source maps
*/
});

View file

@ -0,0 +1,21 @@
/*
* This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
* The config you add here will be used whenever one of the edge features is loaded.
* Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -0,0 +1,20 @@
/*
* This file configures the initialization of Sentry on the server.
* The config you add here will be used whenever the server handles a request.
* https://docs.sentry.io/platforms/javascript/guides/nextjs/
*/
import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
});

View file

@ -17,6 +17,7 @@
"SENTRY_ORG", "SENTRY_ORG",
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_AUTH_TOKEN", "SENTRY_AUTH_TOKEN",
"SENTRY_ENVIRONMENT",
"NEXT_PUBLIC_VERCEL_ENV" "NEXT_PUBLIC_VERCEL_ENV"
] ]
} }

View file

@ -1,52 +1,28 @@
const { withSentryConfig } = require("@sentry/nextjs");
const isSentryPropertiesInEnvironment =
process.env.SENTRY_AUTH_TOKEN && process.env.SENTRY_PROJECT && process.env.SENTRY_ORG;
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const config = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"], transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui", "@saleor/react-hook-form-macaw"],
}; };
const isSentryEnvAvailable = const configWithSentry = withSentryConfig(
process.env.SENTRY_AUTH_TOKEN && nextConfig,
process.env.SENTRY_PROJECT &&
process.env.SENTRY_ORG &&
process.env.SENTRY_AUTH_TOKEN;
const { withSentryConfig } = require("@sentry/nextjs");
module.exports = withSentryConfig(
config,
{ {
/*
* For all available options, see:
* https://github.com/getsentry/sentry-webpack-plugin#options
*/
// Suppresses source map uploading logs during build
silent: true, silent: true,
org: process.env.SENTRY_ORG, org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT, project: process.env.SENTRY_PROJECT,
}, },
{ {
disableClientWebpackPlugin: !isSentryEnvAvailable,
disableServerWebpackPlugin: !isSentryEnvAvailable,
/*
* For all available options, see:
* https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
*/
// Upload a larger set of source maps for prettier stack traces (increases build time)
widenClientFileUpload: true, widenClientFileUpload: true,
// Transpiles SDK to be compatible with IE11 (increases bundle size)
transpileClientSDK: true, transpileClientSDK: true,
// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
tunnelRoute: "/monitoring", tunnelRoute: "/monitoring",
// Hides source maps from generated client bundles
hideSourceMaps: true, hideSourceMaps: true,
// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true, disableLogger: true,
} }
); );
module.exports = isSentryPropertiesInEnvironment ? configWithSentry : nextConfig;

View file

@ -18,7 +18,7 @@
"@saleor/apps-ui": "workspace:*", "@saleor/apps-ui": "workspace:*",
"@saleor/macaw-ui": "^0.8.0-pre.84", "@saleor/macaw-ui": "^0.8.0-pre.84",
"@saleor/react-hook-form-macaw": "workspace:*", "@saleor/react-hook-form-macaw": "workspace:*",
"@sentry/nextjs": "^7.45.0", "@sentry/nextjs": "7.55.2",
"@tanstack/react-query": "^4.19.1", "@tanstack/react-query": "^4.19.1",
"@trpc/client": "^10.9.0", "@trpc/client": "^10.9.0",
"@trpc/next": "^10.9.0", "@trpc/next": "^10.9.0",
@ -28,7 +28,7 @@
"avatax": "^23.3.2", "avatax": "^23.3.2",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"dotenv": "^16.0.3", "dotenv": "^16.0.3",
"graphql": "^16.6.0", "graphql": "16.6.0",
"graphql-tag": "^2.12.6", "graphql-tag": "^2.12.6",
"jotai": "^2.0.0", "jotai": "^2.0.0",
"jsdom": "^20.0.3", "jsdom": "^20.0.3",

View file

@ -5,12 +5,13 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
@ -31,4 +32,6 @@ Sentry.init({
blockAllMedia: true, blockAllMedia: true,
}), }),
], ],
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -6,13 +6,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -5,13 +5,16 @@
*/ */
import * as Sentry from "@sentry/nextjs"; import * as Sentry from "@sentry/nextjs";
import pkg from "./package.json";
Sentry.init({ Sentry.init({
dsn: process.env.SENTRY_DSN, dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control // Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1, tracesSampleRate: 0.5,
// Setting this option to true will print useful information to the console while you're setting up Sentry. // Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false, debug: false,
environment: process.env.SENTRY_ENVIRONMENT,
release: `${pkg.name}@${pkg.version}`,
}); });

View file

@ -16,7 +16,9 @@
"SENTRY_ORG", "SENTRY_ORG",
"SENTRY_PROJECT", "SENTRY_PROJECT",
"SENTRY_DSN", "SENTRY_DSN",
"SENTRY_AUTH_TOKEN" "SENTRY_AUTH_TOKEN",
"SENTRY_ENVIRONMENT",
"NEXT_PUBLIC_SENTRY_DSN"
] ]
} }
} }

View file

@ -25,7 +25,7 @@
"next": "13.3.0", "next": "13.3.0",
"prettier": "^2.8.4", "prettier": "^2.8.4",
"syncpack": "10.5.1", "syncpack": "10.5.1",
"turbo": "1.10.1" "turbo": "1.10.3"
}, },
"engines": { "engines": {
"node": ">=18.0.0" "node": ">=18.0.0"

View file

@ -5,7 +5,7 @@
"eslint": "8.42.0", "eslint": "8.42.0",
"eslint-config-next": "13.3.4", "eslint-config-next": "13.3.4",
"eslint-config-prettier": "8.8.0", "eslint-config-prettier": "8.8.0",
"eslint-config-turbo": "1.10.1", "eslint-config-turbo": "1.10.3",
"eslint-plugin-react": "7.32.2", "eslint-plugin-react": "7.32.2",
"next": "13.3.0", "next": "13.3.0",
"typescript": "5.1.3" "typescript": "5.1.3"

File diff suppressed because it is too large Load diff