-
Notifications
You must be signed in to change notification settings - Fork 89
merge releases-1.4.x branch into the develop branch #568
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
cdcdd21
fix test case fail
nagendra0721 a9b985b
Merge branch 'mosip:develop' into develop
nagendra0721 95b7d04
MOSIP-42630:cutting of new branch from develop (#516)
nagendra0721 92d0451
MOSIP-42630:pom version update (#518)
nagendra0721 019b917
MOSIP-42630: Add exceptions to catch block in KeymanagerServiceImpl (…
nagendra0721 511d3a4
MOSIP-42630: log (#521)
nagendra0721 6d97243
MOSIP-42630: logs (#522)
nagendra0721 c14b7a6
MOSIP-42630: null pointer exception fix for cwt payload (#524)
nagendra0721 330fa35
INJICERT-1316: fix test case (#526)
nagendra0721 f6b9968
Release 1.4.x injicer1316 (#527)
nagendra0721 de4f837
[MOSIP-42630] corrected dependent pom versions. (#529)
mahammedtaheer 23ce10f
[DSD-9987] inji-certify 0.14.0 release (#531)
ckm007 4b7f64b
Updated Pom versions for release changes (#532)
ckm007 16a323a
INJICERT-1316: update the db_upgrade_script files naming convetion to…
nagendra0721 1876a02
Updated Pom version and Chart version for post-release changes (#534)
ckm007 3e8a77f
#544: merge release-1.3.x branch to release-1.4.x branch (#543)
nagendra0721 0a99b3c
#544: add script to download auth adaptor (#545)
nagendra0721 c60b61e
Github issue 548 corrected version (#549)
kameshsr aab3ac9
Github issue-550 corrected helm resource
kameshsr b0b9f9d
Github issue 550 corrected tag
kameshsr 8229329
MOSIP-44825: Added HSM interaction DEBUG logger (#546)
dhanendra06 eda6c72
add empty db script (#553)
nagendra0721 7bcbcfc
[DSD-10347] 1.3.1 Packet Processing Performance Tuning release (#566)
ckm007 17e7fc4
Merge branch 'develop' of https://github.com/nagendra0721/keymanager …
nagendra0721 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
1 change: 1 addition & 0 deletions
1
db_upgrade_scripts/mosip_keymgr/sql/1.2.0.1_to_1.2.1.0_rollback.sql
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| \echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' |
1 change: 1 addition & 0 deletions
1
db_upgrade_scripts/mosip_keymgr/sql/1.2.0.1_to_1.2.1.0_upgrade.sql
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| \echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' |
15 changes: 15 additions & 0 deletions
15
db_upgrade_scripts/mosip_keymgr/sql/1.2.1.0_to_1.3.0_rollback.sql
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| -- Below script required to rollback from 1.3.0 to 1.3.0-B4 | ||
| \c mosip_keymgr | ||
|
|
||
| COMMENT ON COLUMN keymgr.ca_cert_store.ca_cert_type | ||
| IS NULL; | ||
|
|
||
| -- Drop the ca_cert_type column (if it exists) | ||
| ALTER TABLE IF EXISTS keymgr.ca_cert_store | ||
| DROP COLUMN IF EXISTS ca_cert_type; | ||
|
|
||
| -- ROLLBACK FOR PERFORMANCE OPTIMIZATION INDEXES | ||
| DROP INDEX IF EXISTS keymgr.idx_ca_cert_store_cr_dtimes; | ||
| DROP INDEX IF EXISTS keymgr.idx_ca_cert_store_del_dtimes; | ||
| DROP INDEX IF EXISTS keymgr.idx_ca_cert_store_upd_dtimes; | ||
| DROP INDEX IF EXISTS keymgr.idx_ca_cert_times; |
16 changes: 16 additions & 0 deletions
16
db_upgrade_scripts/mosip_keymgr/sql/1.2.1.0_to_1.3.0_upgrade.sql
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| -- Below script required to upgrade from 1.3.0-B4 to 1.3.0 | ||
| \c mosip_keymgr | ||
|
|
||
| ALTER TABLE IF EXISTS keymgr.ca_cert_store | ||
| ADD COLUMN ca_cert_type character varying(25); | ||
|
|
||
| COMMENT ON COLUMN keymgr.ca_cert_store.ca_cert_type | ||
| IS 'CA_Certificate Type: Specifies the type of CA_Certificate e.g., Root, Intermediate'; | ||
|
|
||
|
|
||
| --PERFORMANCE INDEXES-- | ||
| CREATE INDEX IF NOT EXISTS idx_ca_cert_store_cr_dtimes ON keymgr.ca_cert_store USING btree (cr_dtimes); | ||
| CREATE INDEX IF NOT EXISTS idx_ca_cert_store_del_dtimes ON keymgr.ca_cert_store USING btree (del_dtimes); | ||
| CREATE INDEX IF NOT EXISTS idx_ca_cert_store_upd_dtimes ON keymgr.ca_cert_store USING btree (upd_dtimes); | ||
| CREATE INDEX IF NOT EXISTS idx_ca_cert_times ON keymgr.ca_cert_store USING btree (cr_dtimes, upd_dtimes, del_dtimes); | ||
| --END PERFORMANCE INDEXES-- | ||
1 change: 1 addition & 0 deletions
1
db_upgrade_scripts/mosip_keymgr/sql/1.3.0_to_1.4.0_rollback.sql
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| \echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' | ||
|
nagendra0721 marked this conversation as resolved.
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| \echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' |
1 change: 1 addition & 0 deletions
1
db_upgrade_scripts/mosip_keymgr/sql/1.4.0_to_1.4.1_rollback.sql
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| \echo 'Rollback Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| \echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.