Skip to content

Commit d9b622d

Browse files
committed
Merge branch 'develop'
2 parents bb5d397 + 219fb64 commit d9b622d

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ [email protected]
77
88
99
10-
communitypackages:[email protected].3
10+
communitypackages:[email protected].5
1111
communitypackages:[email protected]
1212
communitypackages:[email protected]
1313
@@ -28,7 +28,7 @@ [email protected]
2828
2929
3030
31-
local-test:communitypackages:[email protected].3
31+
local-test:communitypackages:[email protected].5
3232
3333
3434

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 4.0.5
4+
5+
- update meteorx to `montiapm:meteorx` for compatibility with Meteor 2.3
6+
37
## 4.0.2
48

59
- Compatiblity with Meteor 2.3

lib/server/context.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class Context {
4040
}
4141

4242
subscribe (subName /*, params */) {
43-
const publishHandler = Meteor.default_server.publish_handlers[subName];
43+
const publishHandler = Meteor.server.publish_handlers[subName];
4444
if (publishHandler) {
4545
const params = Array.prototype.slice.call(arguments, 1);
4646
// non-universal subs have subscription id

lib/server/fast_render.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export const FastRender = {
177177
// adding support for null publications
178178
FastRender.onAllRoutes(function () {
179179
const context = this;
180-
const nullHandlers = Meteor.default_server.universal_publish_handlers;
180+
const nullHandlers = Meteor.server.universal_publish_handlers;
181181

182182
if (nullHandlers) {
183183
nullHandlers.forEach(function (publishHandler) {

lib/server/publish_context.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Random } from 'meteor/random';
22
import { Log } from 'meteor/logging';
33
import { EJSON } from 'meteor/ejson';
44
import { Meteor } from 'meteor/meteor';
5-
import { MeteorX } from 'meteor/lamhieu:meteorx';
5+
import { MeteorX } from 'meteor/montiapm:meteorx';
66

77
const PublishContext = function PublishContext (
88
context,

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* global Package Npm */
22
Package.describe({
33
summary: 'Render your app before the DDP connection even comes alive - magic?',
4-
version: '4.0.3',
4+
version: '4.0.5',
55
git: 'https://github.com/Meteor-Community-Packages/meteor-fast-render',
66
name: 'communitypackages:fast-render',
77
});

0 commit comments

Comments
 (0)