Skip to content

Commit 9a5d506

Browse files
authored
Prep release v0.7 (#282)
1 parent 525e74b commit 9a5d506

File tree

4 files changed

+133
-108
lines changed

4 files changed

+133
-108
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,8 @@ REFRESH_TOKEN=<YOUR_REFRESH>
1919
# the delay between executions of the queue.
2020
T_WAIT_MAIN = 1
2121

22+
# the time we set until we consider the machine to be timed out in seconds
23+
T_TIMEOUT = 300
24+
2225
# the base64 encoded private key for signing results
2326
PRIVATE_JWK_STR = "<YOUR_PRIVATE_KEY>"

docs/releases.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,28 @@ comments: true
66

77
In this guide we will cover the key information about the different releases.
88

9+
## v0.7
10+
11+
We focused on a simpler usage of the sqooler in this release and the stabilization of the code.
12+
13+
### What's Changed
14+
* Make the operational status depend on last checked
15+
* Fix the default if the `private_jwk` is missing
16+
* Make the delay between runs in the main loop adjustable
17+
* Remove the operational status from the backend config. Now calculated directly from the last time the queued was checked
18+
* Sign also upload status
19+
* Identify the kid with the display name of the spooler
20+
* Add a simple option to verify results
21+
* Have a command line option to create the private jwk string
22+
* Fail get next safely if no config is presen
23+
* Cleaner tests for improved coverage and more precise testing
24+
* Migration fixes for upgrades from v0.6
25+
26+
### Migration Guide
27+
28+
- The operational status is now dependent on the last checked in time. This means that the operational status is now only `True` if the last checked in time is less than the `T_TIMEOUT`. It can be set as a config variable.
29+
- `T_WAIT_MAIN` set the relay between loops in the `main` function. It can be set as a config variable.
30+
931
## v0.6
1032

1133
In this release, we continued the work on clean typing and we introduced first concepts for better security and logging, so extending the list of features.

0 commit comments

Comments
 (0)