mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
Merge pull request #3953 from dokku/3952-tar-fix
Use correct function name for cmd-tar-in and update migration guide
This commit is contained in:
@@ -28,6 +28,11 @@ The refactor of the proxy plugin removes the following functions from being sour
|
||||
|
||||
The informal policy is to allow removal of functions within a `functions` file if they are not used in OSS plugins. Should you be affected by any such removals, please file an issue to expose the functionality via a plugin trigger.
|
||||
|
||||
### Function renames
|
||||
|
||||
- `tar#tar_in_cmd` was renamed to `tar#cmd-tar-in`. Users should avoid using `cmd-*` commands directly, and instead file an issue to have them exposed via a plugin trigger.
|
||||
- `tar#tar_from_cmd` was renamed to `tar#cmd-tar-from`. Users should avoid using `cmd-*` commands directly, and instead file an issue to have them exposed via a plugin trigger.
|
||||
|
||||
### Remove support for Unsupported Operating Systems
|
||||
|
||||
Dokku will no longer distribute packages for Ubuntu versions that have reached either End of Life or End of Standard Support (for LTS releases). This currently includes the following releases:
|
||||
|
||||
@@ -75,7 +75,7 @@ cmd-tar-from() {
|
||||
|
||||
verify_app_name "$APP"
|
||||
shift 2
|
||||
curl -# --insecure -L "$URL" | tar_in_cmd "tar:in" "$APP" "$@"
|
||||
curl -# --insecure -L "$URL" | cmd-tar-in "tar:in" "$APP" "$@"
|
||||
}
|
||||
|
||||
tar_receive_app() {
|
||||
|
||||
Reference in New Issue
Block a user