From e48153d60966f5ea97aa98280fa29befade6b1a7 Mon Sep 17 00:00:00 2001 From: Cyrille Hemidy Date: Sat, 30 Dec 2017 11:22:38 +0100 Subject: [PATCH 1/4] update readme with Authentication Guide & Release Notes --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 06a6e7e5..441b5fad 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,9 @@ requests, code review feedback, and also pull requests. ## Documentation * [Setup Guide](https://firebase.google.com/docs/admin/setup/) +* [Authentication Guide](https://firebase.google.com/docs/auth/admin/) * [API Reference](https://godoc.org/firebase.google.com/go) +* [Release Notes](https://firebase.google.com/support/release-notes/admin/go) ## License and Terms From 00264b3287582bafeaebcdba733e49801b9934b5 Mon Sep 17 00:00:00 2001 From: Cyrille Hemidy Date: Sat, 30 Dec 2017 12:54:00 +0100 Subject: [PATCH 2/4] fix a misspelling : separately --- auth/user_mgt_test.go | 1 - integration/auth/user_mgt_test.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/auth/user_mgt_test.go b/auth/user_mgt_test.go index e1e2a4af..51459e06 100644 --- a/auth/user_mgt_test.go +++ b/auth/user_mgt_test.go @@ -11,7 +11,6 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. - package auth import ( diff --git a/integration/auth/user_mgt_test.go b/integration/auth/user_mgt_test.go index d626c4f7..6443cbb1 100644 --- a/integration/auth/user_mgt_test.go +++ b/integration/auth/user_mgt_test.go @@ -277,7 +277,7 @@ func testUpdateUser(t *testing.T) { } } - // compare provider info seperatley since the order of the providers isn't guaranteed. + // compare provider info separately since the order of the providers isn't guaranteed. testProviderInfo(u.ProviderUserInfo, t) // now compare the rest of the record, without the ProviderInfo From 144f3f5fbab0714ecf8a177a585ad8f4beda845a Mon Sep 17 00:00:00 2001 From: Cyrille Hemidy Date: Tue, 2 Jan 2018 20:02:47 +0100 Subject: [PATCH 3/4] fix missing newline before package --- auth/user_mgt_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/auth/user_mgt_test.go b/auth/user_mgt_test.go index 51459e06..e1e2a4af 100644 --- a/auth/user_mgt_test.go +++ b/auth/user_mgt_test.go @@ -11,6 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. + package auth import ( From a5c9c76433a6b9b0470490bee0be0833f582ff46 Mon Sep 17 00:00:00 2001 From: Cyrille Hemidy Date: Sat, 17 Feb 2018 23:16:59 +0100 Subject: [PATCH 4/4] add Go Report Card + update doc --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 441b5fad..3ea293a2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ [![Build Status](https://travis-ci.org/firebase/firebase-admin-go.svg?branch=master)](https://travis-ci.org/firebase/firebase-admin-go) [![GoDoc](https://godoc.org/firebase.google.com/go?status.svg)](https://godoc.org/firebase.google.com/go) +[![Go Report Card](https://goreportcard.com/badge/github.com/firebase/firebase-admin-go)](https://goreportcard.com/report/github.com/firebase/firebase-admin-go) # Firebase Admin Go SDK @@ -43,6 +44,9 @@ requests, code review feedback, and also pull requests. * [Setup Guide](https://firebase.google.com/docs/admin/setup/) * [Authentication Guide](https://firebase.google.com/docs/auth/admin/) +* [Cloud Firestore](https://firebase.google.com/docs/firestore/) +* [Cloud Messaging Guide](https://firebase.google.com/docs/cloud-messaging/admin/) +* [Storage Guide](https://firebase.google.com/docs/storage/admin/start) * [API Reference](https://godoc.org/firebase.google.com/go) * [Release Notes](https://firebase.google.com/support/release-notes/admin/go)