diff --git a/CHANGELOG.md b/CHANGELOG.md index 778879e7021f7a7fd5ca88bd4430425903d26100..2afc8718c347b64e65696d53449d0c8e664758a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security ### -## [6.0.0] - 2023-10-17 ## +## [6.0.1 2023-10-18] ## + +### Fixed ### +* Old passwords table is removed from dumps where it still exists. + +## [6.0.0 2023-10-17] ## +>>>>>>> dev This is a major update. Switching from integer ids for internal and external use to string ids for the external use while keeping the old integer ids for internal use. diff --git a/doc/conf.py b/doc/conf.py index 02d6ce6b0b593134782f48314152fab8733edbd7..b4e7e4b15793ada52a8f6ada43270a68444b35b7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -28,7 +28,7 @@ author = 'Daniel Hornung' # The short X.Y version version = '6.0' # The full version, including alpha/beta/rc tags -release = '6.0.0' +release = '6.0.1' # -- General configuration --------------------------------------------------- @@ -46,7 +46,7 @@ extensions = [ 'sphinx.ext.todo', "sphinx.ext.autodoc", "recommonmark", # For markdown files. - # 'autoapi.extension', + # 'autoapi.extension', # 'sphinx.ext.intersphinx', # 'sphinx.ext.napoleon', # For Google style docstrings "sphinx_rtd_theme", diff --git a/patches/patch20221122-6.0-SNAPSHOT/patch.sh b/patches/patch20221122-6.0-SNAPSHOT/patch.sh index 54208ab713ae9cc7bc6db8ae7501f1266e2bec86..9833f5ad953799afc33133014ec4db2ac6320beb 100755 --- a/patches/patch20221122-6.0-SNAPSHOT/patch.sh +++ b/patches/patch20221122-6.0-SNAPSHOT/patch.sh @@ -25,6 +25,8 @@ NEW_VERSION="v6.0.0-SNAPSHOT-EXTIDS" OLD_VERSION="v5.0.0" +DROP_TABLE_PASSWORDS='DROP TABLE IF EXISTS passwords;' + if [ -z "$UTILSPATH" ]; then UTILSPATH="../utils" fi @@ -33,9 +35,11 @@ fi check_version $OLD_VERSION +mysql_execute "$DROP_TABLE_PASSWORDS" mysql_execute_file $PATCH_DIR/create_entity_ids_table.sql update_version $NEW_VERSION + success