From 4fda6c5978fa5e454905d9efa90fdc9d5f3a813e Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Thu, 4 Dec 2025 16:11:06 +0100 Subject: [PATCH 1/8] upgrade goreleaser version and make it perform a PR --- .github/workflows/goreleaser.yml | 6 +++--- .goreleaser.yml | 36 ++++++++++++++++++++------------ 2 files changed, 26 insertions(+), 16 deletions(-) diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 0e152da4..eacc5769 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -38,9 +38,9 @@ jobs: # snapcraft login --with <(echo "$SNAPCRAFT_LOGIN") - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v3 + uses: goreleaser/goreleaser-action@v6 with: - version: '~> v1' - args: release --rm-dist + version: "~> v2" + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} diff --git a/.goreleaser.yml b/.goreleaser.yml index 66125575..c03bc478 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,3 +1,4 @@ +version: 2 project_name: civo builds: - env: @@ -7,15 +8,17 @@ builds: - darwin - windows goarch: - - 386 - - amd64 - - arm - - arm64 + - "386" + - "amd64" + - "arm" + - "arm64" ignore: - goos: darwin - goarch: 386 + goarch: "386" - goos: windows - goarch: 386 + goarch: "386" + - goos: windows + goarch: "arm" ldflags: - -s -w -X github.com/civo/cli/common.VersionCli={{.Version}} -X github.com/civo/cli/common.CommitCli={{.Commit}} -X github.com/civo/cli/common.DateCli={{.Date}} checksum: @@ -32,16 +35,23 @@ archives: - name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}" format_overrides: - goos: windows - format: zip + formats: [zip] brews: - name: civo - tap: + repository: owner: civo name: homebrew-tools + branch: "{{ .ProjectName }}-{{ .Version }}" + pull_request: + enabled: true + base: + owner: civo + name: homebrew-tools + branch: master commit_author: name: civobot email: hello@civo.com - folder: Formula + directory: Formula homepage: "https://github.com/civo/cli" description: "CLI for managing Civo resources." dockers: @@ -54,15 +64,15 @@ dockers: - "civo/cli:{{ .Tag }}" dockerfile: docker/Dockerfile nfpms: - - file_name_template: '{{ .ProjectName }}_{{ .Arch }}' - homepage: https://github.com/civo/cli + - file_name_template: "{{ .ProjectName }}_{{ .Arch }}" + homepage: https://github.com/civo/cli description: Our Command Line Interface (CLI) for interacting with your Civo resources maintainer: Alejandro J. Nuñez Madrazo license: MIT vendor: Civo formats: - - deb - - rpm + - deb + - rpm # snapcrafts: # - name_template: "{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" # summary: Tool to handler all Civo cloud resource From 18a4b62edd219a6e39e39bcd7b100b44f25ce3b1 Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Thu, 4 Dec 2025 16:27:25 +0100 Subject: [PATCH 2/8] fix lint errors --- .github/tap-release.yml | 2 +- .github/workflows/{goreleaser.yml => release.yml} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{goreleaser.yml => release.yml} (100%) diff --git a/.github/tap-release.yml b/.github/tap-release.yml index 4f8c6d47..ad7c8170 100644 --- a/.github/tap-release.yml +++ b/.github/tap-release.yml @@ -1,4 +1,4 @@ -url: "https://github.com/civo/cli-go/releases/download/v$VERSION_NUMBER/civo_$VERSION_NUMBER_darwin_amd64.tar.gz +url: "https://github.com/civo/cli-go/releases/download/v$VERSION_NUMBER/civo_$VERSION_NUMBER_darwin_amd64.tar.gz" tap: civo/homebrew-tools/formula/civo.rb template: > class Civo < Formula diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/release.yml similarity index 100% rename from .github/workflows/goreleaser.yml rename to .github/workflows/release.yml From 149fa3b4e53fbed13ce2dd081f23ed1398a23639 Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Tue, 23 Dec 2025 11:27:03 +0100 Subject: [PATCH 3/8] fixes for better release stability --- .github/workflows/release.yml | 11 +---------- .goreleaser.yml | 26 +++++++++----------------- 2 files changed, 10 insertions(+), 27 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eacc5769..4c6b6ef9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,22 +21,12 @@ jobs: go-version: 1.24.x cache-dependency-path: go.sum - # - name: Set up Snapcraft - # run: | - # sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft - - name: Login to Docker Hub uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - # - name: Snapcraft Login - # env: - # SNAPCRAFT_LOGIN: ${{ secrets.SNAPCRAFT_LOGIN }} - # run: | - # snapcraft login --with <(echo "$SNAPCRAFT_LOGIN") - - name: Run GoReleaser uses: goreleaser/goreleaser-action@v6 with: @@ -44,3 +34,4 @@ jobs: args: release --clean env: GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} + GORELEASER_CURRENT_TAG: ${{ github.ref_name }} diff --git a/.goreleaser.yml b/.goreleaser.yml index c03bc478..2d53a512 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,5 +1,14 @@ version: 2 project_name: civo +release: + github: + owner: civo + name: cli + draft: true + use_existing_draft: true + prerelease: auto + make_latest: false + mode: replace builds: - env: - CGO_ENABLED=0 @@ -73,20 +82,3 @@ nfpms: formats: - deb - rpm -# snapcrafts: -# - name_template: "{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" -# summary: Tool to handler all Civo cloud resource -# description: | -# Civo CLI is a tool to handler all resource inside the Civo cloud, from the console. -# grade: stable -# confinement: strict -# publish: true -# apps: -# civo: -# plugs: ["network", "network-bind", "home", "personal-files"] -# plugs: -# personal-files: -# read: -# - $HOME/.civo.json -# write: -# - $HOME/.civo.json From eeb22003b9172e99236be5b12ab8f332a52c6f19 Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Tue, 23 Dec 2025 11:28:23 +0100 Subject: [PATCH 4/8] remove changelog outdated files --- CHANGELOG.md | 1751 ------ changelog.yml | 15427 ------------------------------------------------ 2 files changed, 17178 deletions(-) delete mode 100644 CHANGELOG.md delete mode 100644 changelog.yml diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 6183c0d4..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,1751 +0,0 @@ - -0.7.30 -============= -2021-07-21 - -* Fix abug in the kubernetes create cmd, modify the name of the utils for check the length of the name (2d4641bf) - -0.7.29 -============= -2021-07-21 - -* Fixed error in the creation of the cluster (dc4d01b3) - -0.7.28 -============= -2021-07-21 - -* Added node as required flag in the scaling cmd (681149f7) -* Fixed error in the cmd add app to the cluster (8a37fada) - -0.7.27 -============= -2021-07-18 - -* Merge pull request #105 from carehart/patch-1 (8e04f2a7) -* Added more info to all error (5961cbf2) -* Updated the Changelog (c638815f) -* Update the civogo lib to the v0.2.48 (9c740a65) -* Updated changelog (68719517) -* Merge pull request #103 from civo/Fix-apikey-newline (3489c95a) -* Merge pull request #102 from civo/apikey-stdin (7da655a3) -* Merge branch 'master' of https://github.com/civo/cli (9c4ebe11) -* Updated Changelog (e0370def) -* Fixed error in the network rm command (117ebe6c) -* Updated the Changelog (144c031f) -* Fixed error at the moment to set a new region (1d924e09) -* updated the README.md (3c4f01a4) -* Updated the Changelog (91217a27) -* Standardized json outputs (bc005a62) -* Updated the Changelog (d6bdf67c) -* Updated the civogo lib to 0.2.47 (e768441c) -* Merge branch 'master' of https://github.com/civo/cli (4f6e53f8) -* Added changes in the json output for all cmd (32a6e079) -* Added the --pretty global flag to print the json in pretty format (52bdd806) -* Merge branch 'master' of https://github.com/civo/cli (a77bb430) -* Fix error in the application show cmd (c54fdf15) -* Remove debug statement (912d2ba9) -* Fix for breaking new customers adding their first key (0172994e) -* Updated the changelog (f58d3a02) -* Fixed error introduce fixing the issue #90 (1994ff59) -* Updated changelog (fd42c9f6) -* Fixed error in every command exit status zero (2d838d49) -* Merge pull request #89 from rajatjindal/fix-log-msg (dc724656) -* Updated the changelog (197dc49e) -* Updated the civogo lib to 0.2.45 how fix problem in the instance cmd (faff826d) -* Updated the Changelog (4acd29bc) -* Merge pull request #87 from civo/fix-default-region (273cdb01) -* Updated Changelog (64b63375) -* Fixed error in instance create cmd, now you can delete multiple pool in a cluster (8965abe8) -* Updated Changelog (670a4d02) -* Fixed kubernetes cmd and hidde volume for now (717623a6) -* Updated the changelog (7dc15bba) -* Added muti remove option to k3s, network, instance, domain, ssh key, firewall (2f2d4a9f) -* Fixed error in the show cmd in the instance (b779d6c5) -* Update README.md (d2737d89) -* Updated the changelog (bb4b1b50) -* Fixed error in the CLI also added new cmd to instance and kuberntes and new param to the size and updated the README (8d95e547) -* Added the las version of civogo lib v0.2.37 (a762c1d7) -* Updated the changelog (cec81869) -* Updated the civogo lib to 0.2.36 this will be fix scaling , rename bugs (52b2612a) -* Updated the changelog (8f7a1e40) -* Updated the civogo lib to v0.2.35 (5bde617f) -* Now domain create show nameserver (b6b7dd60) -* Fixed error in CheckAPPName func (4fe41126) -* Updated the changelog (4f930c71) -* fixed error in the output of the CLI (1e962709) -* Added verification to the kubernetes utils (a7e16d8e) -* Fixed more error in golang code (ed88a8a9) -* Added some verification to k8s cluster (3af72def) -* Updated the civogo lib to v0.2.32 (efdfff99) -* Merge pull request #72 from stiantoften/typofix (0b4e3570) -* Merge pull request #69 from DoNnMyTh/patch-1 (b686accc) -* Updated the changelog (49fece65) -* Added new cmd to show the post-install for every app installed in the cluster (48dbcaf2) -* Merge pull request #66 from DoNnMyTh/patch-4 (f851ed70) -* Merge pull request #62 from beret/darwin-arm64 (ef8e37ed) -* Updated the changelog (e0640948) -* Merge branch 'master' of https://github.com/civo/cli (ea7b5b89) -* Chnage to go 1.16 to build the binary for Apple M1 too (3156e008) -* Update the the civogo lib to 0.2.28 and fix error in the show command of kubernetes (ee1783fa) -* Merge pull request #55 from martynbristow/master (621e66a6) -* Updated the changelog (3f876df7) -* Fixed bug when you create a kubernetes cluster, also add suggest to the remove command (8346ff20) -* Fixed bug in the kubernetes create command (2ea5e0d6) -* Updated the changelog (b4d974b9) -* - Added the merge flag to the create command (9c259c32) -* Merge branch 'master' of https://github.com/civo/cli (0aa31637) -* Fix error in the creation of kubernertes (ad87c6f8) -* Merge branch 'master' of https://github.com/civo/cli (6ac46a0e) -* modified the network field to use the label value and not the name (69d94728) -* Updated the changelog (32dfda47) -* Added the `-network` param to the firewall cmd (8bcd181d) -* Updated the changelog (92905a29) -* Fixed error in the goreleaser file (57186e0c) -* Updated gorelease to remove some deprecated options (a8973554) -* Updated the civogo lib to v0.2.26 (63385a00) -* Updated the README.md (30439ca9) -* Merge branch 'master' of https://github.com/civo/cli (331e0289) -* Updated the Change log (915f932e) -* Added the option to set the region in the config file (b9179edb) -* Support CIVOCONFIG as an ENV variable to override config file location (aeab4452) -* Fixed error in the README (82e09be5) -* Updated the Change log (c0992d34) -* Fixed error in the kubernetes list command (a1c3a587) -* Typo and readability fixes (#40) (17007e30) -* Merge pull request #38 from kaihoffman/master (98f6850d) -* Updated the Change log (34d531a1) -* Fixed error handling in all commands (5e789fe3) -* Updated the Change log (2d0cac5b) -* Update the civogo lib to v0.2.23 (2b8f4d92) -* Merge branch 'master' of https://github.com/civo/cli (9355e877) -* Fixed bug in the install script (585b9d16) -* Updated the Change log (9931669e) -* Merge pull request #34 from martynbristow/master (af8c5e7d) -* Updated the Change log (a2f4a29a) -* Updated the civogo lib to v0.2.22 (d5695bff) -* Merge pull request #33 from kaihoffman/master (a7b6ef7e) -* Updated the Change log (7ac95c35) -* Added the recycle cmd to kubernetes (d2457212) -* Updated the Change log (aebfdca4) -* Fixed the permission in the civo conf file (f89b57e5) -* Updated the Change log and README.md (aa214676) -* Added powershel and fish to the completion cmd (3ce2c969) -* Updated the civogo lib to v0.2.21 (8820f312) -* Update the Change log (cd403dc6) -* Merge pull request #30 from Johannestegner/master (b59581ea) -* Updated the apikey output (f2d000b9) -* Update README.md (318d5988) -* Updated the Change log (a4abc2b0) -* Add arm64 to build list (52beb72e) -* Updated the Change log (a1bbc43f) -* Updated the civogo lib to v0.2.19 (b99f4258) -* Update the Change log (9847d8c7) -* Updated the civogo lib to v0.2.18 (9879243a) -* Update README.md (102dd5d6) -* Update the gitignore (b4cce868) -* Update the README.md (999d0895) -* Updated Change log (8a7b09a7) -* Allowed SRV record type in the DNS command (594884e1) -* Updated civogo lib to v0.2.17 (10e6d50d) -* Update the Change log (1d9b34a1) -* Added STOPPING status (422d3933) -* Updated Change log (22d81d1e) -* improved the custom output (98939932) -* Updated Change log (9e48a633) -* Fixed error in the custom output (cc05acff) -* Updated the README (c8815d73) -* Update the Change log (3900c15e) -* Fixed typo error in the Dockerfile (9d479dae) -* Updated Change log (30376d69) -* Fixed error in the Dockerfile (73e5e0d8) -* Update the Change log (6054efff) -* Updated the Dockerfile to add curl (e2d0d5f8) -* Update the Change log (9ed54ddd) -* Added kubectl inside the docker image (65c2c23c) -* Updated Change log (f7fbd5be) -* Quota command improved (381ab929) -* Added new show command to apikey (cb8c73d5) -* Updated Change log (3fde5e29) -* Update the civogo lib to v0.2.16 (8257fb46) -* Fixed the config generator (5a2efa5e) -* Remove windows 386 build from goreleaser (ab8d0bba) -* Added verification to all commands (80a158ea) -* Add a little polish for DEVELOPER.md (2c616de4) -* Added the develper file (3fefaffb) -* Update the Change log (fab73578) -* Name changed to label in the message of remove (add3b7f4) -* Updated the message in the remove command (c7c57d9d) -* Update Chnage log (fbbdff45) -* Update civogo lib to v0.2.15 (09b3bbe2) -* Added verification before delete any object (a9c4334f) -* Checking correct flag for Kubernetes readiness (e0f543c4) -* Update Change log (e3c8e654) -* Merge pull request #15 from ssmiller25/k8s-doc-upd (9e0767c7) -* Update the Change log (d94a61c5) -* Added new features when creating a kubernetes cluster (fb51ae8c) -* Update Change log (90daeee9) -* Fixed bug in output writing component (53ef3806) -* Update the change log (4ae0bf8d) -* Update the civogo to 0.2.14, fixed error in the intance create cmd (78e107de) -* Update the change log (a6a6b4df) -* Fixed error in the instance module and in the color utility (8738797c) -* Update goreleaser conf (87542cb8) -* Fix error for goreleaser (50c1433c) -* Merge pull request #12 from civo/feature/auto_update (02a956f8) -* Update Change log (c10a147b) -* Fixed color in the error message (a30bb996) -* Update Change log (5257cc27) -* Added verification at the moment of delete a snapshot (911cb634) -* Change the lib to add color to the CLI (d35889a5) -* Update Change log (70021fc8) -* Fixed error in the configuration of the kubeconfig (87326d25) -* Update Change log (e702aa80) -* Merge all color utility in one place (6dd3b564) -* Fixed error in the --merge option for the kubernetes config in windows (1094c066) -* Update the README.md (cfb1259e) -* Update the change log (f811d3e2) -* Update the change log (91a21bdd) -* Added the --save and --switch option to kubernetes create (950a432d) -* Fixed typo in the kubernetes config error message (bf097440) -* Added verification to kubernetes config cmd (7e4bb504) -* Fix error in kubernetes utils (f1f46612) -* Now if you use --switch with --merge, automatically the cli will change the context in kubernetes (8b9fad39) -* Update the change log (5307d998) -* Removed option egress as direction when creating a firewall rule (7baf88f4) -* Changed the words used to define the direction in the firewall rule (3df9c5b6) -* Added .editorconfig (cfb6ca22) -* Update the Change log (442e1776) -* Added verification to the firewall rule creation (a7fc88f9) -* Added new verification step to the kubernetes config (f77cf09e) -* Update the change log (5dc1bcac) -* Added the option to install multiple application at the same time in the Kubernetes Cluster (611120b1) -* Update the change log (d6cc1d42) -* Added CPU, RAM and SSD fields to Instance and Kubernetes CMD (6c5cfec7) -* Update the change log (e88016ef) -* Added new feature (56719687) -* Fixed error in the Makefile (feb35382) -* Merge pull request #8 from ssmiller25/selective-make (6caba09c) -* Chnage the name of the fordel in Homebrew Formula (e96b84a4) -* Merge pull request #7 from ssmiller25/k3s-docs (4a70e48b) -* Fixed error in cli (10196c99) -* Add KubernetesVesion and UpgradeAvailableTo (d61e6a9a) -* Add nfpm and use the v2 of the goreleaser action (49d55069) -* Fixed the message to show after upgrade happened (396934a5) -* Upgrade the version of civogo lib (6ff45d0d) -* Fixed error in the kubernetes cmd (723028c1) -* Change the dockerfile to run as root (7f15c77b) -* fix: Fix error adding initil user (28c99ac9) -* Update the CHANGELOG (6669b296) -* fix: Fix message in the kubernetes upgrade cmd (05960c0b) -* docs: Update the CHANGELOG (ea04cc57) -* fix: Remove update from the cmd kubernetes show (6cb4144a) -* Added the CHANGELOG.md (e99843a4) -* Added new feature (f1726759) -* Fix correct version showing (83fe22c8) -* Added some feature (a356acaa) -* Fixed some errors (911f046e) -* Remove snap from release process (15d43a7c) -* Update kubernetes config (6413a22a) -* Update .goreleaser.yml (7ff511dd) -* Update .goreleaser.yml (a763c30b) -* Update .goreleaser.yml (3166ee2f) -* Fix error (787ad7de) -* Added some corrections (e5fe1faa) -* Fixed error in goreleaser (72708d8c) -* Modifications in logic (497e0750) -* Tweaks to install.sh (29250021) -* Add configuration to snap (148a0473) -* Update README.md (3bea636c) -* Update the badge (d118e1e3) -* Add badge to the README (0da2f4ff) -* Fix error in the config (8a1430f9) -* Fix user in the Dockerfile (b0d63fe2) -* Update the image to alpine the Dockerfile (0b182a0b) -* Update the Dockerfile (00942fdb) -* Update the cli (4d4ac165) -* Fix wording (0104cacd) -* Update README now this is the main tool (1597d82f) -* Remove comments (f42b14ac) -* Run new test (578d62d7) -* Test brews releaser (425f84f5) -* Try to fix Homebrew releasing (bdc4a966) -* Fix goreleaser.yml (4b0a350b) -* Add homebrew tap updating to goreleaser (2801d339) -* fix(Project): Added some fix (8ed9c0bf) -* Lots of minor tweaks (ef039b50) -* Changes to instance create (82901093) -* feat(Utility): Add TrackTime (7e16e37d) -* feat(Utility): Add random (268021cf) -* fix(Bug): Fix bug found in all code (47c14806) -* fix(Domain): Fix some error (04c0775e) -* feat(Install): Added install bash (2e584464) -* feat(Completion): Added completion cmd (11f44f4b) -* fix(Project): Fix the some bug (a082fdaf) -* fix(Volume): Fix the example (d3e46926) -* refactor(Project): Added example to all cmd (0119e351) -* fix(Network): Remove Name from the table (b5659302) -* fix(LoadBalancer): added new alias (2cb08795) -* refactor(Project): Modify all project error handler (36f932ee) -* fix(Version): fix text in version cmd (d4b80553) -* Merge remote-tracking branch 'origin/master' (732fcc41) -* fix(Version): fix text in version cmd (fe625b9b) -* fix(Version): update the version cmd (b4af168b) -* fix(Version): change the version cmd (17402302) -* fix(Version): update the version cmd (75fe68e8) -* fix(Version): Fixed the version cmd (f01cff84) -* fix(Goreleser): Fix the conf file (3ecf80b0) -* fix(Version): Fixed the version cmd (b35e0cf5) -* fix(Goreleser): Fix the conf file (122998f8) -* fix(Version): Upgrade the version of the civogo lib (c84e2461) -* feat(Version): Added the version cmd (aaa6a091) -* fix(Goreleser): Fix the conf file (f4b78e1b) -* fix(Goreleser): Fix the conf file (6beb0caf) -* fix(Goreleser): Fix the conf file (0953e531) -* fix(Goreleser): Fix the conf file (0ab428ae) -* fix(Goreleser): Fix the action file (2d05ff91) -* fix(Goreleser): Fix the conf file (5b12fdf7) -* fix(Goreleser): Fix the action file (44ad7dff) -* refactor(Project): Modify all project (bc2f508f) -* Merge pull request #2 from civo/dev (daccd7ba) -* Add all but one instance command (7ad58ed4) -* Split more commands out in to their own files (3f3b06e3) -* Split instance commands out to invidual files (2ce29790) -* Add console and reboot commands (d24951af) -* Add github token path to goreleaser (cd811766) -* Add testing workflow (d01e3ed8) -* Add goreleaser support (6410d22b) -* Add the first action command to instances (ec0634b6) -* Change OutputWriter to use labels as well as keys (52eeee28) -* Change to use Find* in civogo (e15de86c) -* Refactor to new OutputWriter (417c47aa) -* Add size command (f7201a09) -* Add quota command (a07f44a6) -* Add Region command (48cd4f0c) -* Complete API key management (bc9e3d53) -* Remove unnecessary comment (7f7fb17f) -* Remove (old) accidentally commited API keys (ea215e4f) -* Complete API key management functionality (94421615) -* Add API Key management (4beb5f1e) -* Update links in README (17848b68) -* Add plan to README (b9fc702c) -* First commit - initial makefile (38300f4e) -* feat(Template): Added the kubernetes cmd (0370dde0) -* feat(Goreleser): Fix the goreleaser file (59a4231c) -* feat(Template): Added the template cmd (4f406582) -* feat(Volume): Added the volume cmd (6a84a030) -* feat(snapshot): Added the snapshot cmd (775885d0) -* feat(network): Added the network cmd (6c6d035e) -* feat(sshkey): Added the ssh key cmd (4f3a6445) -* feat(loadbalancer): Added the cmd loadbalancer (410abb51) -* feat(firewall): Added the cmd firewall, and firewall rule (0ad42aed) -* feat(domain): Added the cmd domain record (51de188d) -* feat(domain): Added the cmd domain (698df535) -* feat(instance): Added the option to create instances (22dcec05) -* refactor(apikey): Modify the apikey (1d113038) -* refactor(apikey): Modify the apikey (430a4114) -* refactor(apikey): Modify the apikey function (a8310907) -* Update app name in tap-release (de91a6e0) -* Create automatic tap release (fa017dff) -* k8s usage update, and markdown linting (69f2d1d8) -* Selective Makefile (e6ed4e78) -* Updated the Change log (46b80c81) -* Added the auto update option to the cli (eb9ff675) -* Update on apps, minor quote addition (dc14aa15) -* Removed windows specific file removal, as it's not needed. (03287d31) -* Updated kubeconfig -s -m command to make sure the file is closed before trying to remove it. (2420613f) -* Grammar fixes in user output (d6ac0b6b) -* Fix Transcribe in WriteCustomOutput (813c6193) -* Failing Example Test for Fn WriteCustomOutput (0cc50313) -* Merge pull request #35 from jaysonsantos/patch-1 (7d637058) -* Add windows setup guide (d61ce9c2) -* Add recycle node info to README (910390c5) -* Reword error message when setting a region that doesn't exist (d872c509) -* Merge pull request #45 from DoNnMyTh/master (3d415046) -* Fixed typos, merged 2 region and regions section into one, added command to change region (c0982c82) -* Merge pull request #49 from DoNnMyTh/patch-1 (b3eacf1e) -* updated README.md (cc1bd1a5) -* Resolve Issues with install.sh (bef90aa0) -* Resolve missing fatal function (4cc77f89) -* Merge pull request #59 from DoNnMyTh/patch-2 (b4c36996) -* Merge pull request #58 from shanmukhkotharu/master (30461e9f) -* Update README.md (ec43b0a6) -* Update README.md (0fd2e34a) -* Updated Readme.md for chocolatey support (ad84c28d) -* Use arm64 binaries for arm64/aarch64 platforms (827c7d65) -* Minor README formatting for macOS and Civo CLI (2dadf24b) -* Updated readme.md (e0043d4a) -* Fixed spelling mistake (d17b03f9) -* Fix typo in default config (b1e0fc94) -* Add missing default region warning to all commands that need one (48f30857) -* Remove global warning on default regions as some commands don't need them (f91e4211) -* Add utility method to check for if a current region is set (36399b76) -* Don't set a default region when creating blank configs (and certainly not SVG1) (8986e650) -* Fix typo in variable name (824b617e) -* Get the default region from the API when adding an API key, if one isn't set (f9df4cd2) -* fix log msg (e3ca6605) -* Update README.md (f513044c) -* Merge pull request #95 from SubhasmitaSw/documentation (8050fae9) -* Update DEVELOPER.md (8c9aeadb) -* requested changes are updated. (fe316872) -* Improved the documentation and fixed little typos and punctuations (455828a0) -* Move error check (f3ea046b) -* Merge pull request #99 from dirien/fix-84 (f9476051) -* Merge branch 'master' of https://github.com/civo/cli (d96aa357) -* Update changelog (1b03bb2a) -* Add support to save API key from stdin (182692ca) -* Update changelog (7a9c9be1) -* Fix: removal of newline for api key name (d3533c97) -* correct grammar mistake in console message (af2fbafd) - -0.7.26 -============= -2021-07-15 - -* Update the civogo lib to the v0.2.48 (9c740a65) -* Updated changelog (68719517) -* Merge pull request #103 from civo/Fix-apikey-newline (3489c95a) -* Merge pull request #102 from civo/apikey-stdin (7da655a3) -* Merge branch 'master' of https://github.com/civo/cli (9c4ebe11) -* Updated Changelog (e0370def) -* Fixed error in the network rm command (117ebe6c) -* Updated the Changelog (144c031f) -* Fixed error at the moment to set a new region (1d924e09) -* updated the README.md (3c4f01a4) -* Updated the Changelog (91217a27) -* Standardized json outputs (bc005a62) -* Updated the Changelog (d6bdf67c) -* Updated the civogo lib to 0.2.47 (e768441c) -* Merge branch 'master' of https://github.com/civo/cli (4f6e53f8) -* Added changes in the json output for all cmd (32a6e079) -* Added the --pretty global flag to print the json in pretty format (52bdd806) -* Merge branch 'master' of https://github.com/civo/cli (a77bb430) -* Fix error in the application show cmd (c54fdf15) -* Remove debug statement (912d2ba9) -* Fix for breaking new customers adding their first key (0172994e) -* Updated the changelog (f58d3a02) -* Fixed error introduce fixing the issue #90 (1994ff59) -* Updated changelog (fd42c9f6) -* Fixed error in every command exit status zero (2d838d49) -* Merge pull request #89 from rajatjindal/fix-log-msg (dc724656) -* Updated the changelog (197dc49e) -* Updated the civogo lib to 0.2.45 how fix problem in the instance cmd (faff826d) -* Updated the Changelog (4acd29bc) -* Merge pull request #87 from civo/fix-default-region (273cdb01) -* Updated Changelog (64b63375) -* Fixed error in instance create cmd, now you can delete multiple pool in a cluster (8965abe8) -* Updated Changelog (670a4d02) -* Fixed kubernetes cmd and hidde volume for now (717623a6) -* Updated the changelog (7dc15bba) -* Added muti remove option to k3s, network, instance, domain, ssh key, firewall (2f2d4a9f) -* Fixed error in the show cmd in the instance (b779d6c5) -* Update README.md (d2737d89) -* Updated the changelog (bb4b1b50) -* Fixed error in the CLI also added new cmd to instance and kuberntes and new param to the size and updated the README (8d95e547) -* Added the las version of civogo lib v0.2.37 (a762c1d7) -* Updated the changelog (cec81869) -* Updated the civogo lib to 0.2.36 this will be fix scaling , rename bugs (52b2612a) -* Updated the changelog (8f7a1e40) -* Updated the civogo lib to v0.2.35 (5bde617f) -* Now domain create show nameserver (b6b7dd60) -* Fixed error in CheckAPPName func (4fe41126) -* Updated the changelog (4f930c71) -* fixed error in the output of the CLI (1e962709) -* Added verification to the kubernetes utils (a7e16d8e) -* Fixed more error in golang code (ed88a8a9) -* Added some verification to k8s cluster (3af72def) -* Updated the civogo lib to v0.2.32 (efdfff99) -* Merge pull request #72 from stiantoften/typofix (0b4e3570) -* Merge pull request #69 from DoNnMyTh/patch-1 (b686accc) -* Updated the changelog (49fece65) -* Added new cmd to show the post-install for every app installed in the cluster (48dbcaf2) -* Merge pull request #66 from DoNnMyTh/patch-4 (f851ed70) -* Merge pull request #62 from beret/darwin-arm64 (ef8e37ed) -* Updated the changelog (e0640948) -* Merge branch 'master' of https://github.com/civo/cli (ea7b5b89) -* Chnage to go 1.16 to build the binary for Apple M1 too (3156e008) -* Update the the civogo lib to 0.2.28 and fix error in the show command of kubernetes (ee1783fa) -* Merge pull request #55 from martynbristow/master (621e66a6) -* Updated the changelog (3f876df7) -* Fixed bug when you create a kubernetes cluster, also add suggest to the remove command (8346ff20) -* Fixed bug in the kubernetes create command (2ea5e0d6) -* Updated the changelog (b4d974b9) -* - Added the merge flag to the create command (9c259c32) -* Merge branch 'master' of https://github.com/civo/cli (0aa31637) -* Fix error in the creation of kubernertes (ad87c6f8) -* Merge branch 'master' of https://github.com/civo/cli (6ac46a0e) -* modified the network field to use the label value and not the name (69d94728) -* Updated the changelog (32dfda47) -* Added the `-network` param to the firewall cmd (8bcd181d) -* Updated the changelog (92905a29) -* Fixed error in the goreleaser file (57186e0c) -* Updated gorelease to remove some deprecated options (a8973554) -* Updated the civogo lib to v0.2.26 (63385a00) -* Updated the README.md (30439ca9) -* Merge branch 'master' of https://github.com/civo/cli (331e0289) -* Updated the Change log (915f932e) -* Added the option to set the region in the config file (b9179edb) -* Support CIVOCONFIG as an ENV variable to override config file location (aeab4452) -* Fixed error in the README (82e09be5) -* Updated the Change log (c0992d34) -* Fixed error in the kubernetes list command (a1c3a587) -* Typo and readability fixes (#40) (17007e30) -* Merge pull request #38 from kaihoffman/master (98f6850d) -* Updated the Change log (34d531a1) -* Fixed error handling in all commands (5e789fe3) -* Updated the Change log (2d0cac5b) -* Update the civogo lib to v0.2.23 (2b8f4d92) -* Merge branch 'master' of https://github.com/civo/cli (9355e877) -* Fixed bug in the install script (585b9d16) -* Updated the Change log (9931669e) -* Merge pull request #34 from martynbristow/master (af8c5e7d) -* Updated the Change log (a2f4a29a) -* Updated the civogo lib to v0.2.22 (d5695bff) -* Merge pull request #33 from kaihoffman/master (a7b6ef7e) -* Updated the Change log (7ac95c35) -* Added the recycle cmd to kubernetes (d2457212) -* Updated the Change log (aebfdca4) -* Fixed the permission in the civo conf file (f89b57e5) -* Updated the Change log and README.md (aa214676) -* Added powershel and fish to the completion cmd (3ce2c969) -* Updated the civogo lib to v0.2.21 (8820f312) -* Update the Change log (cd403dc6) -* Merge pull request #30 from Johannestegner/master (b59581ea) -* Updated the apikey output (f2d000b9) -* Update README.md (318d5988) -* Updated the Change log (a4abc2b0) -* Add arm64 to build list (52beb72e) -* Updated the Change log (a1bbc43f) -* Updated the civogo lib to v0.2.19 (b99f4258) -* Update the Change log (9847d8c7) -* Updated the civogo lib to v0.2.18 (9879243a) -* Update README.md (102dd5d6) -* Update the gitignore (b4cce868) -* Update the README.md (999d0895) -* Updated Change log (8a7b09a7) -* Allowed SRV record type in the DNS command (594884e1) -* Updated civogo lib to v0.2.17 (10e6d50d) -* Update the Change log (1d9b34a1) -* Added STOPPING status (422d3933) -* Updated Change log (22d81d1e) -* improved the custom output (98939932) -* Updated Change log (9e48a633) -* Fixed error in the custom output (cc05acff) -* Updated the README (c8815d73) -* Update the Change log (3900c15e) -* Fixed typo error in the Dockerfile (9d479dae) -* Updated Change log (30376d69) -* Fixed error in the Dockerfile (73e5e0d8) -* Update the Change log (6054efff) -* Updated the Dockerfile to add curl (e2d0d5f8) -* Update the Change log (9ed54ddd) -* Added kubectl inside the docker image (65c2c23c) -* Updated Change log (f7fbd5be) -* Quota command improved (381ab929) -* Added new show command to apikey (cb8c73d5) -* Updated Change log (3fde5e29) -* Update the civogo lib to v0.2.16 (8257fb46) -* Fixed the config generator (5a2efa5e) -* Remove windows 386 build from goreleaser (ab8d0bba) -* Added verification to all commands (80a158ea) -* Add a little polish for DEVELOPER.md (2c616de4) -* Added the develper file (3fefaffb) -* Update the Change log (fab73578) -* Name changed to label in the message of remove (add3b7f4) -* Updated the message in the remove command (c7c57d9d) -* Update Chnage log (fbbdff45) -* Update civogo lib to v0.2.15 (09b3bbe2) -* Added verification before delete any object (a9c4334f) -* Checking correct flag for Kubernetes readiness (e0f543c4) -* Update Change log (e3c8e654) -* Merge pull request #15 from ssmiller25/k8s-doc-upd (9e0767c7) -* Update the Change log (d94a61c5) -* Added new features when creating a kubernetes cluster (fb51ae8c) -* Update Change log (90daeee9) -* Fixed bug in output writing component (53ef3806) -* Update the change log (4ae0bf8d) -* Update the civogo to 0.2.14, fixed error in the intance create cmd (78e107de) -* Update the change log (a6a6b4df) -* Fixed error in the instance module and in the color utility (8738797c) -* Update goreleaser conf (87542cb8) -* Fix error for goreleaser (50c1433c) -* Merge pull request #12 from civo/feature/auto_update (02a956f8) -* Update Change log (c10a147b) -* Fixed color in the error message (a30bb996) -* Update Change log (5257cc27) -* Added verification at the moment of delete a snapshot (911cb634) -* Change the lib to add color to the CLI (d35889a5) -* Update Change log (70021fc8) -* Fixed error in the configuration of the kubeconfig (87326d25) -* Update Change log (e702aa80) -* Merge all color utility in one place (6dd3b564) -* Fixed error in the --merge option for the kubernetes config in windows (1094c066) -* Update the README.md (cfb1259e) -* Update the change log (f811d3e2) -* Update the change log (91a21bdd) -* Added the --save and --switch option to kubernetes create (950a432d) -* Fixed typo in the kubernetes config error message (bf097440) -* Added verification to kubernetes config cmd (7e4bb504) -* Fix error in kubernetes utils (f1f46612) -* Now if you use --switch with --merge, automatically the cli will change the context in kubernetes (8b9fad39) -* Update the change log (5307d998) -* Removed option egress as direction when creating a firewall rule (7baf88f4) -* Changed the words used to define the direction in the firewall rule (3df9c5b6) -* Added .editorconfig (cfb6ca22) -* Update the Change log (442e1776) -* Added verification to the firewall rule creation (a7fc88f9) -* Added new verification step to the kubernetes config (f77cf09e) -* Update the change log (5dc1bcac) -* Added the option to install multiple application at the same time in the Kubernetes Cluster (611120b1) -* Update the change log (d6cc1d42) -* Added CPU, RAM and SSD fields to Instance and Kubernetes CMD (6c5cfec7) -* Update the change log (e88016ef) -* Added new feature (56719687) -* Fixed error in the Makefile (feb35382) -* Merge pull request #8 from ssmiller25/selective-make (6caba09c) -* Chnage the name of the fordel in Homebrew Formula (e96b84a4) -* Merge pull request #7 from ssmiller25/k3s-docs (4a70e48b) -* Fixed error in cli (10196c99) -* Add KubernetesVesion and UpgradeAvailableTo (d61e6a9a) -* Add nfpm and use the v2 of the goreleaser action (49d55069) -* Fixed the message to show after upgrade happened (396934a5) -* Upgrade the version of civogo lib (6ff45d0d) -* Fixed error in the kubernetes cmd (723028c1) -* Change the dockerfile to run as root (7f15c77b) -* fix: Fix error adding initil user (28c99ac9) -* Update the CHANGELOG (6669b296) -* fix: Fix message in the kubernetes upgrade cmd (05960c0b) -* docs: Update the CHANGELOG (ea04cc57) -* fix: Remove update from the cmd kubernetes show (6cb4144a) -* Added the CHANGELOG.md (e99843a4) -* Added new feature (f1726759) -* Fix correct version showing (83fe22c8) -* Added some feature (a356acaa) -* Fixed some errors (911f046e) -* Remove snap from release process (15d43a7c) -* Update kubernetes config (6413a22a) -* Update .goreleaser.yml (7ff511dd) -* Update .goreleaser.yml (a763c30b) -* Update .goreleaser.yml (3166ee2f) -* Fix error (787ad7de) -* Added some corrections (e5fe1faa) -* Fixed error in goreleaser (72708d8c) -* Modifications in logic (497e0750) -* Tweaks to install.sh (29250021) -* Add configuration to snap (148a0473) -* Update README.md (3bea636c) -* Update the badge (d118e1e3) -* Add badge to the README (0da2f4ff) -* Fix error in the config (8a1430f9) -* Fix user in the Dockerfile (b0d63fe2) -* Update the image to alpine the Dockerfile (0b182a0b) -* Update the Dockerfile (00942fdb) -* Update the cli (4d4ac165) -* Fix wording (0104cacd) -* Update README now this is the main tool (1597d82f) -* Remove comments (f42b14ac) -* Run new test (578d62d7) -* Test brews releaser (425f84f5) -* Try to fix Homebrew releasing (bdc4a966) -* Fix goreleaser.yml (4b0a350b) -* Add homebrew tap updating to goreleaser (2801d339) -* fix(Project): Added some fix (8ed9c0bf) -* Lots of minor tweaks (ef039b50) -* Changes to instance create (82901093) -* feat(Utility): Add TrackTime (7e16e37d) -* feat(Utility): Add random (268021cf) -* fix(Bug): Fix bug found in all code (47c14806) -* fix(Domain): Fix some error (04c0775e) -* feat(Install): Added install bash (2e584464) -* feat(Completion): Added completion cmd (11f44f4b) -* fix(Project): Fix the some bug (a082fdaf) -* fix(Volume): Fix the example (d3e46926) -* refactor(Project): Added example to all cmd (0119e351) -* fix(Network): Remove Name from the table (b5659302) -* fix(LoadBalancer): added new alias (2cb08795) -* refactor(Project): Modify all project error handler (36f932ee) -* fix(Version): fix text in version cmd (d4b80553) -* Merge remote-tracking branch 'origin/master' (732fcc41) -* fix(Version): fix text in version cmd (fe625b9b) -* fix(Version): update the version cmd (b4af168b) -* fix(Version): change the version cmd (17402302) -* fix(Version): update the version cmd (75fe68e8) -* fix(Version): Fixed the version cmd (f01cff84) -* fix(Goreleser): Fix the conf file (3ecf80b0) -* fix(Version): Fixed the version cmd (b35e0cf5) -* fix(Goreleser): Fix the conf file (122998f8) -* fix(Version): Upgrade the version of the civogo lib (c84e2461) -* feat(Version): Added the version cmd (aaa6a091) -* fix(Goreleser): Fix the conf file (f4b78e1b) -* fix(Goreleser): Fix the conf file (6beb0caf) -* fix(Goreleser): Fix the conf file (0953e531) -* fix(Goreleser): Fix the conf file (0ab428ae) -* fix(Goreleser): Fix the action file (2d05ff91) -* fix(Goreleser): Fix the conf file (5b12fdf7) -* fix(Goreleser): Fix the action file (44ad7dff) -* refactor(Project): Modify all project (bc2f508f) -* Merge pull request #2 from civo/dev (daccd7ba) -* Add all but one instance command (7ad58ed4) -* Split more commands out in to their own files (3f3b06e3) -* Split instance commands out to invidual files (2ce29790) -* Add console and reboot commands (d24951af) -* Add github token path to goreleaser (cd811766) -* Add testing workflow (d01e3ed8) -* Add goreleaser support (6410d22b) -* Add the first action command to instances (ec0634b6) -* Change OutputWriter to use labels as well as keys (52eeee28) -* Change to use Find* in civogo (e15de86c) -* Refactor to new OutputWriter (417c47aa) -* Add size command (f7201a09) -* Add quota command (a07f44a6) -* Add Region command (48cd4f0c) -* Complete API key management (bc9e3d53) -* Remove unnecessary comment (7f7fb17f) -* Remove (old) accidentally commited API keys (ea215e4f) -* Complete API key management functionality (94421615) -* Add API Key management (4beb5f1e) -* Update links in README (17848b68) -* Add plan to README (b9fc702c) -* First commit - initial makefile (38300f4e) -* feat(Template): Added the kubernetes cmd (0370dde0) -* feat(Goreleser): Fix the goreleaser file (59a4231c) -* feat(Template): Added the template cmd (4f406582) -* feat(Volume): Added the volume cmd (6a84a030) -* feat(snapshot): Added the snapshot cmd (775885d0) -* feat(network): Added the network cmd (6c6d035e) -* feat(sshkey): Added the ssh key cmd (4f3a6445) -* feat(loadbalancer): Added the cmd loadbalancer (410abb51) -* feat(firewall): Added the cmd firewall, and firewall rule (0ad42aed) -* feat(domain): Added the cmd domain record (51de188d) -* feat(domain): Added the cmd domain (698df535) -* feat(instance): Added the option to create instances (22dcec05) -* refactor(apikey): Modify the apikey (1d113038) -* refactor(apikey): Modify the apikey (430a4114) -* refactor(apikey): Modify the apikey function (a8310907) -* Update app name in tap-release (de91a6e0) -* Create automatic tap release (fa017dff) -* k8s usage update, and markdown linting (69f2d1d8) -* Selective Makefile (e6ed4e78) -* Updated the Change log (46b80c81) -* Added the auto update option to the cli (eb9ff675) -* Update on apps, minor quote addition (dc14aa15) -* Removed windows specific file removal, as it's not needed. (03287d31) -* Updated kubeconfig -s -m command to make sure the file is closed before trying to remove it. (2420613f) -* Grammar fixes in user output (d6ac0b6b) -* Fix Transcribe in WriteCustomOutput (813c6193) -* Failing Example Test for Fn WriteCustomOutput (0cc50313) -* Merge pull request #35 from jaysonsantos/patch-1 (7d637058) -* Add windows setup guide (d61ce9c2) -* Add recycle node info to README (910390c5) -* Reword error message when setting a region that doesn't exist (d872c509) -* Merge pull request #45 from DoNnMyTh/master (3d415046) -* Fixed typos, merged 2 region and regions section into one, added command to change region (c0982c82) -* Merge pull request #49 from DoNnMyTh/patch-1 (b3eacf1e) -* updated README.md (cc1bd1a5) -* Resolve Issues with install.sh (bef90aa0) -* Resolve missing fatal function (4cc77f89) -* Merge pull request #59 from DoNnMyTh/patch-2 (b4c36996) -* Merge pull request #58 from shanmukhkotharu/master (30461e9f) -* Update README.md (ec43b0a6) -* Update README.md (0fd2e34a) -* Updated Readme.md for chocolatey support (ad84c28d) -* Use arm64 binaries for arm64/aarch64 platforms (827c7d65) -* Minor README formatting for macOS and Civo CLI (2dadf24b) -* Updated readme.md (e0043d4a) -* Fixed spelling mistake (d17b03f9) -* Fix typo in default config (b1e0fc94) -* Add missing default region warning to all commands that need one (48f30857) -* Remove global warning on default regions as some commands don't need them (f91e4211) -* Add utility method to check for if a current region is set (36399b76) -* Don't set a default region when creating blank configs (and certainly not SVG1) (8986e650) -* Fix typo in variable name (824b617e) -* Get the default region from the API when adding an API key, if one isn't set (f9df4cd2) -* fix log msg (e3ca6605) -* Update README.md (f513044c) -* Merge pull request #95 from SubhasmitaSw/documentation (8050fae9) -* Update DEVELOPER.md (8c9aeadb) -* requested changes are updated. (fe316872) -* Improved the documentation and fixed little typos and punctuations (455828a0) -* Move error check (f3ea046b) -* Merge pull request #99 from dirien/fix-84 (f9476051) -* Merge branch 'master' of https://github.com/civo/cli (d96aa357) -* Update changelog (1b03bb2a) -* Add support to save API key from stdin (182692ca) -* Update changelog (7a9c9be1) -* Fix: removal of newline for api key name (d3533c97) - -0.7.25 -============= -2021-07-09 - -* Merge pull request #103 from civo/Fix-apikey-newline (3489c95a) -* Merge pull request #102 from civo/apikey-stdin (7da655a3) - -0.7.24 -============= -2021-07-01 - -* Merge branch 'master' of https://github.com/civo/cli (d96aa357) -* Fixed error in the network rm command (117ebe6c) - -0.7.23 -============= -2021-06-11 - -* Fixed error at the moment to set a new region (1d924e09) -* updated the README.md (3c4f01a4) - -0.7.22 -============= -2021-05-23 - -* Standardized json outputs (bc005a62) - -0.7.21 -============= -2021-05-23 - -* Updated the civogo lib to 0.2.47 (e768441c) -* Merge branch 'master' of https://github.com/civo/cli (4f6e53f8) -* Added changes in the json output for all cmd (32a6e079) -* Added the --pretty global flag to print the json in pretty format (52bdd806) -* Merge branch 'master' of https://github.com/civo/cli (a77bb430) -* Fix error in the application show cmd (c54fdf15) -* Remove debug statement (912d2ba9) -* Fix for breaking new customers adding their first key (0172994e) - -0.7.19 -============= -2021-05-11 - -* Fixed error introduce fixing the issue #90 (1994ff59) - -0.7.18 -============= -2021-05-11 - -* Fixed error in every command exit status zero (2d838d49) -* Merge pull request #89 from rajatjindal/fix-log-msg (dc724656) - -0.7.17 -============= -2021-05-10 - -* Updated the civogo lib to 0.2.45 how fix problem in the instance cmd (faff826d) - -0.7.16 -============= -2021-05-10 - -* Add missing default region warning to all commands that need one (48f30857) -* Remove global warning on default regions as some commands don't need them (f91e4211) -* Add utility method to check for if a current region is set (36399b76) -* Don't set a default region when creating blank configs (and certainly not SVG1) (8986e650) -* Fix typo in variable name (824b617e) -* Get the default region from the API when adding an API key, if one isn't set (f9df4cd2) - -0.7.15 -============= -2021-05-08 - -* Fixed error in instance create cmd, now you can delete multiple pool in a cluster (8965abe8) - -0.7.14 -============= -2021-05-06 - -* Fixed kubernetes cmd and hidde volume for now (717623a6) - -0.7.13 -============= -2021-04-19 - -* Added multi remove option to k3s, network, instance, domain, ssh key, firewall (2f2d4a9f) -* Fixed error in the show cmd in the instance (b779d6c5) -* Update README.md (d2737d89) - -0.7.12 -============= -2021-04-14 - -* Fixed error in the CLI also added new cmd to instance and kuberntes and new param to the size and updated the README (8d95e547) -* Added the last version of civogo lib v0.2.37 (a762c1d7) - -0.7.11 -============= -2021-04-06 - -* Updated the civogo lib to 0.2.36 this will be fix scaling , rename bugs (52b2612a) - -0.7.10 -============= -2021-04-02 - -* Updated the civogo lib to v0.2.35 (5bde617f) -* Now domain create show nameserver (b6b7dd60) -* Fixed error in CheckAPPName func (4fe41126) - -0.7.9 -============= -2021-03-12 - -* Fixed error in the output of the CLI (1e962709) -* Added verification to the kubernetes utils (a7e16d8e) -* Fixed more error in golang code (ed88a8a9) -* Added some verification to k8s cluster (3af72def) -* Updated the civogo lib to v0.2.32 (efdfff99) -* Merge pull request #72 from stiantoften/typofix (0b4e3570) -* Merge pull request #69 from DoNnMyTh/patch-1 (b686accc) - -0.7.7 -============= -2021-03-10 - -* Added new cmd to show the post-install for every app installed in the cluster (48dbcaf2) -* Merge pull request #66 from DoNnMyTh/patch-4 (f851ed70) -* Merge pull request #62 from beret/darwin-arm64 (ef8e37ed) - -0.7.6 -============= -2021-02-28 - -* Merge branch 'master' of https://github.com/civo/cli (ea7b5b89) -* Chnage to go 1.16 to build the binary for Apple M1 too (3156e008) -* Update the the civogo lib to 0.2.28 and fix error in the show command of kubernetes (ee1783fa) -* Merge pull request #55 from martynbristow/master (621e66a6) -* Updated the changelog (3f876df7) - -0.7.4 -============= -2021-02-20 - -* Fixed bug when you create a kubernetes cluster, also add suggest to the remove command (8346ff20) -* Fixed bug in the kubernetes create command (2ea5e0d6) -* Updated the changelog (b4d974b9) - -0.7.3 -============= -2021-02-19 - -* - Added the merge flag to the create command (9c259c32) -* Merge branch 'master' of https://github.com/civo/cli (0aa31637) -* Fix error in the creation of kubernertes (ad87c6f8) -* Merge branch 'master' of https://github.com/civo/cli (6ac46a0e) -* modified the network field to use the label value and not the name (69d94728) -* Updated the changelog (32dfda47) - -0.7.2 -============= -2021-02-10 - -* Added the `-network` param to the firewall cmd also added the network to the list of firewall and updated to the last version of the civogo lib v0.2.27 (8bcd181d) -* Updated the changelog (92905a29) - -0.7.1 -============= -2021-02-09 - -* Fixed error in the goreleaser file (57186e0c) -* Updated gorelease to remove some deprecated options (a8973554) -* Updated the civogo lib to v0.2.26, Added a check in the instance and kubernetes command and remove some field from the region list (63385a00) -* Updated the README.md (30439ca9) - -0.7.0 -============= -2021-02-08 - -* Added region to the CLI (cc0a3c2a) -* Added the option to set the region in the config file (b9179edb) -* Support CIVOCONFIG as an ENV variable to override config file location (aeab4452) -* Fixed error in the README (82e09be5) - -0.6.46 -============= -2020-12-10 - -* Fixed error in the kubernetes list command (a1c3a587) -* Typo and readability fixes (#40) (17007e30) -* Merge pull request #38 from kaihoffman/master (98f6850d) - -0.6.45 -============= -2020-12-04 - -* Fixed error handling in all commands (5e789fe3) - -0.6.44 -============= -2020-12-04 - -* Update the civogo lib to v0.2.23 (2b8f4d92) -* Merge branch 'master' of https://github.com/civo/cli (9355e877) -* Fixed bug in the install script (585b9d16) - -0.6.43 -============= -2020-11-29 - -* Merge pull request #34 from martynbristow/master (af8c5e7d) - -0.6.42 -============= -2020-11-18 - -* Updated the civogo lib to v0.2.22 (d5695bff) -* Merge pull request #33 from kaihoffman/master (a7b6ef7e) - -0.6.41 -============= -2020-11-11 - -* Added the recycle cmd to kubernetes (d2457212) - -0.6.40 -============= -2020-11-07 - -* Fixed the permission in the civo conf file (f89b57e5) - -0.6.39 -============= -2020-11-02 - -* Added powershel and fish to the completion cmd (3ce2c969) -* Updated the civogo lib to v0.2.21 (8820f312) - -0.6.38 -============= -2020-10-16 - -* Merge pull request #30 from Johannestegner/master (b59581ea) -* Updated the apikey output (f2d000b9) -* Update README.md (318d5988) -* Updated the Change log (a4abc2b0) - -0.6.37 -============= -2020-10-09 - -* Add arm64 to build list (52beb72e) - -0.6.36 -============= -2020-09-25 - -* Updated the civogo lib to v0.2.19 (b99f4258) - -0.6.35 -============= -2020-09-23 - -* Updated the civogo lib to v0.2.18 (9879243a) -* Update README.md (102dd5d6) -* Update the gitignore (b4cce868) -* Update the README.md (999d0895) - -0.6.34 -============= -2020-09-13 - -* Allowed SRV record type in the DNS command (594884e1) -* Updated civogo lib to v0.2.17 (10e6d50d) - -0.6.33 -============= -2020-09-09 - -* Added STOPPING status (422d3933) - -0.6.32 -============= -2020-09-08 - -* improved the custom output (98939932) - -0.6.31 -============= -2020-09-07 - -* Fixed error in the custom output (cc05acff) -* Updated the README (c8815d73) -* Update the Change log (3900c15e) - -0.6.30 -============= -2020-09-04 - -* Fixed typo error in the Dockerfile (9d479dae) -* Updated Change log (30376d69) -* Fixed error in the Dockerfile (73e5e0d8) -* Update the Change log (6054efff) -* Updated the Dockerfile to add curl (e2d0d5f8) -* Update the Change log (9ed54ddd) -* Added kubectl inside the docker image (65c2c23c) - -0.6.29 -============= -2020-08-26 - -* Quota command improved (381ab929) -* Added new show command to apikey (cb8c73d5) - -0.6.28 -============= -2020-08-24 - -* Update the civogo lib to v0.2.16 (8257fb46) -* Fixed the config generator (5a2efa5e) -* Remove windows 386 build from goreleaser (ab8d0bba) -* Added verification to all commands (80a158ea) -* Add a little polish for DEVELOPER.md (2c616de4) -* Added the develper file (3fefaffb) - -0.6.27 -============= -2020-08-20 - -* Name changed to label in the message of remove (add3b7f4) -* Updated the message in the remove command (c7c57d9d) - -0.6.26 -============= -2020-08-19 - -* Update civogo lib to v0.2.15 (09b3bbe2) -* Added verification before delete any object (a9c4334f) - -0.6.25 -============= -2020-08-19 - -* Checking correct flag for Kubernetes readiness (e0f543c4) - -0.6.24 -============= -2020-08-17 - -* Update on Kubernetes apps documentation (9e0767c7) - -0.6.23 -============= -2020-08-14 - -* Added new features when creating a kubernetes cluster (fb51ae8c) - -0.6.22 -============= -2020-08-14 - -* Fixed bug in output writing component (53ef3806) - -0.6.21 -============= -2020-08-11 - -* Update the civogo to 0.2.14, fixed error in the intance create cmd (78e107de) - -0.6.20 -============= -2020-08-11 - -* Fixed error in the instance module and in the color utility (8738797c) - -0.6.19 -============= -2020-07-30 - -* Added the auto update option to the cli (eb9ff675) - -0.6.18 -============= -2020-07-27 - -* Fixed color in the error message (a30bb996) -* Update Change log (5257cc27) -* Added verification at the moment of delete a snapshot (911cb634) -* Change the lib to add color to the CLI (d35889a5) - -0.6.17 -============= -2020-07-20 - -* Fixed error in the configuration of the kubeconfig (87326d25) - -0.6.16 -============= -2020-07-20 - -* Merge all color utility in one place (6dd3b564) -* Fixed error in the --merge option for the kubernetes config in windows (1094c066) -* Update the README.md (cfb1259e) - -0.6.15 -============= -2020-07-18 - -* Added the --save and --switch option to kubernetes create (950a432d) -* Fixed typo in the kubernetes config error message (bf097440) -* Added verification to kubernetes config cmd (7e4bb504) -* Fix error in kubernetes utils (f1f46612) -* Now if you use --switch with --merge, automatically the cli will change the context in kubernetes (8b9fad39) - -0.6.14 -============= -2020-07-17 - -* Removed option egress as direction when creating a firewall rule (7baf88f4) -* Changed the words used to define the direction in the firewall rule (3df9c5b6) -* Added .editorconfig (cfb6ca22) - -0.6.13 -============= -2020-07-14 - -* Added verification to the firewall rule creation (a7fc88f9) -* Added new verification step to the kubernetes config (f77cf09e) -* Update the change log (5dc1bcac) - -0.6.12 -============= -2020-07-08 - -* Added the option to install multiple application at the same time in the Kubernetes Cluster (611120b1) -* Update the change log (d6cc1d42) - -0.6.11 -============= -2020-07-07 - -* Added CPU, RAM and SSD fields to Instance and Kubernetes CMD (6c5cfec7) -* Update the change log (e88016ef) - -0.6.10 -============= -2020-07-06 - -* Added new feature (56719687) -* Fixed error in the Makefile (feb35382) -* Merge pull request #8 from ssmiller25/selective-make (6caba09c) -* Chnage the name of the fordel in Homebrew Formula (e96b84a4) -* Merge pull request #7 from ssmiller25/k3s-docs (4a70e48b) -* Fixed error in cli (10196c99) -* Add KubernetesVesion and UpgradeAvailableTo (d61e6a9a) -* Add nfpm and use the v2 of the goreleaser action (49d55069) -* Fixed the message to show after upgrade happened (396934a5) -* Upgrade the version of civogo lib (6ff45d0d) -* Fixed error in the kubernetes cmd (723028c1) -* Change the dockerfile to run as root (7f15c77b) -* fix: Fix error adding initil user (28c99ac9) - -0.6.9 -============= -2020-07-03 - -* Chnage the name of the fordel in Homebrew Formula (e96b84a4) -* Merge pull request #7 from ssmiller25/k3s-docs (4a70e48b) - -0.6.8 -============= -2020-06-30 - -* Fixed error in cli (10196c99) - -0.6.7 -============= -2020-06-25 - -* Add KubernetesVesion and UpgradeAvailableTo (d61e6a9a) - -0.6.6 -============= -2020-06-24 - -* Add nfpm and use the v2 of the goreleaser action (49d55069) - -0.6.5 -============= -2020-06-24 - -* Fixed the message to show after upgrade happened (396934a5) -* Upgrade the version of civogo lib (6ff45d0d) - -0.6.4 -============= -2020-06-24 - -* Fixed error in the kubernetes cmd (723028c1) - -0.6.3 -============= -2020-06-22 - -* Change the dockerfile to run as root (7f15c77b) - -0.6.2 -============= -2020-06-20 - -* fix: Fix error adding initil user (28c99ac9) -* Update the CHANGELOG (6669b296) -* fix: Fix message in the kubernetes upgrade cmd (05960c0b) -* docs: Update the CHANGELOG (ea04cc57) -* fix: Remove update from the cmd kubernetes show (6cb4144a) -* Added the CHANGELOG.md (e99843a4) -* Added new feature (f1726759) -* Fix correct version showing (83fe22c8) -* Added some feature (a356acaa) -* Fixed some errors (911f046e) -* Remove snap from release process (15d43a7c) -* Update kubernetes config (6413a22a) -* Update .goreleaser.yml (7ff511dd) -* Update .goreleaser.yml (a763c30b) -* Update .goreleaser.yml (3166ee2f) -* Fix error (787ad7de) -* Added some corrections (e5fe1faa) -* Fixed error in goreleaser (72708d8c) -* Modifications in logic (497e0750) -* Tweaks to install.sh (29250021) -* Add configuration to snap (148a0473) -* Update README.md (3bea636c) -* Update the badge (d118e1e3) -* Add badge to the README (0da2f4ff) -* Fix error in the config (8a1430f9) -* Fix user in the Dockerfile (b0d63fe2) -* Update the image to alpine the Dockerfile (0b182a0b) -* Update the Dockerfile (00942fdb) -* Update the cli (4d4ac165) -* Fix wording (0104cacd) -* Update README now this is the main tool (1597d82f) -* Remove comments (f42b14ac) -* Run new test (578d62d7) -* Test brews releaser (425f84f5) -* Try to fix Homebrew releasing (bdc4a966) -* Fix goreleaser.yml (4b0a350b) -* Add homebrew tap updating to goreleaser (2801d339) -* fix(Project): Added some fix (8ed9c0bf) -* Lots of minor tweaks (ef039b50) -* Changes to instance create (82901093) -* feat(Utility): Add TrackTime (7e16e37d) -* feat(Utility): Add random (268021cf) -* fix(Bug): Fix bug found in all code (47c14806) -* fix(Domain): Fix some error (04c0775e) -* feat(Install): Added install bash (2e584464) -* feat(Completion): Added completion cmd (11f44f4b) -* fix(Project): Fix the some bug (a082fdaf) -* fix(Volume): Fix the example (d3e46926) -* refactor(Project): Added example to all cmd (0119e351) -* fix(Network): Remove Name from the table (b5659302) -* fix(LoadBalancer): added new alias (2cb08795) -* refactor(Project): Modify all project error handler (36f932ee) -* fix(Version): fix text in version cmd (d4b80553) -* Merge remote-tracking branch 'origin/master' (732fcc41) -* fix(Version): fix text in version cmd (fe625b9b) -* fix(Version): update the version cmd (b4af168b) -* fix(Version): change the version cmd (17402302) -* fix(Version): update the version cmd (75fe68e8) -* fix(Version): Fixed the version cmd (f01cff84) -* fix(Goreleser): Fix the conf file (3ecf80b0) -* fix(Version): Fixed the version cmd (b35e0cf5) -* fix(Goreleser): Fix the conf file (122998f8) -* fix(Version): Upgrade the version of the civogo lib (c84e2461) -* feat(Version): Added the version cmd (aaa6a091) -* fix(Goreleser): Fix the conf file (f4b78e1b) -* fix(Goreleser): Fix the conf file (6beb0caf) -* fix(Goreleser): Fix the conf file (0953e531) -* fix(Goreleser): Fix the conf file (0ab428ae) -* fix(Goreleser): Fix the action file (2d05ff91) -* fix(Goreleser): Fix the conf file (5b12fdf7) -* fix(Goreleser): Fix the action file (44ad7dff) -* refactor(Project): Modify all project (bc2f508f) -* Merge pull request #2 from civo/dev (daccd7ba) -* Add all but one instance command (7ad58ed4) -* Split more commands out in to their own files (3f3b06e3) -* Split instance commands out to invidual files (2ce29790) -* Add console and reboot commands (d24951af) -* Add github token path to goreleaser (cd811766) -* Add testing workflow (d01e3ed8) -* Add goreleaser support (6410d22b) -* Add the first action command to instances (ec0634b6) -* Change OutputWriter to use labels as well as keys (52eeee28) -* Change to use Find* in civogo (e15de86c) -* Refactor to new OutputWriter (417c47aa) -* Add size command (f7201a09) -* Add quota command (a07f44a6) -* Add Region command (48cd4f0c) -* Complete API key management (bc9e3d53) -* Remove unnecessary comment (7f7fb17f) -* Remove (old) accidentally commited API keys (ea215e4f) -* Complete API key management functionality (94421615) -* Add API Key management (4beb5f1e) -* Update links in README (17848b68) -* Add plan to README (b9fc702c) -* First commit - initial makefile (38300f4e) -* feat(Template): Added the kubernetes cmd (0370dde0) -* feat(Goreleser): Fix the goreleaser file (59a4231c) -* feat(Template): Added the template cmd (4f406582) -* feat(Volume): Added the volume cmd (6a84a030) -* feat(snapshot): Added the snapshot cmd (775885d0) -* feat(network): Added the network cmd (6c6d035e) -* feat(sshkey): Added the ssh key cmd (4f3a6445) -* feat(loadbalancer): Added the cmd loadbalancer (410abb51) -* feat(firewall): Added the cmd firewall, and firewall rule (0ad42aed) -* feat(domain): Added the cmd domain record (51de188d) -* feat(domain): Added the cmd domain (698df535) -* feat(instance): Added the option to create instances (22dcec05) -* refactor(apikey): Modify the apikey (1d113038) -* refactor(apikey): Modify the apikey (430a4114) -* refactor(apikey): Modify the apikey function (a8310907) -* Update app name in tap-release (de91a6e0) -* Create automatic tap release (fa017dff) - -0.6.1 -============= -2020-06-19 - -* Update the CHANGELOG (6669b296) -* fix: Fix message in the kubernetes upgrade cmd (05960c0b) -* docs: Update the CHANGELOG (ea04cc57) -* fix: Remove update from the cmd kubernetes show (6cb4144a) -* Added the CHANGELOG.md (e99843a4) -* Added new feature (f1726759) -* Fix correct version showing (83fe22c8) - -0.6.0 -============= -2020-06-18 - -* Added some feature (a356acaa) - -0.2.3 -============= -2020-06-18 - -* Fixed some errors (911f046e) -* Remove snap from release process (15d43a7c) -* Update kubernetes config (6413a22a) - -0.2.2 -============= -2020-06-17 - -* Update .goreleaser.yml (7ff511dd) -* Update .goreleaser.yml (a763c30b) -* Update .goreleaser.yml (3166ee2f) -* Fix error (787ad7de) -* Added some corrections (e5fe1faa) - -0.2.1 -============= -2020-06-17 - -* Fixed error in goreleaser (72708d8c) - -0.2.0 -============= -2020-06-17 - -* Modifications in logic (497e0750) -* Tweaks to install.sh (29250021) -* Add configuration to snap (148a0473) -* Update README.md (3bea636c) -* Update the badge (d118e1e3) -* Add badge to the README (0da2f4ff) -* Fix error in the config (8a1430f9) -* Fix user in the Dockerfile (b0d63fe2) -* Update the image to alpine the Dockerfile (0b182a0b) -* Update the Dockerfile (00942fdb) -* Update the cli (4d4ac165) -* Fix wording (0104cacd) -* Update README now this is the main tool (1597d82f) -* Remove comments (f42b14ac) -* Run new test (578d62d7) -* Test brews releaser (425f84f5) -* Try to fix Homebrew releasing (bdc4a966) -* Fix goreleaser.yml (4b0a350b) -* Add homebrew tap updating to goreleaser (2801d339) -* fix(Project): Added some fix (8ed9c0bf) -* Lots of minor tweaks (ef039b50) -* Changes to instance create (82901093) -* feat(Utility): Add TrackTime (7e16e37d) -* feat(Utility): Add random (268021cf) -* fix(Bug): Fix bug found in all code (47c14806) - -0.1.19 -============= -2020-06-17 - -* Tweaks to install.sh (29250021) -* Add configuration to snap (148a0473) - -0.1.18 -============= -2020-06-16 - -* Update README.md (3bea636c) -* Update the badge (d118e1e3) -* Add badge to the README (0da2f4ff) -* Fix error in the config (8a1430f9) -* Fix user in the Dockerfile (b0d63fe2) - -0.1.17 -============= -2020-06-16 - -* Update the image to alpine the Dockerfile (0b182a0b) - -0.1.16 -============= -2020-06-16 - -* Update the Dockerfile (00942fdb) -* Update the cli (4d4ac165) -* Fix wording (0104cacd) -* Update README now this is the main tool (1597d82f) -* Remove comments (f42b14ac) - -0.1.15 -============= -2020-06-15 - -* Run new test (578d62d7) -* Test brews releaser (425f84f5) - -0.1.14 -============= -2020-06-12 - -* Try to fix Homebrew releasing (bdc4a966) - -0.1.13 -============= -2020-06-12 - -* Fix goreleaser.yml (4b0a350b) -* Add homebrew tap updating to goreleaser (2801d339) - -0.1.12 -============= -2020-05-21 - -* fix(Project): Added some fix (8ed9c0bf) - -0.1.11 -============= -2020-05-20 - -* Lots of minor tweaks (ef039b50) -* Changes to instance create (82901093) - -0.1.10 -============= -2020-05-19 - -* feat(Utility): Add TrackTime (7e16e37d) -* feat(Utility): Add random (268021cf) -* fix(Bug): Fix bug found in all code (47c14806) -* fix(Domain): Fix some error (04c0775e) -* feat(Install): Added install bash (2e584464) -* feat(Completion): Added completion cmd (11f44f4b) -* fix(Project): Fix the some bug (a082fdaf) -* fix(Volume): Fix the example (d3e46926) -* refactor(Project): Added example to all cmd (0119e351) -* fix(Network): Remove Name from the table (b5659302) -* fix(LoadBalancer): added new alias (2cb08795) -* refactor(Project): Modify all project error handler (36f932ee) -* fix(Version): fix text in version cmd (d4b80553) -* Merge remote-tracking branch 'origin/master' (732fcc41) -* fix(Version): fix text in version cmd (fe625b9b) -* fix(Version): update the version cmd (b4af168b) -* fix(Version): change the version cmd (17402302) -* fix(Version): update the version cmd (75fe68e8) -* fix(Version): Fixed the version cmd (f01cff84) -* fix(Goreleser): Fix the conf file (3ecf80b0) -* fix(Version): Fixed the version cmd (b35e0cf5) -* fix(Goreleser): Fix the conf file (122998f8) -* fix(Version): Upgrade the version of the civogo lib (c84e2461) -* feat(Version): Added the version cmd (aaa6a091) -* fix(Goreleser): Fix the conf file (f4b78e1b) -* fix(Goreleser): Fix the conf file (6beb0caf) -* fix(Goreleser): Fix the conf file (0953e531) -* fix(Goreleser): Fix the conf file (0ab428ae) -* fix(Goreleser): Fix the action file (2d05ff91) -* fix(Goreleser): Fix the conf file (5b12fdf7) -* fix(Goreleser): Fix the action file (44ad7dff) -* refactor(Project): Modify all project (bc2f508f) -* Merge pull request #2 from civo/dev (daccd7ba) -* Add all but one instance command (7ad58ed4) -* Split more commands out in to their own files (3f3b06e3) -* Split instance commands out to invidual files (2ce29790) -* Add console and reboot commands (d24951af) -* Add github token path to goreleaser (cd811766) -* Add testing workflow (d01e3ed8) -* Add goreleaser support (6410d22b) -* Add the first action command to instances (ec0634b6) -* Change OutputWriter to use labels as well as keys (52eeee28) -* Change to use Find* in civogo (e15de86c) -* Refactor to new OutputWriter (417c47aa) -* Add size command (f7201a09) -* Add quota command (a07f44a6) -* Add Region command (48cd4f0c) -* Complete API key management (bc9e3d53) -* Remove unnecessary comment (7f7fb17f) -* Remove (old) accidentally commited API keys (ea215e4f) -* Complete API key management functionality (94421615) -* Add API Key management (4beb5f1e) -* Update links in README (17848b68) -* Add plan to README (b9fc702c) -* First commit - initial makefile (38300f4e) -* feat(Template): Added the kubernetes cmd (0370dde0) -* feat(Goreleser): Fix the goreleaser file (59a4231c) -* feat(Template): Added the template cmd (4f406582) -* feat(Volume): Added the volume cmd (6a84a030) -* feat(snapshot): Added the snapshot cmd (775885d0) -* feat(network): Added the network cmd (6c6d035e) -* feat(sshkey): Added the ssh key cmd (4f3a6445) -* feat(loadbalancer): Added the cmd loadbalancer (410abb51) -* feat(firewall): Added the cmd firewall, and firewall rule (0ad42aed) -* feat(domain): Added the cmd domain record (51de188d) -* feat(domain): Added the cmd domain (698df535) -* feat(instance): Added the option to create instances (22dcec05) -* refactor(apikey): Modify the apikey (1d113038) -* refactor(apikey): Modify the apikey (430a4114) -* refactor(apikey): Modify the apikey function (a8310907) -* Update app name in tap-release (de91a6e0) -* Create automatic tap release (fa017dff) - -0.1.9 -============= -2020-05-18 - -* fix(Domain): Fix some error (04c0775e) -* feat(Install): Added install bash (2e584464) - -0.1.8 -============= -2020-05-14 - -* feat(Completion): Added completion cmd (11f44f4b) - -0.1.7 -============= -2020-05-14 - -* fix(Project): Fix the some bug (a082fdaf) -* fix(Volume): Fix the example (d3e46926) -* refactor(Project): Added example to all cmd (0119e351) -* fix(Network): Remove Name from the table (b5659302) -* fix(LoadBalancer): added new alias (2cb08795) -* refactor(Project): Modify all project error handler (36f932ee) -* fix(Version): fix text in version cmd (d4b80553) - -0.1.6 -============= -2020-05-13 - -* Merge remote-tracking branch 'origin/master' (732fcc41) -* fix(Version): fix text in version cmd (fe625b9b) - -0.1.5 -============= -2020-05-13 - -* fix(Version): update the version cmd (b4af168b) -* fix(Version): change the version cmd (17402302) -* fix(Version): update the version cmd (75fe68e8) - -0.1.4 -============= -2020-05-13 - -* fix(Version): Fixed the version cmd (f01cff84) - -0.1.3 -============= -2020-05-13 - -* fix(Goreleser): Fix the conf file (3ecf80b0) -* fix(Version): Fixed the version cmd (b35e0cf5) -* fix(Goreleser): Fix the conf file (122998f8) -* fix(Version): Upgrade the version of the civogo lib (c84e2461) -* feat(Version): Added the version cmd (aaa6a091) - -0.1.2 -============= -2020-05-11 - -* fix(Goreleser): Fix the conf file (f4b78e1b) -* fix(Goreleser): Fix the conf file (6beb0caf) -* fix(Goreleser): Fix the conf file (0953e531) -* fix(Goreleser): Fix the conf file (0ab428ae) -* fix(Goreleser): Fix the action file (2d05ff91) -* fix(Goreleser): Fix the conf file (5b12fdf7) -* fix(Goreleser): Fix the action file (44ad7dff) -* refactor(Project): Modify all project (bc2f508f) -* Merge pull request #2 from civo/dev (daccd7ba) -* Add all but one instance command (7ad58ed4) -* Split more commands out in to their own files (3f3b06e3) -* Split instance commands out to invidual files (2ce29790) -* Add console and reboot commands (d24951af) -* Add github token path to goreleaser (cd811766) -* Add testing workflow (d01e3ed8) -* Add goreleaser support (6410d22b) -* Add the first action command to instances (ec0634b6) -* Change OutputWriter to use labels as well as keys (52eeee28) -* Change to use Find* in civogo (e15de86c) -* Refactor to new OutputWriter (417c47aa) -* Add size command (f7201a09) -* Add quota command (a07f44a6) -* Add Region command (48cd4f0c) -* Complete API key management (bc9e3d53) -* Remove unnecessary comment (7f7fb17f) -* Remove (old) accidentally commited API keys (ea215e4f) -* Complete API key management functionality (94421615) -* Add API Key management (4beb5f1e) -* Update links in README (17848b68) -* Add plan to README (b9fc702c) -* First commit - initial makefile (38300f4e) -* feat(Template): Added the kubernetes cmd (0370dde0) -* feat(Goreleser): Fix the goreleaser file (59a4231c) -* feat(Template): Added the template cmd (4f406582) -* feat(Volume): Added the volume cmd (6a84a030) -* feat(snapshot): Added the snapshot cmd (775885d0) -* feat(network): Added the network cmd (6c6d035e) -* feat(sshkey): Added the ssh key cmd (4f3a6445) -* feat(loadbalancer): Added the cmd loadbalancer (410abb51) -* feat(firewall): Added the cmd firewall, and firewall rule (0ad42aed) -* feat(domain): Added the cmd domain record (51de188d) -* feat(domain): Added the cmd domain (698df535) -* feat(instance): Added the option to create instances (22dcec05) -* refactor(apikey): Modify the apikey (1d113038) -* refactor(apikey): Modify the apikey (430a4114) -* refactor(apikey): Modify the apikey function (a8310907) - -0.1.1 -============= -2020-03-04 - -* Add github token path to goreleaser (cd811766) -* Add testing workflow (d01e3ed8) - -0.1.0 -============= -2020-03-04 - -* Add goreleaser support (6410d22b) -* Add the first action command to instances (ec0634b6) -* Change OutputWriter to use labels as well as keys (52eeee28) -* Change to use Find* in civogo (e15de86c) -* Refactor to new OutputWriter (417c47aa) -* Add size command (f7201a09) -* Add quota command (a07f44a6) -* Add Region command (48cd4f0c) -* Complete API key management (bc9e3d53) -* Remove unnecessary comment (7f7fb17f) -* Remove (old) accidentally commited API keys (ea215e4f) -* Complete API key management functionality (94421615) -* Add API Key management (4beb5f1e) -* Update links in README (17848b68) -* Add plan to README (b9fc702c) -* First commit - initial makefile (38300f4e) - - diff --git a/changelog.yml b/changelog.yml deleted file mode 100644 index 3ecaea7d..00000000 --- a/changelog.yml +++ /dev/null @@ -1,15427 +0,0 @@ -- semver: 0.7.30 - date: 2021-07-21T19:27:19.123696+01:00 - packager: "" - changes: - - commit: 2d4641bf6c85cb54d8139c2714c181e4fb6b5f5b - note: Fix abug in the kubernetes create cmd, modify the name of the utils for check the length of the name - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com -- semver: 0.7.29 - date: 2021-07-21T18:09:35.467852+01:00 - packager: "" - changes: - - commit: dc4d01b36b038e13c9c468ec25c33c97aa4a6896 - note: Fixed error in the creation of the cluster - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com -- semver: 0.7.28 - date: 2021-07-21T10:58:10.89241+01:00 - packager: "" - changes: - - commit: 681149f72aa76cddb2aea6c18668ce030a0af882 - note: Added node as required flag in the scaling cmd - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 8a37fada4a1754d5a8abb8b8400ff7aaa6da61d4 - note: Fixed error in the cmd add app to the cluster - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com -- semver: 0.7.27 - date: 2021-07-18T09:39:40.559923+01:00 - packager: "" - changes: - - commit: 8e04f2a76c43121f864b15b0b4c3987bf48a7a20 - note: |- - Merge pull request #105 from carehart/patch-1 - - correct grammar mistake in console message - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 5961cbf2f76285af73693d747ca6ce5d229b52a6 - note: |- - Added more info to all error - Close #104 - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: c638815f851d3649cf9ebe1af259525e38bc5b4a - note: Updated the Changelog - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 9c740a653321108e0c00d442bbbb2353b09e8236 - note: Update the civogo lib to the v0.2.48 - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 687195172bf88ec8fd0a7e0beceef2b854b89776 - note: Updated changelog - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 3489c95ad7700863c47fa7f0ce04141cdb8da0c5 - note: |- - Merge pull request #103 from civo/Fix-apikey-newline - - Fix addition of new line in API key name - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 7da655a3652e1ad944ec1559b6d896656582aa53 - note: |- - Merge pull request #102 from civo/apikey-stdin - - Add api key through stdin - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 9c4ebe11913563a367d4fe5ad344b747c8854b80 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: e0370defda2d81a68910d111a0751b06a5f43e4e - note: Updated Changelog - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 117ebe6ce20f8b21b0a3c6a8c97eeff4d853e08a - note: Fixed error in the network rm command - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 144c031f54aab25b50366837c969e77a93b5bf44 - note: Updated the Changelog - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 1d924e094995b232a944586e1e27367629e4ffbf - note: Fixed error at the moment to set a new region - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 3c4f01a4a846c50fab6b0a7f79403f1113d9cc2a - note: updated the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 91217a27122d4a254581a670d82c091e4cba0578 - note: Updated the Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bc005a6295cf4f350618183ed6e214193ff2f61c - note: Standardized json outputs - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d6bdf67cd43c968e7ac273df7b08e976ac332d5e - note: Updated the Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e768441c0af3d94f05d989168e15c22fccc0686e - note: |- - Updated the civogo lib to 0.2.47 - close #82 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f6e53f87f7f779b256c46a23635afbd94d4815d - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 32a6e079c370b0cb902242cd763be61e7d7ccd62 - note: |- - Added changes in the json output for all cmd - close #92 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 52bdd8064cd929b5a17e2810a3d26b386f1c4f98 - note: Added the --pretty global flag to print the json in pretty format - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a77bb4304f889c35c9614b4dac33b2a7ecdf91e9 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c54fdf15b707d5824ef677ae100b68c0bddb2357 - note: |- - Fix error in the application show cmd - close #94 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 912d2ba929fdcf55cb51627fe9707840d804cb2f - note: Remove debug statement - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 0172994e69e3773816b08b77088ba27086ae6949 - note: Fix for breaking new customers adding their first key - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f58d3a02d179bc6b20041435549ab15e6fc7facd - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1994ff59fbe6663a630f539f3aa31745e6db000f - note: 'Fixed error introduce fixing the issue #90' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fd42c9f68dba4f03e12ea15d01bf31a34a18709f - note: Updated changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2d838d495a5717ee1ee79e725c15318cc5de907d - note: |- - Fixed error in every command exit status zero - close #90 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: dc7246565d59d35ac963e36efda6a21331d9f38e - note: |- - Merge pull request #89 from rajatjindal/fix-log-msg - - fix log msg warnings - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 197dc49ea53f58262b3020122d358698188c50c6 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: faff826d05639dbf9a2ea9531133b43aa0de0f24 - note: Updated the civogo lib to 0.2.45 how fix problem in the instance cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4acd29bcd154861d297d640f395903a73206ab8a - note: Updated the Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 273cdb0133732e360f8f58e3ed3ef5dea2b0f89d - note: |- - Merge pull request #87 from civo/fix-default-region - - Fix default region - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 64b63375b1a305a82bac7301969f3cc3daf28546 - note: Updated Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8965abe8b0d0b1aabce13b188793e61244f97fa8 - note: Fixed error in instance create cmd, now you can delete multiple pool in a cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 670a4d0210ee75b3114a21f062ec72aec7d904e6 - note: Updated Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 717623a6033dd90ea846cb326eb7ce4e2696abdf - note: Fixed kubernetes cmd and hidde volume for now - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7dc15bbaadf22453a6e5ea96837a82f43b64d2aa - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2f2d4a9fe3b1902f89de78073cdd2a5f30d8b7e2 - note: Added muti remove option to k3s, network, instance, domain, ssh key, firewall - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b779d6c52935440947838e35e3f754a0fe4e97c0 - note: |- - Fixed error in the show cmd in the instance - close #81 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d2737d89dd53351d73cf2196987da4e3a585ca9d - note: |- - Update README.md - - updated the Kubernetes options - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: bb4b1b5076403d6dc279b7984df776808ed9a63f - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8d95e5473855eba704a43ba9f3ba418f89a33d70 - note: Fixed error in the CLI also added new cmd to instance and kuberntes and new param to the size and updated the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a762c1d705870520785f60c0c0d782c34803fdbe - note: Added the las version of civogo lib v0.2.37 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cec81869e340ec7f30744cb1c02f290212564c09 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 52b2612ac1c7cc491eeca594be311ad31f6761fb - note: |- - Updated the civogo lib to 0.2.36 this will be fix scaling , rename bugs - close #71 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8f7a1e4054abf0c341d27079519cf9ce6bd173fc - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5bde617f0d2a0552ff07179ebdda2414c8435370 - note: |- - Updated the civogo lib to v0.2.35 - close #73 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b6b7dd60304888b0aca4050e01dd324bb769e6d5 - note: |- - Now domain create show nameserver - close #74 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4fe4112637195d313ce2271141251484790f2b7a - note: |- - Fixed error in CheckAPPName func - close #76 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f930c7165106cee5aaec861deed984bc8bf6798 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1e962709faeb3c24bcd83cf5820b750a20655822 - note: fixed error in the output of the CLI - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7e16d8ebf28691b313809c7423a28448a8d1205 - note: |- - Added verification to the kubernetes utils - close #27 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ed88a8a92c29f2e8cb504de2053d76ffc6a34c34 - note: Fixed more error in golang code - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3af72defdd5d8b631459f751608f03d567088411 - note: |- - Added some verification to k8s cluster - Fixed error in golang code - Close #64 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: efdfff99f11b2479d8cff450b7ce5e26f6f26304 - note: Updated the civogo lib to v0.2.32 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0b4e35703f0a57519ff9b74dda17028b3a3d9293 - note: |- - Merge pull request #72 from stiantoften/typofix - - Fix typo in default config - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: b686acccc4d05dc8732e37fc809979e9a010ab4d - note: |- - Merge pull request #69 from DoNnMyTh/patch-1 - - Fixed spelling mistake - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 49fece6577cb45ccbdbc7fc09861df109e64498f - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 48dbcaf218c01ddcda253c624f1c62c942e4f56e - note: Added new cmd to show the post-install for every app installed in the cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f851ed70253483f83ecec31789fe8879f874c3e9 - note: |- - Merge pull request #66 from DoNnMyTh/patch-4 - - Updated readme.md - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: ef8e37eda068466cffb492bdca7e6ef5a6b52121 - note: |- - Merge pull request #62 from beret/darwin-arm64 - - Make install.sh prefer arm64 when compatible - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: e0640948d1a8253f338997e6434d84e7085d7fe1 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ea7b5b89c8513f254cfef6f18fd15736b250d3bb - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3156e008f60ce31a42b3865a5b4184f9aa7e4d07 - note: Chnage to go 1.16 to build the binary for Apple M1 too - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ee1783fa8424373079cfa375e44d64b546ecf3d7 - note: |- - Update the the civogo lib to 0.2.28 and fix error in the show command of kubernetes - Close #57 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 621e66a6571c1d5b47fda139a2de519ae1a7e07b - note: |- - Merge pull request #55 from martynbristow/master - - Resolve Issues with install.sh Script - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 3f876df757ab81bf4bc12b01bb1376c232dd5681 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8346ff2023d19f494c1f945337f9f0d5926432e8 - note: |- - Fixed bug when you create a kubernetes cluster, also add suggest to the remove command - Close #51 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2ea5e0d6a4c8cc7a43285dad34aa9de4bed75144 - note: |- - Fixed bug in the kubernetes create command - Close #51 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b4d974b92b49f6ebc62bd597176eeb54b8701b67 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9c259c32f9f9a04ec93a9e8b75875f776095545f - note: |- - - Added the merge flag to the create command - - Add some verification to kubernetes create, now you need pick the right size of Instance - - Add auto-complete to the kubernetes show command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0aa316370665a3cb86e83b7a27f7429a35586e8a - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ad87c6f8f440b86272b970c427cc6d742e0952cd - note: |- - Fix error in the creation of kubernertes - Close #46 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6ac46a0e13268796b491a6338b718e0665593907 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 69d947287161b4b81d4c88a103aa3f2c8aae4551 - note: modified the network field to use the label value and not the name - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 32dfda4782f9973dd3b20b53800876eb3873f855 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8bcd181d9789793b5d1e94e7ea2b90d64390ef30 - note: |- - Added the `-network` param to the firewall cmd - - Also added the network to the list of firewall - - updated to the last version of the civogo lib v0.2.27 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 92905a2948f0945c504c5b94497c68a18a8af293 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 57186e0c23a44d9390aa37b745a545bdc5980fad - note: Fixed error in the goreleaser file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a8973554ad592eb89532b1a6bd8d4e3dafbd21e5 - note: Updated gorelease to remove some deprecated options - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 63385a006805e1b8b4681b6c3e2ba58d82d86376 - note: |- - Updated the civogo lib to v0.2.26 - - Added a check in the instance and kubernetes command - - Remove some field from the region list - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 30439ca98d5520bee7a0696babddb804d4f26ec2 - note: Updated the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 331e02896012b7e1862df38244981a94312c7a9f - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 915f932e2112d031ae9d9c591e709ab62091f8aa - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b9179edb91e83e8e9b78e7fa09bec159d19fd410 - note: Added the option to set the region in the config file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aeab445273a4ccb7f62eb4ecc71feac0ac3c2827 - note: Support CIVOCONFIG as an ENV variable to override config file location - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 82e09be5c2e9b50e1ef6267899471128cb66e3ca - note: |- - Fixed error in the README - Close #41 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c0992d34c87cda6e1450d1aca81cc0769a917b5f - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a1c3a5871bf77640dab14b740fb304d7c816d64d - note: Fixed error in the kubernetes list command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 17007e301789b9c71b0050cc0df5a93b584b6d93 - note: |- - Typo and readability fixes (#40) - - * Fix typo in output of firewall listings - - * Clarifications, typo fixes - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 98f6850d70d67ef4d2dc5a8e9f4f4fecb866f871 - note: |- - Merge pull request #38 from kaihoffman/master - - Add recycle node info to README - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 34d531a1fef4ad03cbbb23cf6f62e0dabd686d9c - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5e789fe32d37087f9864e303dc79b1bfd455230a - note: Fixed error handling in all commands - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2d0cac5bcf2023bcc19c8cb9108d6862841a8afc - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2b8f4d9284a4748245ad0f47385aef444d702d5c - note: Update the civogo lib to v0.2.23 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9355e877ae7b8796f3ce099602a313898671a225 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 585b9d16020c661c471893228cfd0c1cb0c46da3 - note: Fixed bug in the install script - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9931669e04ff62f46c35c8ea7b1e275bc131d4b5 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: af8c5e7ddc5cf4ca6b5a77f7e98c2fd75cbbea09 - note: |- - Merge pull request #34 from martynbristow/master - - Resolve Defect in Civo CLI Custom Output - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: a2f4a29a65f2f228533dc7636898f6bc59857037 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d5695bff29ed400c54fe3363b045a4aac6771e45 - note: Updated the civogo lib to v0.2.22 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7b6ef7eeec2b38a38a11263cc20a2e9b61d98f1 - note: |- - Merge pull request #33 from kaihoffman/master - - Grammar fixes in user output - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 7ac95c35dfcec86f4ee31dfa883bee4b1aa5a8e8 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d2457212d6521dffe545a5833cfcfd12c1c6e994 - note: Added the recycle cmd to kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aebfdca4eb045c2a8dd13c96a223050f309a5182 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f89b57e509edd31624531ed09b2b388f3e9e35d1 - note: |- - Fixed the permission in the civo conf file - Close #32 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aa214676f8e67b41fbcee8e115bf0fbe3e3177be - note: Updated the Change log and README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3ce2c9694aa4dd2940dba8d8161d26fc6db9b2c8 - note: Added powershel and fish to the completion cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8820f312bfa1b657fec9e6474e4657bbf7ec3bad - note: |- - Updated the civogo lib to v0.2.21 - Close #31 #29 #28 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cd403dc6ec9e6ccea7c7e822d910df2b99177594 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b59581ea97a669b44c12adab65ce924aa1394565 - note: |- - Merge pull request #30 from Johannestegner/master - - Kubeconfig save/merge fix. - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: f2d000b92f9f8110acb057dee5a36fb72543b571 - note: Updated the apikey output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 318d5988aa26ac4b1e8a813382db4abf4ce2a6bd - note: |- - Update README.md - - Add Fedora-specific alias instructions; - Minor grammar fixes - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: a4abc2b0628bfe07c7851217472add10144b9a6a - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 52beb72e47967962953d235714fdc700348f0831 - note: Add arm64 to build list - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: a1bbc43ffb0e91fe9522423288feba31f1bf0b90 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b99f42589f6a775c070b20d281e3febdc3bab57c - note: |- - Updated the civogo lib to v0.2.19 - Fixed error in the cmd instance create - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9847d8c72f497f133c241eb1345acb5126e6a123 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9879243af3d13bc3994f688c11f007d8da7b4c10 - note: Updated the civogo lib to v0.2.18 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 102dd5d622071012f6844e627dc51ca9fb596ca1 - note: |- - Update README.md - - Clarify merging and saving of cluster contexts - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: b4cce868cd3e689d66fc2f5aee8d595e9ab8aa44 - note: Update the gitignore - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 999d0895795bbfa90bb13f982c9e6d9b2e8450e4 - note: Update the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8a7b09a7cefc6bf2f64f2d445efa236d5a8b23d4 - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 594884e155cd5fc0f83098bed6e8f2576c044294 - note: Allowed SRV record type in the DNS command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 10e6d50dafa802b0ebe09301b980d364c5d51a75 - note: Updated civogo lib to v0.2.17 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1d9b34a193bc53befeddaeb11643650e93f34e0f - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 422d393387e27a3541d018e322e8c7aec4a1bdb7 - note: Added STOPPING status - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 22d81d1e1dfb14c94ea56ca9add675eac4d10c91 - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 98939932c6c253dd23a41b4dd2cbdac74b51a452 - note: improved the custom output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9e48a6339ae0b16b299c4e8fd095710d8fb94d2d - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cc05acff75916993ed3807284f3324fae5ee4392 - note: |- - Fixed error in the custom output - Close #14 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c8815d73a4ed235543a0fc96f7facda36d3ae7b6 - note: Updated the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3900c15e2b88a43055964ba1f69379872d3bbdae - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9d479dae6508eed25e24ec999340f9bda447f723 - note: Fixed typo error in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 30376d69436ad0955c6fe5274b31f43ea6fa3748 - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 73e5e0d819f3c834afbbbb3e0431e1018c2756e0 - note: Fixed error in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6054efff2a4886818c1b6d5a250771eee428a32c - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e2d0d5f898b913f8540c49e86d631b593b234ad7 - note: Updated the Dockerfile to add curl - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9ed54ddd95dcbce36b6fc98e9df4c4926592a113 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 65c2c23c8c812bb8c8e343d86c6e0cca01db340f - note: |- - Added kubectl inside the docker image - Close #25 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f7fbd5bed4ac598b6c38433dd35039519d829d7b - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 381ab929d2b22208eb492baddd5a710b3c8f5cec - note: |- - Quota command improved - - When you are at 80% or more of the quota, the numbers change color - Close #23 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cb8c73d5c3fe8889ace12e3c564a3cbd2042034c - note: |- - Added new show command to apikey - - update the README.md - - now, when the apikey are listed, the secret will be hidden - Close #24 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3fde5e2944c61924addcc4bdf3bd127091bebfef - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8257fb4620c6df2368ad48b5fa441ad51510f081 - note: |- - Update the civogo lib to v0.2.16 - - Close #17 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5a2efa5e9c78a89dd86b1d38cf9248b7572bf2d7 - note: Fixed the config generator - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ab8d0bbadfac3fed68765bf90b302ba9be1afc74 - note: Remove windows 386 build from goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 80a158eaf4795a845d39c2fe1057a06cc17a9719 - note: |- - Added verification to all commands - Close #21 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2c616de4cf72c5882fb8fe1b6094d2eb13916c98 - note: Add a little polish for DEVELOPER.md - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 3fefaffba96f52fec9a36c9be703ce917a140b18 - note: Added the develper file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fab73578661d693ddecb7972a3a02caf10194de5 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: add3b7f43d48e459c999d883fd83d8c378f62184 - note: Name changed to label in the message of remove - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c7c57d9d14d7d4a03dd4291ddeb117bc55db64a0 - note: Updated the message in the remove command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fbbdff457de798ef89f30fd59815d40a5e77942e - note: Update Chnage log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 09b3bbe2071779289c6afdb5d5865f5eb07d8cc3 - note: Update civogo lib to v0.2.15 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a9c4334f1290f33806b0ef9c325303b0565bbb4c - note: |- - Added verification before delete any object - - Close #16 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e0f543c4cde0d9cf8edeb2cd8b87d680bd83e868 - note: Checking correct flag for Kubernetes readiness - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: e3c8e654d0af128f55162b5fb704bfca870ade3a - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9e0767c784b0843cc3a8c722a438b24bba27435a - note: |- - Merge pull request #15 from ssmiller25/k8s-doc-upd - - Update on Kubernetes apps documentation - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: d94a61c5f6ccba032862e89d10e4fa6a2322dafc - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fb51ae8c54f0666a62fc3a9a666a67b8b5a467e5 - note: Added new features when creating a kubernetes cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 90daeee964cd080edd0c9816a032216d2efab514 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 53ef3806c02eed6739ec5e24a36b45a808300210 - note: |- - Fixed bug in output writing component - - Close #14 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4ae0bf8d8f0c50afde5a44ae12550d9f47a90415 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 78e107de1cba3500d6c05172c3089663697a886c - note: Update the civogo to 0.2.14, fixed error in the intance create cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a6a6b4df28cfcd9632f9029be2989ea3d3c53259 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8738797c38e75dc7605cc1d1d756904aabe1e2a5 - note: Fixed error in the instance module and in the color utility - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 87542cb8a6ad64a613e8125ace7dd4054f23c3f1 - note: Update goreleaser conf - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 50c1433c0442129669d053b3812003e14ff7a9d8 - note: Fix error for goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 02a956f83b4b3d8a3945b3e7332bb5f4b372e8e5 - note: |- - Merge pull request #12 from civo/feature/auto_update - - Feature/auto update - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: c10a147bb429ab07663de50f8fc676b627288208 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a30bb996a113c0856882b31fd2ec389af7078956 - note: Fixed color in the error message - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5257cc275ac6fdc95cb632017a3be75aa13d7eb4 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 911cb6347da0595390168095b12df3baefcc37da - note: Added verification at the moment of delete a snapshot - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d35889a5d7700071f64653367eba814ad3730d2e - note: Change the lib to add color to the CLI - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 70021fc8213be5d45dd55601a04a5573bb521816 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 87326d25440924c29efe99b4a1e4cb684f052063 - note: Fixed error in the configuration of the kubeconfig - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e702aa80a4f314fc615af31c5dc5728c2774a36f - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6dd3b56411d0587a392bfeaf314048cbf1bda7fb - note: |- - Merge all color utility in one place - - close #9 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1094c0665a544559ff557f1088f3e26b407351a5 - note: Fixed error in the --merge option for the kubernetes config in windows - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cfb1259edb3bb81c358bab5bee4e228c62fdfe50 - note: Update the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f811d3e21472dd7931b8d9d303ed8c6d5415018a - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 91a21bdddfd5cfaa3063823b699ddb5b4e934c5f - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 950a432d622a8e698d61ecc32ad933d000ec082f - note: |- - Added the --save and --switch option to kubernetes create - - Now you can create a cluster and save the configuration at the end, if you use --switch when the configuration is saved, the cli automatically change the kubernetes context to the new cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bf09744073523d7e64d0b8456e283efa8ce475c9 - note: Fixed typo in the kubernetes config error message - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7e4bb504599b966e2735bee05024ed6fe1ded79b - note: |- - Added verification to kubernetes config cmd - - Now you can't use --switch without --merge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f1f46612b3ca3282e8a91d49408c0d291a28d3c3 - note: Fix error in kubernetes utils - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8b9fad392fe208982dd098f546224fa82b6e944c - note: Now if you use --switch with --merge, automatically the cli will change the context in kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5307d99830eaa06d70485b7289a370bdebc942ff - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7baf88f4bb54e10d6c63ad967455a5e36baf4091 - note: Removed option egress as direction when creating a firewall rule - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3df9c5b6f909b4c866b4f8b9034808927ffca9b4 - note: |- - Changed the words used to define the direction in the firewall rule - - Now you can use ingress and egress for the direction at the moment of creation of the rule - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cfb6ca22841d442e850ae96e0d49059971da0d83 - note: Added .editorconfig - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 442e17762e217bda2ae923d6bc7ef9d5d0b6879a - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7fc88f91069b3fc2920768db77f71866500ebdc - note: |- - Added verification to the firewall rule creation - - Now if the user pass a diferent value in the direction at the moment of the cretion of rule in the firewall, the CLI will be rize an error - - This closes #10 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f77cf09e561c5caa07c50533db68796546e46ac6 - note: Added new verification step to the kubernetes config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5dc1bcacd2e698403c822cef67c864dc5ee3dfe9 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 611120b17ddd64e45cccfe1661f85a099981b374 - note: |- - Added the option to install multiple application at the same time in the Kubernetes Cluster - - Now we check if the application is valid and and if have a plan the plan is valid - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d6cc1d4288e5ee8d9daf99c860affa6990f10584 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6c5cfec77ae7daedfb41ce0e09d6b9132e390af8 - note: |- - Added CPU, RAM and SSD fields to Instance and Kubernetes CMD - - Update the civogo lib to v0.2.12 to add the new filed - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e88016ef1d57f43c9a1e1c5b128250435baf97aa - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 56719687625388e279ae8cd32675d5d114be687d - note: |- - Added new feature - - Update the civogo lib to 0.2.11 - Added MasterIP to the cmd kubernetes show - Update README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: feb35382606394c8163de2e7fba807dc736184d6 - note: |- - Fixed error in the Makefile - - The OS comparison was in quotes, when it should be without them - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6caba09c2b99652ab580726f2e434da63ea6714d - note: |- - Merge pull request #8 from ssmiller25/selective-make - - Selective Makefile - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: e96b84a4afe2a67f8af43a1fe00c875c87a5b78e - note: Chnage the name of the fordel in Homebrew Formula - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4a70e48bbe504373aa8ff54dbf4eec1c749a9f2d - note: |- - Merge pull request #7 from ssmiller25/k3s-docs - - Kubernetes Documentation Updates - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 10196c9991dddce2da8a92217c65f5669aef6650 - note: |- - Fixed error in cli - - Fixed error in the loadbalancer key - Added MarkFlagRequired to the version in the upgrade cmd in kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d61e6a9a4f89d61ee47691dce54f356811474069 - note: |- - Add KubernetesVesion and UpgradeAvailableTo - to the json output and custom output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 49d550690d67bfbfbd916e9cdbe326853e6735f5 - note: Add nfpm and use the v2 of the goreleaser action - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 396934a543e0d389ec9871810793d45933b3f018 - note: Fixed the message to show after upgrade happened - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6ff45d0df8fbbd32efd4a64d928262aca8df19b2 - note: Upgrade the version of civogo lib - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 723028c1ae752a1450c78e90816f9aed6b3f6d42 - note: |- - Fixed error in the kubernetes cmd - - Error at the moment of the creation of the cluster, - if you didn't pass the --version parameter - the cli would send latest and give error - - Fixes #6 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7f15c77b08d50e4d509252265eeb98cec3c40527 - note: |- - Change the dockerfile to run as root - this way allow us to read the conf from user - and avoid error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 28c99ac9bd8214d93e3cd266aeb751369d5fafc0 - note: |- - fix: Fix error adding initil user - - Added default user if the config json is empty - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6669b296a4947ab68f3f7f6e0ca6e5341ca888d8 - note: Update the CHANGELOG - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 05960c0b0b8c5f1df36c33e78c8b584e02c17c68 - note: |- - fix: Fix message in the kubernetes upgrade cmd - - Fixed the message that returns kubernetes upgrade when it is executed, previously it returned the version and now it is the version of kubernetes that was updated - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ea04cc5726c4fbf98df4d1623a22ee9cd6e1dcb5 - note: 'docs: Update the CHANGELOG' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6cb4144aee682e2ac57d0105b4c2ab2e74ecda15 - note: 'fix: Remove update from the cmd kubernetes show' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e99843a4fdebfef8f621e671fb8db09752dc4a4f - note: Added the CHANGELOG.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f1726759c05c3e97408014a08f03545abc992722 - note: |- - Added new feature - - Added a notification to the kubernetes cmd if the cluster version is old - Update the civogo lib to v0.2.9 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 83fe22c86c4323c68c0433f9feee959b8ed3edcb - note: Fix correct version showing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: a356acaa514a4de1d65822746f50bafa6faf3863 - note: |- - Added some feature - - Fixed the README.md - Add region to the instances cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 911f046ebf57f61eaf84d66f1ea2f1805fafb69f - note: |- - Fixed some errors - - Updated the README.md - Fixed error in the loadbalancer and in the domain cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 15d43a7c72e63e78e8b8cd0c2d435d3393727cf3 - note: Remove snap from release process - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6413a22a179016b9254b73836049e7ed43e827bd - note: |- - Update kubernetes config - - Added the option to access to home file to the snap app - Change the message in the config cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7ff511dd3d0bdc1139f5838618536bbd3b7340e5 - note: Update .goreleaser.yml - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a763c30b107b80ae3e5159facdb458ffb2641a84 - note: |- - Update .goreleaser.yml - - Fix identation error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3166ee2f0a14b6d46f826432c2bc94570c79c750 - note: |- - Update .goreleaser.yml - - Fix error in yml config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 787ad7dead7942a1b17e57a8d81dcdca586096ba - note: |- - Fix error - - Fixed error in the goreleaser file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e5fe1faa451901c09169b45a57b47878c69c404b - note: |- - Added some corrections - - Changed the message at the moment to save the configuration - Added permission to snap to use the network and network-bind - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 72708d8c5b44ca505702bbed63b7c4ee4fa88347 - note: |- - Fixed error in goreleaser - - Chnage classic to strict in the confinement config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 497e0750f6992c2cb7466b54edf359e3e3c69493 - note: |- - Modifications in logic - - Modified the logic in the k3s config cmd - Renamed variable defaultRemove to defaultYes - Added new confirmation (UserConfirmedOverwrite) - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 29250021f47f14ca3086c6a6be7da7748b2facc5 - note: Tweaks to install.sh - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 148a0473315bc5c08309b4c1476ed909ce1f7355 - note: |- - Add configuration to snap - - Add conf in the actions - Add conf to goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3bea636cf1e0a8bef675fd3a5080d2bcca71369f - note: |- - Update README.md - - Remove the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d118e1e320abda0a1d5e741e1986a0992c5c9fac - note: Update the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0da2f4ffe13e6f9415c77966095ecc74902967a4 - note: Add badge to the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8a1430f990db69b8d01a30e5e014a6043ebb4627 - note: |- - Fix error in the config - - The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b0d63fe2a78227083c500f200877d8c2aaeeb3b1 - note: Fix user in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0b182a0b81cee64ef718a9cacd4026cd89b23602 - note: Update the image to alpine the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 00942fdb12b418796aadf3a9e3a0a682b50535e1 - note: Update the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4d4ac16595f55058355b76a35c11dacb0b79db70 - note: |- - Update the cli - - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0104cacdaf3c3d344105397bab003b635efc0a74 - note: Fix wording - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 1597d82f7349fb53fefd58a21c64612bc791491c - note: Update README now this is the main tool - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: f42b14ac14b325df44197eb087be692e379e2b1a - note: |- - Remove comments - - Remove unnecessary comments - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 578d62d7aeda36c7a7d6c04b8201a452e16082f0 - note: |- - Run new test - - Run new test to see if we can push to all repo using the civobot token - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 425f84f58773a956f54e4f5c4c1feab247fe0a7d - note: Test brews releaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bdc4a966a0d181536816f311c5265c73856d62c8 - note: Try to fix Homebrew releasing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 4b0a350b61435d52d9567ec39cb60053b4f33022 - note: Fix goreleaser.yml - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 2801d33908df17f0241b272258fb5c880457d590 - note: Add homebrew tap updating to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 8ed9c0bf481143e9ebf0a24f2e9b173331294c5a - note: |- - fix(Project): Added some fix - - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ef039b50d1d53c800d9031cdf23cf50cdd0857da - note: Lots of minor tweaks - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 82901093fc2939dec1da99094dbcc7d1310d6191 - note: Changes to instance create - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 7e16e37dcfcb7f82480514830fce2fb1e1550af2 - note: |- - feat(Utility): Add TrackTime - - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 268021cf061896e31d8fb66a368ef748b3361df9 - note: |- - feat(Utility): Add random - - - added random to generate a random name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 47c1480670ca0bb46f932b2f4afe84cb0973d9fa - note: |- - fix(Bug): Fix bug found in all code - - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 04c0775edae20e57312fbf8eaafccc52db622417 - note: |- - fix(Domain): Fix some error - - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2e584464b8725b0246842b21b209139d10e74ece - note: |- - feat(Install): Added install bash - - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 11f44f4b647dbe98ec3511664871d5ba85562d9d - note: |- - feat(Completion): Added completion cmd - - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a082fdaf8f90434c67c708fb2098d93b0140dfd2 - note: |- - fix(Project): Fix the some bug - - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d3e46926c5e71537c1587e822de9a1f198aae554 - note: |- - fix(Volume): Fix the example - - - Add the NAME to the example section - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0119e35155ff8c13956826cd8686851c7756c1de - note: |- - refactor(Project): Added example to all cmd - - - Added example to all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b5659302122b04584d73bb6d4a45f2d00c6cd9cc - note: |- - fix(Network): Remove Name from the table - - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2cb08795f79d0663d47e00372a125a820c75c2a9 - note: |- - fix(LoadBalancer): added new alias - - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 36f932ee2c91c029acddb796e6a876c7807d3b6a - note: |- - refactor(Project): Modify all project error handler - - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d4b805530cc900310ae9505a0005f09b46c72c97 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 732fcc412c26278f8bdd5f69483c6783d932f607 - note: Merge remote-tracking branch 'origin/master' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fe625b9b79e81194e910afd01420738137aab486 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b4af168b9bfe437fbf01e8a72ff62c22d233e928 - note: |- - fix(Version): update the version cmd - - - Update the text in the cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 174023026da3f08e8bc1f033e96888bd185798ba - note: |- - fix(Version): change the version cmd - - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 75fe68e8939d7234ad729e589b5a01dc95a8ac6d - note: |- - fix(Version): update the version cmd - - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f01cff849b7b2dda0a1cbb5e4161e36ebac5101e - note: |- - fix(Version): Fixed the version cmd - - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3ecf80b0b3d5b8150906aa1b853e1429d85838c5 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b35e0cf5ab5eaa5f2854440dd453c9011b912976 - note: |- - fix(Version): Fixed the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 122998f82bc69a7d66e3bf5bb2d0b1757c32615b - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c84e24618842b2351cdc0584c69897a41925e0ba - note: |- - fix(Version): Upgrade the version of the civogo lib - - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aaa6a091f3f239ac5ce599f89bcf7534aca86d29 - note: |- - feat(Version): Added the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f4b78e1bc29b47ca3639d035e544201b94f9a5ef - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6beb0cafd403e919897e8bcab518b78ee9a3b8b1 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0953e5312869a959e0619727edbfd56f36588239 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0ab428ae5839d2d67dab45ff73fcf4ce39fa6b20 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2d05ff91b90f7d74601840296b5b962006fb60fe - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5b12fdf7f5d0e1964b83af54ecbc688fd9dfcac8 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 44ad7dffab733f7df7c780d474294fc2b37660c7 - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bc2f508fd29096827a6f1c3b0175ed6334eaa958 - note: |- - refactor(Project): Modify all project - - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: daccd7ba948e2f48b161001592a2d59297771a27 - note: |- - Merge pull request #2 from civo/dev - - Merge dev to master - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 7ad58ed4cb587e6836f7330325948f36c089ed5f - note: Add all but one instance command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 3f3b06e3c3bec486533a45aa98f5433021ce3c7a - note: Split more commands out in to their own files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 2ce2979055ac4ada6ec94afe1d9b6046fc2180f2 - note: Split instance commands out to invidual files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: d24951afb315e56ec6450a1743d2a8fc17011ca5 - note: Add console and reboot commands - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: cd811766d401e0701144001afcf348176f311c7d - note: Add github token path to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: d01e3ed898e543bed5c762ae43138caf3a190fab - note: Add testing workflow - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: GitHub - email: noreply@github.com - - commit: 6410d22beea3bdf6108a8bcb16d1435117b8a452 - note: Add goreleaser support - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: ec0634b6681cac4c5603f0061c79f98c3a1eb9ec - note: Add the first action command to instances - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 52eeee287baed7e1579c056ad778384a568e2d98 - note: Change OutputWriter to use labels as well as keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: e15de86cb3ac94dc81ab68bdb3e64549af5f1525 - note: Change to use Find* in civogo - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 417c47aadbb899137d556f9fac0c5ca9547bc744 - note: Refactor to new OutputWriter - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f7201a0995cc2a3a76399e3ad27ad87761c3ef4a - note: Add size command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: a07f44a6aade894e431f5262d39c667ca4afb2f4 - note: Add quota command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 48cd4f0c750403ab2e0c0d0caf974dfaf5393ab7 - note: Add Region command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: bc9e3d53d2fbd61aaaa3b26b4a4009e5a929f19c - note: Complete API key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 7f7fb17fbff9152f3a1fce5603de1704be7d0e96 - note: Remove unnecessary comment - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: ea215e4fd79632af5fa67f5c5b49611b197ee1be - note: Remove (old) accidentally commited API keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 94421615da2bb2fcd1a1d89950076c8088d31c8b - note: Complete API key management functionality - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 4beb5f1eb0b8fe8f10537278f02fb5ef3b599531 - note: Add API Key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 17848b6804d99a943a75ef284073b0945a880e35 - note: Update links in README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: b9fc702ce61cdbc00a3613f6ebccdeb53a7392e7 - note: Add plan to README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 38300f4e28497ad03ccb0cbf37f481bcd9ffc424 - note: First commit - initial makefile - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 0370dde0fded4c82af2a0d5a0c4c27af70b6e1c4 - note: |- - feat(Template): Added the kubernetes cmd - - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 59a4231cc2d05ae540b709fe9a62ddaf81189484 - note: |- - feat(Goreleser): Fix the goreleaser file - - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f4065826190d15c049dbc56667076823432c75e - note: |- - feat(Template): Added the template cmd - - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6a84a030a66953568f7b15d5c9c85b543350dd5f - note: |- - feat(Volume): Added the volume cmd - - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 775885d0032545f358de10beadd7275e86aac4dc - note: |- - feat(snapshot): Added the snapshot cmd - - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6c6d035ec7f37ae6cfe103a5a2c5274715c97489 - note: |- - feat(network): Added the network cmd - - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f3a6445069c87b1d97c93ea21b1d06ab401f7b5 - note: |- - feat(sshkey): Added the ssh key cmd - - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 410abb5193bd01dfa92fcf921e4c4a0f2a72473b - note: |- - feat(loadbalancer): Added the cmd loadbalancer - - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0ad42aeda4b6093400ee1fbbfa4aeb4ee29eb3b6 - note: |- - feat(firewall): Added the cmd firewall, and firewall rule - - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 51de188d9e36f5b1241eb95c82caaa93c72c36bb - note: |- - feat(domain): Added the cmd domain record - - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 698df535b230d8e09662ee350818502cf54374f8 - note: |- - feat(domain): Added the cmd domain - - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 22dcec052d7401038ee9eaf268cd6ffe6c23d8fd - note: |- - feat(instance): Added the option to create instances - - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1d1130384be0e780617515d0ceb98926dc6aad58 - note: |- - refactor(apikey): Modify the apikey - - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 430a411432809cc0c8c9d9194030c7167c00884e - note: |- - refactor(apikey): Modify the apikey - - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a8310907409d3341df9443422adec992f00ca338 - note: |- - refactor(apikey): Modify the apikey function - - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: de91a6e05f13e77443a7127ac270d0afdd9136ea - note: Update app name in tap-release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: fa017dffb98e0f9afaa6f6807e3135f0ce4c5c65 - note: Create automatic tap release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 69f2d1d8b1f6a412c729c38e2cf3bb44898f0c02 - note: k8s usage update, and markdown linting - author: - name: Steve Miller - email: me@r15cookie.com - committer: - name: Steve Miller - email: me@r15cookie.com - - commit: e6ed4e78a2cd6e39caa6db34149f8485a49a0d5d - note: Selective Makefile - author: - name: Steve Miller - email: me@r15cookie.com - committer: - name: Steve Miller - email: me@r15cookie.com - - commit: 46b80c819a06f4536973ac5e113db81514849d84 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: eb9ff675f8a7bd83bfeda44a5c9cce2787962f3e - note: Added the auto update option to the cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: dc14aa15850cce462ab741b08a4363c44aedfe21 - note: Update on apps, minor quote addition - author: - name: Steve Miller - email: me@r15cookie.com - committer: - name: Steve Miller - email: me@r15cookie.com - - commit: 03287d3169ca6e07894b7c40287d21a4f80d7c94 - note: Removed windows specific file removal, as it's not needed. - author: - name: Johannes Tegnér - email: johannes@jitesoft.com - committer: - name: Johannes Tegnér - email: johannes@jitesoft.com - - commit: 2420613f3b270e457b88fe2bda09a46da3049cea - note: Updated kubeconfig -s -m command to make sure the file is closed before trying to remove it. - author: - name: Johannes Tegnér - email: johannes@jitesoft.com - committer: - name: Johannes Tegnér - email: johannes@jitesoft.com - - commit: d6ac0b6b9fac8436209be4fab02697c231eb400e - note: Grammar fixes in user output - author: - name: Kai - email: kai@civo.com - committer: - name: Kai - email: kai@civo.com - - commit: 813c6193d9177bafd44b8f63228a544fda014acb - note: |- - Fix Transcribe in WriteCustomOutput - Test is ok - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: 0cc50313e0751b014563274be70f37398440089e - note: |- - Failing Example Test for Fn WriteCustomOutput - - Code is broken - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: 7d6370587365727b0e212f6f5cde79b822ef1aca - note: |- - Merge pull request #35 from jaysonsantos/patch-1 - - Add windows setup guide - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: d61ce9c21fd2c958bcfcab600b888fd0580fbf1b - note: Add windows setup guide - author: - name: Jayson Reis - email: santosdosreis@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 910390c5ade572cb9519ab9b2aee245ce02c131b - note: |- - Add recycle node info to README - Usage information, reasons for using recycle, and a warning that the action - fully deletes the node. - author: - name: Kai - email: kai@civo.com - committer: - name: Kai - email: kai@civo.com - - commit: d872c509f8b245a0513d293110a0a332529c8a57 - note: Reword error message when setting a region that doesn't exist - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 3d41504671cb1d44e518f7bf2c8468b919d59da5 - note: |- - Merge pull request #45 from DoNnMyTh/master - - Update on README.md - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: c0982c8228ccc5cfc8fdc59808263b446849b1c9 - note: Fixed typos, merged 2 region and regions section into one, added command to change region - author: - name: DoNnMyTh - email: amit2cha@gmail.com - committer: - name: DoNnMyTh - email: amit2cha@gmail.com - - commit: b3eacf1e2daa76d41d45834658ee840860431a13 - note: |- - Merge pull request #49 from DoNnMyTh/patch-1 - - updated README.md - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: cc1bd1a52426d304801e285ebb2e8483d20a9893 - note: |- - updated README.md - - Corrections - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: bef90aa0a4590201962040bfd3453d3280b13109 - note: Resolve Issues with install.sh - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: 4cc77f89a4b67cd29efe2236942084a18ea9a02d - note: Resolve missing fatal function - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: b4c369965a0bfec1d7ed282a7b52cde4fe9d5ea7 - note: |- - Merge pull request #59 from DoNnMyTh/patch-2 - - Updated Readme.md for chocolatey support - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 30461e9fe01c586a2cf9bcb44759189830c276bc - note: |- - Merge pull request #58 from shanmukhkotharu/master - - added "Installing on Linux" - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: ec43b0a6ca36050f4bf0b0aea84a0c009ef054ee - note: Update README.md - author: - name: Shanmukh Kotharu - email: 43720664+shanmukhkotharu@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 0fd2e34ad14e4e7314311cfb7475e38668edfbca - note: Update README.md - author: - name: Shanmukh Kotharu - email: 43720664+shanmukhkotharu@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: ad84c28d7e5b3a45a058e10d104ebbad33d93634 - note: |- - Updated Readme.md for chocolatey support - - Updated Readme.md for chocolatey installation on windows - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 827c7d65e68f4bb96e41a75c555f2207fd85b6ff - note: Use arm64 binaries for arm64/aarch64 platforms - author: - name: beret - email: 69595+beret@users.noreply.github.com - committer: - name: beret - email: 69595+beret@users.noreply.github.com - - commit: 2dadf24ba5ad32ac1f917989966f6a4f7dd89daa - note: Minor README formatting for macOS and Civo CLI - author: - name: beret - email: 69595+beret@users.noreply.github.com - committer: - name: beret - email: 69595+beret@users.noreply.github.com - - commit: e0043d4af4ab16ab501db5c29b1b2d0a13d94305 - note: |- - Updated readme.md - - Added Installation via wget and brew in Linux, Updated readme.md - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: d17b03f98d9825d06b24622c3818f6ee241b34a7 - note: |- - Fixed spelling mistake - - Fixed spelling mistake case when app is not found (Spelling of found) - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: b1e0fc94b9e659e42d706ae0342789f3b60c4689 - note: Fix typo in default config - author: - name: Stian Toften - email: stiantoften@gmail.com - committer: - name: Stian Toften - email: stiantoften@gmail.com - - commit: 48f308578219330c93b84f7eabfe901db8d4facf - note: Add missing default region warning to all commands that need one - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f91e42114bedd4e5d3132c6f2d97c39b23c4b163 - note: Remove global warning on default regions as some commands don't need them - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 36399b76710072c8eec0dde4edeb49925748ef3e - note: Add utility method to check for if a current region is set - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 8986e65059275f63ebb5844f0e3a54f5360ceedc - note: Don't set a default region when creating blank configs (and certainly not SVG1) - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 824b617ea575e817f79161bb094e47afe4ff2846 - note: Fix typo in variable name - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f9df4cd28c9c96034514ed4a285b31458d6cfe80 - note: Get the default region from the API when adding an API key, if one isn't set - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: e3ca6605dc72f1c4c21370ec9c81b29fb776d507 - note: fix log msg - author: - name: Rajat Jindal - email: rajatjindal83@gmail.com - committer: - name: Rajat Jindal - email: rajatjindal83@gmail.com - - commit: f513044ccbb4f405d0099e8c4295ea645f214e43 - note: Update README.md - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 8050fae92fbfb116a141524127b2f80ce9e03732 - note: "Merge pull request #95 from SubhasmitaSw/documentation\n\nImproved the documentation and fixed little typos and punctuations. " - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 8c9aeadbd212eedce5ca4549dd4a17ab65d775f7 - note: Update DEVELOPER.md - author: - name: Subhasmita Swain - email: 57298668+SubhasmitaSw@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: fe3168724b2e607a2ed9b7d586096d17d22c2f05 - note: requested changes are updated. - author: - name: Subhasmita Swain - email: 57298668+SubhasmitaSw@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 455828a0860cd73d5b6ba2bbcd167788ca656ac9 - note: Improved the documentation and fixed little typos and punctuations - author: - name: Subhasmita - email: subhasmitaswain232@gmail.com - committer: - name: Subhasmita - email: subhasmitaswain232@gmail.com - - commit: f3ea046be6bbd397a157910602d713e64412ed61 - note: |- - Move error check - - Move the error check before any access on property. Fixes #84 - author: - name: Engin Diri - email: engin.diri@mail.schwarz - committer: - name: Engin Diri - email: engin.diri@mail.schwarz - - commit: f9476051e435d49cec774545897d0459ce73f167 - note: |- - Merge pull request #99 from dirien/fix-84 - - Move error check position - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: d96aa357f41db7e7036415f7ee2377e3caa64ead - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 1b03bb2a0fb5325784d7a456fb66872ecc26e7fc - note: Update changelog - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com - - commit: 182692cab0986e291508fe30e3d5d78ababa92a4 - note: Add support to save API key from stdin - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com - - commit: 7a9c9be1d97185663c62a80ab9c2c1dfd9d6dea5 - note: Update changelog - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com - - commit: d3533c97206780d48b94bef785b176bdf8b97971 - note: 'Fix: removal of newline for api key name' - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com - - commit: af2fbafd7caf5917dc2587ab8a1e0fba76383a6d - note: correct grammar mistake in console message - author: - name: Charlie Arehart - email: charlie@carehart.org - committer: - name: GitHub - email: noreply@github.com -- semver: 0.7.26 - date: 2021-07-15T17:10:15.232139+01:00 - packager: "" - changes: - - commit: 9c740a653321108e0c00d442bbbb2353b09e8236 - note: Update the civogo lib to the v0.2.48 - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 687195172bf88ec8fd0a7e0beceef2b854b89776 - note: Updated changelog - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 3489c95ad7700863c47fa7f0ce04141cdb8da0c5 - note: |- - Merge pull request #103 from civo/Fix-apikey-newline - - Fix addition of new line in API key name - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 7da655a3652e1ad944ec1559b6d896656582aa53 - note: |- - Merge pull request #102 from civo/apikey-stdin - - Add api key through stdin - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 9c4ebe11913563a367d4fe5ad344b747c8854b80 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: e0370defda2d81a68910d111a0751b06a5f43e4e - note: Updated Changelog - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 117ebe6ce20f8b21b0a3c6a8c97eeff4d853e08a - note: Fixed error in the network rm command - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 144c031f54aab25b50366837c969e77a93b5bf44 - note: Updated the Changelog - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 1d924e094995b232a944586e1e27367629e4ffbf - note: Fixed error at the moment to set a new region - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 3c4f01a4a846c50fab6b0a7f79403f1113d9cc2a - note: updated the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 91217a27122d4a254581a670d82c091e4cba0578 - note: Updated the Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bc005a6295cf4f350618183ed6e214193ff2f61c - note: Standardized json outputs - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d6bdf67cd43c968e7ac273df7b08e976ac332d5e - note: Updated the Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e768441c0af3d94f05d989168e15c22fccc0686e - note: |- - Updated the civogo lib to 0.2.47 - close #82 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f6e53f87f7f779b256c46a23635afbd94d4815d - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 32a6e079c370b0cb902242cd763be61e7d7ccd62 - note: |- - Added changes in the json output for all cmd - close #92 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 52bdd8064cd929b5a17e2810a3d26b386f1c4f98 - note: Added the --pretty global flag to print the json in pretty format - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a77bb4304f889c35c9614b4dac33b2a7ecdf91e9 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c54fdf15b707d5824ef677ae100b68c0bddb2357 - note: |- - Fix error in the application show cmd - close #94 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 912d2ba929fdcf55cb51627fe9707840d804cb2f - note: Remove debug statement - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 0172994e69e3773816b08b77088ba27086ae6949 - note: Fix for breaking new customers adding their first key - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f58d3a02d179bc6b20041435549ab15e6fc7facd - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1994ff59fbe6663a630f539f3aa31745e6db000f - note: 'Fixed error introduce fixing the issue #90' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fd42c9f68dba4f03e12ea15d01bf31a34a18709f - note: Updated changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2d838d495a5717ee1ee79e725c15318cc5de907d - note: |- - Fixed error in every command exit status zero - close #90 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: dc7246565d59d35ac963e36efda6a21331d9f38e - note: |- - Merge pull request #89 from rajatjindal/fix-log-msg - - fix log msg warnings - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 197dc49ea53f58262b3020122d358698188c50c6 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: faff826d05639dbf9a2ea9531133b43aa0de0f24 - note: Updated the civogo lib to 0.2.45 how fix problem in the instance cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4acd29bcd154861d297d640f395903a73206ab8a - note: Updated the Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 273cdb0133732e360f8f58e3ed3ef5dea2b0f89d - note: |- - Merge pull request #87 from civo/fix-default-region - - Fix default region - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 64b63375b1a305a82bac7301969f3cc3daf28546 - note: Updated Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8965abe8b0d0b1aabce13b188793e61244f97fa8 - note: Fixed error in instance create cmd, now you can delete multiple pool in a cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 670a4d0210ee75b3114a21f062ec72aec7d904e6 - note: Updated Changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 717623a6033dd90ea846cb326eb7ce4e2696abdf - note: Fixed kubernetes cmd and hidde volume for now - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7dc15bbaadf22453a6e5ea96837a82f43b64d2aa - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2f2d4a9fe3b1902f89de78073cdd2a5f30d8b7e2 - note: Added muti remove option to k3s, network, instance, domain, ssh key, firewall - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b779d6c52935440947838e35e3f754a0fe4e97c0 - note: |- - Fixed error in the show cmd in the instance - close #81 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d2737d89dd53351d73cf2196987da4e3a585ca9d - note: |- - Update README.md - - updated the Kubernetes options - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: bb4b1b5076403d6dc279b7984df776808ed9a63f - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8d95e5473855eba704a43ba9f3ba418f89a33d70 - note: Fixed error in the CLI also added new cmd to instance and kuberntes and new param to the size and updated the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a762c1d705870520785f60c0c0d782c34803fdbe - note: Added the las version of civogo lib v0.2.37 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cec81869e340ec7f30744cb1c02f290212564c09 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 52b2612ac1c7cc491eeca594be311ad31f6761fb - note: |- - Updated the civogo lib to 0.2.36 this will be fix scaling , rename bugs - close #71 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8f7a1e4054abf0c341d27079519cf9ce6bd173fc - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5bde617f0d2a0552ff07179ebdda2414c8435370 - note: |- - Updated the civogo lib to v0.2.35 - close #73 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b6b7dd60304888b0aca4050e01dd324bb769e6d5 - note: |- - Now domain create show nameserver - close #74 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4fe4112637195d313ce2271141251484790f2b7a - note: |- - Fixed error in CheckAPPName func - close #76 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f930c7165106cee5aaec861deed984bc8bf6798 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1e962709faeb3c24bcd83cf5820b750a20655822 - note: fixed error in the output of the CLI - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7e16d8ebf28691b313809c7423a28448a8d1205 - note: |- - Added verification to the kubernetes utils - close #27 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ed88a8a92c29f2e8cb504de2053d76ffc6a34c34 - note: Fixed more error in golang code - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3af72defdd5d8b631459f751608f03d567088411 - note: |- - Added some verification to k8s cluster - Fixed error in golang code - Close #64 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: efdfff99f11b2479d8cff450b7ce5e26f6f26304 - note: Updated the civogo lib to v0.2.32 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0b4e35703f0a57519ff9b74dda17028b3a3d9293 - note: |- - Merge pull request #72 from stiantoften/typofix - - Fix typo in default config - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: b686acccc4d05dc8732e37fc809979e9a010ab4d - note: |- - Merge pull request #69 from DoNnMyTh/patch-1 - - Fixed spelling mistake - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 49fece6577cb45ccbdbc7fc09861df109e64498f - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 48dbcaf218c01ddcda253c624f1c62c942e4f56e - note: Added new cmd to show the post-install for every app installed in the cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f851ed70253483f83ecec31789fe8879f874c3e9 - note: |- - Merge pull request #66 from DoNnMyTh/patch-4 - - Updated readme.md - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: ef8e37eda068466cffb492bdca7e6ef5a6b52121 - note: |- - Merge pull request #62 from beret/darwin-arm64 - - Make install.sh prefer arm64 when compatible - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: e0640948d1a8253f338997e6434d84e7085d7fe1 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ea7b5b89c8513f254cfef6f18fd15736b250d3bb - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3156e008f60ce31a42b3865a5b4184f9aa7e4d07 - note: Chnage to go 1.16 to build the binary for Apple M1 too - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ee1783fa8424373079cfa375e44d64b546ecf3d7 - note: |- - Update the the civogo lib to 0.2.28 and fix error in the show command of kubernetes - Close #57 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 621e66a6571c1d5b47fda139a2de519ae1a7e07b - note: |- - Merge pull request #55 from martynbristow/master - - Resolve Issues with install.sh Script - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 3f876df757ab81bf4bc12b01bb1376c232dd5681 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8346ff2023d19f494c1f945337f9f0d5926432e8 - note: |- - Fixed bug when you create a kubernetes cluster, also add suggest to the remove command - Close #51 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2ea5e0d6a4c8cc7a43285dad34aa9de4bed75144 - note: |- - Fixed bug in the kubernetes create command - Close #51 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b4d974b92b49f6ebc62bd597176eeb54b8701b67 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9c259c32f9f9a04ec93a9e8b75875f776095545f - note: |- - - Added the merge flag to the create command - - Add some verification to kubernetes create, now you need pick the right size of Instance - - Add auto-complete to the kubernetes show command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0aa316370665a3cb86e83b7a27f7429a35586e8a - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ad87c6f8f440b86272b970c427cc6d742e0952cd - note: |- - Fix error in the creation of kubernertes - Close #46 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6ac46a0e13268796b491a6338b718e0665593907 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 69d947287161b4b81d4c88a103aa3f2c8aae4551 - note: modified the network field to use the label value and not the name - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 32dfda4782f9973dd3b20b53800876eb3873f855 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8bcd181d9789793b5d1e94e7ea2b90d64390ef30 - note: |- - Added the `-network` param to the firewall cmd - - Also added the network to the list of firewall - - updated to the last version of the civogo lib v0.2.27 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 92905a2948f0945c504c5b94497c68a18a8af293 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 57186e0c23a44d9390aa37b745a545bdc5980fad - note: Fixed error in the goreleaser file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a8973554ad592eb89532b1a6bd8d4e3dafbd21e5 - note: Updated gorelease to remove some deprecated options - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 63385a006805e1b8b4681b6c3e2ba58d82d86376 - note: |- - Updated the civogo lib to v0.2.26 - - Added a check in the instance and kubernetes command - - Remove some field from the region list - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 30439ca98d5520bee7a0696babddb804d4f26ec2 - note: Updated the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 331e02896012b7e1862df38244981a94312c7a9f - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 915f932e2112d031ae9d9c591e709ab62091f8aa - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b9179edb91e83e8e9b78e7fa09bec159d19fd410 - note: Added the option to set the region in the config file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aeab445273a4ccb7f62eb4ecc71feac0ac3c2827 - note: Support CIVOCONFIG as an ENV variable to override config file location - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 82e09be5c2e9b50e1ef6267899471128cb66e3ca - note: |- - Fixed error in the README - Close #41 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c0992d34c87cda6e1450d1aca81cc0769a917b5f - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a1c3a5871bf77640dab14b740fb304d7c816d64d - note: Fixed error in the kubernetes list command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 17007e301789b9c71b0050cc0df5a93b584b6d93 - note: |- - Typo and readability fixes (#40) - - * Fix typo in output of firewall listings - - * Clarifications, typo fixes - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 98f6850d70d67ef4d2dc5a8e9f4f4fecb866f871 - note: |- - Merge pull request #38 from kaihoffman/master - - Add recycle node info to README - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 34d531a1fef4ad03cbbb23cf6f62e0dabd686d9c - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5e789fe32d37087f9864e303dc79b1bfd455230a - note: Fixed error handling in all commands - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2d0cac5bcf2023bcc19c8cb9108d6862841a8afc - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2b8f4d9284a4748245ad0f47385aef444d702d5c - note: Update the civogo lib to v0.2.23 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9355e877ae7b8796f3ce099602a313898671a225 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 585b9d16020c661c471893228cfd0c1cb0c46da3 - note: Fixed bug in the install script - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9931669e04ff62f46c35c8ea7b1e275bc131d4b5 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: af8c5e7ddc5cf4ca6b5a77f7e98c2fd75cbbea09 - note: |- - Merge pull request #34 from martynbristow/master - - Resolve Defect in Civo CLI Custom Output - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: a2f4a29a65f2f228533dc7636898f6bc59857037 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d5695bff29ed400c54fe3363b045a4aac6771e45 - note: Updated the civogo lib to v0.2.22 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7b6ef7eeec2b38a38a11263cc20a2e9b61d98f1 - note: |- - Merge pull request #33 from kaihoffman/master - - Grammar fixes in user output - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 7ac95c35dfcec86f4ee31dfa883bee4b1aa5a8e8 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d2457212d6521dffe545a5833cfcfd12c1c6e994 - note: Added the recycle cmd to kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aebfdca4eb045c2a8dd13c96a223050f309a5182 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f89b57e509edd31624531ed09b2b388f3e9e35d1 - note: |- - Fixed the permission in the civo conf file - Close #32 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aa214676f8e67b41fbcee8e115bf0fbe3e3177be - note: Updated the Change log and README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3ce2c9694aa4dd2940dba8d8161d26fc6db9b2c8 - note: Added powershel and fish to the completion cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8820f312bfa1b657fec9e6474e4657bbf7ec3bad - note: |- - Updated the civogo lib to v0.2.21 - Close #31 #29 #28 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cd403dc6ec9e6ccea7c7e822d910df2b99177594 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b59581ea97a669b44c12adab65ce924aa1394565 - note: |- - Merge pull request #30 from Johannestegner/master - - Kubeconfig save/merge fix. - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: f2d000b92f9f8110acb057dee5a36fb72543b571 - note: Updated the apikey output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 318d5988aa26ac4b1e8a813382db4abf4ce2a6bd - note: |- - Update README.md - - Add Fedora-specific alias instructions; - Minor grammar fixes - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: a4abc2b0628bfe07c7851217472add10144b9a6a - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 52beb72e47967962953d235714fdc700348f0831 - note: Add arm64 to build list - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: a1bbc43ffb0e91fe9522423288feba31f1bf0b90 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b99f42589f6a775c070b20d281e3febdc3bab57c - note: |- - Updated the civogo lib to v0.2.19 - Fixed error in the cmd instance create - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9847d8c72f497f133c241eb1345acb5126e6a123 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9879243af3d13bc3994f688c11f007d8da7b4c10 - note: Updated the civogo lib to v0.2.18 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 102dd5d622071012f6844e627dc51ca9fb596ca1 - note: |- - Update README.md - - Clarify merging and saving of cluster contexts - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: b4cce868cd3e689d66fc2f5aee8d595e9ab8aa44 - note: Update the gitignore - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 999d0895795bbfa90bb13f982c9e6d9b2e8450e4 - note: Update the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8a7b09a7cefc6bf2f64f2d445efa236d5a8b23d4 - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 594884e155cd5fc0f83098bed6e8f2576c044294 - note: Allowed SRV record type in the DNS command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 10e6d50dafa802b0ebe09301b980d364c5d51a75 - note: Updated civogo lib to v0.2.17 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1d9b34a193bc53befeddaeb11643650e93f34e0f - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 422d393387e27a3541d018e322e8c7aec4a1bdb7 - note: Added STOPPING status - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 22d81d1e1dfb14c94ea56ca9add675eac4d10c91 - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 98939932c6c253dd23a41b4dd2cbdac74b51a452 - note: improved the custom output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9e48a6339ae0b16b299c4e8fd095710d8fb94d2d - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cc05acff75916993ed3807284f3324fae5ee4392 - note: |- - Fixed error in the custom output - Close #14 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c8815d73a4ed235543a0fc96f7facda36d3ae7b6 - note: Updated the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3900c15e2b88a43055964ba1f69379872d3bbdae - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9d479dae6508eed25e24ec999340f9bda447f723 - note: Fixed typo error in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 30376d69436ad0955c6fe5274b31f43ea6fa3748 - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 73e5e0d819f3c834afbbbb3e0431e1018c2756e0 - note: Fixed error in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6054efff2a4886818c1b6d5a250771eee428a32c - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e2d0d5f898b913f8540c49e86d631b593b234ad7 - note: Updated the Dockerfile to add curl - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9ed54ddd95dcbce36b6fc98e9df4c4926592a113 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 65c2c23c8c812bb8c8e343d86c6e0cca01db340f - note: |- - Added kubectl inside the docker image - Close #25 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f7fbd5bed4ac598b6c38433dd35039519d829d7b - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 381ab929d2b22208eb492baddd5a710b3c8f5cec - note: |- - Quota command improved - - When you are at 80% or more of the quota, the numbers change color - Close #23 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cb8c73d5c3fe8889ace12e3c564a3cbd2042034c - note: |- - Added new show command to apikey - - update the README.md - - now, when the apikey are listed, the secret will be hidden - Close #24 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3fde5e2944c61924addcc4bdf3bd127091bebfef - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8257fb4620c6df2368ad48b5fa441ad51510f081 - note: |- - Update the civogo lib to v0.2.16 - - Close #17 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5a2efa5e9c78a89dd86b1d38cf9248b7572bf2d7 - note: Fixed the config generator - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ab8d0bbadfac3fed68765bf90b302ba9be1afc74 - note: Remove windows 386 build from goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 80a158eaf4795a845d39c2fe1057a06cc17a9719 - note: |- - Added verification to all commands - Close #21 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2c616de4cf72c5882fb8fe1b6094d2eb13916c98 - note: Add a little polish for DEVELOPER.md - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 3fefaffba96f52fec9a36c9be703ce917a140b18 - note: Added the develper file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fab73578661d693ddecb7972a3a02caf10194de5 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: add3b7f43d48e459c999d883fd83d8c378f62184 - note: Name changed to label in the message of remove - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c7c57d9d14d7d4a03dd4291ddeb117bc55db64a0 - note: Updated the message in the remove command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fbbdff457de798ef89f30fd59815d40a5e77942e - note: Update Chnage log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 09b3bbe2071779289c6afdb5d5865f5eb07d8cc3 - note: Update civogo lib to v0.2.15 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a9c4334f1290f33806b0ef9c325303b0565bbb4c - note: |- - Added verification before delete any object - - Close #16 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e0f543c4cde0d9cf8edeb2cd8b87d680bd83e868 - note: Checking correct flag for Kubernetes readiness - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: e3c8e654d0af128f55162b5fb704bfca870ade3a - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9e0767c784b0843cc3a8c722a438b24bba27435a - note: |- - Merge pull request #15 from ssmiller25/k8s-doc-upd - - Update on Kubernetes apps documentation - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: d94a61c5f6ccba032862e89d10e4fa6a2322dafc - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fb51ae8c54f0666a62fc3a9a666a67b8b5a467e5 - note: Added new features when creating a kubernetes cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 90daeee964cd080edd0c9816a032216d2efab514 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 53ef3806c02eed6739ec5e24a36b45a808300210 - note: |- - Fixed bug in output writing component - - Close #14 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4ae0bf8d8f0c50afde5a44ae12550d9f47a90415 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 78e107de1cba3500d6c05172c3089663697a886c - note: Update the civogo to 0.2.14, fixed error in the intance create cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a6a6b4df28cfcd9632f9029be2989ea3d3c53259 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8738797c38e75dc7605cc1d1d756904aabe1e2a5 - note: Fixed error in the instance module and in the color utility - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 87542cb8a6ad64a613e8125ace7dd4054f23c3f1 - note: Update goreleaser conf - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 50c1433c0442129669d053b3812003e14ff7a9d8 - note: Fix error for goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 02a956f83b4b3d8a3945b3e7332bb5f4b372e8e5 - note: |- - Merge pull request #12 from civo/feature/auto_update - - Feature/auto update - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: c10a147bb429ab07663de50f8fc676b627288208 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a30bb996a113c0856882b31fd2ec389af7078956 - note: Fixed color in the error message - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5257cc275ac6fdc95cb632017a3be75aa13d7eb4 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 911cb6347da0595390168095b12df3baefcc37da - note: Added verification at the moment of delete a snapshot - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d35889a5d7700071f64653367eba814ad3730d2e - note: Change the lib to add color to the CLI - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 70021fc8213be5d45dd55601a04a5573bb521816 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 87326d25440924c29efe99b4a1e4cb684f052063 - note: Fixed error in the configuration of the kubeconfig - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e702aa80a4f314fc615af31c5dc5728c2774a36f - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6dd3b56411d0587a392bfeaf314048cbf1bda7fb - note: |- - Merge all color utility in one place - - close #9 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1094c0665a544559ff557f1088f3e26b407351a5 - note: Fixed error in the --merge option for the kubernetes config in windows - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cfb1259edb3bb81c358bab5bee4e228c62fdfe50 - note: Update the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f811d3e21472dd7931b8d9d303ed8c6d5415018a - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 91a21bdddfd5cfaa3063823b699ddb5b4e934c5f - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 950a432d622a8e698d61ecc32ad933d000ec082f - note: |- - Added the --save and --switch option to kubernetes create - - Now you can create a cluster and save the configuration at the end, if you use --switch when the configuration is saved, the cli automatically change the kubernetes context to the new cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bf09744073523d7e64d0b8456e283efa8ce475c9 - note: Fixed typo in the kubernetes config error message - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7e4bb504599b966e2735bee05024ed6fe1ded79b - note: |- - Added verification to kubernetes config cmd - - Now you can't use --switch without --merge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f1f46612b3ca3282e8a91d49408c0d291a28d3c3 - note: Fix error in kubernetes utils - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8b9fad392fe208982dd098f546224fa82b6e944c - note: Now if you use --switch with --merge, automatically the cli will change the context in kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5307d99830eaa06d70485b7289a370bdebc942ff - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7baf88f4bb54e10d6c63ad967455a5e36baf4091 - note: Removed option egress as direction when creating a firewall rule - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3df9c5b6f909b4c866b4f8b9034808927ffca9b4 - note: |- - Changed the words used to define the direction in the firewall rule - - Now you can use ingress and egress for the direction at the moment of creation of the rule - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cfb6ca22841d442e850ae96e0d49059971da0d83 - note: Added .editorconfig - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 442e17762e217bda2ae923d6bc7ef9d5d0b6879a - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7fc88f91069b3fc2920768db77f71866500ebdc - note: |- - Added verification to the firewall rule creation - - Now if the user pass a diferent value in the direction at the moment of the cretion of rule in the firewall, the CLI will be rize an error - - This closes #10 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f77cf09e561c5caa07c50533db68796546e46ac6 - note: Added new verification step to the kubernetes config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5dc1bcacd2e698403c822cef67c864dc5ee3dfe9 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 611120b17ddd64e45cccfe1661f85a099981b374 - note: |- - Added the option to install multiple application at the same time in the Kubernetes Cluster - - Now we check if the application is valid and and if have a plan the plan is valid - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d6cc1d4288e5ee8d9daf99c860affa6990f10584 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6c5cfec77ae7daedfb41ce0e09d6b9132e390af8 - note: |- - Added CPU, RAM and SSD fields to Instance and Kubernetes CMD - - Update the civogo lib to v0.2.12 to add the new filed - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e88016ef1d57f43c9a1e1c5b128250435baf97aa - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 56719687625388e279ae8cd32675d5d114be687d - note: |- - Added new feature - - Update the civogo lib to 0.2.11 - Added MasterIP to the cmd kubernetes show - Update README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: feb35382606394c8163de2e7fba807dc736184d6 - note: |- - Fixed error in the Makefile - - The OS comparison was in quotes, when it should be without them - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6caba09c2b99652ab580726f2e434da63ea6714d - note: |- - Merge pull request #8 from ssmiller25/selective-make - - Selective Makefile - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: e96b84a4afe2a67f8af43a1fe00c875c87a5b78e - note: Chnage the name of the fordel in Homebrew Formula - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4a70e48bbe504373aa8ff54dbf4eec1c749a9f2d - note: |- - Merge pull request #7 from ssmiller25/k3s-docs - - Kubernetes Documentation Updates - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 10196c9991dddce2da8a92217c65f5669aef6650 - note: |- - Fixed error in cli - - Fixed error in the loadbalancer key - Added MarkFlagRequired to the version in the upgrade cmd in kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d61e6a9a4f89d61ee47691dce54f356811474069 - note: |- - Add KubernetesVesion and UpgradeAvailableTo - to the json output and custom output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 49d550690d67bfbfbd916e9cdbe326853e6735f5 - note: Add nfpm and use the v2 of the goreleaser action - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 396934a543e0d389ec9871810793d45933b3f018 - note: Fixed the message to show after upgrade happened - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6ff45d0df8fbbd32efd4a64d928262aca8df19b2 - note: Upgrade the version of civogo lib - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 723028c1ae752a1450c78e90816f9aed6b3f6d42 - note: |- - Fixed error in the kubernetes cmd - - Error at the moment of the creation of the cluster, - if you didn't pass the --version parameter - the cli would send latest and give error - - Fixes #6 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7f15c77b08d50e4d509252265eeb98cec3c40527 - note: |- - Change the dockerfile to run as root - this way allow us to read the conf from user - and avoid error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 28c99ac9bd8214d93e3cd266aeb751369d5fafc0 - note: |- - fix: Fix error adding initil user - - Added default user if the config json is empty - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6669b296a4947ab68f3f7f6e0ca6e5341ca888d8 - note: Update the CHANGELOG - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 05960c0b0b8c5f1df36c33e78c8b584e02c17c68 - note: |- - fix: Fix message in the kubernetes upgrade cmd - - Fixed the message that returns kubernetes upgrade when it is executed, previously it returned the version and now it is the version of kubernetes that was updated - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ea04cc5726c4fbf98df4d1623a22ee9cd6e1dcb5 - note: 'docs: Update the CHANGELOG' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6cb4144aee682e2ac57d0105b4c2ab2e74ecda15 - note: 'fix: Remove update from the cmd kubernetes show' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e99843a4fdebfef8f621e671fb8db09752dc4a4f - note: Added the CHANGELOG.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f1726759c05c3e97408014a08f03545abc992722 - note: |- - Added new feature - - Added a notification to the kubernetes cmd if the cluster version is old - Update the civogo lib to v0.2.9 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 83fe22c86c4323c68c0433f9feee959b8ed3edcb - note: Fix correct version showing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: a356acaa514a4de1d65822746f50bafa6faf3863 - note: |- - Added some feature - - Fixed the README.md - Add region to the instances cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 911f046ebf57f61eaf84d66f1ea2f1805fafb69f - note: |- - Fixed some errors - - Updated the README.md - Fixed error in the loadbalancer and in the domain cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 15d43a7c72e63e78e8b8cd0c2d435d3393727cf3 - note: Remove snap from release process - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6413a22a179016b9254b73836049e7ed43e827bd - note: |- - Update kubernetes config - - Added the option to access to home file to the snap app - Change the message in the config cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7ff511dd3d0bdc1139f5838618536bbd3b7340e5 - note: Update .goreleaser.yml - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a763c30b107b80ae3e5159facdb458ffb2641a84 - note: |- - Update .goreleaser.yml - - Fix identation error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3166ee2f0a14b6d46f826432c2bc94570c79c750 - note: |- - Update .goreleaser.yml - - Fix error in yml config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 787ad7dead7942a1b17e57a8d81dcdca586096ba - note: |- - Fix error - - Fixed error in the goreleaser file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e5fe1faa451901c09169b45a57b47878c69c404b - note: |- - Added some corrections - - Changed the message at the moment to save the configuration - Added permission to snap to use the network and network-bind - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 72708d8c5b44ca505702bbed63b7c4ee4fa88347 - note: |- - Fixed error in goreleaser - - Chnage classic to strict in the confinement config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 497e0750f6992c2cb7466b54edf359e3e3c69493 - note: |- - Modifications in logic - - Modified the logic in the k3s config cmd - Renamed variable defaultRemove to defaultYes - Added new confirmation (UserConfirmedOverwrite) - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 29250021f47f14ca3086c6a6be7da7748b2facc5 - note: Tweaks to install.sh - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 148a0473315bc5c08309b4c1476ed909ce1f7355 - note: |- - Add configuration to snap - - Add conf in the actions - Add conf to goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3bea636cf1e0a8bef675fd3a5080d2bcca71369f - note: |- - Update README.md - - Remove the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d118e1e320abda0a1d5e741e1986a0992c5c9fac - note: Update the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0da2f4ffe13e6f9415c77966095ecc74902967a4 - note: Add badge to the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8a1430f990db69b8d01a30e5e014a6043ebb4627 - note: |- - Fix error in the config - - The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b0d63fe2a78227083c500f200877d8c2aaeeb3b1 - note: Fix user in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0b182a0b81cee64ef718a9cacd4026cd89b23602 - note: Update the image to alpine the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 00942fdb12b418796aadf3a9e3a0a682b50535e1 - note: Update the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4d4ac16595f55058355b76a35c11dacb0b79db70 - note: |- - Update the cli - - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0104cacdaf3c3d344105397bab003b635efc0a74 - note: Fix wording - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 1597d82f7349fb53fefd58a21c64612bc791491c - note: Update README now this is the main tool - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: f42b14ac14b325df44197eb087be692e379e2b1a - note: |- - Remove comments - - Remove unnecessary comments - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 578d62d7aeda36c7a7d6c04b8201a452e16082f0 - note: |- - Run new test - - Run new test to see if we can push to all repo using the civobot token - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 425f84f58773a956f54e4f5c4c1feab247fe0a7d - note: Test brews releaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bdc4a966a0d181536816f311c5265c73856d62c8 - note: Try to fix Homebrew releasing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 4b0a350b61435d52d9567ec39cb60053b4f33022 - note: Fix goreleaser.yml - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 2801d33908df17f0241b272258fb5c880457d590 - note: Add homebrew tap updating to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 8ed9c0bf481143e9ebf0a24f2e9b173331294c5a - note: |- - fix(Project): Added some fix - - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ef039b50d1d53c800d9031cdf23cf50cdd0857da - note: Lots of minor tweaks - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 82901093fc2939dec1da99094dbcc7d1310d6191 - note: Changes to instance create - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 7e16e37dcfcb7f82480514830fce2fb1e1550af2 - note: |- - feat(Utility): Add TrackTime - - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 268021cf061896e31d8fb66a368ef748b3361df9 - note: |- - feat(Utility): Add random - - - added random to generate a random name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 47c1480670ca0bb46f932b2f4afe84cb0973d9fa - note: |- - fix(Bug): Fix bug found in all code - - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 04c0775edae20e57312fbf8eaafccc52db622417 - note: |- - fix(Domain): Fix some error - - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2e584464b8725b0246842b21b209139d10e74ece - note: |- - feat(Install): Added install bash - - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 11f44f4b647dbe98ec3511664871d5ba85562d9d - note: |- - feat(Completion): Added completion cmd - - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a082fdaf8f90434c67c708fb2098d93b0140dfd2 - note: |- - fix(Project): Fix the some bug - - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d3e46926c5e71537c1587e822de9a1f198aae554 - note: |- - fix(Volume): Fix the example - - - Add the NAME to the example section - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0119e35155ff8c13956826cd8686851c7756c1de - note: |- - refactor(Project): Added example to all cmd - - - Added example to all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b5659302122b04584d73bb6d4a45f2d00c6cd9cc - note: |- - fix(Network): Remove Name from the table - - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2cb08795f79d0663d47e00372a125a820c75c2a9 - note: |- - fix(LoadBalancer): added new alias - - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 36f932ee2c91c029acddb796e6a876c7807d3b6a - note: |- - refactor(Project): Modify all project error handler - - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d4b805530cc900310ae9505a0005f09b46c72c97 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 732fcc412c26278f8bdd5f69483c6783d932f607 - note: Merge remote-tracking branch 'origin/master' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: fe625b9b79e81194e910afd01420738137aab486 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b4af168b9bfe437fbf01e8a72ff62c22d233e928 - note: |- - fix(Version): update the version cmd - - - Update the text in the cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 174023026da3f08e8bc1f033e96888bd185798ba - note: |- - fix(Version): change the version cmd - - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 75fe68e8939d7234ad729e589b5a01dc95a8ac6d - note: |- - fix(Version): update the version cmd - - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f01cff849b7b2dda0a1cbb5e4161e36ebac5101e - note: |- - fix(Version): Fixed the version cmd - - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3ecf80b0b3d5b8150906aa1b853e1429d85838c5 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b35e0cf5ab5eaa5f2854440dd453c9011b912976 - note: |- - fix(Version): Fixed the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 122998f82bc69a7d66e3bf5bb2d0b1757c32615b - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c84e24618842b2351cdc0584c69897a41925e0ba - note: |- - fix(Version): Upgrade the version of the civogo lib - - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aaa6a091f3f239ac5ce599f89bcf7534aca86d29 - note: |- - feat(Version): Added the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f4b78e1bc29b47ca3639d035e544201b94f9a5ef - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6beb0cafd403e919897e8bcab518b78ee9a3b8b1 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0953e5312869a959e0619727edbfd56f36588239 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0ab428ae5839d2d67dab45ff73fcf4ce39fa6b20 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2d05ff91b90f7d74601840296b5b962006fb60fe - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5b12fdf7f5d0e1964b83af54ecbc688fd9dfcac8 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 44ad7dffab733f7df7c780d474294fc2b37660c7 - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bc2f508fd29096827a6f1c3b0175ed6334eaa958 - note: |- - refactor(Project): Modify all project - - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: daccd7ba948e2f48b161001592a2d59297771a27 - note: |- - Merge pull request #2 from civo/dev - - Merge dev to master - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 7ad58ed4cb587e6836f7330325948f36c089ed5f - note: Add all but one instance command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 3f3b06e3c3bec486533a45aa98f5433021ce3c7a - note: Split more commands out in to their own files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 2ce2979055ac4ada6ec94afe1d9b6046fc2180f2 - note: Split instance commands out to invidual files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: d24951afb315e56ec6450a1743d2a8fc17011ca5 - note: Add console and reboot commands - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: cd811766d401e0701144001afcf348176f311c7d - note: Add github token path to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: d01e3ed898e543bed5c762ae43138caf3a190fab - note: Add testing workflow - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: GitHub - email: noreply@github.com - - commit: 6410d22beea3bdf6108a8bcb16d1435117b8a452 - note: Add goreleaser support - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: ec0634b6681cac4c5603f0061c79f98c3a1eb9ec - note: Add the first action command to instances - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 52eeee287baed7e1579c056ad778384a568e2d98 - note: Change OutputWriter to use labels as well as keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: e15de86cb3ac94dc81ab68bdb3e64549af5f1525 - note: Change to use Find* in civogo - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 417c47aadbb899137d556f9fac0c5ca9547bc744 - note: Refactor to new OutputWriter - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f7201a0995cc2a3a76399e3ad27ad87761c3ef4a - note: Add size command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: a07f44a6aade894e431f5262d39c667ca4afb2f4 - note: Add quota command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 48cd4f0c750403ab2e0c0d0caf974dfaf5393ab7 - note: Add Region command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: bc9e3d53d2fbd61aaaa3b26b4a4009e5a929f19c - note: Complete API key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 7f7fb17fbff9152f3a1fce5603de1704be7d0e96 - note: Remove unnecessary comment - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: ea215e4fd79632af5fa67f5c5b49611b197ee1be - note: Remove (old) accidentally commited API keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 94421615da2bb2fcd1a1d89950076c8088d31c8b - note: Complete API key management functionality - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 4beb5f1eb0b8fe8f10537278f02fb5ef3b599531 - note: Add API Key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 17848b6804d99a943a75ef284073b0945a880e35 - note: Update links in README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: b9fc702ce61cdbc00a3613f6ebccdeb53a7392e7 - note: Add plan to README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 38300f4e28497ad03ccb0cbf37f481bcd9ffc424 - note: First commit - initial makefile - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 0370dde0fded4c82af2a0d5a0c4c27af70b6e1c4 - note: |- - feat(Template): Added the kubernetes cmd - - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 59a4231cc2d05ae540b709fe9a62ddaf81189484 - note: |- - feat(Goreleser): Fix the goreleaser file - - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f4065826190d15c049dbc56667076823432c75e - note: |- - feat(Template): Added the template cmd - - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6a84a030a66953568f7b15d5c9c85b543350dd5f - note: |- - feat(Volume): Added the volume cmd - - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 775885d0032545f358de10beadd7275e86aac4dc - note: |- - feat(snapshot): Added the snapshot cmd - - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6c6d035ec7f37ae6cfe103a5a2c5274715c97489 - note: |- - feat(network): Added the network cmd - - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f3a6445069c87b1d97c93ea21b1d06ab401f7b5 - note: |- - feat(sshkey): Added the ssh key cmd - - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 410abb5193bd01dfa92fcf921e4c4a0f2a72473b - note: |- - feat(loadbalancer): Added the cmd loadbalancer - - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0ad42aeda4b6093400ee1fbbfa4aeb4ee29eb3b6 - note: |- - feat(firewall): Added the cmd firewall, and firewall rule - - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 51de188d9e36f5b1241eb95c82caaa93c72c36bb - note: |- - feat(domain): Added the cmd domain record - - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 698df535b230d8e09662ee350818502cf54374f8 - note: |- - feat(domain): Added the cmd domain - - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 22dcec052d7401038ee9eaf268cd6ffe6c23d8fd - note: |- - feat(instance): Added the option to create instances - - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1d1130384be0e780617515d0ceb98926dc6aad58 - note: |- - refactor(apikey): Modify the apikey - - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 430a411432809cc0c8c9d9194030c7167c00884e - note: |- - refactor(apikey): Modify the apikey - - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a8310907409d3341df9443422adec992f00ca338 - note: |- - refactor(apikey): Modify the apikey function - - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: de91a6e05f13e77443a7127ac270d0afdd9136ea - note: Update app name in tap-release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: fa017dffb98e0f9afaa6f6807e3135f0ce4c5c65 - note: Create automatic tap release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 69f2d1d8b1f6a412c729c38e2cf3bb44898f0c02 - note: k8s usage update, and markdown linting - author: - name: Steve Miller - email: me@r15cookie.com - committer: - name: Steve Miller - email: me@r15cookie.com - - commit: e6ed4e78a2cd6e39caa6db34149f8485a49a0d5d - note: Selective Makefile - author: - name: Steve Miller - email: me@r15cookie.com - committer: - name: Steve Miller - email: me@r15cookie.com - - commit: 46b80c819a06f4536973ac5e113db81514849d84 - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: eb9ff675f8a7bd83bfeda44a5c9cce2787962f3e - note: Added the auto update option to the cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: dc14aa15850cce462ab741b08a4363c44aedfe21 - note: Update on apps, minor quote addition - author: - name: Steve Miller - email: me@r15cookie.com - committer: - name: Steve Miller - email: me@r15cookie.com - - commit: 03287d3169ca6e07894b7c40287d21a4f80d7c94 - note: Removed windows specific file removal, as it's not needed. - author: - name: Johannes Tegnér - email: johannes@jitesoft.com - committer: - name: Johannes Tegnér - email: johannes@jitesoft.com - - commit: 2420613f3b270e457b88fe2bda09a46da3049cea - note: Updated kubeconfig -s -m command to make sure the file is closed before trying to remove it. - author: - name: Johannes Tegnér - email: johannes@jitesoft.com - committer: - name: Johannes Tegnér - email: johannes@jitesoft.com - - commit: d6ac0b6b9fac8436209be4fab02697c231eb400e - note: Grammar fixes in user output - author: - name: Kai - email: kai@civo.com - committer: - name: Kai - email: kai@civo.com - - commit: 813c6193d9177bafd44b8f63228a544fda014acb - note: |- - Fix Transcribe in WriteCustomOutput - Test is ok - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: 0cc50313e0751b014563274be70f37398440089e - note: |- - Failing Example Test for Fn WriteCustomOutput - - Code is broken - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: 7d6370587365727b0e212f6f5cde79b822ef1aca - note: |- - Merge pull request #35 from jaysonsantos/patch-1 - - Add windows setup guide - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: d61ce9c21fd2c958bcfcab600b888fd0580fbf1b - note: Add windows setup guide - author: - name: Jayson Reis - email: santosdosreis@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 910390c5ade572cb9519ab9b2aee245ce02c131b - note: |- - Add recycle node info to README - Usage information, reasons for using recycle, and a warning that the action - fully deletes the node. - author: - name: Kai - email: kai@civo.com - committer: - name: Kai - email: kai@civo.com - - commit: d872c509f8b245a0513d293110a0a332529c8a57 - note: Reword error message when setting a region that doesn't exist - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 3d41504671cb1d44e518f7bf2c8468b919d59da5 - note: |- - Merge pull request #45 from DoNnMyTh/master - - Update on README.md - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: c0982c8228ccc5cfc8fdc59808263b446849b1c9 - note: Fixed typos, merged 2 region and regions section into one, added command to change region - author: - name: DoNnMyTh - email: amit2cha@gmail.com - committer: - name: DoNnMyTh - email: amit2cha@gmail.com - - commit: b3eacf1e2daa76d41d45834658ee840860431a13 - note: |- - Merge pull request #49 from DoNnMyTh/patch-1 - - updated README.md - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: cc1bd1a52426d304801e285ebb2e8483d20a9893 - note: |- - updated README.md - - Corrections - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: bef90aa0a4590201962040bfd3453d3280b13109 - note: Resolve Issues with install.sh - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: 4cc77f89a4b67cd29efe2236942084a18ea9a02d - note: Resolve missing fatal function - author: - name: Martyn Bristow - email: martyn.bristow@gmail.com - committer: - name: Martyn Bristow - email: martyn.bristow@gmail.com - - commit: b4c369965a0bfec1d7ed282a7b52cde4fe9d5ea7 - note: |- - Merge pull request #59 from DoNnMyTh/patch-2 - - Updated Readme.md for chocolatey support - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 30461e9fe01c586a2cf9bcb44759189830c276bc - note: |- - Merge pull request #58 from shanmukhkotharu/master - - added "Installing on Linux" - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: ec43b0a6ca36050f4bf0b0aea84a0c009ef054ee - note: Update README.md - author: - name: Shanmukh Kotharu - email: 43720664+shanmukhkotharu@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 0fd2e34ad14e4e7314311cfb7475e38668edfbca - note: Update README.md - author: - name: Shanmukh Kotharu - email: 43720664+shanmukhkotharu@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: ad84c28d7e5b3a45a058e10d104ebbad33d93634 - note: |- - Updated Readme.md for chocolatey support - - Updated Readme.md for chocolatey installation on windows - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 827c7d65e68f4bb96e41a75c555f2207fd85b6ff - note: Use arm64 binaries for arm64/aarch64 platforms - author: - name: beret - email: 69595+beret@users.noreply.github.com - committer: - name: beret - email: 69595+beret@users.noreply.github.com - - commit: 2dadf24ba5ad32ac1f917989966f6a4f7dd89daa - note: Minor README formatting for macOS and Civo CLI - author: - name: beret - email: 69595+beret@users.noreply.github.com - committer: - name: beret - email: 69595+beret@users.noreply.github.com - - commit: e0043d4af4ab16ab501db5c29b1b2d0a13d94305 - note: |- - Updated readme.md - - Added Installation via wget and brew in Linux, Updated readme.md - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: d17b03f98d9825d06b24622c3818f6ee241b34a7 - note: |- - Fixed spelling mistake - - Fixed spelling mistake case when app is not found (Spelling of found) - author: - name: Amit Chaudhary - email: amit2cha@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: b1e0fc94b9e659e42d706ae0342789f3b60c4689 - note: Fix typo in default config - author: - name: Stian Toften - email: stiantoften@gmail.com - committer: - name: Stian Toften - email: stiantoften@gmail.com - - commit: 48f308578219330c93b84f7eabfe901db8d4facf - note: Add missing default region warning to all commands that need one - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f91e42114bedd4e5d3132c6f2d97c39b23c4b163 - note: Remove global warning on default regions as some commands don't need them - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 36399b76710072c8eec0dde4edeb49925748ef3e - note: Add utility method to check for if a current region is set - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 8986e65059275f63ebb5844f0e3a54f5360ceedc - note: Don't set a default region when creating blank configs (and certainly not SVG1) - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 824b617ea575e817f79161bb094e47afe4ff2846 - note: Fix typo in variable name - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f9df4cd28c9c96034514ed4a285b31458d6cfe80 - note: Get the default region from the API when adding an API key, if one isn't set - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: e3ca6605dc72f1c4c21370ec9c81b29fb776d507 - note: fix log msg - author: - name: Rajat Jindal - email: rajatjindal83@gmail.com - committer: - name: Rajat Jindal - email: rajatjindal83@gmail.com - - commit: f513044ccbb4f405d0099e8c4295ea645f214e43 - note: Update README.md - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 8050fae92fbfb116a141524127b2f80ce9e03732 - note: "Merge pull request #95 from SubhasmitaSw/documentation\n\nImproved the documentation and fixed little typos and punctuations. " - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 8c9aeadbd212eedce5ca4549dd4a17ab65d775f7 - note: Update DEVELOPER.md - author: - name: Subhasmita Swain - email: 57298668+SubhasmitaSw@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: fe3168724b2e607a2ed9b7d586096d17d22c2f05 - note: requested changes are updated. - author: - name: Subhasmita Swain - email: 57298668+SubhasmitaSw@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 455828a0860cd73d5b6ba2bbcd167788ca656ac9 - note: Improved the documentation and fixed little typos and punctuations - author: - name: Subhasmita - email: subhasmitaswain232@gmail.com - committer: - name: Subhasmita - email: subhasmitaswain232@gmail.com - - commit: f3ea046be6bbd397a157910602d713e64412ed61 - note: |- - Move error check - - Move the error check before any access on property. Fixes #84 - author: - name: Engin Diri - email: engin.diri@mail.schwarz - committer: - name: Engin Diri - email: engin.diri@mail.schwarz - - commit: f9476051e435d49cec774545897d0459ce73f167 - note: |- - Merge pull request #99 from dirien/fix-84 - - Move error check position - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: d96aa357f41db7e7036415f7ee2377e3caa64ead - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 1b03bb2a0fb5325784d7a456fb66872ecc26e7fc - note: Update changelog - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com - - commit: 182692cab0986e291508fe30e3d5d78ababa92a4 - note: Add support to save API key from stdin - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com - - commit: 7a9c9be1d97185663c62a80ab9c2c1dfd9d6dea5 - note: Update changelog - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com - - commit: d3533c97206780d48b94bef785b176bdf8b97971 - note: 'Fix: removal of newline for api key name' - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: Harsh Thakur - email: harshthakur9030@gmail.com -- semver: 0.7.25 - date: 2021-07-09T13:11:22.495641+01:00 - packager: "" - changes: - - commit: 3489c95ad7700863c47fa7f0ce04141cdb8da0c5 - note: |- - Merge pull request #103 from civo/Fix-apikey-newline - - Fix addition of new line in API key name - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: 7da655a3652e1ad944ec1559b6d896656582aa53 - note: |- - Merge pull request #102 from civo/apikey-stdin - - Add api key through stdin - author: - name: Harsh Thakur - email: harshthakur9030@gmail.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.7.24 - date: 2021-07-01T19:20:41.502313+01:00 - packager: "" - changes: - - commit: d96aa357f41db7e7036415f7ee2377e3caa64ead - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 117ebe6ce20f8b21b0a3c6a8c97eeff4d853e08a - note: Fixed error in the network rm command - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com -- semver: 0.7.23 - date: 2021-06-11T23:23:12.870563+01:00 - packager: "" - changes: - - commit: 1d924e094995b232a944586e1e27367629e4ffbf - note: Fixed error at the moment to set a new region - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - - commit: 3c4f01a4a846c50fab6b0a7f79403f1113d9cc2a - note: updated the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.22 - date: 2021-05-23T15:26:39.362322-04:00 - packager: "" - changes: - - commit: bc005a6295cf4f350618183ed6e214193ff2f61c - note: Standardized json outputs - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.21 - date: 2021-05-23T13:48:16.204708-04:00 - packager: "" - changes: - - commit: e768441c0af3d94f05d989168e15c22fccc0686e - note: |- - Updated the civogo lib to 0.2.47 - close #82 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4f6e53f87f7f779b256c46a23635afbd94d4815d - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 32a6e079c370b0cb902242cd763be61e7d7ccd62 - note: |- - Added changes in the json output for all cmd - close #92 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 52bdd8064cd929b5a17e2810a3d26b386f1c4f98 - note: Added the --pretty global flag to print the json in pretty format - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a77bb4304f889c35c9614b4dac33b2a7ecdf91e9 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c54fdf15b707d5824ef677ae100b68c0bddb2357 - note: |- - Fix error in the application show cmd - close #94 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 912d2ba929fdcf55cb51627fe9707840d804cb2f - note: Remove debug statement - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 0172994e69e3773816b08b77088ba27086ae6949 - note: Fix for breaking new customers adding their first key - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk -- semver: 0.7.19 - date: 2021-05-11T14:19:26.479607-04:00 - packager: "" - changes: - - commit: 1994ff59fbe6663a630f539f3aa31745e6db000f - note: 'Fixed error introduce fixing the issue #90' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.18 - date: 2021-05-11T11:44:57.324296-04:00 - packager: "" - changes: - - commit: 2d838d495a5717ee1ee79e725c15318cc5de907d - note: |- - Fixed error in every command exit status zero - close #90 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: dc7246565d59d35ac963e36efda6a21331d9f38e - note: |- - Merge pull request #89 from rajatjindal/fix-log-msg - - fix log msg warnings - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.7.17 - date: 2021-05-10T19:37:38.025607-04:00 - packager: "" - changes: - - commit: faff826d05639dbf9a2ea9531133b43aa0de0f24 - note: Updated the civogo lib to 0.2.45 how fix problem in the instance cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.16 - date: 2021-05-10T10:10:46.968076-04:00 - packager: "" - changes: - - commit: 48f308578219330c93b84f7eabfe901db8d4facf - note: Add missing default region warning to all commands that need one - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f91e42114bedd4e5d3132c6f2d97c39b23c4b163 - note: Remove global warning on default regions as some commands don't need them - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 36399b76710072c8eec0dde4edeb49925748ef3e - note: Add utility method to check for if a current region is set - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 8986e65059275f63ebb5844f0e3a54f5360ceedc - note: Don't set a default region when creating blank configs (and certainly not SVG1) - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 824b617ea575e817f79161bb094e47afe4ff2846 - note: Fix typo in variable name - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: f9df4cd28c9c96034514ed4a285b31458d6cfe80 - note: Get the default region from the API when adding an API key, if one isn't set - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk -- semver: 0.7.15 - date: 2021-05-08T13:53:29.918361-04:00 - packager: "" - changes: - - commit: 8965abe8b0d0b1aabce13b188793e61244f97fa8 - note: Fixed error in instance create cmd, now you can delete multiple pool in a cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.14 - date: 2021-05-06T10:29:58.339384-04:00 - packager: "" - changes: - - commit: 717623a6033dd90ea846cb326eb7ce4e2696abdf - note: Fixed kubernetes cmd and hidde volume for now - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.13 - date: 2021-04-18T21:06:58.628264-04:00 - packager: "" - changes: - - commit: 2f2d4a9fe3b1902f89de78073cdd2a5f30d8b7e2 - note: Added multi remove option to k3s, network, instance, domain, ssh key, firewall - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b779d6c52935440947838e35e3f754a0fe4e97c0 - note: |- - Fixed error in the show cmd in the instance - close #81 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d2737d89dd53351d73cf2196987da4e3a585ca9d - note: |- - Update README.md - - updated the Kubernetes options - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.7.12 - date: 2021-04-14T10:28:18.868863-04:00 - packager: "" - changes: - - commit: 8d95e5473855eba704a43ba9f3ba418f89a33d70 - note: Fixed error in the CLI also added new cmd to instance and kuberntes and new param to the size and updated the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a762c1d705870520785f60c0c0d782c34803fdbe - note: Added the last version of civogo lib v0.2.37 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.11 - date: 2021-04-06T17:57:39.989017-04:00 - packager: "" - changes: - - commit: 52b2612ac1c7cc491eeca594be311ad31f6761fb - note: |- - Updated the civogo lib to 0.2.36 this will be fix scaling , rename bugs - close #71 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.10 - date: 2021-04-02T09:42:35.143163-04:00 - packager: "" - changes: - - commit: 5bde617f0d2a0552ff07179ebdda2414c8435370 - note: |- - Updated the civogo lib to v0.2.35 - close #73 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b6b7dd60304888b0aca4050e01dd324bb769e6d5 - note: |- - Now domain create show nameserver - close #74 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 4fe4112637195d313ce2271141251484790f2b7a - note: |- - Fixed error in CheckAPPName func - close #76 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.9 - date: 2021-03-12T14:24:01.856311-05:00 - packager: "" - changes: - - commit: 1e962709faeb3c24bcd83cf5820b750a20655822 - note: Fixed error in the output of the CLI - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7e16d8ebf28691b313809c7423a28448a8d1205 - note: |- - Added verification to the kubernetes utils - close #27 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ed88a8a92c29f2e8cb504de2053d76ffc6a34c34 - note: Fixed more error in golang code - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3af72defdd5d8b631459f751608f03d567088411 - note: |- - Added some verification to k8s cluster - Fixed error in golang code - Close #64 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: efdfff99f11b2479d8cff450b7ce5e26f6f26304 - note: Updated the civogo lib to v0.2.32 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0b4e35703f0a57519ff9b74dda17028b3a3d9293 - note: |- - Merge pull request #72 from stiantoften/typofix - - Fix typo in default config - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: b686acccc4d05dc8732e37fc809979e9a010ab4d - note: |- - Merge pull request #69 from DoNnMyTh/patch-1 - - Fixed spelling mistake - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.7.7 - date: 2021-03-10T08:33:26.227557-05:00 - packager: "" - changes: - - commit: 48dbcaf218c01ddcda253c624f1c62c942e4f56e - note: Added new cmd to show the post-install for every app installed in the cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f851ed70253483f83ecec31789fe8879f874c3e9 - note: |- - Merge pull request #66 from DoNnMyTh/patch-4 - - Updated readme.md - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: ef8e37eda068466cffb492bdca7e6ef5a6b52121 - note: |- - Merge pull request #62 from beret/darwin-arm64 - - Make install.sh prefer arm64 when compatible - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.7.6 - date: 2021-02-28T00:04:37.303073-05:00 - packager: "" - changes: - - commit: ea7b5b89c8513f254cfef6f18fd15736b250d3bb - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3156e008f60ce31a42b3865a5b4184f9aa7e4d07 - note: Chnage to go 1.16 to build the binary for Apple M1 too - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ee1783fa8424373079cfa375e44d64b546ecf3d7 - note: |- - Update the the civogo lib to 0.2.28 and fix error in the show command of kubernetes - Close #57 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 621e66a6571c1d5b47fda139a2de519ae1a7e07b - note: |- - Merge pull request #55 from martynbristow/master - - Resolve Issues with install.sh Script - author: - name: Alejandro J. Nuñez Madrazo - email: alejandro@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 3f876df757ab81bf4bc12b01bb1376c232dd5681 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.4 - date: 2021-02-20T17:37:50.394488-05:00 - packager: "" - changes: - - commit: 8346ff2023d19f494c1f945337f9f0d5926432e8 - note: |- - Fixed bug when you create a kubernetes cluster, also add suggest to the remove command - Close #51 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2ea5e0d6a4c8cc7a43285dad34aa9de4bed75144 - note: |- - Fixed bug in the kubernetes create command - Close #51 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b4d974b92b49f6ebc62bd597176eeb54b8701b67 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.3 - date: 2021-02-19T16:11:11.605972-05:00 - packager: "" - changes: - - commit: 9c259c32f9f9a04ec93a9e8b75875f776095545f - note: |- - - Added the merge flag to the create command - - Add some verification to kubernetes create, now you need pick the right size of Instance - - Add auto-complete to the kubernetes show command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 0aa316370665a3cb86e83b7a27f7429a35586e8a - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ad87c6f8f440b86272b970c427cc6d742e0952cd - note: |- - Fix error in the creation of kubernertes - Close #46 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6ac46a0e13268796b491a6338b718e0665593907 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 69d947287161b4b81d4c88a103aa3f2c8aae4551 - note: modified the network field to use the label value and not the name - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 32dfda4782f9973dd3b20b53800876eb3873f855 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.2 - date: 2021-02-09T22:58:17.97599-05:00 - packager: "" - changes: - - commit: 8bcd181d9789793b5d1e94e7ea2b90d64390ef30 - note: Added the `-network` param to the firewall cmd also added the network to the list of firewall and updated to the last version of the civogo lib v0.2.27 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 92905a2948f0945c504c5b94497c68a18a8af293 - note: Updated the changelog - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.1 - date: 2021-02-09T13:14:28.929673-05:00 - packager: "" - changes: - - commit: 57186e0c23a44d9390aa37b745a545bdc5980fad - note: Fixed error in the goreleaser file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a8973554ad592eb89532b1a6bd8d4e3dafbd21e5 - note: Updated gorelease to remove some deprecated options - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 63385a006805e1b8b4681b6c3e2ba58d82d86376 - note: Updated the civogo lib to v0.2.26, Added a check in the instance and kubernetes command and remove some field from the region list - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 30439ca98d5520bee7a0696babddb804d4f26ec2 - note: Updated the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.7.0 - date: 2021-02-08T17:49:13.636336-05:00 - packager: "" - changes: - - commit: cc0a3c2a6be83e860223e891e8e9f8b10bd2e148 - note: |- - Added region to the CLI - - Now you can pick a region and set as default - - Added new flag to use in non-interactive mode `--region` - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: b9179edb91e83e8e9b78e7fa09bec159d19fd410 - note: Added the option to set the region in the config file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: aeab445273a4ccb7f62eb4ecc71feac0ac3c2827 - note: Support CIVOCONFIG as an ENV variable to override config file location - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - - commit: 82e09be5c2e9b50e1ef6267899471128cb66e3ca - note: |- - Fixed error in the README - Close #41 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.46 - date: 2020-12-10T12:09:34.642403-05:00 - packager: "" - changes: - - commit: a1c3a5871bf77640dab14b740fb304d7c816d64d - note: Fixed error in the kubernetes list command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 17007e301789b9c71b0050cc0df5a93b584b6d93 - note: |- - Typo and readability fixes (#40) - - * Fix typo in output of firewall listings - - * Clarifications, typo fixes - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: 98f6850d70d67ef4d2dc5a8e9f4f4fecb866f871 - note: |- - Merge pull request #38 from kaihoffman/master - - Add recycle node info to README - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.6.45 - date: 2020-12-04T13:10:51.209979-05:00 - packager: "" - changes: - - commit: 5e789fe32d37087f9864e303dc79b1bfd455230a - note: Fixed error handling in all commands - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.44 - date: 2020-12-04T12:18:52.416185-05:00 - packager: "" - changes: - - commit: 2b8f4d9284a4748245ad0f47385aef444d702d5c - note: Update the civogo lib to v0.2.23 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9355e877ae7b8796f3ce099602a313898671a225 - note: Merge branch 'master' of https://github.com/civo/cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 585b9d16020c661c471893228cfd0c1cb0c46da3 - note: Fixed bug in the install script - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.43 - date: 2020-11-29T08:28:53.543806-05:00 - packager: "" - changes: - - commit: af8c5e7ddc5cf4ca6b5a77f7e98c2fd75cbbea09 - note: |- - Merge pull request #34 from martynbristow/master - - Resolve Defect in Civo CLI Custom Output - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.6.42 - date: 2020-11-17T20:54:27.272273-05:00 - packager: "" - changes: - - commit: d5695bff29ed400c54fe3363b045a4aac6771e45 - note: Updated the civogo lib to v0.2.22 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a7b6ef7eeec2b38a38a11263cc20a2e9b61d98f1 - note: |- - Merge pull request #33 from kaihoffman/master - - Grammar fixes in user output - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.6.41 - date: 2020-11-11T09:16:34.039619-05:00 - packager: "" - changes: - - commit: d2457212d6521dffe545a5833cfcfd12c1c6e994 - note: Added the recycle cmd to kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.40 - date: 2020-11-07T11:27:46.074775-05:00 - packager: "" - changes: - - commit: f89b57e509edd31624531ed09b2b388f3e9e35d1 - note: |- - Fixed the permission in the civo conf file - Close #32 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.39 - date: 2020-11-01T22:20:21.302231-05:00 - packager: "" - changes: - - commit: 3ce2c9694aa4dd2940dba8d8161d26fc6db9b2c8 - note: Added powershel and fish to the completion cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8820f312bfa1b657fec9e6474e4657bbf7ec3bad - note: |- - Updated the civogo lib to v0.2.21 - Close #31 #29 #28 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.38 - date: 2020-10-16T10:01:43.613273-04:00 - packager: "" - changes: - - commit: b59581ea97a669b44c12adab65ce924aa1394565 - note: |- - Merge pull request #30 from Johannestegner/master - - Kubeconfig save/merge fix. - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - - commit: f2d000b92f9f8110acb057dee5a36fb72543b571 - note: Updated the apikey output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 318d5988aa26ac4b1e8a813382db4abf4ce2a6bd - note: |- - Update README.md - - Add Fedora-specific alias instructions; - Minor grammar fixes - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: a4abc2b0628bfe07c7851217472add10144b9a6a - note: Updated the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.37 - date: 2020-10-09T08:53:56.455079-04:00 - packager: "" - changes: - - commit: 52beb72e47967962953d235714fdc700348f0831 - note: Add arm64 to build list - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.6.36 - date: 2020-09-25T14:29:56.812183-04:00 - packager: "" - changes: - - commit: b99f42589f6a775c070b20d281e3febdc3bab57c - note: |- - Updated the civogo lib to v0.2.19 - Fixed error in the cmd instance create - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.35 - date: 2020-09-23T10:58:08.966956-04:00 - packager: "" - changes: - - commit: 9879243af3d13bc3994f688c11f007d8da7b4c10 - note: Updated the civogo lib to v0.2.18 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 102dd5d622071012f6844e627dc51ca9fb596ca1 - note: |- - Update README.md - - Clarify merging and saving of cluster contexts - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - - commit: b4cce868cd3e689d66fc2f5aee8d595e9ab8aa44 - note: Update the gitignore - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 999d0895795bbfa90bb13f982c9e6d9b2e8450e4 - note: Update the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.34 - date: 2020-09-12T23:05:08.879769-04:00 - packager: "" - changes: - - commit: 594884e155cd5fc0f83098bed6e8f2576c044294 - note: Allowed SRV record type in the DNS command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 10e6d50dafa802b0ebe09301b980d364c5d51a75 - note: Updated civogo lib to v0.2.17 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.33 - date: 2020-09-09T09:36:03.911851-04:00 - packager: "" - changes: - - commit: 422d393387e27a3541d018e322e8c7aec4a1bdb7 - note: Added STOPPING status - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.32 - date: 2020-09-08T14:44:46.188871-04:00 - packager: "" - changes: - - commit: 98939932c6c253dd23a41b4dd2cbdac74b51a452 - note: improved the custom output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.31 - date: 2020-09-07T17:53:00.398973-04:00 - packager: "" - changes: - - commit: cc05acff75916993ed3807284f3324fae5ee4392 - note: |- - Fixed error in the custom output - Close #14 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c8815d73a4ed235543a0fc96f7facda36d3ae7b6 - note: Updated the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3900c15e2b88a43055964ba1f69379872d3bbdae - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.30 - date: 2020-09-04T11:46:43.975327-04:00 - packager: "" - changes: - - commit: 9d479dae6508eed25e24ec999340f9bda447f723 - note: Fixed typo error in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 30376d69436ad0955c6fe5274b31f43ea6fa3748 - note: Updated Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 73e5e0d819f3c834afbbbb3e0431e1018c2756e0 - note: Fixed error in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 6054efff2a4886818c1b6d5a250771eee428a32c - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e2d0d5f898b913f8540c49e86d631b593b234ad7 - note: Updated the Dockerfile to add curl - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 9ed54ddd95dcbce36b6fc98e9df4c4926592a113 - note: Update the Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 65c2c23c8c812bb8c8e343d86c6e0cca01db340f - note: |- - Added kubectl inside the docker image - Close #25 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.29 - date: 2020-08-26T09:22:19.083163-04:00 - packager: "" - changes: - - commit: 381ab929d2b22208eb492baddd5a710b3c8f5cec - note: |- - Quota command improved - - When you are at 80% or more of the quota, the numbers change color - Close #23 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cb8c73d5c3fe8889ace12e3c564a3cbd2042034c - note: |- - Added new show command to apikey - - update the README.md - - now, when the apikey are listed, the secret will be hidden - Close #24 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.28 - date: 2020-08-24T15:35:39.399734-04:00 - packager: "" - changes: - - commit: 8257fb4620c6df2368ad48b5fa441ad51510f081 - note: |- - Update the civogo lib to v0.2.16 - - Close #17 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5a2efa5e9c78a89dd86b1d38cf9248b7572bf2d7 - note: Fixed the config generator - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: ab8d0bbadfac3fed68765bf90b302ba9be1afc74 - note: Remove windows 386 build from goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 80a158eaf4795a845d39c2fe1057a06cc17a9719 - note: |- - Added verification to all commands - Close #21 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 2c616de4cf72c5882fb8fe1b6094d2eb13916c98 - note: Add a little polish for DEVELOPER.md - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - - commit: 3fefaffba96f52fec9a36c9be703ce917a140b18 - note: Added the develper file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.27 - date: 2020-08-20T08:28:00.946899-04:00 - packager: "" - changes: - - commit: add3b7f43d48e459c999d883fd83d8c378f62184 - note: Name changed to label in the message of remove - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: c7c57d9d14d7d4a03dd4291ddeb117bc55db64a0 - note: Updated the message in the remove command - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.26 - date: 2020-08-19T09:29:56.419404-04:00 - packager: "" - changes: - - commit: 09b3bbe2071779289c6afdb5d5865f5eb07d8cc3 - note: Update civogo lib to v0.2.15 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: a9c4334f1290f33806b0ef9c325303b0565bbb4c - note: |- - Added verification before delete any object - - Close #16 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.25 - date: 2020-08-18T21:20:13.989869-04:00 - packager: "" - changes: - - commit: e0f543c4cde0d9cf8edeb2cd8b87d680bd83e868 - note: Checking correct flag for Kubernetes readiness - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk -- semver: 0.6.24 - date: 2020-08-16T21:20:13.989869-04:00 - packager: "" - changes: - - commit: 9e0767c784b0843cc3a8c722a438b24bba27435a - note: Update on Kubernetes apps documentation - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com -- semver: 0.6.23 - date: 2020-08-14T17:03:30.731056-04:00 - packager: "" - changes: - - commit: fb51ae8c54f0666a62fc3a9a666a67b8b5a467e5 - note: Added new features when creating a kubernetes cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.22 - date: 2020-08-14T13:19:53.610105-04:00 - packager: "" - changes: - - commit: 53ef3806c02eed6739ec5e24a36b45a808300210 - note: |- - Fixed bug in output writing component - - Close #14 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.21 - date: 2020-08-11T10:40:46.149236-04:00 - packager: "" - changes: - - commit: 78e107de1cba3500d6c05172c3089663697a886c - note: Update the civogo to 0.2.14, fixed error in the intance create cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.20 - date: 2020-08-11T09:15:37.105805-04:00 - packager: "" - changes: - - commit: 8738797c38e75dc7605cc1d1d756904aabe1e2a5 - note: Fixed error in the instance module and in the color utility - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.19 - date: 2020-07-30T16:39:52.515641-04:00 - packager: "" - changes: - - commit: eb9ff675f8a7bd83bfeda44a5c9cce2787962f3e - note: Added the auto update option to the cli - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.18 - date: 2020-07-27T15:45:07.036361-04:00 - packager: "" - changes: - - commit: a30bb996a113c0856882b31fd2ec389af7078956 - note: Fixed color in the error message - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5257cc275ac6fdc95cb632017a3be75aa13d7eb4 - note: Update Change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 911cb6347da0595390168095b12df3baefcc37da - note: Added verification at the moment of delete a snapshot - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d35889a5d7700071f64653367eba814ad3730d2e - note: Change the lib to add color to the CLI - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.17 - date: 2020-07-20T07:40:52.220857-04:00 - packager: "" - changes: - - commit: 87326d25440924c29efe99b4a1e4cb684f052063 - note: Fixed error in the configuration of the kubeconfig - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.16 - date: 2020-07-20T00:44:04.289636-04:00 - packager: "" - changes: - - commit: 6dd3b56411d0587a392bfeaf314048cbf1bda7fb - note: |- - Merge all color utility in one place - - close #9 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 1094c0665a544559ff557f1088f3e26b407351a5 - note: Fixed error in the --merge option for the kubernetes config in windows - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cfb1259edb3bb81c358bab5bee4e228c62fdfe50 - note: Update the README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.15 - date: 2020-07-17T20:59:19.197562-04:00 - packager: "" - changes: - - commit: 950a432d622a8e698d61ecc32ad933d000ec082f - note: |- - Added the --save and --switch option to kubernetes create - - Now you can create a cluster and save the configuration at the end, if you use --switch when the configuration is saved, the cli automatically change the kubernetes context to the new cluster - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: bf09744073523d7e64d0b8456e283efa8ce475c9 - note: Fixed typo in the kubernetes config error message - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 7e4bb504599b966e2735bee05024ed6fe1ded79b - note: |- - Added verification to kubernetes config cmd - - Now you can't use --switch without --merge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f1f46612b3ca3282e8a91d49408c0d291a28d3c3 - note: Fix error in kubernetes utils - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 8b9fad392fe208982dd098f546224fa82b6e944c - note: Now if you use --switch with --merge, automatically the cli will change the context in kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.14 - date: 2020-07-17T14:09:53.750096-04:00 - packager: "" - changes: - - commit: 7baf88f4bb54e10d6c63ad967455a5e36baf4091 - note: Removed option egress as direction when creating a firewall rule - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 3df9c5b6f909b4c866b4f8b9034808927ffca9b4 - note: |- - Changed the words used to define the direction in the firewall rule - - Now you can use ingress and egress for the direction at the moment of creation of the rule - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: cfb6ca22841d442e850ae96e0d49059971da0d83 - note: Added .editorconfig - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.13 - date: 2020-07-14T19:29:17.913506-04:00 - packager: "" - changes: - - commit: a7fc88f91069b3fc2920768db77f71866500ebdc - note: |- - Added verification to the firewall rule creation - - Now if the user pass a diferent value in the direction at the moment of the cretion of rule in the firewall, the CLI will be rize an error - - This closes #10 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: f77cf09e561c5caa07c50533db68796546e46ac6 - note: Added new verification step to the kubernetes config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: 5dc1bcacd2e698403c822cef67c864dc5ee3dfe9 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.12 - date: 2020-07-08T18:09:51.334748-04:00 - packager: "" - changes: - - commit: 611120b17ddd64e45cccfe1661f85a099981b374 - note: |- - Added the option to install multiple application at the same time in the Kubernetes Cluster - - Now we check if the application is valid and and if have a plan the plan is valid - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: d6cc1d4288e5ee8d9daf99c860affa6990f10584 - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.11 - date: 2020-07-07T10:09:56.424793-04:00 - packager: "" - changes: - - commit: 6c5cfec77ae7daedfb41ce0e09d6b9132e390af8 - note: |- - Added CPU, RAM and SSD fields to Instance and Kubernetes CMD - - Update the civogo lib to v0.2.12 to add the new filed - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - - commit: e88016ef1d57f43c9a1e1c5b128250435baf97aa - note: Update the change log - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com -- semver: 0.6.10 - date: 2020-07-06T09:39:46-04:00 - packager: civo - changes: - - commit: 56719687625388e279ae8cd32675d5d114be687d - note: |- - Added new feature - - Update the civogo lib to 0.2.11 - Added MasterIP to the cmd kubernetes show - Update README.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added new feature - body: |- - Update the civogo lib to 0.2.11 - Added MasterIP to the cmd kubernetes show - Update README.md - - commit: feb35382606394c8163de2e7fba807dc736184d6 - note: |- - Fixed error in the Makefile - - The OS comparison was in quotes, when it should be without them - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed error in the Makefile - body: The OS comparison was in quotes, when it should be without them - - commit: 6caba09c2b99652ab580726f2e434da63ea6714d - note: |- - Merge pull request #8 from ssmiller25/selective-make - - Selective Makefile - author: - name: Alejandro J. Nuñez Madrazo - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: 'Merge pull request #8 from ssmiller25/selective-make' - body: Selective Makefile - - commit: e96b84a4afe2a67f8af43a1fe00c875c87a5b78e - note: Chnage the name of the fordel in Homebrew Formula - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Chnage the name of the fordel in Homebrew Formula - body: "" - - commit: 4a70e48bbe504373aa8ff54dbf4eec1c749a9f2d - note: |- - Merge pull request #7 from ssmiller25/k3s-docs - - Kubernetes Documentation Updates - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: 'Merge pull request #7 from ssmiller25/k3s-docs' - body: Kubernetes Documentation Updates - - commit: 10196c9991dddce2da8a92217c65f5669aef6650 - note: |- - Fixed error in cli - - Fixed error in the loadbalancer key - Added MarkFlagRequired to the version in the upgrade cmd in kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed error in cli - body: |- - Fixed error in the loadbalancer key - Added MarkFlagRequired to the version in the upgrade cmd in kubernetes - - commit: d61e6a9a4f89d61ee47691dce54f356811474069 - note: |- - Add KubernetesVesion and UpgradeAvailableTo - to the json output and custom output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add KubernetesVesion and UpgradeAvailableTo - body: to the json output and custom output - - commit: 49d550690d67bfbfbd916e9cdbe326853e6735f5 - note: Add nfpm and use the v2 of the goreleaser action - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add nfpm and use the v2 of the goreleaser action - body: "" - - commit: 396934a543e0d389ec9871810793d45933b3f018 - note: Fixed the message to show after upgrade happened - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed the message to show after upgrade happened - body: "" - - commit: 6ff45d0df8fbbd32efd4a64d928262aca8df19b2 - note: Upgrade the version of civogo lib - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Upgrade the version of civogo lib - body: "" - - commit: 723028c1ae752a1450c78e90816f9aed6b3f6d42 - note: |- - Fixed error in the kubernetes cmd - - Error at the moment of the creation of the cluster, - if you didn't pass the --version parameter - the cli would send latest and give error - - Fixes #6 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed error in the kubernetes cmd - body: |- - Error at the moment of the creation of the cluster, - if you didn't pass the --version parameter - the cli would send latest and give error - - Fixes #6 - - commit: 7f15c77b08d50e4d509252265eeb98cec3c40527 - note: |- - Change the dockerfile to run as root - this way allow us to read the conf from user - and avoid error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change the dockerfile to run as root - body: |- - this way allow us to read the conf from user - and avoid error - - commit: 28c99ac9bd8214d93e3cd266aeb751369d5fafc0 - note: |- - fix: Fix error adding initil user - - Added default user if the config json is empty - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: "" - breaking: false - description: Fix error adding initil user - body: Added default user if the config json is empty -- semver: 0.6.9 - date: 2020-07-03T08:11:13-04:00 - packager: civo - changes: - - commit: e96b84a4afe2a67f8af43a1fe00c875c87a5b78e - note: Chnage the name of the fordel in Homebrew Formula - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Chnage the name of the fordel in Homebrew Formula - body: "" - - commit: 4a70e48bbe504373aa8ff54dbf4eec1c749a9f2d - note: |- - Merge pull request #7 from ssmiller25/k3s-docs - - Kubernetes Documentation Updates - author: - name: Kai Hoffman - email: 44998809+kaihoffman@users.noreply.github.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: 'Merge pull request #7 from ssmiller25/k3s-docs' - body: Kubernetes Documentation Updates -- semver: 0.6.8 - date: 2020-06-30T13:56:31-04:00 - packager: civo - changes: - - commit: 10196c9991dddce2da8a92217c65f5669aef6650 - note: |- - Fixed error in cli - - Fixed error in the loadbalancer key - Added MarkFlagRequired to the version in the upgrade cmd in kubernetes - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed error in cli - body: |- - Fixed error in the loadbalancer key - Added MarkFlagRequired to the version in the upgrade cmd in kubernetes -- semver: 0.6.7 - date: 2020-06-25T11:58:43-04:00 - packager: civo - changes: - - commit: d61e6a9a4f89d61ee47691dce54f356811474069 - note: |- - Add KubernetesVesion and UpgradeAvailableTo - to the json output and custom output - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add KubernetesVesion and UpgradeAvailableTo - body: to the json output and custom output -- semver: 0.6.6 - date: 2020-06-24T14:19:14-04:00 - packager: civo - changes: - - commit: 49d550690d67bfbfbd916e9cdbe326853e6735f5 - note: Add nfpm and use the v2 of the goreleaser action - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add nfpm and use the v2 of the goreleaser action - body: "" -- semver: 0.6.5 - date: 2020-06-24T11:18:03-04:00 - packager: civo - changes: - - commit: 396934a543e0d389ec9871810793d45933b3f018 - note: Fixed the message to show after upgrade happened - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed the message to show after upgrade happened - body: "" - - commit: 6ff45d0df8fbbd32efd4a64d928262aca8df19b2 - note: Upgrade the version of civogo lib - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Upgrade the version of civogo lib - body: "" -- semver: 0.6.4 - date: 2020-06-24T10:44:07-04:00 - packager: civo - changes: - - commit: 723028c1ae752a1450c78e90816f9aed6b3f6d42 - note: |- - Fixed error in the kubernetes cmd - - Error at the moment of the creation of the cluster, - if you didn't pass the --version parameter - the cli would send latest and give error - - Fixes #6 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed error in the kubernetes cmd - body: |- - Error at the moment of the creation of the cluster, - if you didn't pass the --version parameter - the cli would send latest and give error - - Fixes #6 -- semver: 0.6.3 - date: 2020-06-22T09:20:19-04:00 - packager: civo - changes: - - commit: 7f15c77b08d50e4d509252265eeb98cec3c40527 - note: |- - Change the dockerfile to run as root - this way allow us to read the conf from user - and avoid error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change the dockerfile to run as root - body: |- - this way allow us to read the conf from user - and avoid error -- semver: 0.6.2 - date: 2020-06-20T16:36:54-04:00 - packager: civo - changes: - - commit: 28c99ac9bd8214d93e3cd266aeb751369d5fafc0 - note: |- - fix: Fix error adding initil user - - Added default user if the config json is empty - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: "" - breaking: false - description: Fix error adding initil user - body: Added default user if the config json is empty - - commit: 6669b296a4947ab68f3f7f6e0ca6e5341ca888d8 - note: Update the CHANGELOG - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the CHANGELOG - body: "" - - commit: 05960c0b0b8c5f1df36c33e78c8b584e02c17c68 - note: |- - fix: Fix message in the kubernetes upgrade cmd - - Fixed the message that returns kubernetes upgrade when it is executed, previously it returned the version and now it is the version of kubernetes that was updated - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: "" - breaking: false - description: Fix message in the kubernetes upgrade cmd - body: Fixed the message that returns kubernetes upgrade when it is executed, previously it returned the version and now it is the version of kubernetes that was updated - - commit: ea04cc5726c4fbf98df4d1623a22ee9cd6e1dcb5 - note: 'docs: Update the CHANGELOG' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: docs - scope: "" - breaking: false - description: Update the CHANGELOG - body: "" - - commit: 6cb4144aee682e2ac57d0105b4c2ab2e74ecda15 - note: 'fix: Remove update from the cmd kubernetes show' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: "" - breaking: false - description: Remove update from the cmd kubernetes show - body: "" - - commit: e99843a4fdebfef8f621e671fb8db09752dc4a4f - note: Added the CHANGELOG.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added the CHANGELOG.md - body: "" - - commit: f1726759c05c3e97408014a08f03545abc992722 - note: |- - Added new feature - - Added a notification to the kubernetes cmd if the cluster version is old - Update the civogo lib to v0.2.9 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added new feature - body: |- - Added a notification to the kubernetes cmd if the cluster version is old - Update the civogo lib to v0.2.9 - - commit: 83fe22c86c4323c68c0433f9feee959b8ed3edcb - note: Fix correct version showing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix correct version showing - body: "" - - commit: a356acaa514a4de1d65822746f50bafa6faf3863 - note: |- - Added some feature - - Fixed the README.md - Add region to the instances cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added some feature - body: |- - Fixed the README.md - Add region to the instances cmd - - commit: 911f046ebf57f61eaf84d66f1ea2f1805fafb69f - note: |- - Fixed some errors - - Updated the README.md - Fixed error in the loadbalancer and in the domain cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed some errors - body: |- - Updated the README.md - Fixed error in the loadbalancer and in the domain cmd - - commit: 15d43a7c72e63e78e8b8cd0c2d435d3393727cf3 - note: Remove snap from release process - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove snap from release process - body: "" - - commit: 6413a22a179016b9254b73836049e7ed43e827bd - note: |- - Update kubernetes config - - Added the option to access to home file to the snap app - Change the message in the config cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update kubernetes config - body: |- - Added the option to access to home file to the snap app - Change the message in the config cmd - - commit: 7ff511dd3d0bdc1139f5838618536bbd3b7340e5 - note: Update .goreleaser.yml - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update .goreleaser.yml - body: "" - - commit: a763c30b107b80ae3e5159facdb458ffb2641a84 - note: |- - Update .goreleaser.yml - - Fix identation error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update .goreleaser.yml - body: Fix identation error - - commit: 3166ee2f0a14b6d46f826432c2bc94570c79c750 - note: |- - Update .goreleaser.yml - - Fix error in yml config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update .goreleaser.yml - body: Fix error in yml config - - commit: 787ad7dead7942a1b17e57a8d81dcdca586096ba - note: |- - Fix error - - Fixed error in the goreleaser file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix error - body: Fixed error in the goreleaser file - - commit: e5fe1faa451901c09169b45a57b47878c69c404b - note: |- - Added some corrections - - Changed the message at the moment to save the configuration - Added permission to snap to use the network and network-bind - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added some corrections - body: |- - Changed the message at the moment to save the configuration - Added permission to snap to use the network and network-bind - - commit: 72708d8c5b44ca505702bbed63b7c4ee4fa88347 - note: |- - Fixed error in goreleaser - - Chnage classic to strict in the confinement config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed error in goreleaser - body: Chnage classic to strict in the confinement config - - commit: 497e0750f6992c2cb7466b54edf359e3e3c69493 - note: |- - Modifications in logic - - Modified the logic in the k3s config cmd - Renamed variable defaultRemove to defaultYes - Added new confirmation (UserConfirmedOverwrite) - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Modifications in logic - body: |- - Modified the logic in the k3s config cmd - Renamed variable defaultRemove to defaultYes - Added new confirmation (UserConfirmedOverwrite) - - commit: 29250021f47f14ca3086c6a6be7da7748b2facc5 - note: Tweaks to install.sh - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Tweaks to install.sh - body: "" - - commit: 148a0473315bc5c08309b4c1476ed909ce1f7355 - note: |- - Add configuration to snap - - Add conf in the actions - Add conf to goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add configuration to snap - body: |- - Add conf in the actions - Add conf to goreleaser - - commit: 3bea636cf1e0a8bef675fd3a5080d2bcca71369f - note: |- - Update README.md - - Remove the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update README.md - body: Remove the badge - - commit: d118e1e320abda0a1d5e741e1986a0992c5c9fac - note: Update the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the badge - body: "" - - commit: 0da2f4ffe13e6f9415c77966095ecc74902967a4 - note: Add badge to the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add badge to the README - body: "" - - commit: 8a1430f990db69b8d01a30e5e014a6043ebb4627 - note: |- - Fix error in the config - - The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix error in the config - body: The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - - commit: b0d63fe2a78227083c500f200877d8c2aaeeb3b1 - note: Fix user in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix user in the Dockerfile - body: "" - - commit: 0b182a0b81cee64ef718a9cacd4026cd89b23602 - note: Update the image to alpine the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the image to alpine the Dockerfile - body: "" - - commit: 00942fdb12b418796aadf3a9e3a0a682b50535e1 - note: Update the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the Dockerfile - body: "" - - commit: 4d4ac16595f55058355b76a35c11dacb0b79db70 - note: |- - Update the cli - - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the cli - body: |- - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - - commit: 0104cacdaf3c3d344105397bab003b635efc0a74 - note: Fix wording - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix wording - body: "" - - commit: 1597d82f7349fb53fefd58a21c64612bc791491c - note: Update README now this is the main tool - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update README now this is the main tool - body: "" - - commit: f42b14ac14b325df44197eb087be692e379e2b1a - note: |- - Remove comments - - Remove unnecessary comments - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove comments - body: Remove unnecessary comments - - commit: 578d62d7aeda36c7a7d6c04b8201a452e16082f0 - note: |- - Run new test - - Run new test to see if we can push to all repo using the civobot token - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Run new test - body: Run new test to see if we can push to all repo using the civobot token - - commit: 425f84f58773a956f54e4f5c4c1feab247fe0a7d - note: Test brews releaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Test brews releaser - body: "" - - commit: bdc4a966a0d181536816f311c5265c73856d62c8 - note: Try to fix Homebrew releasing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Try to fix Homebrew releasing - body: "" - - commit: 4b0a350b61435d52d9567ec39cb60053b4f33022 - note: Fix goreleaser.yml - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix goreleaser.yml - body: "" - - commit: 2801d33908df17f0241b272258fb5c880457d590 - note: Add homebrew tap updating to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add homebrew tap updating to goreleaser - body: "" - - commit: 8ed9c0bf481143e9ebf0a24f2e9b173331294c5a - note: |- - fix(Project): Added some fix - - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Project - breaking: true - description: Added some fix - body: |- - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No - - commit: ef039b50d1d53c800d9031cdf23cf50cdd0857da - note: Lots of minor tweaks - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Lots of minor tweaks - body: "" - - commit: 82901093fc2939dec1da99094dbcc7d1310d6191 - note: Changes to instance create - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Changes to instance create - body: "" - - commit: 7e16e37dcfcb7f82480514830fce2fb1e1550af2 - note: |- - feat(Utility): Add TrackTime - - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Utility - breaking: true - description: Add TrackTime - body: |- - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - - commit: 268021cf061896e31d8fb66a368ef748b3361df9 - note: |- - feat(Utility): Add random - - - added random to generate a random name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Utility - breaking: true - description: Add random - body: |- - - added random to generate a random name - - BREAKING CHANGE: No - - commit: 47c1480670ca0bb46f932b2f4afe84cb0973d9fa - note: |- - fix(Bug): Fix bug found in all code - - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Bug - breaking: true - description: Fix bug found in all code - body: |- - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No - - commit: 04c0775edae20e57312fbf8eaafccc52db622417 - note: |- - fix(Domain): Fix some error - - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Domain - breaking: true - description: Fix some error - body: |- - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - - commit: 2e584464b8725b0246842b21b209139d10e74ece - note: |- - feat(Install): Added install bash - - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Install - breaking: true - description: Added install bash - body: |- - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No - - commit: 11f44f4b647dbe98ec3511664871d5ba85562d9d - note: |- - feat(Completion): Added completion cmd - - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Completion - breaking: true - description: Added completion cmd - body: |- - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No - - commit: a082fdaf8f90434c67c708fb2098d93b0140dfd2 - note: |- - fix(Project): Fix the some bug - - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Project - breaking: true - description: Fix the some bug - body: |- - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - - commit: d3e46926c5e71537c1587e822de9a1f198aae554 - note: |- - fix(Volume): Fix the example - - - Add the NAME to the example section - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Volume - breaking: true - description: Fix the example - body: |- - - Add the NAME to the example section - - BREAKING CHANGE: No - - commit: 0119e35155ff8c13956826cd8686851c7756c1de - note: |- - refactor(Project): Added example to all cmd - - - Added example to all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Added example to all cmd - body: |- - - Added example to all command - - BREAKING CHANGE: No - - commit: b5659302122b04584d73bb6d4a45f2d00c6cd9cc - note: |- - fix(Network): Remove Name from the table - - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Network - breaking: true - description: Remove Name from the table - body: |- - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - - commit: 2cb08795f79d0663d47e00372a125a820c75c2a9 - note: |- - fix(LoadBalancer): added new alias - - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: LoadBalancer - breaking: true - description: added new alias - body: |- - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - - commit: 36f932ee2c91c029acddb796e6a876c7807d3b6a - note: |- - refactor(Project): Modify all project error handler - - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Modify all project error handler - body: |- - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - - commit: d4b805530cc900310ae9505a0005f09b46c72c97 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: fix text in version cmd - body: |- - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No - - commit: 732fcc412c26278f8bdd5f69483c6783d932f607 - note: Merge remote-tracking branch 'origin/master' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Merge remote-tracking branch 'origin/master' - body: "" - - commit: fe625b9b79e81194e910afd01420738137aab486 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: fix text in version cmd - body: |- - - Added the "v" to the version of the cli - - BREAKING CHANGE: No - - commit: b4af168b9bfe437fbf01e8a72ff62c22d233e928 - note: |- - fix(Version): update the version cmd - - - Update the text in the cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: update the version cmd - body: |- - - Update the text in the cmd - - BREAKING CHANGE: No - - commit: 174023026da3f08e8bc1f033e96888bd185798ba - note: |- - fix(Version): change the version cmd - - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: change the version cmd - body: |- - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - - commit: 75fe68e8939d7234ad729e589b5a01dc95a8ac6d - note: |- - fix(Version): update the version cmd - - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: update the version cmd - body: |- - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No - - commit: f01cff849b7b2dda0a1cbb5e4161e36ebac5101e - note: |- - fix(Version): Fixed the version cmd - - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Fixed the version cmd - body: |- - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No - - commit: 3ecf80b0b3d5b8150906aa1b853e1429d85838c5 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: b35e0cf5ab5eaa5f2854440dd453c9011b912976 - note: |- - fix(Version): Fixed the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Fixed the version cmd - body: |- - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - - commit: 122998f82bc69a7d66e3bf5bb2d0b1757c32615b - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - - commit: c84e24618842b2351cdc0584c69897a41925e0ba - note: |- - fix(Version): Upgrade the version of the civogo lib - - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Upgrade the version of the civogo lib - body: |- - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - - commit: aaa6a091f3f239ac5ce599f89bcf7534aca86d29 - note: |- - feat(Version): Added the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Version - breaking: true - description: Added the version cmd - body: |- - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - - commit: f4b78e1bc29b47ca3639d035e544201b94f9a5ef - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - - commit: 6beb0cafd403e919897e8bcab518b78ee9a3b8b1 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - - commit: 0953e5312869a959e0619727edbfd56f36588239 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 0ab428ae5839d2d67dab45ff73fcf4ce39fa6b20 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 2d05ff91b90f7d74601840296b5b962006fb60fe - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the action file - body: |- - - Change the action files - - BREAKING CHANGE: No - - commit: 5b12fdf7f5d0e1964b83af54ecbc688fd9dfcac8 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 44ad7dffab733f7df7c780d474294fc2b37660c7 - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the action file - body: |- - - Change the action files - - BREAKING CHANGE: No - - commit: bc2f508fd29096827a6f1c3b0175ed6334eaa958 - note: |- - refactor(Project): Modify all project - - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Modify all project - body: |- - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - - commit: daccd7ba948e2f48b161001592a2d59297771a27 - note: |- - Merge pull request #2 from civo/dev - - Merge dev to master - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: 'Merge pull request #2 from civo/dev' - body: Merge dev to master - - commit: 7ad58ed4cb587e6836f7330325948f36c089ed5f - note: Add all but one instance command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add all but one instance command - body: "" - - commit: 3f3b06e3c3bec486533a45aa98f5433021ce3c7a - note: Split more commands out in to their own files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Split more commands out in to their own files - body: "" - - commit: 2ce2979055ac4ada6ec94afe1d9b6046fc2180f2 - note: Split instance commands out to invidual files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Split instance commands out to invidual files - body: "" - - commit: d24951afb315e56ec6450a1743d2a8fc17011ca5 - note: Add console and reboot commands - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add console and reboot commands - body: "" - - commit: cd811766d401e0701144001afcf348176f311c7d - note: Add github token path to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add github token path to goreleaser - body: "" - - commit: d01e3ed898e543bed5c762ae43138caf3a190fab - note: Add testing workflow - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add testing workflow - body: "" - - commit: 6410d22beea3bdf6108a8bcb16d1435117b8a452 - note: Add goreleaser support - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add goreleaser support - body: "" - - commit: ec0634b6681cac4c5603f0061c79f98c3a1eb9ec - note: Add the first action command to instances - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add the first action command to instances - body: "" - - commit: 52eeee287baed7e1579c056ad778384a568e2d98 - note: Change OutputWriter to use labels as well as keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change OutputWriter to use labels as well as keys - body: "" - - commit: e15de86cb3ac94dc81ab68bdb3e64549af5f1525 - note: Change to use Find* in civogo - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change to use Find* in civogo - body: "" - - commit: 417c47aadbb899137d556f9fac0c5ca9547bc744 - note: Refactor to new OutputWriter - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Refactor to new OutputWriter - body: "" - - commit: f7201a0995cc2a3a76399e3ad27ad87761c3ef4a - note: Add size command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add size command - body: "" - - commit: a07f44a6aade894e431f5262d39c667ca4afb2f4 - note: Add quota command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add quota command - body: "" - - commit: 48cd4f0c750403ab2e0c0d0caf974dfaf5393ab7 - note: Add Region command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add Region command - body: "" - - commit: bc9e3d53d2fbd61aaaa3b26b4a4009e5a929f19c - note: Complete API key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management - body: "" - - commit: 7f7fb17fbff9152f3a1fce5603de1704be7d0e96 - note: Remove unnecessary comment - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove unnecessary comment - body: "" - - commit: ea215e4fd79632af5fa67f5c5b49611b197ee1be - note: Remove (old) accidentally commited API keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove (old) accidentally commited API keys - body: "" - - commit: 94421615da2bb2fcd1a1d89950076c8088d31c8b - note: Complete API key management functionality - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management functionality - body: "" - - commit: 4beb5f1eb0b8fe8f10537278f02fb5ef3b599531 - note: Add API Key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add API Key management - body: "" - - commit: 17848b6804d99a943a75ef284073b0945a880e35 - note: Update links in README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update links in README - body: "" - - commit: b9fc702ce61cdbc00a3613f6ebccdeb53a7392e7 - note: Add plan to README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add plan to README - body: "" - - commit: 38300f4e28497ad03ccb0cbf37f481bcd9ffc424 - note: First commit - initial makefile - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: First commit - initial makefile - body: "" - - commit: 0370dde0fded4c82af2a0d5a0c4c27af70b6e1c4 - note: |- - feat(Template): Added the kubernetes cmd - - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Template - breaking: true - description: Added the kubernetes cmd - body: |- - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - - commit: 59a4231cc2d05ae540b709fe9a62ddaf81189484 - note: |- - feat(Goreleser): Fix the goreleaser file - - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Goreleser - breaking: true - description: Fix the goreleaser file - body: |- - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - - commit: 4f4065826190d15c049dbc56667076823432c75e - note: |- - feat(Template): Added the template cmd - - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Template - breaking: true - description: Added the template cmd - body: |- - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - - commit: 6a84a030a66953568f7b15d5c9c85b543350dd5f - note: |- - feat(Volume): Added the volume cmd - - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Volume - breaking: true - description: Added the volume cmd - body: |- - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - - commit: 775885d0032545f358de10beadd7275e86aac4dc - note: |- - feat(snapshot): Added the snapshot cmd - - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: snapshot - breaking: true - description: Added the snapshot cmd - body: |- - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - - commit: 6c6d035ec7f37ae6cfe103a5a2c5274715c97489 - note: |- - feat(network): Added the network cmd - - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: network - breaking: true - description: Added the network cmd - body: |- - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - - commit: 4f3a6445069c87b1d97c93ea21b1d06ab401f7b5 - note: |- - feat(sshkey): Added the ssh key cmd - - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: sshkey - breaking: true - description: Added the ssh key cmd - body: |- - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - - commit: 410abb5193bd01dfa92fcf921e4c4a0f2a72473b - note: |- - feat(loadbalancer): Added the cmd loadbalancer - - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: loadbalancer - breaking: true - description: Added the cmd loadbalancer - body: |- - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - - commit: 0ad42aeda4b6093400ee1fbbfa4aeb4ee29eb3b6 - note: |- - feat(firewall): Added the cmd firewall, and firewall rule - - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: firewall - breaking: true - description: Added the cmd firewall, and firewall rule - body: |- - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - - commit: 51de188d9e36f5b1241eb95c82caaa93c72c36bb - note: |- - feat(domain): Added the cmd domain record - - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: domain - breaking: true - description: Added the cmd domain record - body: |- - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - - commit: 698df535b230d8e09662ee350818502cf54374f8 - note: |- - feat(domain): Added the cmd domain - - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: domain - breaking: true - description: Added the cmd domain - body: |- - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - - commit: 22dcec052d7401038ee9eaf268cd6ffe6c23d8fd - note: |- - feat(instance): Added the option to create instances - - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: instance - breaking: true - description: Added the option to create instances - body: |- - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - - commit: 1d1130384be0e780617515d0ceb98926dc6aad58 - note: |- - refactor(apikey): Modify the apikey - - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey - body: |- - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - - commit: 430a411432809cc0c8c9d9194030c7167c00884e - note: |- - refactor(apikey): Modify the apikey - - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey - body: |- - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - - commit: a8310907409d3341df9443422adec992f00ca338 - note: |- - refactor(apikey): Modify the apikey function - - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey function - body: |- - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No - - commit: de91a6e05f13e77443a7127ac270d0afdd9136ea - note: Update app name in tap-release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update app name in tap-release - body: "" - - commit: fa017dffb98e0f9afaa6f6807e3135f0ce4c5c65 - note: Create automatic tap release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Create automatic tap release - body: "" -- semver: 0.6.1 - date: 2020-06-19T18:22:58-04:00 - packager: civo - changes: - - commit: 6669b296a4947ab68f3f7f6e0ca6e5341ca888d8 - note: Update the CHANGELOG - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the CHANGELOG - body: "" - - commit: 05960c0b0b8c5f1df36c33e78c8b584e02c17c68 - note: |- - fix: Fix message in the kubernetes upgrade cmd - - Fixed the message that returns kubernetes upgrade when it is executed, previously it returned the version and now it is the version of kubernetes that was updated - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: "" - breaking: false - description: Fix message in the kubernetes upgrade cmd - body: Fixed the message that returns kubernetes upgrade when it is executed, previously it returned the version and now it is the version of kubernetes that was updated - - commit: ea04cc5726c4fbf98df4d1623a22ee9cd6e1dcb5 - note: 'docs: Update the CHANGELOG' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: docs - scope: "" - breaking: false - description: Update the CHANGELOG - body: "" - - commit: 6cb4144aee682e2ac57d0105b4c2ab2e74ecda15 - note: 'fix: Remove update from the cmd kubernetes show' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: "" - breaking: false - description: Remove update from the cmd kubernetes show - body: "" - - commit: e99843a4fdebfef8f621e671fb8db09752dc4a4f - note: Added the CHANGELOG.md - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added the CHANGELOG.md - body: "" - - commit: f1726759c05c3e97408014a08f03545abc992722 - note: |- - Added new feature - - Added a notification to the kubernetes cmd if the cluster version is old - Update the civogo lib to v0.2.9 - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added new feature - body: |- - Added a notification to the kubernetes cmd if the cluster version is old - Update the civogo lib to v0.2.9 - - commit: 83fe22c86c4323c68c0433f9feee959b8ed3edcb - note: Fix correct version showing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix correct version showing - body: "" -- semver: 0.6.0 - date: 2020-06-18T07:49:11-04:00 - packager: civo - changes: - - commit: a356acaa514a4de1d65822746f50bafa6faf3863 - note: |- - Added some feature - - Fixed the README.md - Add region to the instances cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added some feature - body: |- - Fixed the README.md - Add region to the instances cmd -- semver: 0.2.3 - date: 2020-06-17T20:00:27-04:00 - packager: civo - changes: - - commit: 911f046ebf57f61eaf84d66f1ea2f1805fafb69f - note: |- - Fixed some errors - - Updated the README.md - Fixed error in the loadbalancer and in the domain cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed some errors - body: |- - Updated the README.md - Fixed error in the loadbalancer and in the domain cmd - - commit: 15d43a7c72e63e78e8b8cd0c2d435d3393727cf3 - note: Remove snap from release process - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove snap from release process - body: "" - - commit: 6413a22a179016b9254b73836049e7ed43e827bd - note: |- - Update kubernetes config - - Added the option to access to home file to the snap app - Change the message in the config cmd - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update kubernetes config - body: |- - Added the option to access to home file to the snap app - Change the message in the config cmd -- semver: 0.2.2 - date: 2020-06-17T12:38:01-04:00 - packager: civo - changes: - - commit: 7ff511dd3d0bdc1139f5838618536bbd3b7340e5 - note: Update .goreleaser.yml - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update .goreleaser.yml - body: "" - - commit: a763c30b107b80ae3e5159facdb458ffb2641a84 - note: |- - Update .goreleaser.yml - - Fix identation error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update .goreleaser.yml - body: Fix identation error - - commit: 3166ee2f0a14b6d46f826432c2bc94570c79c750 - note: |- - Update .goreleaser.yml - - Fix error in yml config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update .goreleaser.yml - body: Fix error in yml config - - commit: 787ad7dead7942a1b17e57a8d81dcdca586096ba - note: |- - Fix error - - Fixed error in the goreleaser file - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix error - body: Fixed error in the goreleaser file - - commit: e5fe1faa451901c09169b45a57b47878c69c404b - note: |- - Added some corrections - - Changed the message at the moment to save the configuration - Added permission to snap to use the network and network-bind - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Added some corrections - body: |- - Changed the message at the moment to save the configuration - Added permission to snap to use the network and network-bind -- semver: 0.2.1 - date: 2020-06-17T10:11:07-04:00 - packager: civo - changes: - - commit: 72708d8c5b44ca505702bbed63b7c4ee4fa88347 - note: |- - Fixed error in goreleaser - - Chnage classic to strict in the confinement config - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fixed error in goreleaser - body: Chnage classic to strict in the confinement config -- semver: 0.2.0 - date: 2020-06-17T10:01:42-04:00 - packager: civo - changes: - - commit: 497e0750f6992c2cb7466b54edf359e3e3c69493 - note: |- - Modifications in logic - - Modified the logic in the k3s config cmd - Renamed variable defaultRemove to defaultYes - Added new confirmation (UserConfirmedOverwrite) - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Modifications in logic - body: |- - Modified the logic in the k3s config cmd - Renamed variable defaultRemove to defaultYes - Added new confirmation (UserConfirmedOverwrite) - - commit: 29250021f47f14ca3086c6a6be7da7748b2facc5 - note: Tweaks to install.sh - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Tweaks to install.sh - body: "" - - commit: 148a0473315bc5c08309b4c1476ed909ce1f7355 - note: |- - Add configuration to snap - - Add conf in the actions - Add conf to goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add configuration to snap - body: |- - Add conf in the actions - Add conf to goreleaser - - commit: 3bea636cf1e0a8bef675fd3a5080d2bcca71369f - note: |- - Update README.md - - Remove the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update README.md - body: Remove the badge - - commit: d118e1e320abda0a1d5e741e1986a0992c5c9fac - note: Update the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the badge - body: "" - - commit: 0da2f4ffe13e6f9415c77966095ecc74902967a4 - note: Add badge to the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add badge to the README - body: "" - - commit: 8a1430f990db69b8d01a30e5e014a6043ebb4627 - note: |- - Fix error in the config - - The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix error in the config - body: The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - - commit: b0d63fe2a78227083c500f200877d8c2aaeeb3b1 - note: Fix user in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix user in the Dockerfile - body: "" - - commit: 0b182a0b81cee64ef718a9cacd4026cd89b23602 - note: Update the image to alpine the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the image to alpine the Dockerfile - body: "" - - commit: 00942fdb12b418796aadf3a9e3a0a682b50535e1 - note: Update the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the Dockerfile - body: "" - - commit: 4d4ac16595f55058355b76a35c11dacb0b79db70 - note: |- - Update the cli - - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the cli - body: |- - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - - commit: 0104cacdaf3c3d344105397bab003b635efc0a74 - note: Fix wording - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix wording - body: "" - - commit: 1597d82f7349fb53fefd58a21c64612bc791491c - note: Update README now this is the main tool - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update README now this is the main tool - body: "" - - commit: f42b14ac14b325df44197eb087be692e379e2b1a - note: |- - Remove comments - - Remove unnecessary comments - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove comments - body: Remove unnecessary comments - - commit: 578d62d7aeda36c7a7d6c04b8201a452e16082f0 - note: |- - Run new test - - Run new test to see if we can push to all repo using the civobot token - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Run new test - body: Run new test to see if we can push to all repo using the civobot token - - commit: 425f84f58773a956f54e4f5c4c1feab247fe0a7d - note: Test brews releaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Test brews releaser - body: "" - - commit: bdc4a966a0d181536816f311c5265c73856d62c8 - note: Try to fix Homebrew releasing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Try to fix Homebrew releasing - body: "" - - commit: 4b0a350b61435d52d9567ec39cb60053b4f33022 - note: Fix goreleaser.yml - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix goreleaser.yml - body: "" - - commit: 2801d33908df17f0241b272258fb5c880457d590 - note: Add homebrew tap updating to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add homebrew tap updating to goreleaser - body: "" - - commit: 8ed9c0bf481143e9ebf0a24f2e9b173331294c5a - note: |- - fix(Project): Added some fix - - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Project - breaking: true - description: Added some fix - body: |- - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No - - commit: ef039b50d1d53c800d9031cdf23cf50cdd0857da - note: Lots of minor tweaks - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Lots of minor tweaks - body: "" - - commit: 82901093fc2939dec1da99094dbcc7d1310d6191 - note: Changes to instance create - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Changes to instance create - body: "" - - commit: 7e16e37dcfcb7f82480514830fce2fb1e1550af2 - note: |- - feat(Utility): Add TrackTime - - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Utility - breaking: true - description: Add TrackTime - body: |- - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - - commit: 268021cf061896e31d8fb66a368ef748b3361df9 - note: |- - feat(Utility): Add random - - - added random to generate a random name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Utility - breaking: true - description: Add random - body: |- - - added random to generate a random name - - BREAKING CHANGE: No - - commit: 47c1480670ca0bb46f932b2f4afe84cb0973d9fa - note: |- - fix(Bug): Fix bug found in all code - - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Bug - breaking: true - description: Fix bug found in all code - body: |- - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No -- semver: 0.1.19 - date: 2020-06-17T09:26:00+01:00 - packager: civo - changes: - - commit: 29250021f47f14ca3086c6a6be7da7748b2facc5 - note: Tweaks to install.sh - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Tweaks to install.sh - body: "" - - commit: 148a0473315bc5c08309b4c1476ed909ce1f7355 - note: |- - Add configuration to snap - - Add conf in the actions - Add conf to goreleaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add configuration to snap - body: |- - Add conf in the actions - Add conf to goreleaser -- semver: 0.1.18 - date: 2020-06-16T11:32:19-04:00 - packager: civo - changes: - - commit: 3bea636cf1e0a8bef675fd3a5080d2bcca71369f - note: |- - Update README.md - - Remove the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update README.md - body: Remove the badge - - commit: d118e1e320abda0a1d5e741e1986a0992c5c9fac - note: Update the badge - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the badge - body: "" - - commit: 0da2f4ffe13e6f9415c77966095ecc74902967a4 - note: Add badge to the README - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add badge to the README - body: "" - - commit: 8a1430f990db69b8d01a30e5e014a6043ebb4627 - note: |- - Fix error in the config - - The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix error in the config - body: The first time you ran the cli if the configuration file does not exist, at the time of creating it the date of the last verification the cli was not put, it gave an error - - commit: b0d63fe2a78227083c500f200877d8c2aaeeb3b1 - note: Fix user in the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix user in the Dockerfile - body: "" -- semver: 0.1.17 - date: 2020-06-16T10:40:45-04:00 - packager: civo - changes: - - commit: 0b182a0b81cee64ef718a9cacd4026cd89b23602 - note: Update the image to alpine the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the image to alpine the Dockerfile - body: "" -- semver: 0.1.16 - date: 2020-06-16T10:31:26-04:00 - packager: civo - changes: - - commit: 00942fdb12b418796aadf3a9e3a0a682b50535e1 - note: Update the Dockerfile - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the Dockerfile - body: "" - - commit: 4d4ac16595f55058355b76a35c11dacb0b79db70 - note: |- - Update the cli - - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update the cli - body: |- - - Update the makefile - - Added the dockerfile to build the image - - Update the url of version - - Fix error in apikey cmd - - Update the goreleaser to build the image of docker together with the github actions - - commit: 0104cacdaf3c3d344105397bab003b635efc0a74 - note: Fix wording - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix wording - body: "" - - commit: 1597d82f7349fb53fefd58a21c64612bc791491c - note: Update README now this is the main tool - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update README now this is the main tool - body: "" - - commit: f42b14ac14b325df44197eb087be692e379e2b1a - note: |- - Remove comments - - Remove unnecessary comments - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove comments - body: Remove unnecessary comments -- semver: 0.1.15 - date: 2020-06-15T11:26:35-04:00 - packager: civo - changes: - - commit: 578d62d7aeda36c7a7d6c04b8201a452e16082f0 - note: |- - Run new test - - Run new test to see if we can push to all repo using the civobot token - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Run new test - body: Run new test to see if we can push to all repo using the civobot token - - commit: 425f84f58773a956f54e4f5c4c1feab247fe0a7d - note: Test brews releaser - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Test brews releaser - body: "" -- semver: 0.1.14 - date: 2020-06-12T16:09:36+01:00 - packager: civo - changes: - - commit: bdc4a966a0d181536816f311c5265c73856d62c8 - note: Try to fix Homebrew releasing - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Try to fix Homebrew releasing - body: "" -- semver: 0.1.13 - date: 2020-06-12T15:40:34+01:00 - packager: civo - changes: - - commit: 4b0a350b61435d52d9567ec39cb60053b4f33022 - note: Fix goreleaser.yml - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Fix goreleaser.yml - body: "" - - commit: 2801d33908df17f0241b272258fb5c880457d590 - note: Add homebrew tap updating to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add homebrew tap updating to goreleaser - body: "" -- semver: 0.1.12 - date: 2020-05-21T09:13:14-04:00 - packager: civo - changes: - - commit: 8ed9c0bf481143e9ebf0a24f2e9b173331294c5a - note: |- - fix(Project): Added some fix - - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Project - breaking: true - description: Added some fix - body: |- - - change the confirmation function, now return a bool - - added the global flag -y / --yes in case you want to use the cli in non-interactive mode, to avoid confimations - - BREAKING CHANGE: No -- semver: 0.1.11 - date: 2020-05-20T14:09:21+01:00 - packager: civo - changes: - - commit: ef039b50d1d53c800d9031cdf23cf50cdd0857da - note: Lots of minor tweaks - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Lots of minor tweaks - body: "" - - commit: 82901093fc2939dec1da99094dbcc7d1310d6191 - note: Changes to instance create - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Changes to instance create - body: "" -- semver: 0.1.10 - date: 2020-05-19T16:41:31-04:00 - packager: civo - changes: - - commit: 7e16e37dcfcb7f82480514830fce2fb1e1550af2 - note: |- - feat(Utility): Add TrackTime - - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Utility - breaking: true - description: Add TrackTime - body: |- - - added the function trackTime to know how long take to create a instance or a kubernetes cluster when you use the --wait flag - - Fix some error in the install script - - Fix error in the Makefile, there were problems getting the last tag from git - - BREAKING CHANGE: No - - commit: 268021cf061896e31d8fb66a368ef748b3361df9 - note: |- - feat(Utility): Add random - - - added random to generate a random name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Utility - breaking: true - description: Add random - body: |- - - added random to generate a random name - - BREAKING CHANGE: No - - commit: 47c1480670ca0bb46f932b2f4afe84cb0973d9fa - note: |- - fix(Bug): Fix bug found in all code - - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Bug - breaking: true - description: Fix bug found in all code - body: |- - - fixed error handler - - fixed error message - - remove unused variable - - fixed mistakes in some words - - added comment to all public function - - fixed the alias in all command - - BREAKING CHANGE: No - - commit: 04c0775edae20e57312fbf8eaafccc52db622417 - note: |- - fix(Domain): Fix some error - - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Domain - breaking: true - description: Fix some error - body: |- - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - - commit: 2e584464b8725b0246842b21b209139d10e74ece - note: |- - feat(Install): Added install bash - - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Install - breaking: true - description: Added install bash - body: |- - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No - - commit: 11f44f4b647dbe98ec3511664871d5ba85562d9d - note: |- - feat(Completion): Added completion cmd - - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Completion - breaking: true - description: Added completion cmd - body: |- - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No - - commit: a082fdaf8f90434c67c708fb2098d93b0140dfd2 - note: |- - fix(Project): Fix the some bug - - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Project - breaking: true - description: Fix the some bug - body: |- - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - - commit: d3e46926c5e71537c1587e822de9a1f198aae554 - note: |- - fix(Volume): Fix the example - - - Add the NAME to the example section - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Volume - breaking: true - description: Fix the example - body: |- - - Add the NAME to the example section - - BREAKING CHANGE: No - - commit: 0119e35155ff8c13956826cd8686851c7756c1de - note: |- - refactor(Project): Added example to all cmd - - - Added example to all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Added example to all cmd - body: |- - - Added example to all command - - BREAKING CHANGE: No - - commit: b5659302122b04584d73bb6d4a45f2d00c6cd9cc - note: |- - fix(Network): Remove Name from the table - - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Network - breaking: true - description: Remove Name from the table - body: |- - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - - commit: 2cb08795f79d0663d47e00372a125a820c75c2a9 - note: |- - fix(LoadBalancer): added new alias - - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: LoadBalancer - breaking: true - description: added new alias - body: |- - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - - commit: 36f932ee2c91c029acddb796e6a876c7807d3b6a - note: |- - refactor(Project): Modify all project error handler - - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Modify all project error handler - body: |- - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - - commit: d4b805530cc900310ae9505a0005f09b46c72c97 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: fix text in version cmd - body: |- - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No - - commit: 732fcc412c26278f8bdd5f69483c6783d932f607 - note: Merge remote-tracking branch 'origin/master' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Merge remote-tracking branch 'origin/master' - body: "" - - commit: fe625b9b79e81194e910afd01420738137aab486 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: fix text in version cmd - body: |- - - Added the "v" to the version of the cli - - BREAKING CHANGE: No - - commit: b4af168b9bfe437fbf01e8a72ff62c22d233e928 - note: |- - fix(Version): update the version cmd - - - Update the text in the cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: update the version cmd - body: |- - - Update the text in the cmd - - BREAKING CHANGE: No - - commit: 174023026da3f08e8bc1f033e96888bd185798ba - note: |- - fix(Version): change the version cmd - - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: change the version cmd - body: |- - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - - commit: 75fe68e8939d7234ad729e589b5a01dc95a8ac6d - note: |- - fix(Version): update the version cmd - - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: update the version cmd - body: |- - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No - - commit: f01cff849b7b2dda0a1cbb5e4161e36ebac5101e - note: |- - fix(Version): Fixed the version cmd - - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Fixed the version cmd - body: |- - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No - - commit: 3ecf80b0b3d5b8150906aa1b853e1429d85838c5 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: b35e0cf5ab5eaa5f2854440dd453c9011b912976 - note: |- - fix(Version): Fixed the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Fixed the version cmd - body: |- - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - - commit: 122998f82bc69a7d66e3bf5bb2d0b1757c32615b - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - - commit: c84e24618842b2351cdc0584c69897a41925e0ba - note: |- - fix(Version): Upgrade the version of the civogo lib - - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Upgrade the version of the civogo lib - body: |- - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - - commit: aaa6a091f3f239ac5ce599f89bcf7534aca86d29 - note: |- - feat(Version): Added the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Version - breaking: true - description: Added the version cmd - body: |- - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - - commit: f4b78e1bc29b47ca3639d035e544201b94f9a5ef - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - - commit: 6beb0cafd403e919897e8bcab518b78ee9a3b8b1 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - - commit: 0953e5312869a959e0619727edbfd56f36588239 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 0ab428ae5839d2d67dab45ff73fcf4ce39fa6b20 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 2d05ff91b90f7d74601840296b5b962006fb60fe - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the action file - body: |- - - Change the action files - - BREAKING CHANGE: No - - commit: 5b12fdf7f5d0e1964b83af54ecbc688fd9dfcac8 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 44ad7dffab733f7df7c780d474294fc2b37660c7 - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the action file - body: |- - - Change the action files - - BREAKING CHANGE: No - - commit: bc2f508fd29096827a6f1c3b0175ed6334eaa958 - note: |- - refactor(Project): Modify all project - - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Modify all project - body: |- - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - - commit: daccd7ba948e2f48b161001592a2d59297771a27 - note: |- - Merge pull request #2 from civo/dev - - Merge dev to master - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: 'Merge pull request #2 from civo/dev' - body: Merge dev to master - - commit: 7ad58ed4cb587e6836f7330325948f36c089ed5f - note: Add all but one instance command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add all but one instance command - body: "" - - commit: 3f3b06e3c3bec486533a45aa98f5433021ce3c7a - note: Split more commands out in to their own files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Split more commands out in to their own files - body: "" - - commit: 2ce2979055ac4ada6ec94afe1d9b6046fc2180f2 - note: Split instance commands out to invidual files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Split instance commands out to invidual files - body: "" - - commit: d24951afb315e56ec6450a1743d2a8fc17011ca5 - note: Add console and reboot commands - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add console and reboot commands - body: "" - - commit: cd811766d401e0701144001afcf348176f311c7d - note: Add github token path to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add github token path to goreleaser - body: "" - - commit: d01e3ed898e543bed5c762ae43138caf3a190fab - note: Add testing workflow - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add testing workflow - body: "" - - commit: 6410d22beea3bdf6108a8bcb16d1435117b8a452 - note: Add goreleaser support - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add goreleaser support - body: "" - - commit: ec0634b6681cac4c5603f0061c79f98c3a1eb9ec - note: Add the first action command to instances - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add the first action command to instances - body: "" - - commit: 52eeee287baed7e1579c056ad778384a568e2d98 - note: Change OutputWriter to use labels as well as keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change OutputWriter to use labels as well as keys - body: "" - - commit: e15de86cb3ac94dc81ab68bdb3e64549af5f1525 - note: Change to use Find* in civogo - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change to use Find* in civogo - body: "" - - commit: 417c47aadbb899137d556f9fac0c5ca9547bc744 - note: Refactor to new OutputWriter - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Refactor to new OutputWriter - body: "" - - commit: f7201a0995cc2a3a76399e3ad27ad87761c3ef4a - note: Add size command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add size command - body: "" - - commit: a07f44a6aade894e431f5262d39c667ca4afb2f4 - note: Add quota command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add quota command - body: "" - - commit: 48cd4f0c750403ab2e0c0d0caf974dfaf5393ab7 - note: Add Region command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add Region command - body: "" - - commit: bc9e3d53d2fbd61aaaa3b26b4a4009e5a929f19c - note: Complete API key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management - body: "" - - commit: 7f7fb17fbff9152f3a1fce5603de1704be7d0e96 - note: Remove unnecessary comment - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove unnecessary comment - body: "" - - commit: ea215e4fd79632af5fa67f5c5b49611b197ee1be - note: Remove (old) accidentally commited API keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove (old) accidentally commited API keys - body: "" - - commit: 94421615da2bb2fcd1a1d89950076c8088d31c8b - note: Complete API key management functionality - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management functionality - body: "" - - commit: 4beb5f1eb0b8fe8f10537278f02fb5ef3b599531 - note: Add API Key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add API Key management - body: "" - - commit: 17848b6804d99a943a75ef284073b0945a880e35 - note: Update links in README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update links in README - body: "" - - commit: b9fc702ce61cdbc00a3613f6ebccdeb53a7392e7 - note: Add plan to README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add plan to README - body: "" - - commit: 38300f4e28497ad03ccb0cbf37f481bcd9ffc424 - note: First commit - initial makefile - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: First commit - initial makefile - body: "" - - commit: 0370dde0fded4c82af2a0d5a0c4c27af70b6e1c4 - note: |- - feat(Template): Added the kubernetes cmd - - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Template - breaking: true - description: Added the kubernetes cmd - body: |- - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - - commit: 59a4231cc2d05ae540b709fe9a62ddaf81189484 - note: |- - feat(Goreleser): Fix the goreleaser file - - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Goreleser - breaking: true - description: Fix the goreleaser file - body: |- - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - - commit: 4f4065826190d15c049dbc56667076823432c75e - note: |- - feat(Template): Added the template cmd - - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Template - breaking: true - description: Added the template cmd - body: |- - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - - commit: 6a84a030a66953568f7b15d5c9c85b543350dd5f - note: |- - feat(Volume): Added the volume cmd - - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Volume - breaking: true - description: Added the volume cmd - body: |- - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - - commit: 775885d0032545f358de10beadd7275e86aac4dc - note: |- - feat(snapshot): Added the snapshot cmd - - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: snapshot - breaking: true - description: Added the snapshot cmd - body: |- - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - - commit: 6c6d035ec7f37ae6cfe103a5a2c5274715c97489 - note: |- - feat(network): Added the network cmd - - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: network - breaking: true - description: Added the network cmd - body: |- - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - - commit: 4f3a6445069c87b1d97c93ea21b1d06ab401f7b5 - note: |- - feat(sshkey): Added the ssh key cmd - - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: sshkey - breaking: true - description: Added the ssh key cmd - body: |- - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - - commit: 410abb5193bd01dfa92fcf921e4c4a0f2a72473b - note: |- - feat(loadbalancer): Added the cmd loadbalancer - - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: loadbalancer - breaking: true - description: Added the cmd loadbalancer - body: |- - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - - commit: 0ad42aeda4b6093400ee1fbbfa4aeb4ee29eb3b6 - note: |- - feat(firewall): Added the cmd firewall, and firewall rule - - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: firewall - breaking: true - description: Added the cmd firewall, and firewall rule - body: |- - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - - commit: 51de188d9e36f5b1241eb95c82caaa93c72c36bb - note: |- - feat(domain): Added the cmd domain record - - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: domain - breaking: true - description: Added the cmd domain record - body: |- - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - - commit: 698df535b230d8e09662ee350818502cf54374f8 - note: |- - feat(domain): Added the cmd domain - - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: domain - breaking: true - description: Added the cmd domain - body: |- - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - - commit: 22dcec052d7401038ee9eaf268cd6ffe6c23d8fd - note: |- - feat(instance): Added the option to create instances - - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: instance - breaking: true - description: Added the option to create instances - body: |- - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - - commit: 1d1130384be0e780617515d0ceb98926dc6aad58 - note: |- - refactor(apikey): Modify the apikey - - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey - body: |- - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - - commit: 430a411432809cc0c8c9d9194030c7167c00884e - note: |- - refactor(apikey): Modify the apikey - - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey - body: |- - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - - commit: a8310907409d3341df9443422adec992f00ca338 - note: |- - refactor(apikey): Modify the apikey function - - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey function - body: |- - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No - - commit: de91a6e05f13e77443a7127ac270d0afdd9136ea - note: Update app name in tap-release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update app name in tap-release - body: "" - - commit: fa017dffb98e0f9afaa6f6807e3135f0ce4c5c65 - note: Create automatic tap release - author: - name: Andy Jeffries - email: andy@civo.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Create automatic tap release - body: "" -- semver: 0.1.9 - date: 2020-05-18T15:29:59-04:00 - packager: civo - changes: - - commit: 04c0775edae20e57312fbf8eaafccc52db622417 - note: |- - fix(Domain): Fix some error - - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Domain - breaking: true - description: Fix some error - body: |- - - Fix some error in domain_list and domain_record_list - - BREAKING CHANGE: No - - commit: 2e584464b8725b0246842b21b209139d10e74ece - note: |- - feat(Install): Added install bash - - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Install - breaking: true - description: Added install bash - body: |- - - Added the install bash to get in this way `curl -sfL https://get.civo.com | sh -` - - Update cobra to 1.0.0 - - BREAKING CHANGE: No -- semver: 0.1.8 - date: 2020-05-14T17:18:57-04:00 - packager: civo - changes: - - commit: 11f44f4b647dbe98ec3511664871d5ba85562d9d - note: |- - feat(Completion): Added completion cmd - - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Completion - breaking: true - description: Added completion cmd - body: |- - - Added the completion cmd, now you can add auto completion to you terminal (bash|zsh) - - Update README.md - - Update Makefile - - BREAKING CHANGE: No -- semver: 0.1.7 - date: 2020-05-14T13:39:38-04:00 - packager: civo - changes: - - commit: a082fdaf8f90434c67c708fb2098d93b0140dfd2 - note: |- - fix(Project): Fix the some bug - - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Project - breaking: true - description: Fix the some bug - body: |- - - Fix the output for kubernetes list and instances list - - Add explanation to the cloudconfig flag in template - - BREAKING CHANGE: No - - commit: d3e46926c5e71537c1587e822de9a1f198aae554 - note: |- - fix(Volume): Fix the example - - - Add the NAME to the example section - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Volume - breaking: true - description: Fix the example - body: |- - - Add the NAME to the example section - - BREAKING CHANGE: No - - commit: 0119e35155ff8c13956826cd8686851c7756c1de - note: |- - refactor(Project): Added example to all cmd - - - Added example to all command - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Added example to all cmd - body: |- - - Added example to all command - - BREAKING CHANGE: No - - commit: b5659302122b04584d73bb6d4a45f2d00c6cd9cc - note: |- - fix(Network): Remove Name from the table - - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Network - breaking: true - description: Remove Name from the table - body: |- - - Remove name from the table - - Modify the WriteCustomOutput, to fix error with the field `Default`, if the value of the field was default it was replaced by the value of the default field, it was doing a double replacement - - BREAKING CHANGE: No - - commit: 2cb08795f79d0663d47e00372a125a820c75c2a9 - note: |- - fix(LoadBalancer): added new alias - - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: LoadBalancer - breaking: true - description: added new alias - body: |- - - Added the "lb" alias to the load balancer cmd - - Modify the name of the checksum in .goreleaser file - - BREAKING CHANGE: No - - commit: 36f932ee2c91c029acddb796e6a876c7807d3b6a - note: |- - refactor(Project): Modify all project error handler - - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Modify all project error handler - body: |- - - Change the error string, remove one extra `%s` - - Fix the Makefile - - Add the release date in the verbose output in version cmd - - BREAKING CHANGE: No - - commit: d4b805530cc900310ae9505a0005f09b46c72c97 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: fix text in version cmd - body: |- - - Added the "v" to the version of the cli in the quiet flag - - BREAKING CHANGE: No -- semver: 0.1.6 - date: 2020-05-13T11:52:14-04:00 - packager: civo - changes: - - commit: 732fcc412c26278f8bdd5f69483c6783d932f607 - note: Merge remote-tracking branch 'origin/master' - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Merge remote-tracking branch 'origin/master' - body: "" - - commit: fe625b9b79e81194e910afd01420738137aab486 - note: |- - fix(Version): fix text in version cmd - - - Added the "v" to the version of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: fix text in version cmd - body: |- - - Added the "v" to the version of the cli - - BREAKING CHANGE: No -- semver: 0.1.5 - date: 2020-05-13T11:20:52-04:00 - packager: civo - changes: - - commit: b4af168b9bfe437fbf01e8a72ff62c22d233e928 - note: |- - fix(Version): update the version cmd - - - Update the text in the cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: update the version cmd - body: |- - - Update the text in the cmd - - BREAKING CHANGE: No - - commit: 174023026da3f08e8bc1f033e96888bd185798ba - note: |- - fix(Version): change the version cmd - - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: change the version cmd - body: |- - - improved way of displaying data - - added a new confirm color (Red) in color_util - - BREAKING CHANGE: No - - commit: 75fe68e8939d7234ad729e589b5a01dc95a8ac6d - note: |- - fix(Version): update the version cmd - - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: update the version cmd - body: |- - - improved way of displaying data - - added the verbose flag - - BREAKING CHANGE: No -- semver: 0.1.4 - date: 2020-05-13T09:52:06-04:00 - packager: civo - changes: - - commit: f01cff849b7b2dda0a1cbb5e4161e36ebac5101e - note: |- - fix(Version): Fixed the version cmd - - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Fixed the version cmd - body: |- - - improved way of displaying data - - added the option to verify against the github repo if that is the latest version - - the go.mod is cleaned - - BREAKING CHANGE: No -- semver: 0.1.3 - date: 2020-05-13T01:50:48-04:00 - packager: civo - changes: - - commit: 3ecf80b0b3d5b8150906aa1b853e1429d85838c5 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: b35e0cf5ab5eaa5f2854440dd453c9011b912976 - note: |- - fix(Version): Fixed the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Fixed the version cmd - body: |- - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - - commit: 122998f82bc69a7d66e3bf5bb2d0b1757c32615b - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the correct path for the version - - BREAKING CHANGE: No - - commit: c84e24618842b2351cdc0584c69897a41925e0ba - note: |- - fix(Version): Upgrade the version of the civogo lib - - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Version - breaking: true - description: Upgrade the version of the civogo lib - body: |- - - Upgrade the version of the civogo lib to 0.2.8 - - BREAKING CHANGE: No - - commit: aaa6a091f3f239ac5ce599f89bcf7534aca86d29 - note: |- - feat(Version): Added the version cmd - - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Version - breaking: true - description: Added the version cmd - body: |- - - Now you can type version and it will return the commit, version and date of the cli - - BREAKING CHANGE: No -- semver: 0.1.2 - date: 2020-05-11T19:40:21-04:00 - packager: civo - changes: - - commit: f4b78e1bc29b47ca3639d035e544201b94f9a5ef - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the project_name - - BREAKING CHANGE: No - - commit: 6beb0cafd403e919897e8bcab518b78ee9a3b8b1 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml add the id - - BREAKING CHANGE: No - - commit: 0953e5312869a959e0619727edbfd56f36588239 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 0ab428ae5839d2d67dab45ff73fcf4ce39fa6b20 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 2d05ff91b90f7d74601840296b5b962006fb60fe - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the action file - body: |- - - Change the action files - - BREAKING CHANGE: No - - commit: 5b12fdf7f5d0e1964b83af54ecbc688fd9dfcac8 - note: |- - fix(Goreleser): Fix the conf file - - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the conf file - body: |- - - Change the conf files .goreleaser.yml - - BREAKING CHANGE: No - - commit: 44ad7dffab733f7df7c780d474294fc2b37660c7 - note: |- - fix(Goreleser): Fix the action file - - - Change the action files - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: fix - scope: Goreleser - breaking: true - description: Fix the action file - body: |- - - Change the action files - - BREAKING CHANGE: No - - commit: bc2f508fd29096827a6f1c3b0175ed6334eaa958 - note: |- - refactor(Project): Modify all project - - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: Project - breaking: true - description: Modify all project - body: |- - - Change the aurora util for color, because color support windows - - Improved system of displaying errors - - BREAKING CHANGE: No - - commit: daccd7ba948e2f48b161001592a2d59297771a27 - note: |- - Merge pull request #2 from civo/dev - - Merge dev to master - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: 'Merge pull request #2 from civo/dev' - body: Merge dev to master - - commit: 7ad58ed4cb587e6836f7330325948f36c089ed5f - note: Add all but one instance command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add all but one instance command - body: "" - - commit: 3f3b06e3c3bec486533a45aa98f5433021ce3c7a - note: Split more commands out in to their own files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Split more commands out in to their own files - body: "" - - commit: 2ce2979055ac4ada6ec94afe1d9b6046fc2180f2 - note: Split instance commands out to invidual files - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Split instance commands out to invidual files - body: "" - - commit: d24951afb315e56ec6450a1743d2a8fc17011ca5 - note: Add console and reboot commands - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add console and reboot commands - body: "" - - commit: cd811766d401e0701144001afcf348176f311c7d - note: Add github token path to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add github token path to goreleaser - body: "" - - commit: d01e3ed898e543bed5c762ae43138caf3a190fab - note: Add testing workflow - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add testing workflow - body: "" - - commit: 6410d22beea3bdf6108a8bcb16d1435117b8a452 - note: Add goreleaser support - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add goreleaser support - body: "" - - commit: ec0634b6681cac4c5603f0061c79f98c3a1eb9ec - note: Add the first action command to instances - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add the first action command to instances - body: "" - - commit: 52eeee287baed7e1579c056ad778384a568e2d98 - note: Change OutputWriter to use labels as well as keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change OutputWriter to use labels as well as keys - body: "" - - commit: e15de86cb3ac94dc81ab68bdb3e64549af5f1525 - note: Change to use Find* in civogo - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change to use Find* in civogo - body: "" - - commit: 417c47aadbb899137d556f9fac0c5ca9547bc744 - note: Refactor to new OutputWriter - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Refactor to new OutputWriter - body: "" - - commit: f7201a0995cc2a3a76399e3ad27ad87761c3ef4a - note: Add size command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add size command - body: "" - - commit: a07f44a6aade894e431f5262d39c667ca4afb2f4 - note: Add quota command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add quota command - body: "" - - commit: 48cd4f0c750403ab2e0c0d0caf974dfaf5393ab7 - note: Add Region command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add Region command - body: "" - - commit: bc9e3d53d2fbd61aaaa3b26b4a4009e5a929f19c - note: Complete API key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management - body: "" - - commit: 7f7fb17fbff9152f3a1fce5603de1704be7d0e96 - note: Remove unnecessary comment - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove unnecessary comment - body: "" - - commit: ea215e4fd79632af5fa67f5c5b49611b197ee1be - note: Remove (old) accidentally commited API keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove (old) accidentally commited API keys - body: "" - - commit: 94421615da2bb2fcd1a1d89950076c8088d31c8b - note: Complete API key management functionality - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management functionality - body: "" - - commit: 4beb5f1eb0b8fe8f10537278f02fb5ef3b599531 - note: Add API Key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add API Key management - body: "" - - commit: 17848b6804d99a943a75ef284073b0945a880e35 - note: Update links in README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update links in README - body: "" - - commit: b9fc702ce61cdbc00a3613f6ebccdeb53a7392e7 - note: Add plan to README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add plan to README - body: "" - - commit: 38300f4e28497ad03ccb0cbf37f481bcd9ffc424 - note: First commit - initial makefile - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: First commit - initial makefile - body: "" - - commit: 0370dde0fded4c82af2a0d5a0c4c27af70b6e1c4 - note: |- - feat(Template): Added the kubernetes cmd - - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Template - breaking: true - description: Added the kubernetes cmd - body: |- - - Added the possibility the you can list, create, update and delete a kubernetes cluster - - Change the spinner presentation - - Update civogo lib to 0.2.7 - - BREAKING CHANGE: No - - commit: 59a4231cc2d05ae540b709fe9a62ddaf81189484 - note: |- - feat(Goreleser): Fix the goreleaser file - - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Goreleser - breaking: true - description: Fix the goreleaser file - body: |- - - Added modification to the .goreleaser.yml - - BREAKING CHANGE: No - - commit: 4f4065826190d15c049dbc56667076823432c75e - note: |- - feat(Template): Added the template cmd - - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Template - breaking: true - description: Added the template cmd - body: |- - - Added the possibility the you can list, create, update and delete a template - - Modified the ssh cmd now you need pass the param -k with the path of the key - - BREAKING CHANGE: No - - commit: 6a84a030a66953568f7b15d5c9c85b543350dd5f - note: |- - feat(Volume): Added the volume cmd - - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: Volume - breaking: true - description: Added the volume cmd - body: |- - - Added the possibility the you can list, create, attach, detach and delete a volume - - Add a utility, which gives the possibility to request confirmation when deleting a resource - - Modified all cmd to delete, to add confirmation - - BREAKING CHANGE: No - - commit: 775885d0032545f358de10beadd7275e86aac4dc - note: |- - feat(snapshot): Added the snapshot cmd - - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: snapshot - breaking: true - description: Added the snapshot cmd - body: |- - - Added the possibility the you can list, create, and delete a snapshot - - BREAKING CHANGE: No - - commit: 6c6d035ec7f37ae6cfe103a5a2c5274715c97489 - note: |- - feat(network): Added the network cmd - - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: network - breaking: true - description: Added the network cmd - body: |- - - Added the possibility the you can list, create, update, and delete a network - - Modify the instance create cmd now you can pass the name or the id of the network - - Update README.md - - Update civogo lib version to 2.0.6 - - BREAKING CHANGE: No - - commit: 4f3a6445069c87b1d97c93ea21b1d06ab401f7b5 - note: |- - feat(sshkey): Added the ssh key cmd - - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: sshkey - breaking: true - description: Added the ssh key cmd - body: |- - - Added the possibility the you can list, create, and delete ssh key - - Modify the instance create cmd now you can pass the name or the id of the ssh key - - Update README.md - - BREAKING CHANGE: No - - commit: 410abb5193bd01dfa92fcf921e4c4a0f2a72473b - note: |- - feat(loadbalancer): Added the cmd loadbalancer - - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: loadbalancer - breaking: true - description: Added the cmd loadbalancer - body: |- - Added the possibility the you can list, create, update and delete loadbalancer - - BREAKING CHANGE: No - - commit: 0ad42aeda4b6093400ee1fbbfa4aeb4ee29eb3b6 - note: |- - feat(firewall): Added the cmd firewall, and firewall rule - - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: firewall - breaking: true - description: Added the cmd firewall, and firewall rule - body: |- - Added the possibility the you can list, create and delete firewall and firewall rule - - BREAKING CHANGE: No - - commit: 51de188d9e36f5b1241eb95c82caaa93c72c36bb - note: |- - feat(domain): Added the cmd domain record - - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: domain - breaking: true - description: Added the cmd domain record - body: |- - Added the possibility the you can list, create and delete domain record from your account - - BREAKING CHANGE: No - - commit: 698df535b230d8e09662ee350818502cf54374f8 - note: |- - feat(domain): Added the cmd domain - - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: domain - breaking: true - description: Added the cmd domain - body: |- - Added the possibility the you can list, create and delete domain from your account - - BREAKING CHANGE: No - - commit: 22dcec052d7401038ee9eaf268cd6ffe6c23d8fd - note: |- - feat(instance): Added the option to create instances - - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: feat - scope: instance - breaking: true - description: Added the option to create instances - body: |- - added option to create instance, and the flag of --wait if you like to - wait the instances is ready, the same flag was added to the stop cmd - - BREAKING CHANGE: No - - commit: 1d1130384be0e780617515d0ceb98926dc6aad58 - note: |- - refactor(apikey): Modify the apikey - - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey - body: |- - - Added if the civo.json don't not exist them we create with template inside - - BREAKING CHANGE: No - - commit: 430a411432809cc0c8c9d9194030c7167c00884e - note: |- - refactor(apikey): Modify the apikey - - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey - body: |- - - apikey is done, now you can list, add, set default and remove now can read a legacy json - - Change the instance option, because conflict with other shorthand - - BREAKING CHANGE: No - - commit: a8310907409d3341df9443422adec992f00ca338 - note: |- - refactor(apikey): Modify the apikey function - - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No - author: - name: Alejandro JNM - email: alejandrojnm@gmail.com - committer: - name: Alejandro JNM - email: alejandrojnm@gmail.com - conventional_commit: - category: refactor - scope: apikey - breaking: true - description: Modify the apikey function - body: |- - - apikey is done, now you can list, add, set default and remove - - BREAKING CHANGE: No -- semver: 0.1.1 - date: 2020-03-04T16:27:56Z - packager: civo - changes: - - commit: cd811766d401e0701144001afcf348176f311c7d - note: Add github token path to goreleaser - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add github token path to goreleaser - body: "" - - commit: d01e3ed898e543bed5c762ae43138caf3a190fab - note: Add testing workflow - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: GitHub - email: noreply@github.com - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add testing workflow - body: "" -- semver: 0.1.0 - date: 2020-03-04T16:09:23Z - packager: civo - changes: - - commit: 6410d22beea3bdf6108a8bcb16d1435117b8a452 - note: Add goreleaser support - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add goreleaser support - body: "" - - commit: ec0634b6681cac4c5603f0061c79f98c3a1eb9ec - note: Add the first action command to instances - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add the first action command to instances - body: "" - - commit: 52eeee287baed7e1579c056ad778384a568e2d98 - note: Change OutputWriter to use labels as well as keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change OutputWriter to use labels as well as keys - body: "" - - commit: e15de86cb3ac94dc81ab68bdb3e64549af5f1525 - note: Change to use Find* in civogo - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Change to use Find* in civogo - body: "" - - commit: 417c47aadbb899137d556f9fac0c5ca9547bc744 - note: Refactor to new OutputWriter - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Refactor to new OutputWriter - body: "" - - commit: f7201a0995cc2a3a76399e3ad27ad87761c3ef4a - note: Add size command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add size command - body: "" - - commit: a07f44a6aade894e431f5262d39c667ca4afb2f4 - note: Add quota command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add quota command - body: "" - - commit: 48cd4f0c750403ab2e0c0d0caf974dfaf5393ab7 - note: Add Region command - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add Region command - body: "" - - commit: bc9e3d53d2fbd61aaaa3b26b4a4009e5a929f19c - note: Complete API key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management - body: "" - - commit: 7f7fb17fbff9152f3a1fce5603de1704be7d0e96 - note: Remove unnecessary comment - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove unnecessary comment - body: "" - - commit: ea215e4fd79632af5fa67f5c5b49611b197ee1be - note: Remove (old) accidentally commited API keys - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Remove (old) accidentally commited API keys - body: "" - - commit: 94421615da2bb2fcd1a1d89950076c8088d31c8b - note: Complete API key management functionality - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Complete API key management functionality - body: "" - - commit: 4beb5f1eb0b8fe8f10537278f02fb5ef3b599531 - note: Add API Key management - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add API Key management - body: "" - - commit: 17848b6804d99a943a75ef284073b0945a880e35 - note: Update links in README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Update links in README - body: "" - - commit: b9fc702ce61cdbc00a3613f6ebccdeb53a7392e7 - note: Add plan to README - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: Add plan to README - body: "" - - commit: 38300f4e28497ad03ccb0cbf37f481bcd9ffc424 - note: First commit - initial makefile - author: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - committer: - name: Andy Jeffries - email: andy@andyjeffries.co.uk - conventional_commit: - category: "" - scope: "" - breaking: false - description: First commit - initial makefile - body: "" From 2679fb1a72c1648bfd291c47bdd0cb9d13b9aa27 Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Tue, 23 Dec 2025 11:42:51 +0100 Subject: [PATCH 5/8] draft RELEASE.md file --- RELEASE.md | 144 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 00000000..743d2191 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,144 @@ +# Release Process + +This document explains how to release a new version of the Civo CLI. + +## Overview + +The Civo CLI uses [GoReleaser](https://goreleaser.com/) with GitHub Actions to automate the release process. When a Git tag matching the pattern `v*.*.*` is pushed, the release workflow automatically builds and distributes the CLI across multiple platforms and package managers. + +## Prerequisites + +Before creating a release, ensure: + +1. All changes are merged to the `master` branch +2. All tests pass locally: `make test` +3. The CI pipeline is green on the master branch +4. You have push permissions to the repository + +## How to Release a New Version + +### 1. Prepare the Release + +Ensure the master branch is in a releasable state: + +```bash +git checkout master +git pull origin master +make test +``` + +### 2. Create and Push a Git Tag + +Create a tag following semantic versioning (`v{MAJOR}.{MINOR}.{PATCH}`): + +```bash +git tag v1.2.3 +git push origin v1.2.3 +``` + +### 3. Monitor the Release + +Once the tag is pushed: + +1. Go to the [Actions tab](../../actions) in GitHub +2. Watch the "goreleaser" workflow run +3. The workflow will: + - Build binaries for all supported platforms + - Create Docker images and push to Docker Hub + - Generate Linux packages (DEB/RPM) + - Create a Homebrew formula PR + - Create a draft GitHub release + +### 4. Publish the Release + +1. Go to the [Releases page](../../releases) +2. Find the draft release created by GoReleaser +3. Review the auto-generated changelog +4. Edit release notes if needed +5. Click "Publish release" + +### 5. Merge the Homebrew PR + +After the release is published: + +1. Go to the [civo/homebrew-tools](https://github.com/civo/homebrew-tools) repository +2. Find the PR created by civobot (branch: `civo-{VERSION}`) +3. Review and merge the PR + +## What Gets Released + +### Binaries + +The CLI is built for the following platforms: + +| OS | Architectures | +|----|---------------| +| Linux | 386, amd64, arm, arm64 | +| macOS | amd64, arm64 | +| Windows | amd64, arm64 | + +Binaries are packaged as: +- `.tar.gz` for Linux and macOS +- `.zip` for Windows + +### Docker Images + +Docker images are pushed to Docker Hub with two tags: +- `civo/cli:latest` - Always points to the latest release +- `civo/cli:v{VERSION}` - Version-specific tag + +The image is based on Alpine Linux and includes `kubectl` pre-installed. + +### Linux Packages + +- **DEB packages** for Debian/Ubuntu systems +- **RPM packages** for RedHat/CentOS/Fedora systems + +### Homebrew + +A PR is automatically created to update the Homebrew formula in the [civo/homebrew-tools](https://github.com/civo/homebrew-tools) tap. + +### Checksums + +A SHA256 checksums file is generated for all artifacts. + +## Version Management + +The version is derived from Git tags at build time. There is no version file to update manually. + +Version information is injected via ldflags during compilation: +- `VersionCli` - The version number (from Git tag) +- `CommitCli` - The Git commit hash +- `DateCli` - The build date + +Users can check the installed version with: + +```bash +civo version # Shows: Civo CLI v{VERSION} +civo version -v # Shows full build info including commit and date +``` + +## Troubleshooting + +### Release Workflow Failed + +1. Check the workflow logs in the [Actions tab](../../actions) +2. Common issues: + - Docker Hub authentication failed - verify `DOCKER_USERNAME` and `DOCKER_PASSWORD` secrets + - GitHub token expired - regenerate `GORELEASER_GITHUB_TOKEN` + - GoReleaser config error - run `goreleaser check` locally + +### Tag Already Exists + +If you need to re-release the same version: + +```bash +git tag -d v1.2.3 # Delete local tag +git push origin :refs/tags/v1.2.3 # Delete remote tag +git tag v1.2.3 # Recreate tag +git push origin v1.2.3 # Push new tag +``` + +### Homebrew PR Not Created + +Verify the `GORELEASER_GITHUB_TOKEN` has write access to the `civo/homebrew-tools` repository. From e41ec0e0877530fc38e4b69e4403feb15fd77d92 Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Tue, 23 Dec 2025 11:43:19 +0100 Subject: [PATCH 6/8] use github native changelogs --- .goreleaser.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 2d53a512..cb3f4e3a 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -9,6 +9,8 @@ release: prerelease: auto make_latest: false mode: replace +changelog: + use: github-native builds: - env: - CGO_ENABLED=0 From b127b98f6f334042137ab97da1b89716a6343916 Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Thu, 8 Jan 2026 16:13:48 +0100 Subject: [PATCH 7/8] go back to commit to master for homebrew-tools --- .goreleaser.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index cb3f4e3a..a3b1ba67 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -52,13 +52,6 @@ brews: repository: owner: civo name: homebrew-tools - branch: "{{ .ProjectName }}-{{ .Version }}" - pull_request: - enabled: true - base: - owner: civo - name: homebrew-tools - branch: master commit_author: name: civobot email: hello@civo.com From 72a6bd21b1a50328654a84ede2dd13c8f810fdec Mon Sep 17 00:00:00 2001 From: Michele Giornetta Date: Tue, 13 Jan 2026 12:07:38 +0100 Subject: [PATCH 8/8] goreleaser dry-run --- .github/workflows/goreleaser-check.yml | 36 ++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/goreleaser-check.yml diff --git a/.github/workflows/goreleaser-check.yml b/.github/workflows/goreleaser-check.yml new file mode 100644 index 00000000..9622123f --- /dev/null +++ b/.github/workflows/goreleaser-check.yml @@ -0,0 +1,36 @@ +name: GoReleaser Check + +on: + push: + branches: + - master + +permissions: + contents: read + +jobs: + goreleaser-check: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v5 + with: + fetch-depth: 0 + + - name: Set up Go + uses: actions/setup-go@v6 + with: + go-version: ${{ vars.GO_VERSION || '1.24.11' }} + cache: true + + - name: Run GoReleaser Check + uses: goreleaser/goreleaser-action@v6 + with: + version: '~> v2' + args: check + + - name: Run GoReleaser Build (dry-run) + uses: goreleaser/goreleaser-action@v6 + with: + version: '~> v2' + args: build --snapshot --clean