mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge pull request #11399 from radekmie/patch-1
Reordered fields in DDP method call.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: "Meteor's latency-compensated distributed data client",
|
||||
version: '2.4.0',
|
||||
version: '2.4.1',
|
||||
documentation: null
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user