mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix #11076 by updating ddp dependencies
Updated ddp-server dependencies to the latest patch releases and did a patch update on the package. While at it also updated lolex dependency in ddp-client to be the same as in the rest of the code base. Since that is test dependency I did not bump the version.
This commit is contained in:
@@ -5,7 +5,7 @@ Package.describe({
|
||||
});
|
||||
|
||||
Npm.depends({
|
||||
lolex: '2.3.1'
|
||||
lolex: '2.3.2'
|
||||
});
|
||||
|
||||
Package.onUse((api) => {
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
Package.describe({
|
||||
summary: "Meteor's latency-compensated distributed data server",
|
||||
version: '2.3.1',
|
||||
version: '2.3.2',
|
||||
documentation: null
|
||||
});
|
||||
|
||||
Npm.depends({
|
||||
"permessage-deflate": "0.1.6",
|
||||
sockjs: "0.3.19"
|
||||
"permessage-deflate": "0.1.7",
|
||||
sockjs: "0.3.20"
|
||||
});
|
||||
|
||||
Package.onUse(function (api) {
|
||||
|
||||
Reference in New Issue
Block a user