Skip to content

Releases: ciatph/firebase-users-admin

firebase-users-admin_v1.1.3

29 Jul 22:35
28a91b2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.2...v1.1.3

firebase-users-admin_v1.1.2

03 Jul 17:53
5f00921
Compare
Choose a tag to compare

Updates

firebase-users-admin_v1.1.1

29 Jun 13:00
cd0950b
Compare
Choose a tag to compare

Updates

  • Allow password update, #34
  • Add an option to allow or block cors, #50
  • Optimize the docker nginx configurations, #51
  • Add instructions on seeding a default superadmin@gmail.com account, #52
  • Fix v1.1.0's build and deployment to heroku

firebase-users-admin_v1.1.0

27 Jun 22:50
7eab122
Compare
Choose a tag to compare

(See PR #49 for reference)

Updates

  • Dockerize client app for local development, #40
  • Dockerize client app for production deployment, #41
  • Dockerize server for local development, #42
  • Dockerize server for production deployment, #43
  • Deploy production client and server images to docker hub on release, #44
  • Fix sed string replacement error on release.yml - remove find

firebase-users-admin_v1.0.9

28 May 12:02
bd526c7
Compare
Choose a tag to compare

(See PR #38 for reference)

Updates

Upgrade react version

  • react v18.1.0
  • react-dom v18.1.0
  • react-scripts 5.0.1

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