Skip to content

Commit

Permalink
Update notices and History
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Stark committed Apr 30, 2014
1 parent 6fcbceb commit f49863f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
14 changes: 14 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
## v.NEXT


## v0.7.2.2

* Fix a security flaw in OAuth1 and OAuth2 implementations. If you are
using any OAuth accounts packages (such as `accounts-google` or
`accounts-twitter`), we recommend that you update immediately and log
out your users' current sessions with the following MongoDB command:

$ db.users.update({}, { $set: { 'services.resume.loginTokens': [] } },
{ multi: true });

OAuth redirect URLs are now required to be on the same origin as your app.


## v0.7.2.1

* Fix security flaw in OAuth1 implementation. Clients can no longer
Expand Down
18 changes: 18 additions & 0 deletions scripts/admin/notices.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,24 @@
{
"release": "0.7.1.2"
},
{
"release": "0.7.2"
},
{
"release": "0.7.2.1"
},
{
"release": "0.7.2.2",
"notices": [
"We closed a security hole in our OAuth client. If you are using",
"OAuth-based accounts (such as the `accounts-google` or",
"`accounts-twitter` packages), we recommend that you log out",
"all your users by running this command from a MongoDB shell:",
"",
" $ db.users.update({}, { $set: { 'services.resume.loginTokens': [] } },",
" { multi: true });"
]
},
{
"release": "NEXT"
}
Expand Down

0 comments on commit f49863f

Please sign in to comment.