You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: History.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,24 @@
10
10
JSON too. #4595
11
11
12
12
13
+
### Meteor Accounts
14
+
15
+
*`loginWithPassword` now matches username or email in a case insensitive manner. If there are multiple users with a username or email only differing in case, a case sensitive match is required. #550
16
+
*`loginWithGithub` now requests `user:email` scope by default, and attempts to fetch the user's emails. If no public email has been set, we use the primary email instead. We also store the complete list of emails. #4545
17
+
18
+
19
+
### DDP
20
+
21
+
*`sub.ready()` should return true inside that subscription's `onReady`
22
+
callback. #4614
23
+
24
+
### Livequery
25
+
26
+
* Improved server performance by reducing overhead of processing oplog after
27
+
database writes. Improvements are most noticeable in case when a method is
28
+
doing a lot of writes on collections with plenty of active observers. #4694
29
+
30
+
13
31
## in progress: v.1.1.1
14
32
15
33
### Blaze
@@ -185,6 +203,8 @@
185
203
186
204
### Other bug fixes and improvements
187
205
206
+
* The `spiderable` package now reports the URL it's trying to fetch on failure.
Copy file name to clipboardExpand all lines: docs/client/full-api/api/accounts.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -134,6 +134,8 @@ will be logged out.
134
134
135
135
{{> autoApiBox "Meteor.loginWithPassword"}}
136
136
137
+
If there are multiple users with a username or email only differing in case, a case sensitive match is required. Although `createUser` won't let you create users with ambiguous usernames or emails, this could happen with existing databases or if you modify the users collection directly.
138
+
137
139
This function is provided by the `accounts-password` package. See the
Copy file name to clipboardExpand all lines: docs/client/full-api/api/passwords.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ id.
26
26
27
27
On the client, you must pass `password` and at least one of `username` or
28
28
`email`— enough information for the user to be able to log in again
29
-
later. On the server, you do not need to specify `password`, but the user will
29
+
later. If there are existing users with a username or email only differing in case, `createUser` will fail. On the server, you do not need to specify `password`, but the user will
30
30
not be able to log in until it has a password (eg, set with
0 commit comments