v4.0.12
Changes
- The CLI is now published as
datocmsinstead of@datocms/cli. Going forward, install with:npm install -g datocms - The binary name, commands, plugins, and on-disk config (
~/.config/datocms/...) are unchanged. This is purely a package-name change — shorter to type, matches the binary, and plays nicely withnpx datocms. @datocms/clikeeps working. It is now a thin alias that depends ondatocmsand re-exports its binary and programmatic API. Existing installs and code that doesimport { Client } from '@datocms/cli/lib/cma-client-node'continue to work unmodified.
Migrating
If you had the scoped package installed globally, uninstall it before installing the new one so they don't fight over the datocms binary:
npm uninstall -g @datocms/cli
npm install -g datocmsUser-installed plugins and saved profiles are preserved — they live under ~/.config/datocms and are shared between both install paths.
Also in this release
- Upgraded
@whatwg-node/fetchand external DatoCMS client dependencies to latest.