Skip to content

Tags: AaronLaw/meteor

Tags

release/METEOR-CORE@0.9.0-rc5

Toggle release/METEOR-CORE@0.9.0-rc5's commit message
missing newline

release/METEOR-CORE@0.9.0-rc4

Toggle release/METEOR-CORE@0.9.0-rc4's commit message
don't break running from checkout

release/METEOR-CORE@0.9.0-rc3

Toggle release/METEOR-CORE@0.9.0-rc3's commit message
vbump for real

release/METEOR-CORE@0.9.0-rc2

Toggle release/METEOR-CORE@0.9.0-rc2's commit message
vbump, 0.9.0-rc2

release/METEOR-CORE@0.9.0-rc1

Toggle release/METEOR-CORE@0.9.0-rc1's commit message
more version bumps

release/0.8.3

Toggle release/0.8.3's commit message
Revert "shrinkwrap update"

This reverts commit abbf3c7.

Something probably got weird switching between the 'packaging' branch
and 'devel'; mongodb and bson are forked on packaging, but we didn't
intend to be using a normal mongodb release with a forked bson.

release/0.8.3-rc8

Toggle release/0.8.3-rc8's commit message
Revert "shrinkwrap update"

This reverts commit abbf3c7.

Something probably got weird switching between the 'packaging' branch
and 'devel'; mongodb and bson are forked on packaging, but we didn't
intend to be using a normal mongodb release with a forked bson.

release/0.8.3-rc7

Toggle release/0.8.3-rc7's commit message
Change how Blaze.render,toHTML infer parentView

If you call UI.renderWithData, say, from an event handler, you may be unpleasantly surprised if it gets Blaze.currentView as its parentView (where Blaze.currentView is based on the template where the event handler is defined).  On the other hand, showdown/template-integration.js takes advantage of the fact that Blaze.toHTML in render() is infers the parentView from Blaze.currentView.  So only infer currentView as parent while in the view’s render().

This change should only affect apps and packages that use Blaze.render, Blaze.toHTML, UI.render, or UI.renderWithData.

release/0.8.3-rc6

Toggle release/0.8.3-rc6's commit message
Fix scope of UI.contentBlock argument

Eric Dobbertin’s bug

release/0.8.3-rc5

Toggle release/0.8.3-rc5's commit message
Try window.opener first in OAuth popup, then localStorage.

We've occasionally seen weird configurations of IE where localStorage
isn't shared between same-origin windows, so trying window.opener first
is safer.