From 668deff875e57e966c4fa548f80427d4fe75c983 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 30 Jan 2025 18:39:18 +0000 Subject: [PATCH] Version Packages --- .changeset/big-beds-travel.md | 21 --------------------- apps/squareone/CHANGELOG.md | 21 +++++++++++++++++++++ apps/squareone/package.json | 2 +- 3 files changed, 22 insertions(+), 22 deletions(-) delete mode 100644 .changeset/big-beds-travel.md diff --git a/.changeset/big-beds-travel.md b/.changeset/big-beds-travel.md deleted file mode 100644 index 3048b726..00000000 --- a/.changeset/big-beds-travel.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'squareone': minor ---- - -Added Sentry instrumentation to the `squareone` app. - -Both the NextJS client (frontend) and server (backend) code are instrumented with the official [Sentry NextJS integration](https://docs.sentry.io/platforms/javascript/guides/nextjs/). -The Sentry DSN should be provided in a `SENTRY_DSN` environment variable. -If a Sentry DSN is not provided, there will be no changes to app behaviour. -If a Sentry DSN is provided, then these things will be sent to Sentry: -* Any uncaught exceptions and error-level logs -* Traces for user interaction (according to the sample settings) -* Session replays for user interaction (according to the sample settings) - -There are new config file options for Sentry configuration: -* `sentryTracesSampleRate` -* `sentryReplaysSessionSampleRate` -* `sentryReplaysOnErrorSampleRate` -* `sentryDebug` - -There is a new route, `/sentry-example-page` which provides a way to quickly check that the Sentry integration is working. diff --git a/apps/squareone/CHANGELOG.md b/apps/squareone/CHANGELOG.md index 146dac86..2540983e 100644 --- a/apps/squareone/CHANGELOG.md +++ b/apps/squareone/CHANGELOG.md @@ -1,5 +1,26 @@ # squareone +## 0.16.0 + +### Minor Changes + +- [#176](https://github.com/lsst-sqre/squareone/pull/176) [`8e5b789`](https://github.com/lsst-sqre/squareone/commit/8e5b789ab0b4c591cca1f42db0e6cf773d8b0ccc) Thanks [@fajpunk](https://github.com/fajpunk)! - Added Sentry instrumentation to the `squareone` app. + + Both the NextJS client (frontend) and server (backend) code are instrumented with the official [Sentry NextJS integration](https://docs.sentry.io/platforms/javascript/guides/nextjs/). The Sentry DSN should be provided in a `SENTRY_DSN` environment variable. If a Sentry DSN is not provided, there will be no changes to app behaviour. If a Sentry DSN is provided, then these things will be sent to Sentry: + + - Any uncaught exceptions and error-level logs + - Traces for user interaction (according to the sample settings) + - Session replays for user interaction (according to the sample settings) + + There are new config file options for Sentry configuration: + + - `sentryTracesSampleRate` + - `sentryReplaysSessionSampleRate` + - `sentryReplaysOnErrorSampleRate` + - `sentryDebug` + + There is a new route, `/sentry-example-page` which provides a way to quickly check that the Sentry integration is working. + ## 0.15.0 ### Minor Changes diff --git a/apps/squareone/package.json b/apps/squareone/package.json index 72b0fc94..206034c4 100644 --- a/apps/squareone/package.json +++ b/apps/squareone/package.json @@ -1,6 +1,6 @@ { "name": "squareone", - "version": "0.15.0", + "version": "0.16.0", "private": true, "scripts": { "dev": "next dev -p 3000",