Skip to content

Releases: UW-Madison-DoIT/KeyValueStore

v3.1.1

15 Dec 20:48
Compare
Choose a tag to compare

Moves artifacts to Maven central and to a new groupId

<groupId>edu.wisc.my.apps</groupId>
<artifactId>key-value-store</artifactId>

Also adds some files to gitignore

v3.1.0

refactor data structure, scope, and security

27 Sep 16:44
Compare
Choose a tag to compare
  • introduced test cases (#13)
  • Created /{scope}/{key} where scope is a preconfigured thing that is in application.properties. (#12)
  • Changed value to a clob. (#12)

If upgrading from version 2.x to 3.x and are already using an oracle database, need to run the following script. Adds a temporary column named temp that is a clob. Copies values over. Deletes old column. Renames new column as value.

alter table key_value add (temp clob);
update key_value set temp = value;
alter table key_value drop column value;
alter table key_value rename column temp to value;