Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
copleykj committed Jun 29, 2021
2 parents bb5d397 + 219fb64 commit d9b622d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .versions
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ [email protected]
[email protected]
[email protected]
[email protected]
communitypackages:[email protected].3
communitypackages:[email protected].5
communitypackages:[email protected]
communitypackages:[email protected]
[email protected]
Expand All @@ -28,7 +28,7 @@ [email protected]
[email protected]
[email protected]
[email protected]
local-test:communitypackages:[email protected].3
local-test:communitypackages:[email protected].5
[email protected]
[email protected]
[email protected]
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 4.0.5

- update meteorx to `montiapm:meteorx` for compatibility with Meteor 2.3

## 4.0.2

- Compatiblity with Meteor 2.3
Expand Down
2 changes: 1 addition & 1 deletion lib/server/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class Context {
}

subscribe (subName /*, params */) {
const publishHandler = Meteor.default_server.publish_handlers[subName];
const publishHandler = Meteor.server.publish_handlers[subName];
if (publishHandler) {
const params = Array.prototype.slice.call(arguments, 1);
// non-universal subs have subscription id
Expand Down
2 changes: 1 addition & 1 deletion lib/server/fast_render.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export const FastRender = {
// adding support for null publications
FastRender.onAllRoutes(function () {
const context = this;
const nullHandlers = Meteor.default_server.universal_publish_handlers;
const nullHandlers = Meteor.server.universal_publish_handlers;

if (nullHandlers) {
nullHandlers.forEach(function (publishHandler) {
Expand Down
2 changes: 1 addition & 1 deletion lib/server/publish_context.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Random } from 'meteor/random';
import { Log } from 'meteor/logging';
import { EJSON } from 'meteor/ejson';
import { Meteor } from 'meteor/meteor';
import { MeteorX } from 'meteor/lamhieu:meteorx';
import { MeteorX } from 'meteor/montiapm:meteorx';

const PublishContext = function PublishContext (
context,
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* global Package Npm */
Package.describe({
summary: 'Render your app before the DDP connection even comes alive - magic?',
version: '4.0.3',
version: '4.0.5',
git: 'https://github.com/Meteor-Community-Packages/meteor-fast-render',
name: 'communitypackages:fast-render',
});
Expand Down

0 comments on commit d9b622d

Please sign in to comment.