Skip to content
Merged
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion firebase.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import (
var defaultAuthOverrides = make(map[string]interface{})

// Version of the Firebase Go Admin SDK.
const Version = "4.19.0"
const Version = "4.18.0"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Reverting the version number to 4.18.0 is correct for a rollback. However, this PR only modifies the version constant. Release commits, like the one being reverted, often include other changes such as dependency updates in go.mod, changelogs, or other documentation. If other files were changed in the original release PR, they should also be reverted here. An incomplete revert can leave the repository in an inconsistent state, potentially introducing subtle bugs or build issues.


// firebaseEnvName is the name of the environment variable with the Config.
const firebaseEnvName = "FIREBASE_CONFIG"
Expand Down
Loading