@sentry/junior-linear 0.62.0 → 0.64.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,14 +8,12 @@ Install it alongside `@sentry/junior`:
8
8
  pnpm add @sentry/junior @sentry/junior-linear
9
9
  ```
10
10
 
11
- Then register the plugin package in `juniorNitro(...)`:
12
-
13
- ```ts title="nitro.config.ts"
14
- juniorNitro({
15
- plugins: {
16
- packages: ["@sentry/junior-linear"],
17
- },
18
- });
11
+ Then add the package name to the plugin set exported from `plugins.ts`:
12
+
13
+ ```ts title="plugins.ts"
14
+ import { defineJuniorPlugins } from "@sentry/junior";
15
+
16
+ export const plugins = defineJuniorPlugins(["@sentry/junior-linear"]);
19
17
  ```
20
18
 
21
19
  This package does not require a shared `LINEAR_API_KEY` or a custom OAuth app for the default setup. Each user connects their own Linear account the first time Junior calls a Linear MCP tool. Junior sends the authorization link privately and resumes the same Slack thread automatically after the user authorizes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior-linear",
3
- "version": "0.62.0",
3
+ "version": "0.64.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"