- Adds a deprecation warning to the `workspace` parameter in `modal.Cls` lookup methods. This argument is unused and will be removed in the future.
0.73.69
- We've moved the `modal.functions.gather` function to be a staticmethod on `modal.FunctionCall.gather`. The former spelling has been deprecated and will be removed in a future version.
0.73.68
* Fixes issue where running `modal shell` with a dot-separated module reference as input would not accept the required `-m` flag for "module mode", but still emitted a warning telling users to use `-m`
0.73.60
* Fixes an issue where `modal.runner.deploy_app()` didn't work when called from within a running (remote) Modal Function
0.73.58
* Introduces an `-m` flag to `modal run`, `modal shell`, `modal serve` and `modal deploy`, which indicates that the modal app/function file is specified using python "module syntax" rather than a file path. In the future this will be a required flag when using module syntax.
Old syntax: sh modal run my_package/modal_main.py modal run my_package.modal_main
New syntax (note the `-m` on the second line): sh modal run my_package/modal_main.py modal run -m my_package.modal_main
0.73.54
- Passing `App.lookup` an invalid name now raises an error. App names may contain only alphanumeric characters, dashes, periods, and underscores, must be shorter than 64 characters, and cannot conflict with App ID strings.