Socket
Socket
Sign inDemoInstall

graphql

Package Overview
Dependencies
Maintainers
8
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql - npm Package Compare versions

Comparing version 16.8.1 to 16.8.2

7

jsutils/instanceOf.js

@@ -10,2 +10,6 @@ 'use strict';

/* c8 ignore next 3 */
const isProduction =
globalThis.process && // eslint-disable-next-line no-undef
process.env.NODE_ENV === 'production';
/**

@@ -17,6 +21,7 @@ * A replacement for instanceof which includes an error warning when multi-realm

*/
const instanceOf =
/* c8 ignore next 6 */
// FIXME: https://github.com/graphql/graphql-js/issues/2317
globalThis.process && globalThis.process.env.NODE_ENV === 'production'
isProduction
? function instanceOf(value, constructor) {

@@ -23,0 +28,0 @@ return value instanceof constructor;

2

package.json
{
"name": "graphql",
"version": "16.8.1",
"version": "16.8.2",
"description": "A Query Language and Runtime which can target any service.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -13,3 +13,3 @@ 'use strict';

*/
const version = '16.8.1';
const version = '16.8.2';
/**

@@ -23,5 +23,5 @@ * An object containing the components of the GraphQL.js version string

minor: 8,
patch: 1,
patch: 2,
preReleaseTag: null,
});
exports.versionInfo = versionInfo;

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