Releases: codifycli/codify
Releases · codifycli/codify
Release list
Version 0.5.1 - Hotfix
We're happy to announce the new release of version 0.5.1 is released. This is a quick hotfix for the output of import and removes the incorrect surrounding JSON from the output.
0.5.0 - Huge performance uplift
Full Changelog: 0.4.0...0.5.0
We're happy to announce the new release of version 0.5.0 of the CLI and version 0.11.0 of the core plugin.
This version brings huge performance gains on all plans by as much as 7x to 9x faster. This was done by parallelizing commands across multiple resources and running background tasks to avoid the shell startup costs.
0.3.0
Features:
- Added importing. The import command allows users to automatically generate Codify configs based on the tools and programs already installed on their system. Just type
codify import <type1> [type2] [type3].... Type1, type2, type3 represent the type ids of the resources to be imported such as homebrew, nvm, jenv, etc... - Added UI to allow imports to specify the required parameters to configure the import. For example when importing an
alias, the name of the alias needs to be passed in. - Import will return a config of the current state of the resource on the system. If the resource is not found then an empty array will be returned.
- Import is supported in all output modes (
default,plain,debug)
BREAKING CHANGES:
- Re-named
uninstallcommand todestroyto match the name of the operation. The name destroy makes more sense in the context of creating and destroying resources which encompass more than tools and programs that can be installed or uninstalled.