-
Notifications
You must be signed in to change notification settings - Fork 394
Comparing changes
Open a pull request
base repository: firebase/firebase-admin-node
base: v8.8.0
head repository: firebase/firebase-admin-node
compare: v8.9.0
- 16 commits
- 57 files changed
- 6 contributors
Commits on Dec 2, 2019
-
Eliminate duplicate BLACKLISTED_CLAIMS (#709)
Requires exposing this constant so that the tests can use it.
Configuration menu - View commit details
-
Copy full SHA for e231560 - Browse repository at this point
Copy the full SHA e231560View commit details
Commits on Dec 6, 2019
-
Enable 'strictNullChecks' ts compiler option. (#676)
* Enable 'structNullChecks' ts compiler option. In the majority of cases, I simply turned stuff like this: ``` function fname(param: T) { if (!param) throw Error("invalid param; must not be nullish"); ... } ``` into this: ``` function fname(param: T|null|undefined) { if (!param) throw Error("invalid param; must not be nullish"); ... } ``` A more sensible approach would be eliminate the possibility of null/undef and eliminate the checks too, but that's a bit more involved and this patch is already enormous. But I think these sorts of improvements could be taken advantage of opportunistically as the code is worked on in the future. * Add @firebase/auth-types to dev dependencies And also update @firebase/auth to most recent to match.
Configuration menu - View commit details
-
Copy full SHA for 45905e4 - Browse repository at this point
Copy the full SHA 45905e4View commit details
Commits on Dec 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 375c4fb - Browse repository at this point
Copy the full SHA 375c4fbView commit details
Commits on Dec 10, 2019
-
Upgraded Typescript to 3.7.x (#720)
* Upgraded Typescript to 3.7.x * Removing typeof * Made pollCallback optional
Configuration menu - View commit details
-
Copy full SHA for bba61e1 - Browse repository at this point
Copy the full SHA bba61e1View commit details
Commits on Dec 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ed98926 - Browse repository at this point
Copy the full SHA ed98926View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0013c06 - Browse repository at this point
Copy the full SHA 0013c06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8104b90 - Browse repository at this point
Copy the full SHA 8104b90View commit details -
Configuration menu - View commit details
-
Copy full SHA for d9ff20e - Browse repository at this point
Copy the full SHA d9ff20eView commit details
Commits on Dec 12, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a9249a6 - Browse repository at this point
Copy the full SHA a9249a6View commit details
Commits on Dec 13, 2019
-
Using async project ID discovery API in Auth and FCM (#724)
* Using async project ID discovery API in Auth and FCM * Fixed indentation
Configuration menu - View commit details
-
Copy full SHA for a18dc71 - Browse repository at this point
Copy the full SHA a18dc71View commit details
Commits on Dec 16, 2019
-
Using async project ID discovery in ProjectManagement and InstanceId (#…
…728) * Using async project ID discovery API in Auth and FCM * Async project ID discovery mechanism for ProjectManagement and InstanceId APIs
Configuration menu - View commit details
-
Copy full SHA for 050cc59 - Browse repository at this point
Copy the full SHA 050cc59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99d3214 - Browse repository at this point
Copy the full SHA 99d3214View commit details
Commits on Dec 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d3f3d91 - Browse repository at this point
Copy the full SHA d3f3d91View commit details -
feat: Update Firestore to 3.0 (#735)
* Update Firestore to 3.0 This is not intended to be merged, I just want to make it possible to install Firebase Admin + Firestore from a branch. * Update package-lock.json
Configuration menu - View commit details
-
Copy full SHA for 29e3f06 - Browse repository at this point
Copy the full SHA 29e3f06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 513f3ac - Browse repository at this point
Copy the full SHA 513f3acView commit details
Commits on Dec 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 00892e0 - Browse repository at this point
Copy the full SHA 00892e0View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v8.8.0...v8.9.0