Skip to content

Releases: devspace-sh/devspace

v3.0.0-beta2

22 Feb 21:06
8a9e673

Choose a tag to compare

v3.0.0-beta2 Pre-release
Pre-release
Merge pull request #459 from devspace-cloud/cloud-refactor

Cloud refactor

v2.5.1

20 Dec 14:52
47e81c4

Choose a tag to compare

Changes:

  • new devspace add service/image functionality (see #432)
  • better detection of changes in docker context path by using crc32 instead of mtime/size
  • new --service flag for devspace add port/sync commands
  • rephrased log messages if devspace.terminal.disabled is true

Fixes:

  • fixed nil pointer if .kube/config does not have a current kube context (#408)

v2.5.0

19 Dec 16:07
623e7b4

Choose a tag to compare

New Features:

  • new devspace up -x (--skip-pipeline) flag that skips the build and deploy pipeline and directly starts the sync, port-forwarding and terminal
  • new devspace.ports[].portMappings[].bindAddress config option to bind to other interfaces than localhost (see #394 & thanks to @ALCarden)
  • sync follows now local symlinks, watches them and uploads changes to them (Changed remote files are moved correctly into the symlink folders locally) (see #429)

Changes:

  • renamed devspace.deployments[].helm.devOverwrite to devspace.deployments[].helm.override (devOverwrite still works, but is deprecated now)
  • sync performance greatly improved if many files are renamed locally (see #241)
  • improved image rebuild detection on devspace up, the image contextPath is now hashed and checked for changes instead of only the dockerfile timestamp (excluding the patterns in .dockerignore) (see #414)
  • docker, helm & kubernetes dependencies got updated to the latest versions (thanks @ALCarden)

Fixes:

  • fixed devspace add/remove deployment where the command wouldn't save the config correctly (thanks @ALCarden)
  • fixed issue where devspace would still try to authenticate to an image registry even though images[].skipPush was specified
  • fixed issue where devspace would not redeploy the helm chart if an override values file was outside of the chartPath

v3.0.0-alpha1

17 Dec 14:23

Choose a tag to compare

v3.0.0-alpha1 Pre-release
Pre-release
improve error messages

v2.4.1

10 Dec 15:47
970577e

Choose a tag to compare

Changes:

  • New devspace.deployments[].helm.wait option to tell devspace to skip waiting until deployment is ready
  • New devspace down --deployment option to delete a single or multiple deployments

Fixes:

  • Resolve issue where devspace up would deploy tiller to the wrong namespace if no config.yaml exists (#417)

v2.4.0

29 Nov 09:59
ed3eb5c

Choose a tag to compare

Changes:

  • The flag switchContext is now by default true for devspace enter, up & deploy (If you don't want devspace to switch your kubecontext to the devspace context you have to run devspace up --switch-context=false)

New features:

  • Auto reloading ability, where specific file changes cause the complete pipeline to reexecute (Dockerfile changes & manifest changes, see #387)
  • Auto reloading ability where custom paths can be specified that trigger an auto reload (#389)
  • if terminal is disabled (via devspace.terminal.disabled), devspace will try to attach to the devspace pod

Fixes:

  • Sync: solve a rare issue on windows that could lead to silently stop watching files (#374)
  • Up: resolve problem when docker is not correctly installed but not needed
  • Up: detect correctly if clusterrolebinding is present in cluster
  • Reset: fix issue that waited for tiller even though tiller has issues starting

v2.3.4

22 Nov 18:41
e7a64cf

Choose a tag to compare

Changes:

  • new --terminal flag for devspace up and new config option devspace.terminal.disabled to disable terminal (#390)
  • fix docker image build, when dockerfile is out of build context (#388)

v2.3.3

14 Nov 15:36
fd5ce7d

Choose a tag to compare

Changes:

  • Limit find command download bandwidth (#377)
  • devspace up/enter/deploy: New config-overwrite flag (#373)
  • devspace up: Fix issue with label selector (#381)
  • devspace init: Fix issue with multiple exposed ports in dockerfile

v2.3.0

08 Nov 10:16
61ec17e

Choose a tag to compare

New Features:

  • New config options for sync to limit used bandwidth (#369)
  • New config option to skip image push (Useful for minikube environments see #372)

Improvements:

  • Add/remove package was improved and is now easier to use

v2.2.2

05 Nov 16:08
5d9a09b

Choose a tag to compare

New Features:
images[].createPullSecret option to automatically create a pull secret from docker credentials store
devspace.services to specify labelselectors and namespaces in a central place #353

Fixes/Improvements:
adjust selector for service when using devspace add package
helm deployment (use force if needed)
terminal.go nil pointer