-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* started working on auto upgrade feature for adapters * implemented full auto upgrade logic * introduce logging to the auto upgrade manager * make the processExit dummy a one liner * also generate a notification for successful auto upgrades * Filter out values with missing automaticUpgrade config - optimize internal return type for GetObjectView on database level - and fix types due to this - and added some more types like for notifications * fix missing generic arg * updated the getObjectList types * rm outcommented code * group acl have users not user * only auto upgrade if repo changed * incorportate changes from PR #2279 but without the automatic upgrade functionality * remove old methods not used externally and are just aliases internally * improve getObjectView return types on db level * fix some adaptions, because res is always defined on the promise based methods - and rows is always there if we have a return value - and also fix internal promise return type of getObjectList * minor refacotring * added blockedVersions to schema - see #625 * also add blockedVersions to types * filter out all null values instead of only parse errors * clean up found usages of useless guards * some more occurences
- Loading branch information
1 parent
93e1145
commit 0b3c6e0
Showing
22 changed files
with
410 additions
and
458 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
export { execute } from './lib/setup'; | ||
export { dbConnectAsync } from './lib/setup/dbConnection'; | ||
// required by main.ts | ||
export { Vendor } from './lib/setup/setupVendor'; | ||
// required by main.ts | ||
export { Upload } from './lib/setup/setupUpload'; | ||
// required by testConsole | ||
export { BackupRestore } from './lib/setup/setupBackup'; | ||
// used by adapter upgrade manager | ||
export { Upgrade } from './lib/setup/setupUpgrade'; | ||
export { BackupRestore } from './lib/setup/setupBackup'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.