Skip to content

Releases: ciatph/firebase-users-admin

firebase-users-admin_v1.0.8

13 Apr 04:26
838d6f8
Compare
Choose a tag to compare

(See PR #33 for reference)

Updates

  • Improve server error handling, Issue #31
  • Use stricter cors options on server
    • Comment out the cors options line app.use(cors(corsOptions)) on /server/src/index.js when testing on Postman and other http clients other than the /client app.
  • Code clean-up
  • Minor README updates

firebase-users-admin_v1.0.7

08 Apr 01:20
14ccf84
Compare
Choose a tag to compare

(See PR #24 for reference)

Updates

Create client UI's calling the auth-required POST /api/user and PATCH /api/user API endpoints.

  • Create a UI for updating user information, Issue #22
    • available in the /edit (client) route
  • Create a UI for for creating new users
    • available in the /create (client) route
  • Disable updating and deletion of the default superadmin account

firebase-users-admin_v1.0.6

07 Apr 16:44
0ad7288
Compare
Choose a tag to compare

(See PR #21 for reference)

Updates

  • Minor Integer type-checking fix for superadmin account_level
  • Follow-up fix for Issue #18

firebase-users-admin_v1.0.5

07 Apr 16:29
f17dd26
Compare
Choose a tag to compare

(See PR #20 for reference)

Updates

  • Minor string type-checking fix for superadmin account_level
  • Follow-up fix Issue #18

firebase-users-admin_v1.0.4

07 Apr 16:14
9da5f1b
Compare
Choose a tag to compare

(See PR #19 for reference)

Updates

  • Only superadmins should be able to create, update and delete users, Issue #18
  • Follow-up for Wrap the API routes in an authentication middleware, Issue #3
  • Display the signed-in user's Firebase token on Home page
  • Make the Admin option selectable in the Create User page

firebase-users-admin_v1.0.3

07 Apr 15:14
6b8cc5c
Compare
Choose a tag to compare

(See PR #17 for reference)

Updates

  • Wrap the API routes in an authentication middleware, Issue #3
  • Delete user from the client app
  • Create new user from the client app
  • Update API documentation

firebase-users-admin_v1.0.2

07 Apr 10:02
e9e4167
Compare
Choose a tag to compare

(See PR #15 for reference)

Updates

  • Add script to copy client build dir to server's public dir
  • Update README

firebase-users-admin_v1.0.1

07 Apr 06:34
13e024f
Compare
Choose a tag to compare

(See PR #14 for reference)

Updates

  • Do not trigger the lint.yml workflow on release publish, Issue #13
  • Minor typo error updates

firebase-users-admin_v1.0.0

07 Apr 06:06
f7dbaa2
Compare
Choose a tag to compare

Updates

  • Initial stable release
  • /server - CRUD API for Firebase Authentication users management using the firebase-admin SDK
  • /client - React 18 (CRA) client app demo for using the CRUD API