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

@app-masters/js-lib

Package Overview
Dependencies
Maintainers
5
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@app-masters/js-lib - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

3

CHANGELOG.md

@@ -10,3 +10,3 @@ # Changelog

## [1.2.0/1.2.2] - 2019-01-03
## [1.2.0/1.2.3] - 2019-01-03
### Added

@@ -17,2 +17,3 @@ - LaravelErrorHandler for deal with the new error standards

- Accepting larger range of status
- Removing string message from error

@@ -19,0 +20,0 @@ ## [1.1.55] - 2018-11-07

@@ -47,3 +47,11 @@ "use strict";

// Payload error
errorObj.body = JSON.parse(errorObj.remote);
var body = JSON.parse(errorObj.remote);
if (body.error) {
body.error = body.error.map(function (error) {
return error.replace(/ *\[[^)]*\] */g, '');
});
}
errorObj.body = body;
errorObj.level = 'error';

@@ -50,0 +58,0 @@ } else {

{
"name": "@app-masters/js-lib",
"version": "1.2.2",
"version": "1.2.3",
"description": "JS lib",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -21,3 +21,7 @@ import Rollbar from './rollbar';

// Payload error
errorObj.body = JSON.parse(errorObj.remote);
const body = JSON.parse(errorObj.remote);
if (body.error) {
body.error = body.error.map(error => error.replace(/ *\[[^)]*\] */g, ''));
}
errorObj.body = body;
errorObj.level = 'error';

@@ -24,0 +28,0 @@ } else {

Sorry, the diff of this file is not supported yet

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