Merge pull request #11399 from radekmie/patch-1

Reordered fields in DDP method call.
This commit is contained in:
Jan Dvorak
2021-04-30 23:06:59 +09:00
committed by GitHub
3 changed files with 5 additions and 3 deletions

View File

@@ -4,6 +4,8 @@
* Updated `ddp-server@2.3.3` and `socket-stream-client@0.3.2` dependencies which removes Node's HTTP deprecation warning.
* Released `ddp-client@2.4.1` re-ordering fields in DDP message for better client readability.
## v2.2, 2021-04-15
#### Highlights

View File

@@ -692,9 +692,9 @@ export class Connection {
// wrote.
const message = {
msg: 'method',
id: methodId,
method: name,
params: args,
id: methodId
params: args
};
// If an exception occurred in a stub, and we're ignoring it

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "Meteor's latency-compensated distributed data client",
version: '2.4.0',
version: '2.4.1',
documentation: null
});