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

graphql-ruby-client

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-ruby-client - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

6

CHANGELOG.md
# graphql-ruby-client
## 1.4.0 (12 Apr 2017)
## 1.4.1 (19 Sept 2018)
- Add `connectionOptions` to ActionCableLink #1857
## 1.4.0 (12 Apr 2018)
- Add `PusherLink` for Apollo 2 Subscriptions on Pusher

@@ -6,0 +10,0 @@ - Add `OperationStoreLink` for Apollo 2 persisted queries

2

package.json
{
"name": "graphql-ruby-client",
"version": "1.4.0",
"version": "1.4.1",
"description": "JavaScript client for graphql-ruby",

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

@@ -9,3 +9,8 @@ var ApolloLink = require("apollo-link").ApolloLink

var actionName = options.actionName || "execute"
var connectionParams = options.connectionParams
if (typeof connectionParams !== "object") {
connectionParams = {}
}
return new ApolloLink(function(operation) {

@@ -15,6 +20,6 @@ return new Observable(function(observer) {

var subscription = cable.subscriptions.create({
var subscription = cable.subscriptions.create(Object.assign({},{
channel: channelName,
channelId: channelId
}, {
}, connectionParams), {
connected: function() {

@@ -21,0 +26,0 @@ this.perform(

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