Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: golangci/golangci-lint-action@v6
with:
# The `only-new-issues` flag is not working (https://github.com/golangci/golangci-lint-action/issues/531).
# We rather decided to use the suggestion from the FAQ (https://golangci-lint.run/usage/faq/#how-to-integrate-golangci-lint-into-large-project-with-thousands-of-issues) and use `--new-from-rev`
# We rather decided to use the suggestion from the FAQ (https://golangci-lint.run/welcome/faq/#how-to-integrate-golangci-lint-into-large-project-with-thousands-of-issues) and use `--new-from-rev`
# only-new-issues: false
args: "--config=$(pwd)/.golangci.yml --new-from-rev=${{ steps.new-from-rev.outputs.NEW_FROM_REV }}"

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### To be Released

* feat(regionmigrations): remove the commands

### 1.34.0

* feat(database/users): raise minimum user password length to 24 ([PR#1077](https://github.com/Scalingo/cli/pull/1077))
Expand Down
42 changes: 22 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,23 +65,32 @@ COMMANDS:
help Shows a list of commands or help for one command

Addons:
addons List used add-ons
addons-add Provision an add-on for your application
addons-remove Remove an existing addon from your app
addons-upgrade Upgrade or downgrade an add-on attached to your app
addons-info Display information about an add-on attached to your app
backups-config Configure the periodic backups of a database
database-enable-feature Enable a togglable feature from a database
database-disable-feature Enable a togglable feature from a database
backups List backups for an addon
backups-create Ask for a new backup
backups-download Download a backup
backup-download Download a backup
addons List used add-ons
addons-add Provision an add-on for your application
addons-remove Remove an existing addon from your app
addons-upgrade Upgrade or downgrade an add-on attached to your app
addons-info Display information about an add-on attached to your app
addons-config Configure an add-on attached to your app
backups-config Configure the periodic backups of a database
database-enable-feature Enable a togglable feature from a database
database-disable-feature Enable a togglable feature from a database
database-users-list, database-list-users Print database's users
database-users-delete, database-delete-user Delete a database's user
database-users-create, database-create-user Create new database user
database-users-update-password, database-update-user-password Update a database user's password
database-maintenance-info Show a database maintenance
backups List backups for an addon
backups-create Ask for a new backup
backups-download Download a backup
backup-download Download a backup

Addons - Global:
addons-list List all addons
addons-plans List plans

Addons Maintenance:
database-maintenance-list List the past and future maintenance on the given database

Alerts:
alerts List the alerts of an application
alerts-add Add an alert to an application metric
Expand Down Expand Up @@ -211,13 +220,6 @@ COMMANDS:
keys-add Add a public SSH key to deploy your apps
keys-remove Remove a public SSH key

Region migrations:
migration-create Start migrating an app to another region
migration-run Run a specific migration step
migration-abort Abort a migration
migrations List all migrations linked to an app
migration-follow Follow a running migration

Review Apps:
review-apps Show review apps of the parent application

Expand Down Expand Up @@ -316,4 +318,4 @@ You can now update the [changelog](https://doc.scalingo.com/changelog) and tweet
> [Changelog] CLI - Release of version 1.34.0 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix

Add in a tweets thread the changelog of this new version.
1.34.0
1.34.0
33 changes: 0 additions & 33 deletions cmd/autocomplete/region_migrations.go

This file was deleted.

7 changes: 0 additions & 7 deletions cmd/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,6 @@ var (
&autoscalersDisableCommand,
&autoscalersEnableCommand,

// Migrations
&migrationCreateCommand,
&migrationRunCommand,
&migrationAbortCommand,
&migrationListCommand,
&migrationFollowCommand,

// Log drains
&logDrainsAddCommand,
&logDrainsListCommand,
Expand Down
177 changes: 0 additions & 177 deletions cmd/region_migrations.go

This file was deleted.

1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module github.com/Scalingo/cli

go 1.23.4
toolchain go1.24.1

require (
github.com/AlecAivazis/survey/v2 v2.3.7
Expand Down
69 changes: 0 additions & 69 deletions regionmigrations/confirmations.go

This file was deleted.

Loading