Releases: apsis-scheduler/apsis
Releases · apsis-scheduler/apsis
v0.33.6
What's Changed
- Fix
async
stats by aggregating values by @LudovicoRighi in #450 - Fix invocations to async func
load_jobs_dir
by @LudovicoRighi in #451 - Bounce version
0.33.5
-->0.33.6
by @LudovicoRighi in #452
Full Changelog: v0.33.5...v0.33.6
v0.33.5
Bump version 0.33.4
-> 0.33.5
v0.33.4
Bump version 0.33.3
-> 0.33.4
v0.33.3
Bump version: 0.33.2
--> 0.33.3
v0.33.2
Bump version: 0.33.1 → 0.33.2
v0.33.1
Bump version: 0.33.0 → 0.33.1
v0.33.0
v0.32.0
Changes since v0.30.0:
ArchiveProgram
no longer vacuums the database file. Useapsis.program.internal.vacuum.VacuumProgram
to schedule this separately.- Configs
python.gc.enable
andpython.gc.threshold
configure the Python garbage collector.
This release requires changes to the schema of Apsis database files. To migrate an existing database,
- Stop Apsis.
- Create a backup of the database.
python scripts/migrate-db.py path/to/apsis.db
- Start the new version.
The migrated database is backward-compatible; it will continue to work with previous versions.
v0.31.0
ArchiveProgram
no longer vacuums the database file. Useapsis.program.internal.vacuum.VacuumProgram
to schedule this separately.
This release requires changes to the schema of Apsis database files. To migrate an existing database,
- Stop Apsis.
- Create a backup of the database.
python scripts/migrate-db.py path/to/apsis.db
- Start the new version.
The migrated database is backward-compatible; it will continue to work with previous versions.
v0.30.0
- Config
database.timeout
sets the sqlite lock timeout. - The run archive program takes
chunk_size
andchunk_sleep
parameters, to divide the archive operation into chunks with pauses in between.