Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@graphitation/supermassive

Package Overview
Dependencies
Maintainers
5
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphitation/supermassive - npm Package Compare versions

Comparing version 2.4.1 to 2.4.2

10

CHANGELOG.md
# Change Log - @graphitation/supermassive
This log was last generated on Tue, 04 Apr 2023 10:29:16 GMT and should not be manually modified.
This log was last generated on Tue, 02 May 2023 10:22:43 GMT and should not be manually modified.
<!-- Start content -->
## 2.4.2
Tue, 02 May 2023 10:22:43 GMT
### Patches
- [SUPERMASSIVE] fix invalid behavior in execution hooks error handling (sergeystoyan@microsoft.com)
## 2.4.0

@@ -8,0 +16,0 @@

42

lib/executeWithoutSchema.js

@@ -610,8 +610,10 @@ "use strict";

(_, rawError) => {
const error = toGraphQLError(
rawError,
resolveInfo.path,
"Unexpected error in beforeFieldResolve hook"
);
exeContext.errors.push(error);
if (rawError) {
const error = toGraphQLError(
rawError,
resolveInfo.path,
"Unexpected error in beforeFieldResolve hook"
);
exeContext.errors.push(error);
}
}

@@ -634,8 +636,10 @@ );

(_, rawError) => {
const error2 = toGraphQLError(
rawError,
resolveInfo.path,
"Unexpected error in afterFieldResolve hook"
);
exeContext.errors.push(error2);
if (rawError) {
const error2 = toGraphQLError(
rawError,
resolveInfo.path,
"Unexpected error in afterFieldResolve hook"
);
exeContext.errors.push(error2);
}
}

@@ -658,8 +662,10 @@ );

(_, rawError) => {
const error2 = toGraphQLError(
rawError,
resolveInfo.path,
"Unexpected error in afterFieldComplete hook"
);
exeContext.errors.push(error2);
if (rawError) {
const error2 = toGraphQLError(
rawError,
resolveInfo.path,
"Unexpected error in afterFieldComplete hook"
);
exeContext.errors.push(error2);
}
}

@@ -666,0 +672,0 @@ );

{
"name": "@graphitation/supermassive",
"license": "MIT",
"version": "2.4.1",
"version": "2.4.2",
"main": "./lib/index",

@@ -6,0 +6,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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