@rxap/nest-sentry 10.5.0 → 10.5.1-dev.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.5.1-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/nest-sentry@10.5.0...@rxap/nest-sentry@10.5.1-dev.0) (2025-02-17)
7
+
8
+ **Note:** Version bump only for package @rxap/nest-sentry
9
+
6
10
  # [10.5.0](https://gitlab.com/rxap/packages/compare/@rxap/nest-sentry@10.5.0-dev.15...@rxap/nest-sentry@10.5.0) (2025-02-13)
7
11
 
8
12
  **Note:** Version bump only for package @rxap/nest-sentry
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @rxap/nest-sentry
1
+ This package provides a Sentry integration for NestJS applications. It includes a logger, interceptor, and module to simplify error tracking and performance monitoring with Sentry. It offers configurable options for setting up Sentry in your NestJS application.
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@rxap/nest-sentry?style=flat-square)](https://www.npmjs.com/package/@rxap/nest-sentry)
4
4
  [![commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
@@ -9,6 +9,7 @@
9
9
 
10
10
  - [Installation](#installation)
11
11
  - [Generators](#generators)
12
+ - [init](#init)
12
13
 
13
14
  # Installation
14
15
 
@@ -18,7 +19,7 @@ yarn add @rxap/nest-sentry
18
19
  ```
19
20
  **Install peer dependencies:**
20
21
  ```bash
21
- yarn add @nestjs/common@10.3.8 @nestjs/config@3.2.2 @nestjs/core@10.3.8 rxjs@7.8.1
22
+ yarn add @nestjs/common@^10.3.8 @nestjs/config@^3.2.2 @nestjs/core@^10.3.8 @rxap/nest-logger@^10.3.0 @rxap/nest-utilities@^10.4.0 @sentry/core@^8.18.0 @sentry/nestjs@^8.18.0 @sentry/node@^8.18.0 @sentry/profiling-node@^8.18.0 @sentry/types@^8.18.0 @sentry/utils@^8.18.0 rxjs@^7.8.1
22
23
  ```
23
24
  **Execute the init generator:**
24
25
  ```bash
@@ -30,5 +31,5 @@ yarn nx g @rxap/nest-sentry:init
30
31
  > Initialize the package in the workspace
31
32
 
32
33
  ```bash
33
- yarn nx g @rxap/nest-sentry:init
34
+ nx g @rxap/nest-sentry:init
34
35
  ```
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
- "version": "10.5.0",
2
+ "version": "10.5.1-dev.0",
3
3
  "name": "@rxap/nest-sentry",
4
4
  "description": "This package provides a Sentry integration for NestJS applications. It includes a logger, interceptor, and module to simplify error tracking and performance monitoring with Sentry. It offers configurable options for setting up Sentry in your NestJS application.\n",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "dependencies": {
7
7
  "@nx/devkit": "20.4.2",
8
8
  "@rxap/ts-morph": "^1.5.3",
9
- "@rxap/workspace-utilities": "^19.6.1",
9
+ "@rxap/workspace-utilities": "^19.6.2-dev.0",
10
10
  "tslib": "2.6.2"
11
11
  },
12
12
  "peerDependencies": {
13
13
  "@nestjs/common": "^10.3.8",
14
14
  "@nestjs/config": "^3.2.2",
15
15
  "@nestjs/core": "^10.3.8",
16
- "@rxap/nest-logger": "^10.3.0-dev.14",
17
- "@rxap/nest-utilities": "^10.4.0-dev.4",
16
+ "@rxap/nest-logger": "^10.3.0",
17
+ "@rxap/nest-utilities": "^10.4.0",
18
18
  "@sentry/core": "^8.18.0",
19
19
  "@sentry/nestjs": "^8.18.0",
20
20
  "@sentry/node": "^8.18.0",
@@ -80,15 +80,15 @@
80
80
  },
81
81
  {
82
82
  "package": "@rxap/nest-logger",
83
- "version": "10.3.0-dev.14"
83
+ "version": "10.3.0"
84
84
  },
85
85
  {
86
86
  "package": "@rxap/nest-utilities",
87
- "version": "10.4.0-dev.4"
87
+ "version": "10.4.0"
88
88
  },
89
89
  {
90
90
  "package": "@rxap/utilities",
91
- "version": "16.4.2-dev.4"
91
+ "version": "16.4.2"
92
92
  },
93
93
  {
94
94
  "package": "@sentry/core",
@@ -127,7 +127,7 @@
127
127
  },
128
128
  "schematics": "./generators.json",
129
129
  "type": "commonjs",
130
- "gitHead": "753c877fe1a5c2fcfa737310f6e99fd1371f9b4d",
130
+ "gitHead": "0b022b6165e06718ce3edf73ae1d5375f0ff3413",
131
131
  "types": "./src/index.d.ts",
132
132
  "main": "./src/index.js"
133
133
  }