🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

@nuxtjs/sentry

Package Overview
Dependencies
Maintainers
7
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxtjs/sentry - npm Package Compare versions

Comparing version
4.2.0
to
4.2.1
+7
-0
CHANGELOG.md

@@ -0,1 +1,8 @@

### [4.2.1](https://github.com/nuxt-community/sentry-module/compare/v4.2.0...v4.2.1) (2020-07-27)
### Bug Fixes
* user's integrations options not respected on the client ([#208](https://github.com/nuxt-community/sentry-module/issues/208)) ([b81c7d3](https://github.com/nuxt-community/sentry-module/commit/b81c7d3ec2809e62dbf9d1d04053671dd8e21701)), closes [#207](https://github.com/nuxt-community/sentry-module/issues/207)
## [4.2.0](https://github.com/nuxt-community/sentry-module/compare/v4.1.3...v4.2.0) (2020-07-27)

@@ -2,0 +9,0 @@

+4
-4

@@ -17,7 +17,7 @@ import VueLib from 'vue'

const integrationOptions = Object.entries(integration).map(([key, option]) => {
const integrationOptions = Object.entries(integration).map(([key, option]) =>
typeof option === 'function'
? `${key}:${serializeFunction(option)}`
: `${key}:${serialize(option)}`
})
? `${key}:${serializeFunction(option)}`
: `${key}:${serialize(option)}`
)

@@ -24,0 +24,0 @@ return `new ${name}({${integrationOptions.join(',')}})`

@@ -97,6 +97,6 @@ import VueLib from 'vue'

const integrationOptions = Object.entries(integration).map(([key, option]) =>
const integrationOptions = Object.entries(integration).map(([key, option]) =>
typeof option === 'function'
? `${key}:${serializeFunction(option)}`
: `${key}:${serialize(option)}`
? `${key}:${serializeFunction(option)}`
: `${key}:${serialize(option)}`
)

@@ -103,0 +103,0 @@

{
"name": "@nuxtjs/sentry",
"version": "4.2.0",
"version": "4.2.1",
"description": "Sentry module for Nuxt.js",

@@ -5,0 +5,0 @@ "repository": "nuxt-community/sentry-module",