-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* log-server: add endpoint to get info about a run * log-server: log sequences and resuming with Store * log-api: run resuming * log-server: run resuming endpoint * log-client: logout * fix code formatting * react-experiment: remove useError * react-experiment: remove logger management from Run * log-api: update api * log-server: update api * runner: update interface * log-client: support for resume * run: remove init prop, add loading prop * log-client: refactor resume in its own method * log-server: fix tests, server app, and cli These were broken after a39df7e, which changed the admin role to the host role * log-server: updates * log-server: fix migrate database * log-server: fix store tests * update deps * react-experiment: support for resumeAfter prop * log-server: fix extraneous blocked run start * log-server: prevent resuming when a run is running * log-client returns log after which to resume * update deps and fix code style
- Loading branch information
1 parent
40e5b59
commit aed9788
Showing
57 changed files
with
5,267 additions
and
4,054 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@lightmill/log-server': major | ||
--- | ||
|
||
Clients now keep access to a run after having canceled or completed it. One must delete the session to remove a client's access to a run. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@lightmill/log-client': minor | ||
--- | ||
|
||
Log client logout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@lightmill/log-server': minor | ||
'@lightmill/log-api': minor | ||
--- | ||
|
||
Add endpoint to get run info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@lightmill/log-client': minor | ||
--- | ||
|
||
resumeRun returns the log after which the run has been resumed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@lightmill/log-server': minor | ||
'@lightmill/log-api': minor | ||
--- | ||
|
||
Add the ability to resume a running or canceled run. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@lightmill/react-experiment': minor | ||
--- | ||
|
||
Add resumeAfter Run prop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@lightmill/runner': major | ||
--- | ||
|
||
Update Runner interface. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@lightmill/log-server': patch | ||
--- | ||
|
||
Prevent resuming a run when there is already another run running |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@lightmill/log-server': patch | ||
--- | ||
|
||
Fix run start being blocked when there run in the session but they're all completed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "@lightmill/convert-touchstone", | ||
"packageManager": "[email protected]", | ||
"version": "3.0.0-alpha.8", | ||
"type": "module", | ||
"description": "Converts touchstone XML exports to lightmill format.", | ||
"packageManager": "[email protected]", | ||
"exports": { | ||
"default": "./dist/convert-touchstone.js", | ||
"*": "./dist/*" | ||
|
@@ -23,7 +23,7 @@ | |
"@lightmill/static-design": "workspace:*", | ||
"@types/sax": "^1.2.4", | ||
"cross-env": "^7.0.3", | ||
"typescript": "5.1.6", | ||
"typescript": "5.2.2", | ||
"vite": "^4.4.8", | ||
"vitest": "^0.34.1" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,5 @@ | |
"rootDir": "src", | ||
"outDir": "dist" | ||
}, | ||
"include": ["src/**/*.ts"] | ||
"include": ["./src/**/*.ts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.