New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@jsreport/jsreport-core

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsreport/jsreport-core - npm Package Compare versions

Comparing version 3.3.0 to 3.4.0

12

lib/main/optionsLoad.js

@@ -136,11 +136,5 @@ const path = require('path')

if (realExtensionName !== extensionKey && obj.value[realExtensionName]) {
obj.value[realExtensionName] = extend(
true,
obj.value[realExtensionName],
currentValue
)
} else {
obj.value[realExtensionName] = currentValue
}
// the camelCase key version should already contain all merged values
// (from both the real extension name with "-" and camel case)
obj.value[realExtensionName] = currentValue
})

@@ -147,0 +141,0 @@ } else if (!normalize && obj.key.startsWith('extensions')) {

@@ -408,2 +408,3 @@ /*!

res.stream = Readable.from(res.content)
await this.afterRenderListeners.fire(req, res)
return res

@@ -410,0 +411,0 @@ }

@@ -11,3 +11,3 @@ const extend = require('node.extend.without.arrays')

this.reporter.addRequestContextMetaConfig('profiling', { sandboxReadOnly: true })
this.reporter.addRequestContextMetaConfig('profiling', { sandboxHidden: true })
this.reporter.addRequestContextMetaConfig('resolvedTemplate', { sandboxHidden: true })

@@ -97,3 +97,3 @@

req.context.profiling.resLastVal = res.content
req.context.profiling.resLastVal = (res.content == null || isbinaryfile(res.content)) ? null : res.content.toString()
req.context.profiling.resMetaLastVal = stringifiedResMeta

@@ -100,0 +100,0 @@ req.context.profiling.reqLastVal = stringifiedReq

{
"name": "@jsreport/jsreport-core",
"version": "3.3.0",
"version": "3.4.0",
"description": "javascript based business reporting",

@@ -56,4 +56,4 @@ "keywords": [

"ms": "2.1.3",
"nanoid": "3.1.16",
"nconf": "0.10.0",
"nanoid": "3.2.0",
"nconf": "0.11.3",
"node.extend.without.arrays": "1.1.6",

@@ -60,0 +60,0 @@ "reap2": "1.0.1",

@@ -285,2 +285,9 @@ # @jsreport/jsreport-core

### 3.4.0
- fix for reports execution
- fix for render profiling
- fix for blob storage remove
- update deps to fix npm audit
### 3.1.0

@@ -287,0 +294,0 @@

@@ -21,2 +21,6 @@ module.exports = (storage) => {

})
it('remove shouldnt fail for missing blob', async () => {
await storage().remove('foo')
})
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc