Releases: QuentinRoy/lightmill-js
Releases · QuentinRoy/lightmill-js
@lightmill/[email protected]
Patch Changes
- Updated dependencies [2d3d87e]
- @lightmill/[email protected]
@lightmill/[email protected]
Patch Changes
- 2d3d87e: Remove package.json engines directive which fixes a warning when consumer uses a different node version.
- Updated dependencies [2d3d87e]
- @lightmill/[email protected]
@lightmill/[email protected]
Patch Changes
- 2d3d87e: Remove package.json engines directive which fixes a warning when consumer uses a different node version.
@lightmill/[email protected]
Major Changes
- aed9788: Update Runner interface.
@lightmill/[email protected]
Minor Changes
- aed9788: Add resumeAfter Run prop
Patch Changes
- Updated dependencies [aed9788]
- @lightmill/[email protected]
@lightmill/[email protected]
Patch Changes
- cd62201: Fix extra column "number" being exported
@lightmill/[email protected]
Major Changes
- 5b3eecd: Update log api : date isn't required anymore to save a log, but number is. Number is used to order logs, but also detect missing logs which date was not able to do.
- aed9788: 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.
- 5d9d8f3: createLogServer factory has been renamed to LogServer
- 5b3eecd: Change the database schema with no provided migration. Consequently this is incompatible with old database file. This is to account for the new log api, and eventually run resuming. DO NOT UPGRADE IF YOU HAVE LOGS IN YOUR DATABASE.
- 9021cd4: Stop exporting api types. Use export from @lightmill/log-api instead if needed.
- b426249: Change log api HTTP method to update run status: switch to patch instead of put.
- 956791f: Flatten urls to prevent collisions: post /experiments/runs -> post /runs, get /experiments/:experiment/runs/logs -> get /experiments/:experiment/logs.
Minor Changes
Patch Changes
- aed9788: Prevent resuming a run when there is already another run running
- aed9788: Fix run start being blocked when there run in the session but they're all completed
- Updated dependencies [5b3eecd]
- Updated dependencies [aed9788]
- Updated dependencies [aed9788]
- Updated dependencies [b426249]
- Updated dependencies [9021cd4]
- @lightmill/[email protected]
@lightmill/[email protected]
@lightmill/[email protected]
Major Changes
- 5b3eecd: Update log api : date isn't required anymore to save a log, but number is. Number is used to order logs, but also detect missing logs which date was not able to do.
- b426249: Change log api HTTP method to update run status: switch to patch instead of put.
- 9021cd4: Creation
Minor Changes
@lightmill/[email protected]
Major Changes
- 4ba84e4: Rename Store#addRunLogs to Store#addLogs.
- 4ba84e4: Stop sorting logs per type with SQLiteStore#getLogs. Creation date is more relevant. Also update the corresponding database index.
- 97ea257: Store has been renamed to SQLiteStore. The store type has been untied from the SQLiteStore class.
- 4ba84e4: Store#addLogs now requires a createdAt property for each log
Patch Changes
- 97ea257: fix clients being able to create two runs