Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

createUserWithEmailAndPassword returns object with user property #138

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1fade31
Add onSnapshot functionality to doc, collection and query
BrianChapman Jan 23, 2019
57643cc
onSnapshot should call callback if no data changed and includeMetadat…
BrianChapman Jan 23, 2019
65a9ddf
Move onSnapshot handers to the queue so that a call to flush will cal…
BrianChapman Jan 25, 2019
6047baa
Add support for "array-contains" where operator.
boyko Jan 30, 2019
2fc8ea9
createUserWithEmailAndPassword returns object with user property
Mar 25, 2019
64d0b8a
Set newly created user as currentUser
Mar 26, 2019
e42fdc2
Revert "Set newly created user as currentUser"
Mar 26, 2019
2630d5d
Set newly created user as currentUser
Mar 26, 2019
5882b18
Fix orderBy sorting behavior.
BrianChapman Apr 24, 2019
b593d85
Merge branch 'issue-81-onsnapshot' into orderBy-onsnapshot-merge
BrianChapman Apr 24, 2019
27e7f8f
onSnapshot should call immediatly and then after data changes.
BrianChapman Apr 25, 2019
011dcc7
Merge branch 'issue-81-onsnapshot' into orderBy-onsnapshot-merge
BrianChapman Apr 25, 2019
3625e07
Allow queries to chain, eg: query.limit(3).where(..).get()
BrianChapman Apr 25, 2019
721073d
Add support for arrayRemove and arrayUnion.
boyko Feb 17, 2019
eb0faf6
change org
edeustace May 9, 2019
17035e2
Merge pull request #2 from key-data-systems/boyko/fieldvalue-array
edeustace May 9, 2019
39765c2
ignore .vscode
edeustace May 9, 2019
76ece8a
Merge branch 'master' of github.com:key-data-systems/firebase-mock
edeustace May 9, 2019
fc1c204
Release v2.3.1
edeustace May 9, 2019
62b20f1
fix conflict
edeustace May 9, 2019
47b3e91
update package
edeustace May 9, 2019
ac8b26d
Merge pull request #3 from key-data-systems/bc/orderBy-onsnapshot-merge
edeustace May 9, 2019
793b225
Release v2.3.3
edeustace May 9, 2019
d624500
Allow access to _createTime property of DocumentSnapshot
May 23, 2019
1f11d28
Merge pull request #1 from key-data-systems/master
Aug 27, 2019
a3d6528
Update firestore-document-snapshot.js
Aug 27, 2019
f92770f
Update firestore-document.js
Aug 27, 2019
7019a48
Update firestore-document-snapshot.js
Aug 27, 2019
6dff980
Update firestore-document-snapshot.js
Aug 27, 2019
c08cc34
Merge pull request #2 from CharlesThomasJohnson/master
Aug 27, 2019
4cc837e
Merge pull request #3 from CharlesThomasJohnson/_updateTime
Aug 27, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
node_modules
coverage
browser
.vscode
3 changes: 2 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"node": true
"node": true,
"esversion": "6"
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ If you've encountered a bug or want to request new functionality, go ahead and f
* make your additions in `./src`
* Do not edit the files in `./browser`. They are built automatically for releases. [@bendrucker](https://github.com/bendrucker) will have to spend time rebasing your PR and that makes him :cry:.
* add test units in `./test`
* `npm test`
* `npm test` (node version < 8)
* submit a pull request when all tests pass
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firebase-mock",
"version": "2.2.10",
"version": "2.3.3",
"homepage": "https://github.com/soumak77/firebase-mock",
"authors": [
"Kato"
Expand Down
Loading