Giter Club home page Giter Club logo

cli's People

Contributors

ayalcin-mw avatar dependabot[bot] avatar github-actions[bot] avatar lukasfritzedev avatar martin-helmich avatar mfal avatar niristius avatar thueske avatar tillwestpfahl avatar yannikbramkamp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cli's Issues

`mail deliverybox list` does not use project context

The command mw mail deliverybox list should use the project-id context instead of complaining about a missing flag project-id.

~ ❯ mw context get 

Current CLI context

--project-id   e294bb27-a208-4512-ade3-21e4b1e917c5
--server-id    not set
--org-id       65543619-a808-4787-bf1d-8b454f648fb5

╭──────────────────────────────────────────────────────────────────────────────╮
│  NOTE                                                                        │
│  Use the mw context set command to set one of the values listed above.       │
╰──────────────────────────────────────────────────────────────────────────────╯

~ ❯ mw mail deliverybox list
╭──────────────────────────────────────────────────────────────────────────────╮
│ INVALID COMMAND FLAGS                                                        │
│                                                                              │
│ The flags that you provided for this command were invalid. The following     │
│ error occurred:                                                              │
│   Missing required flag project-id                                           │
│ See more help with --help                                                    │
╰──────────────────────────────────────────────────────────────────────────────╯

Output format JSON should always use ISO dates

When running the get command mw database mysql get with the flag --output json the dates are formatted as an ISO date string as expected.

~ ❯ mw database mysql get e404f33f-fce3-4f5b-ad47-************ --output json
{
  "createdAt": "2023-09-10T14:57:03.000Z",
  "id": "e404f33f-fce3-4f5b-ad47-************",
  "updatedAt": "2023-09-10T14:57:05.000Z",
  ...
}

Using the list command mw database mysql list --output json the date is shown in a human readable format.

~ ❯ mw database mysql list --output json                                    
[
  {
    "id": "e404f33f-fce3-4f5b-ad47-************",
    "createdAt": "25 minutes ago",
    ...
  }
]

If --output json is used, for all commands dates should be formatted as ISO dates.

mw ddev breaking

Affected issue

using mw-cli with cmd:

mw ddev init a-x11aaa --project-name K-PRJ-MW

To have to projekt cloned from mStudio as local ddev

Describe the issue

First, ddev asks the project type and the remote database to use (shouldn't it be clear, with the app <-> db-relation?)

Then, it breaks with:

╭──────────────────────────────────────────────────────────────────────────────╮
│ ERROR                                                                        │
│                                                                              │
│ An error occurred while executing this command:                              │
│                                                                              │
│   Error: ddev exited with code 1                                             │
│                                                                              │
│ If you believe this to be a bug, please open an issue at                     │
│ https://github.com/mittwald/cli/issues/new.                                  │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  Error: ddev exited with code 1
      at ChildProcess.<anonymous> (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/libexec/dist/rendering/process/process_exec.js:26:24)
      at ChildProcess.emit (node:events:513:28)
      at ChildProcess._handle.onexit (node:internal/child_process:291:12)

Any clue?

Thanks, Thomas

Add Lock Project

lock projects for security reason to avoid accidentally erasure
(additionally introduce project status option "active/inactive")

`user get` throws authentication error

Trying to execute mw user get gives the following error message

╭──────────────────────────────────────────────────────────────────────────────╮
│ API CLIENT ERROR                                                             │
│                                                                              │
│ An error occurred while communicating with the API: Unexpected response      │
│ status (expected 200, got: 403)                                              │
│                                                                              │
│ {                                                                            │
│   "params": {                                                                │
│     "traceId": "6bd48b719a2dd228"                                            │
│   },                                                                         │
│   "message": "No permissions to user or not existing",                       │
│   "type": "VError"                                                           │
│ }                                                                            │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  ApiClientError: Unexpected response status (expected 200, got: 403)
      at ApiClientError.fromResponse (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@mittwald/api-client-commons/dist/esm/core/ApiClientError.js:9:16)
      at assertStatus (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@mittwald/api-client-commons/dist/esm/types/assertStatus.js:4:30)
      at Get.run (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/dist/esm/GetBaseCommand.js:24:9)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async Get._run (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/command.js:117:22)
      at async Config.runCommand (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/config/config.js:329:25)
      at async Object.run (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/main.js:89:16)

The user is logged in, mw login status gives the user data and other command such as mw project list are working as well.

starting mysqldump via SSH on project xxx. error

When i make ddev pull I receive the following error:

Authenticating...
Set installation ID to xxx
Set project ID to xxx
connecting to 'ssh.vehlage.project.host' as 'xxx@xxx'
Obtaining databases...

  Dumping a MySQL database

  ✅ fetching database. done
  ✅ fetching main user. done
  ✅ fetching project. done
  ✅ creating a temporary database user. done
  ❌ starting mysqldump via SSH on project p-xxx. error

     An error occurred during this operation:
     AxiosError: Request failed with status code 412

  ✅ removing temporary database user. done
╭──────────────────────────────────────────────────────────────────────────────╮
│ ERROR                                                                        │
│                                                                              │
│ An error occurred while executing this command:                              │
│                                                                              │
│   AxiosError: Request failed with status code 412                            │
│                                                                              │
│ If you believe this to be a bug, please open an issue at                     │
│ https://github.com/mittwald/cli/issues/new                                   │
│ (​https://github.com/mittwald/cli/issues/new​).                              │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  AxiosError: Request failed with status code 412
      at settle (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/settle.js:19:12)
      at IncomingMessage.handleStreamEnd (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/adapters/http.js:589:11)
      at IncomingMessage.emit (node:events:529:35)
      at endReadableNT (node:internal/streams/readable:1400:12)
      at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
      at Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:45:41)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async getSSHConnectionForProject (file:///usr/lib/node_modules/@mittwald/cli/dist/lib/ssh/project.js:3:29)
      at async executeViaSSH (file:///usr/lib/node_modules/@mittwald/cli/dist/lib/ssh/exec.js:5:28)
      at async FancyProcessRenderer.runStep (file:///usr/lib/node_modules/@mittwald/cli/dist/rendering/process/process_fancy.js:42:28)
      at async Dump.exec (file:///usr/lib/node_modules/@mittwald/cli/dist/commands/database/mysql/dump.js:69:9)
      at async Dump.run (file:///usr/lib/node_modules/@mittwald/cli/dist/rendering/react/ExecRenderBaseCommand.js:18:24)
      at async Dump._run (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/command.js:304:22)
      at async Config.runCommand (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/config/config.js:432:25)
      at async Object.run (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/main.js:87:16)

Pull failed: failed to exec set -eu -o pipefail

database_output="/var/www/html/.ddev/.downloads/db.sql.gz"
database_id="${MITTWALD_DATABASE_ID:-}"

if [[ -z "${database_id}" ]] ; then
  database_id=$(mw app get -ojson | jq -r 'if has("linkedDatabases") then ((.linkedDatabases[] | select(.purpose == "primary")).databaseId) else empty end')
fi

if [[ -n "${database_id:-}" ]] ; then
  mw database mysql dump "${database_id}" --gzip -o "${database_output}"
else
  echo "app has no linked database; skipping database import"
  echo "" | gzip > "${database_output}"
fi
 on web: exit status 1

add mw mail ForwardAddress

I would be great to add aliasses in bulk mode with cli

found myself using the command line for migration of large number of mailboxes with great fun!

mw mail --help
[…]
mail address Create a new mail address
mail deliverybox Get a specific deliverybox

Use context to filter list command

I’ve currently set the org-id context

~ ❯ mw context get                                              

Current CLI context

--project-id   not set
--server-id    not set
--org-id       65543619-a808-4787-bf1d-×××××××

When calling mw project list all project are listed, wich includes projects from other organisations.

It would be great to have to option to filter the output by the current context org-id or server-id.

yarn generate:readme with inconsistent results

niristius commented 4 days ago
So I deleted the old branch since it was kinda stale and I am still trying to understand Node, yarn and oclif a bit more.
And since the changes are rather trivial I started over.

Sadly the yarn generate:readme command still adds newlines where they dont belong.

I tried

using Node 18, 20, 22
using oclif 4.14, 4.13, 4.12, 4.10, 3.17, 3.16, 3.15, 3.14
still no cigar.
@martin-helmich please advise

I have the same exact problem (see here). Also for some reason, the generated readme looks entirely different after a fresh repo clone.

Also yarn format changes the README formatting yet another way (which to be fair, is probably expected).

Add IndentityFile support for `project ssh`

Using the native ssh command its possible to set an identity file using the option -i.

     -i identity_file
             Selects a file from which the identity (private key) for public key authentication is read.  You can also specify a public key file to use the corresponding private key that is loaded in ssh-agent(1) when the private key file is not present locally.  The default is
             ~/.ssh/id_rsa, ~/.ssh/id_ecdsa, ~/.ssh/id_ecdsa_sk, ~/.ssh/id_ed25519, ~/.ssh/id_ed25519_sk and ~/.ssh/id_dsa.  Identity files may also be specified on a per-host basis in the configuration file.  It is possible to have multiple -i options (and multiple identities specified
             in configuration files).  If no certificates have been explicitly specified by the CertificateFile directive, ssh will also try to load certificate information from the filename obtained by appending -cert.pub to identity filenames.

It would be great if the command mw project ssh would support a similar option.

Since the identity file is user based it can be used for all projects. So another option would be to add a command like mw login identity-file to set the file globally, so it must not be provided every time the command project ssh is used.

`project` subcommands are inconsistent

Based on a feedback by @thueske:

Was mir jedoch noch nicht ganz klar ist und mich im ersten Moment verwirrt hat: Innerhalb mw project finde ich Cronjobs, Backups, Memberships, SFTP usw. Die Datenbanken, Domains und Mails hingegen auf oberster Ebene :thinking_face: Das hat sich mir jetzt nicht direkt erschlossen und ich würde es unter Projekt erwarten.

This is generally inconsistent, and as to not nest commands too deeply, I'd be in favour of placing the backup, ssh-user, sftp-user and cronjob commands on the top-level (next to database, domain and other project-related) commands, so that the project topic is reserved for editing the project aggregate in itself.

PR incoming.

Sort option has no effect to output

The option --sort for mw project list has no effect.

None of these commands produces an error, but the output table is sorted by created at.

mw project list --sort="customer-id" --extended
mw project list --sort="organisationId" --extended
mw project list --sort="customerId" --extended

DDEV: Error: Automatic project type detection failed.

I have a App of type Custom PHP app with a manually installed WordPress.

When trying to init an DDEV project using mw ddev init I get this Error:

Error: Automatic project type detection failed.

Bildschirmfoto 2024-04-26 um 13 45 28

I think in this case we have multiple options to handle this more gracefully:

  1. prompt for the project type (as it’s done already for project name and database)
  2. use --project-type=ddev as a default for DDEV

Add API-Token per Project

for testing or demo issues (e.g. new customers) it would be nice to create an api-token just for one project without creating a new account

How does filter option work?

I’m not able to figure out how the --filter option of the list commands should be used.

tried it using the command project list. I have tried every combination I was able to think about. Some examples

mw project list --filter="customerId=8b454f648fb5"
mw project list --filter "customerId=8b454f648fb5"
mw project list --filter "customerId=8b454f648fb5"
mw project list --filter="customer-id=8b454f648fb5"

Everything produce the same error:

│ ERROR                                                                        │
│                                                                              │
│ An error occurred while executing this command:                              │
│                                                                              │
│   Error: Filter flag has an invalid value                                    │
│                                                                              │

The OCLIF documentation provides this example:

$ example-cli users --filter="company=Group"

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  Error: Filter flag has an invalid value
      at Table.display (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/cli-ux/styled/table.js:68:23)
      at Object.table (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/cli-ux/styled/table.js:271:39)
      at ListFormatter.log (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/dist/esm/Formatter.js:31:12)
      at List.run (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/dist/esm/ListBaseCommand.js:27:24)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async List._run (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/command.js:117:22)
      at async Config.runCommand (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/config/config.js:329:25)
      at async Object.run (/opt/homebrew/Cellar/mw/1.0.0-alpha.21/libexec/node_modules/@oclif/core/lib/main.js:89:16)

Error when creating projects

Executing the command:

/Users/thueske [thueske@MBP-M1-Hueske] [11:27]
> mw project create -s b54845e8-81ad-462e-983a-2f00c5e040c6 -d "Example Project" -q -w

Throws the following error:

ERROR  Text string "a2371f43-6343-4465-8a2f-469d10fd807a" must be rendered inside <Text> component

file:///opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/ink/build/reconciler.js:127:19

 - createTextInstance (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/ink/build/reconciler.js:127:19)
 - completeWork (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:13653:40)
 - completeUnitOfWork (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18736:16)
 - performUnitOfWork (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18711:5)
 - workLoopSync (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18609:5)
 - renderRootSync (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18577:7)
 - performSyncWorkOnRoot (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18193:20)
 - flushSyncCallbacks (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:2936:22)
 - flushSyncCallbacksOnlyInLegacyMode (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:2915:5)
 - scheduleUpdateOnFiber (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:17646:7)

The project is nevertheless created without any problems.

Download latest Backup

To download the latest backup, I have to do two steps:

# get the latest backup id
mw backup list -o json | jq '.[0].id'
# download the backup
mw backup download <BACKUP-ID>

It would be awesome to have a “well known” ID latest which can be used to do this automatically:

mw backup download latest

Or this could be a flag, if given the BACKUP-ID would be optional:

mw backup download --latest

"ddev init" for custom apps without a linked database

Currently, the mw ddev init command inspects an app's .linkedDatabases fields; however, this field is (currently) only set on mittwald-managed applications, and not on custom apps.

Proposed solution:

  • Add a flag --database-id to the mw ddev init command with which the user can (optionally) provide the ID of the linked database
  • To avoid confusion (by initializing a DDEV project without cloning the database), the command should either A) fail or B) prompt the user for the database ID, when it can neither be determined automatically nor read from a flag.
  • Store that database ID somewhere in the DDEV environment, so that it can be re-used on subsequent mw ddev init calls.
  • Add a flag --without-database to explicitly initialize a project without a database

'mw domain get' only works with 'project-id' in context

Works only if it has been set via mw context set --project-id, but not with flag --project-id.

image

The projectID should also not be necessary to get a Domain, according to the API -> here.

But the command enforces it:

❯ mw domain get <my-domain-id>

ERROR  No project ID given. Please consult the --help page of this command or set a default project with 'mittwald context set --project-id <project-id>'

mw update fails

mw update
    Error: ENOENT: no such file or directory, open '/opt/homebrew/Cellar/mw/1.0.0-alpha.29/lib/client/bin/mw'
    Code: ENOENT
@mittwald/cli: Updating CLI from 1.0.0-alpha.29 to 1.0.0-alpha.41-2c79e9d... !
╭──────────────────────────────────────────────────────────────────────────────╮
│ ERROR                                                                        │
│                                                                              │
│ An error occurred while executing this command:                              │
│                                                                              │
│   Error: ENOENT: no such file or directory, open                             │
│   '/Users/twestpfahl/.local/share/mw/channel'                                │
│                                                                              │
│ If you believe this to be a bug, please open an issue at                     │
│ https://github.com/mittwald/cli/issues/new.                                  │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  Error: ENOENT: no such file or directory, open '/Users/twestpfahl/.local/share/mw/channel'

Context:

❯ mw --version
@mittwald/cli/1.0.0-alpha.29 darwin-arm64 node-v18.11.0

Not sure if this is a layer 8 problem or if this has been fixed already, but on my machine an mw update from 1.0.0-alpha.29 to 1.0.0-alpha.41 did not work.

I did the "update" now manually via

brew uninstall mittwaldw/cli/mw
brew install mittwaldw/cli/mw

SSH-Verbindung in Apps ermöglichen

Als Nutzer möchte ich mich nicht nur in das Default-Environment meines Projekts per SSH verbinden, sondern auch in die Apps, um z.B. die korrekte PHP-Version zur Verfügung zu haben.

Wrong and missing command descriptions

/Users/thueske [thueske@MBP-M1-Hueske] [11:27]
> mw project
Manage your projects, and also any kinds of user memberships concerning these projects.

[...]

COMMANDS
  project create      Get the details of a project

Add command to edit mail address

I just created some mail addresses with mailboxes using mw mail address create --random-password --enable-spam-protection --quiet --address .... After this I wanted to ad a forward address in addition to the mailbox. This is currently not possible with the CLI.

  • Add command to edit an existing mail address:
    • add forwardAddresses
    • de-/activate spam protection
    • ...
  • add option to mw mail address create to force a mailbox even if --forward-to option is set

Add support for MySQL option files

          Support for a [mysql options file](https://dev.mysql.com/doc/refman/8.0/en/option-files.html) would be awesome

--defaults-extra-file="~/files/.my.cnf"

This is only a feature idea and could also be a improvement for a follow up pull request.

Originally posted by @LukasFritzeDev in #243 (comment)

Creating a new MySQL database - fetching user fails

Creating a new MySQL database works, but fetching the created user fails:

mw database mysql create --description="my description" --version="8.0"

  Creating a new MySQL database

  ❓ enter password for default user: ******************************************************************************************************************************** 
  ✅ creating MySQL database. done
  ✅ fetching database. done
  ❌ fetching user. error

     An error occurred during this operation:
     ApiClientError: Unexpected response status (expected 200, got: 403)

╭──────────────────────────────────────────────────────────────────────────────╮
│ API CLIENT ERROR                                                             │
│                                                                              │
│ An error occurred while communicating with the API: Unexpected response      │
│ status (expected 200, got: 403)                                              │
│                                                                              │
│ {                                                                            │
│   "params": {                                                                │
│     "traceId": "f727d21f1f6ad105"                                            │
│   },                                                                         │
│   "message": "access denied; verdict: abstain",                              │
│   "type": "PermissionDenied"                                                 │
│ }                                                                            │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  ApiClientError: Unexpected response status (expected 200, got: 403)
      at ApiClientError.fromResponse (file:///var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/node_modules/@mittwald/api-client-commons/dist/esm/core/ApiClientError.js:9:16)
      at assertOneOfStatus (file:///var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/node_modules/@mittwald/api-client-commons/dist/esm/types/assertOneOfStatus.js:4:30)
      at assertStatus (file:///var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/node_modules/@mittwald/api-client-commons/dist/esm/types/assertStatus.js:3:5)
      at file:///var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/dist/commands/database/mysql/create.js:86:13
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async FancyProcessRenderer.runStep (file:///var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/dist/rendering/process/process_fancy.js:42:28)
      at async Create.exec (file:///var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/dist/commands/database/mysql/create.js:82:22)
      at async Create.run (file:///var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/dist/rendering/react/ExecRenderBaseCommand.js:18:24)
      at async Create._run (/var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/command.js:304:22)
      at async Config.runCommand (/var/lib/nvm/versions/node/v18.17.0/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/config/config.js:426:25)

Command for installing PHP app installs me node app

/Users/thueske [thueske@MBP-M1-Hueske] [11:38]
> mw app install php -p a028837b-3507-41c2-9402-cb46cd88e0d8 --site-title="WordPress" -q -w

  ERROR  Text string "233ea8ec-2f23-4469-93f4-4eb68c93d328" must be rendered inside <Text> component

 file:///opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/ink/build/reconciler.js:127:19

 - createTextInstance (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/ink/build/reconciler.js:127:19)
 - completeWork (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:13653:40)
 - completeUnitOfWork (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18736:16)
 - performUnitOfWork (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18711:5)
 - workLoopSync (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18609:5)
 - renderRootSync (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18577:7)
 - performSyncWorkOnRoot (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:18193:20)
 - flushSyncCallbacks (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:2936:22)
 - flushSyncCallbacksOnlyInLegacyMode (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:2915:5)
 - scheduleUpdateOnFiber (/opt/homebrew/Cellar/mw/1.0.0-alpha.20/libexec/node_modules/react-reconciler/cjs/react-reconciler.development.js:17646:7)
image

Add link to Github project in Error message

The error messages include the hint to open a bug report.

Please provide this when opening a bug report.

I think it would be be useful to add a link to this Github project to save the user searching for the project.

Self-update from v1.0.0-alpha.47 to v1.0.0-beta.1 fails

$ mw update
@mittwald/cli: Updating CLI from 1.0.0-alpha.47-2c1739a to 1.0.0-beta.2-d3b403f... !
╭──────────────────────────────────────────────────────────────────────────────╮
│ ERROR                                                                        │
│                                                                              │
│ An error occurred while executing this command:                              │
│                                                                              │
│   RequestError: Invalid number                                               │
│                                                                              │
│ If you believe this to be a bug, please open an issue at                     │
│ https://github.com/mittwald/cli/issues/new.                                  │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  RequestError: Invalid number
      at Request._beforeError (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:310:21)
      at Request._onResponse (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:772:18)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at filesize (/opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/filesize/lib/filesize.js:69:12)
      at filesize (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update/dist/update.js:11:27)
      at Request.<anonymous> (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update/dist/update.js:326:60)
      at Request.emit (node:events:513:28)
      at Request._onResponseBase (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:609:14)
      at Request._onResponse (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:768:24)
      at ClientRequest.<anonymous> (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:786:23)
      at Object.onceWrapper (node:events:628:26)
      at ClientRequest.emit (node:events:525:35)
      at HTTPParser.parserOnIncomingClient [as onIncoming] (node:_http_client:693:27)

Full output with DEBUG=*
$ DEBUG=* mw update
/opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/bin/mw update
MW_BINPATH=/opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/bin/mw /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/node /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/run update
  oclif:main process.execPath: /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/node +0ms
  oclif:main process.execArgv:  +1ms
  oclif:main process.argv: [
  oclif:main   '/opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/node',
  oclif:main   '/opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/run',
  oclif:main   'update'
  oclif:main ] +0ms
  find-root:root-plugin Finding root plugin using /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/run.js +0ms
  find-root:root-plugin Finding root starting at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/run.js +0ms
  find-root:root-plugin Checking /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/bin/package.json +0ms
  find-root:root-plugin Checking /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/package.json +0ms
  find-root:root-plugin Found root by traversing up from starting point! +0ms
  find-root:root-plugin Found root at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a +0ms
  config loading core plugin from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a +0ms
  config:@mittwald/cli command discovery options {
  globPatterns: [
    '**/*.+(js|cjs|mjs|ts|tsx|mts|cts)',
    '!**/*.+(d.ts|test.ts|test.js|spec.ts|spec.js|d.mts|d.cts)?(x)'
  ],
  strategy: 'pattern',
  target: './dist/commands'
} +0ms
  config:ts-path Skipping typescript path lookup for /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a because NODE_ENV is NOT "test" or "development" +0ms
  config:@mittwald/cli loading IDs from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands +0ms
  config:@mittwald/cli found commands [
  'app:copy',
  'app:download',
  'app:get',
  'app:list-upgrade-candidates',
  'app:list',
  'app:ssh',
  'app:uninstall',
  'app:upgrade',
  'app:upload',
  'app:versions',
  'conversation:categories',
  'conversation:close',
  'conversation:create',
  'conversation:list',
  'conversation:reply',
  'conversation:show',
  'conversation:show2',
  'backup:create',
  'backup:delete',
  'backup:download',
  'backup:get',
  'backup:list',
  'context:get',
  'context:reset',
  'context:set',
  'domain:get',
  'domain:list',
  'ddev:init',
  'ddev:render-config',
  'cronjob:create',
  'cronjob:delete',
  'cronjob:execute',
  'cronjob:get',
  'cronjob:list',
  'login:reset',
  'login:status',
  'login:token',
  'project:create',
  'project:delete',
  'project:get',
  'project:list',
  'project:ssh',
  'project:update',
  'org:delete',
  'org:get',
  'org:invite',
  'org:list',
  'server:get',
  'server:list',
  'sftp-user:delete',
  'sftp-user:list',
  'ssh-user:delete',
  'ssh-user:list',
  'user:get',
  'app:dependency:list',
  'app:dependency:update',
  'app:dependency:versions',
  'app:create:node',
  'app:create:php',
  'app:create:python',
  'app:create:static',
  'backup:schedule:list',
  'domain:dnszone:get',
  'domain:dnszone:list',
  'domain:dnszone:update',
  'domain:virtualhost:create',
  'domain:virtualhost:delete',
  'domain:virtualhost:get',
  'domain:virtualhost:list',
  'app:install:contao',
  'app:install:drupal',
  'app:install:grav',
  'app:install:joomla',
  'app:install:matomo',
  'app:install:moodle',
  'app:install:neos',
  'app:install:nextcloud',
  'app:install:prestashop',
  'app:install:shopware5',
  'app:install:shopware6',
  'app:install:typo3',
  'app:install:wordpress',
  'cronjob:execution:abort',
  'cronjob:execution:get',
  'cronjob:execution:list',
  'cronjob:execution:logs',
  'database:redis:create',
  'database:redis:get',
  'database:redis:list',
  'database:redis:shell',
  'database:redis:versions',
  'database:mysql:charsets',
  'database:mysql:create',
  'database:mysql:delete',
  'database:mysql:dump',
  'database:mysql:get',
  'database:mysql:import',
  'database:mysql:list',
  'database:mysql:phpmyadmin',
  'database:mysql:port-forward',
  ... 37 more items
] +8ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/ddev/init.js +357ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/upgrade.js +3ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/versions.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/ssh.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/download.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/upload.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/ddev/render-config.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/ssh.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/update.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/membership/get-own.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/redis/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/backup/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/mail/address/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/dnszone/update.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/virtualhost/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/context/set.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/context/reset.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/login/token.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/redis/shell.js +1ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/import.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/dump.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/conversation/close.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/copy.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/execute.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/dependency/update.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/membership/revoke.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/invite/revoke.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/api-token/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/backup/download.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/execution/abort.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/ssh-key/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/ssh-key/import.js +1ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/execution/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/redis/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/mail/address/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/mail/deliverybox/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/invite/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/membership/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/api-token/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/session/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/ssh-key/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/user/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/login/reset.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/create.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/server/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/invite.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/create/node.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/create/php.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/create/python.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/create/static.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/grav.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/matomo.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/moodle.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/drupal.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/neos.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/contao.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/joomla.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/nextcloud.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/prestashop.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/wordpress.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/typo3.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/shopware6.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/install/shopware5.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/shell.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/port-forward.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/mail/address/update.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/uninstall.js +1ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/virtualhost/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/mail/address/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/api-token/revoke.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/ssh-key/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/backup/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/sftp-user/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/ssh-user/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/user/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/delete.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/phpmyadmin.js +5ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/conversation/create.js +2ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/conversation/reply.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/execution/logs.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/login/status.js +26ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/conversation/list.js +1ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/mail/deliverybox/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/invite/list-own.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/invite/list-own.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/membership/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/conversation/show.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/mail/address/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/execution/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/backup/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/invite/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/membership/list-own.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/membership/list-own.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/api-token/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/ssh-key/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/user/session/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/invite/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/membership/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/conversation/categories.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/server/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/dependency/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/dependency/versions.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/charsets.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/versions.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/user/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/list.js +1ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/ssh-user/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/sftp-user/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/backup/schedule/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/virtualhost/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/redis/versions.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/redis/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/database/mysql/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/list-upgrade-candidates.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/dnszone/list.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/backup/get.js +34ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/conversation/show2.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/context/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/cronjob/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/org/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/dnszone/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/domain/virtualhost/get.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/project/filesystem/usage.js +0ms
  config:@mittwald/cli (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/dist/commands/app/get.js +0ms
  config reading user plugins pjson /Users/mhelmich/.local/share/mw/package.json +0ms
  config loading plugins [
  '@oclif/plugin-autocomplete',
  '@oclif/plugin-help',
  '@oclif/plugin-update',
  '@oclif/plugin-warn-if-update-available'
] +3ms
  find-root:@oclif/plugin-autocomplete Finding root using /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a +0ms
  find-root:@oclif/plugin-autocomplete Found starting point with require.resolve +0ms
  find-root:@oclif/plugin-autocomplete Finding root starting at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-autocomplete/lib +0ms
  find-root:@oclif/plugin-autocomplete Found root based on plugin name! +0ms
  find-root:@oclif/plugin-help Finding root using /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a +0ms
  find-root:@oclif/plugin-help Found starting point with require.resolve +0ms
  find-root:@oclif/plugin-help Finding root starting at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-help/lib +0ms
  find-root:@oclif/plugin-help Found root based on plugin name! +0ms
  find-root:@oclif/plugin-update Finding root using /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a +0ms
  find-root:@oclif/plugin-update require.resolve could not find plugin starting point +0ms
  find-root:@oclif/plugin-update Finding root using legacy method +0ms
  find-root:@oclif/plugin-warn-if-update-available Finding root using /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a +0ms
  find-root:@oclif/plugin-warn-if-update-available Found starting point with require.resolve +0ms
  find-root:@oclif/plugin-warn-if-update-available Finding root starting at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-warn-if-update-available/lib +0ms
  find-root:@oclif/plugin-warn-if-update-available Found root based on plugin name! +0ms
  find-root:@oclif/plugin-autocomplete Found root at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-autocomplete +0ms
  find-root:@oclif/plugin-help Found root at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-help +0ms
  find-root:@oclif/plugin-warn-if-update-available Found root at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-warn-if-update-available +0ms
  config loading core plugin from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-autocomplete +0ms
  config loading core plugin from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-help +0ms
  config loading core plugin from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-warn-if-update-available +0ms
  find-root:@oclif/plugin-update Found root at /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update +0ms
  config loading core plugin from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update +0ms
  config:@oclif/plugin-autocomplete command discovery options {
  globPatterns: [
    '**/*.+(js|cjs|mjs|ts|tsx|mts|cts)',
    '!**/*.+(d.ts|test.ts|test.js|spec.ts|spec.js|d.mts|d.cts)?(x)'
  ],
  strategy: 'pattern',
  target: './lib/commands'
} +0ms
  config:@oclif/plugin-help command discovery options {
  globPatterns: [
    '**/*.+(js|cjs|mjs|ts|tsx|mts|cts)',
    '!**/*.+(d.ts|test.ts|test.js|spec.ts|spec.js|d.mts|d.cts)?(x)'
  ],
  strategy: 'pattern',
  target: './lib/commands'
} +0ms
  config:@oclif/plugin-warn-if-update-available command discovery options undefined +0ms
  config:@oclif/plugin-update command discovery options {
  globPatterns: [
    '**/*.+(js|cjs|mjs|ts|tsx|mts|cts)',
    '!**/*.+(d.ts|test.ts|test.js|spec.ts|spec.js|d.mts|d.cts)?(x)'
  ],
  strategy: 'pattern',
  target: './dist/commands'
} +0ms
  config:@oclif/plugin-autocomplete using manifest from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-autocomplete/oclif.manifest.json +0ms
  config:@oclif/plugin-help using manifest from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-help/oclif.manifest.json +1ms
  config:@oclif/plugin-warn-if-update-available using manifest from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-warn-if-update-available/oclif.manifest.json +1ms
  config:@oclif/plugin-update using manifest from /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update/oclif.manifest.json +1ms
  config config done +0ms
  config start init hook +0ms
  config:ts-path Skipping typescript path lookup for /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-warn-if-update-available because NODE_ENV is NOT "test" or "development" +455ms
  config:ts-path Skipping typescript path lookup for /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update because NODE_ENV is NOT "test" or "development" +0ms
  mw:@oclif/plugin-warn-if-update-available:hooks:init start (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-warn-if-update-available/lib/hooks/init/check-update.js +0ms
  mw:@oclif/plugin-warn-if-update-available:hooks:init done +0ms
  mw:@oclif/plugin-update:hooks:init start (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update/dist/hooks/init.js +0ms
  mw:@oclif/plugin-update:hooks:init done +0ms
  config init hook done +2ms
  config runCommand update [] +0ms
  config:ts-path Skipping typescript path lookup for /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update because NODE_ENV is NOT "test" or "development" +2ms
  config:@oclif/plugin-update (import) /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update/dist/commands/update.js +82ms
  config start prerun hook +79ms
  config prerun hook done +0ms
  mw:update init version: @oclif/[email protected] argv: [] +0ms
  config start preparse hook +0ms
  config preparse hook done +0ms
  config start preupdate hook +573ms
  config preupdate hook done +0ms
  oclif-update extracting to /opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-beta.2-d3b403f.partial.79546 +0ms
@mittwald/cli: Updating CLI from 1.0.0-alpha.47-2c1739a to 1.0.0-beta.2-d3b403f... !
╭──────────────────────────────────────────────────────────────────────────────╮
│ ERROR                                                                        │
│                                                                              │
│ An error occurred while executing this command:                              │
│                                                                              │
│   RequestError: Invalid number                                               │
│                                                                              │
│ If you believe this to be a bug, please open an issue at                     │
│ https://github.com/mittwald/cli/issues/new.                                  │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  RequestError: Invalid number
      at Request._beforeError (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:310:21)
      at Request._onResponse (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:772:18)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at filesize (/opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/filesize/lib/filesize.js:69:12)
      at filesize (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update/dist/update.js:11:27)
      at Request.<anonymous> (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/@oclif/plugin-update/dist/update.js:326:60)
      at Request.emit (node:events:513:28)
      at Request._onResponseBase (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:609:14)
      at Request._onResponse (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:768:24)
      at ClientRequest.<anonymous> (file:///opt/homebrew/Cellar/mw/1.0.0-alpha.47/lib/client/1.0.0-alpha.47-2c1739a/node_modules/got/dist/source/core/index.js:786:23)
      at Object.onceWrapper (node:events:628:26)
      at ClientRequest.emit (node:events:525:35)
      at HTTPParser.parserOnIncomingClient [as onIncoming] (node:_http_client:693:27)

ddev pull mittwald leads to 403

When i try the ddev pull mittwald i get the following error after long time of waiting:

╭──────────────────────────────────────────────────────────────────────────────╮
│ ERROR                                                                        │
│                                                                              │
│ An error occurred while executing this command:                              │
│                                                                              │
│   AxiosError: Request failed with status code 403                            │
│                                                                              │
│ If you believe this to be a bug, please open an issue at                     │
│ https://github.com/mittwald/cli/issues/new                                   │
│ (​https://github.com/mittwald/cli/issues/new​).                              │
╰──────────────────────────────────────────────────────────────────────────────╯

  ERROR STACK TRACE

  Please provide this when opening a bug report.

  AxiosError: Request failed with status code 403
      at settle (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/settle.js:19:12)
      at IncomingMessage.handleStreamEnd (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/adapters/http.js:589:11)
      at IncomingMessage.emit (node:events:529:35)
      at endReadableNT (node:internal/streams/readable:1400:12)
      at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
      at Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:45:41)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:45:41)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async normalizeAppInstallationId (file:///usr/lib/node_modules/@mittwald/cli/dist/normalize_id.js:29:30)
      at Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:45:41)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async normalizeAppInstallationId (file:///usr/lib/node_modules/@mittwald/cli/dist/normalize_id.js:29:30)
      at async Set.run (file:///usr/lib/node_modules/@mittwald/cli/dist/commands/context/set.js:42:36)
      at Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:45:41)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async normalizeAppInstallationId (file:///usr/lib/node_modules/@mittwald/cli/dist/normalize_id.js:29:30)
      at async Set.run (file:///usr/lib/node_modules/@mittwald/cli/dist/commands/context/set.js:42:36)
      at async Set._run (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/command.js:304:22)
      at Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:45:41)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async normalizeAppInstallationId (file:///usr/lib/node_modules/@mittwald/cli/dist/normalize_id.js:29:30)
      at async Set.run (file:///usr/lib/node_modules/@mittwald/cli/dist/commands/context/set.js:42:36)
      at async Set._run (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/command.js:304:22)
      at async Config.runCommand (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/config/config.js:432:25)
      at Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:45:41)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async Axios.request (file:///usr/lib/node_modules/@mittwald/cli/node_modules/axios/lib/core/Axios.js:40:14)
      at async normalizeAppInstallationId (file:///usr/lib/node_modules/@mittwald/cli/dist/normalize_id.js:29:30)
      at async Set.run (file:///usr/lib/node_modules/@mittwald/cli/dist/commands/context/set.js:42:36)
      at async Set._run (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/command.js:304:22)
      at async Config.runCommand (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/config/config.js:432:25)
      at async Object.run (/usr/lib/node_modules/@mittwald/cli/node_modules/@oclif/core/lib/main.js:87:16)
Pull failed: exit status 1

A working API key and SSH user are stored. I can use all functions such as app list or app create, so I assume that I have both read and write access to my apps.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.