Releases: devspace-sh/devspace
Releases · devspace-sh/devspace
v4.13.0
New Features
- devspace is now able to reverse port-forward specific local ports to a remote pod. This means you can access certain ports on the local machine within the pod. This feature can be configured via the new config option
dev.ports.reverseForward(#1030) - New config option
images.*.appendDockerfileInstructionsthat specifies additional instructions that will be appended to the dockerfile during the build process. This makes it possible to execute certain Dockerfile instructions only during development without changing the Dockerfile itself. - You can now pass flags to the
devspace runcommand:devspace --run-flag run command --command-flag - New
--dependencyflag fordevspace runthat will execute a command from a specific dependency. devspace will also switch the current working directory to the dependency path. Only works for dependencies that have adependencies.*.nameconfigured. - New
--dependencyflag fordevspace buildthat will build only images from a specific dependency. Only works for dependencies that have adependencies.*.nameconfigured. (#1113) - New config option
commands.descriptionto describe devspace commands, that is shown viadevspace list commands(#1115)
Other Changes
- Fixes an issue where a container restart after a sync operation was not possible for non root users (#1086)
- Added auto completion scripts for various shells (#1114)
- devspace now automatically installs kubectl if it cannot be found in the PATH and is defined as a deployment method
- Updated internal kubernetes & helm versions
v4.13.0-beta.1
Merge pull request #1119 from LukasGentele/docs-v4.13 Docs v4.13
v4.12.5
Fixes
- Fixes issues when installing devspace via npm
v4.12.5-beta.3
Merge pull request #1107 from LukasGentele/npm-installer ci: add npx test + improvements for npx
v4.12.5-beta.2
Merge pull request #1106 from LukasGentele/npm-installer installer: npx compatibility
v4.12.5-beta.1
Merge pull request #1105 from LukasGentele/npm-installer npm: improve installer
v4.12.4-beta.1
Changes
- Update internal helm version to v3.2.1
- Update internal kubernetes version to v1.18.0
- Fixes an issue with the dependency purge waiting message if specific dependencies are targeted
- Fixes a potential endless loop while searching for an open ui port (#1101)
v4.12.4
v4.12.3
v4.12.2
Changes
- Improved environment flag parsing and commands like
DEVSPACE_ENTER_FLAGS=--namespace=test devspace --pod test entershould work now correctly - Environment default flags can now be set for every command including subcommands (e.g.
devspace create space-> DEVSPACE_CREATE_SPACE_FLAGS) - Fixes an issue where devspace was not correctly parsing command arguments (#977)
- Fixes a nil pointer in the docker authentification if no docker config exists (#1076)
- Fixes an issue where devspace was parsing
kustomize versionincorrectly for newer kustomize versions (#859)