Skip to content
Snippets Groups Projects
Commit 99262d9f authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'release-6.0.1' into 'main'

Release 6.0.1

See merge request !19
parents 43bd98aa f9acd0dc
Branches
Tags
2 merge requests!19Release 6.0.1,!11DRAFT: file system cleanup
Pipeline #42496 failed
...@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. ...@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [6.0.1 2023-10-18] ##
### Fixed ###
* Old passwords table is removed from dumps where it still exists.
## [6.0.0 2023-10-17] ## ## [6.0.0 2023-10-17] ##
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. 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.
......
...@@ -28,7 +28,7 @@ author = 'Daniel Hornung' ...@@ -28,7 +28,7 @@ author = 'Daniel Hornung'
# The short X.Y version # The short X.Y version
version = '6.0' version = '6.0'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '6.0.0' release = '6.0.1'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
...@@ -46,7 +46,7 @@ extensions = [ ...@@ -46,7 +46,7 @@ extensions = [
'sphinx.ext.todo', 'sphinx.ext.todo',
"sphinx.ext.autodoc", "sphinx.ext.autodoc",
"recommonmark", # For markdown files. "recommonmark", # For markdown files.
# 'autoapi.extension', # 'autoapi.extension',
# 'sphinx.ext.intersphinx', # 'sphinx.ext.intersphinx',
# 'sphinx.ext.napoleon', # For Google style docstrings # 'sphinx.ext.napoleon', # For Google style docstrings
"sphinx_rtd_theme", "sphinx_rtd_theme",
......
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
NEW_VERSION="v6.0.0-SNAPSHOT-EXTIDS" NEW_VERSION="v6.0.0-SNAPSHOT-EXTIDS"
OLD_VERSION="v5.0.0" OLD_VERSION="v5.0.0"
DROP_TABLE_PASSWORDS='DROP TABLE IF EXISTS passwords;'
if [ -z "$UTILSPATH" ]; then if [ -z "$UTILSPATH" ]; then
UTILSPATH="../utils" UTILSPATH="../utils"
fi fi
...@@ -33,9 +35,11 @@ fi ...@@ -33,9 +35,11 @@ fi
check_version $OLD_VERSION check_version $OLD_VERSION
mysql_execute "$DROP_TABLE_PASSWORDS"
mysql_execute_file $PATCH_DIR/create_entity_ids_table.sql mysql_execute_file $PATCH_DIR/create_entity_ids_table.sql
update_version $NEW_VERSION update_version $NEW_VERSION
success success
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment