mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
Update changelog
This commit is contained in:
61
Changelog.md
61
Changelog.md
@ -20,6 +20,8 @@
|
||||
- Fix item selection after merging (#1809)
|
||||
- Internal changes to how a collective is referenced as a preparation
|
||||
for #585 (#1686)
|
||||
- Update H2 to 2.1.x, incompatible to the previous used version
|
||||
(#1690)
|
||||
|
||||
### PLEASE NOTE
|
||||
|
||||
@ -57,6 +59,65 @@ docspell.joex {
|
||||
}
|
||||
```
|
||||
|
||||
### File Backends
|
||||
|
||||
The internal change on how collectives are now referenced requires to
|
||||
adopt the files accordingly. If you have your files in the database,
|
||||
all is being migrated automatically on first start.
|
||||
|
||||
For other file backends, the files must be migrated manually. The
|
||||
difference is that from now on a collective is referenced by a unique
|
||||
number and not by its name anymore. You can look at the table
|
||||
`collective` to see which number was assigned to a collective and then
|
||||
|
||||
- for a filebackend, simply move the folder with a collective name to
|
||||
its corresponding number
|
||||
- for s3 backend the same must happen, using some s3 client (maybe
|
||||
[this
|
||||
one](https://min.io/docs/minio/linux/reference/minio-mc/mc-mv.html))
|
||||
|
||||
|
||||
### H2
|
||||
|
||||
If you use H2 as a database, there are some manual steps required. H2
|
||||
was bumped from 1.4.x to 2.1.x and the new version cannot read the
|
||||
database files of the old version.
|
||||
|
||||
Additionally, one of the changesets for H2 used a now illegal syntax
|
||||
and had to be changed. This will lead to checksum mismatch errors when
|
||||
starting up.
|
||||
|
||||
Creating and restoring a dump, the script `tools/h2-util.sh` can be
|
||||
used. The H2 version can be specified with an environment variable
|
||||
`H2_VERSION` to easily create a dump in one version and restore in
|
||||
another.
|
||||
|
||||
To fix the changeset, you could simply run this sed command on the
|
||||
dump before restoring:
|
||||
|
||||
```
|
||||
sed -i 's,175554607,-276220379,g' docspell-dump-h2.sql
|
||||
```
|
||||
|
||||
But this could potentially change not only the checksum, but other
|
||||
things in the dump. It is not very likely, though. A more safe
|
||||
alternative is to use a text editor and find the correct place to
|
||||
change or just set `database-schema.repair-schema = true` in the
|
||||
config file or use the env variables
|
||||
|
||||
```
|
||||
DOCSPELL_SERVER_BACKEND_DATABASE__SCHEMA_REPAIR__SCHEMA=true
|
||||
```
|
||||
|
||||
and startup only the restserver one time to have the checksum fixed.
|
||||
Another safe variant is to run this update statement on your h2
|
||||
database:
|
||||
|
||||
```sql
|
||||
UPDATE flyway_schema_history set checksum = -276220379 WHERE version = '1.9.3';
|
||||
```
|
||||
|
||||
|
||||
### Rest API changes
|
||||
|
||||
- Adds apis for retrieving and setting extracted text at
|
||||
|
Reference in New Issue
Block a user