Releases: mojaloop/auth-service
Releases · mojaloop/auth-service
v12.0.0 Release
v11.13.1 Release
v11.13.0 Release
11.13.0 (2021-11-05)
Features
🛑 BREAKING CHANGE
Existing old migration table
If you have a deployment of an old version of auth-service running you might need to drop your migration table due to depending on typescript migration files while now the migrations are dependent on their javascript compiled varients.
Another potential option is to search the migration table and search for any .ts
extension and update it to .js
Atm we haven't tested any solutions that don't result dropping the database since at this point in time the auth-service is not used in production anywhere.
Config Change
With the introduction of compiling typescript, the configuration file will need to be updated to use
"migrations": {
"tableName": "auth-service",
"loadExtensions": [
".js"
]
},
"seeds": {
"loadExtensions": [
".js"
]
}
- mojaloop/project#1814: compile ts to js (#96) (1f046f9), closes mojaloop/project#1814