aws-appsync-subscription-link 2.2.4 → 2.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
<a name="2.2.5"></a>
|
|
7
|
+
## [2.2.5](https://github.com/awslabs/aws-mobile-appsync-sdk-js/compare/aws-appsync-subscription-link@2.2.4...aws-appsync-subscription-link@2.2.5) (2021-09-24)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package aws-appsync-subscription-link
|
|
13
|
+
|
|
6
14
|
<a name="2.2.4"></a>
|
|
7
15
|
## [2.2.4](https://github.com/awslabs/aws-mobile-appsync-sdk-js/compare/aws-appsync-subscription-link@2.2.3...aws-appsync-subscription-link@2.2.4) (2021-09-24)
|
|
8
16
|
|
package/lib/index.js
CHANGED
|
@@ -28,7 +28,7 @@ function createSubscriptionHandshakeLink(infoOrUrl, theResultsFetcherLink) {
|
|
|
28
28
|
link: new apollo_link_1.ApolloLink(function (operation, _forward) {
|
|
29
29
|
return new apollo_link_1.Observable(function (observer) {
|
|
30
30
|
var _a;
|
|
31
|
-
var _b = operation.variables,
|
|
31
|
+
var _b = operation, _c = _b.variables, _d = subscription_handshake_link_1.CONTROL_EVENTS_KEY, controlEvents = _c[_d], variables = __rest(_c, [typeof _d === "symbol" ? _d : _d + ""]);
|
|
32
32
|
if (typeof controlEvents !== "undefined") {
|
|
33
33
|
operation.variables = variables;
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aws-appsync-subscription-link",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "AWS Mobile AppSync SDK for JavaScript",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"apollo-link-context": "1.0.11",
|
|
24
24
|
"apollo-link-http": "1.5.8",
|
|
25
25
|
"apollo-link-retry": "2.2.7",
|
|
26
|
-
"aws-appsync-auth-link": "^2.0.
|
|
26
|
+
"aws-appsync-auth-link": "^2.0.6",
|
|
27
27
|
"debug": "2.6.9",
|
|
28
28
|
"url": "^0.11.0"
|
|
29
29
|
},
|