update banner, notices, History

This commit is contained in:
Emily Stark
2014-06-23 08:04:59 -07:00
parent 2b87aa1f00
commit fba413d597
3 changed files with 20 additions and 6 deletions

View File

@@ -26,9 +26,10 @@
plaintext password.
* Show the display name of the currently logged-in user after following
an email verification link or password reset link in `accounts-ui`.
an email verification link or a password reset link in `accounts-ui`.
* Add a `userEmail` option to `Meteor.loginWithMeteorDeveloperAccount`.
* Add a `userEmail` option to `Meteor.loginWithMeteorDeveloperAccount`
to pre-fill the user's email address in the OAuth popup.
* Ensure that the user object has updated token information before
it is passed to email template functions. #2210
@@ -49,7 +50,7 @@
overwrite changes to them made by other JavaScript libraries.
* Add {{> UI.dynamic}} to make it easier to dynamically render a
template with a data context. XXX Update "Using Blaze" wiki page.
template with a data context.
* Add `UI._templateInstance()` for accessing the current template
instance from within a block helper.

View File

@@ -1,5 +1,7 @@
=> Meteor 0.8.1.3: Fixes a security flaw in the `spiderable` package and
minor regressions from 0.8.1.
=> Meteor 0.8.2: Switch `accounts-password` to use bcrypt on the
server. User accounts will seamlessly transition to bcrypt on the
next login, but this transition is one-way, so you cannot downgrade a
production app once you upgrade to 0.8.2.
This release is being downloaded in the background. Update your
project to Meteor 0.8.1.3 by running 'meteor update'.
project to Meteor 0.8.2 by running 'meteor update'.

View File

@@ -138,6 +138,17 @@
{
"release": "0.8.1.3"
},
{
"release": "0.8.2",
"packageNotices": {
"accounts-password": [
"Transition to bcrypt for password storage on the server.",
"You do not need to make any changes to your app, but you will",
"not be able to downgrade production apps after you update them",
"to 0.8.2."
]
}
},
{
"release": "NEXT"
}