dependabot[bot]
8da1632fcb
chore(deps): bump jetty-servlet in /tests/apps/java
...
Bumps [jetty-servlet](https://github.com/eclipse/jetty.project ) from 11.0.7 to 11.0.8.
- [Release notes](https://github.com/eclipse/jetty.project/releases )
- [Commits](https://github.com/eclipse/jetty.project/compare/jetty-11.0.7...jetty-11.0.8 )
---
updated-dependencies:
- dependency-name: org.eclipse.jetty:jetty-servlet
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-02-08 13:11:51 +00:00
Jose Diaz-Gonzalez
2db9a53288
Merge pull request #5021 from dokku/dependabot/composer/tests/apps/php/heroku/heroku-buildpack-php-206
...
chore(deps-dev): bump heroku/heroku-buildpack-php from 205 to 206 in /tests/apps/php
2022-02-05 03:52:41 -05:00
dependabot[bot]
d65713a8cb
chore(deps-dev): bump heroku/heroku-buildpack-php in /tests/apps/php
...
Bumps [heroku/heroku-buildpack-php](https://github.com/heroku/heroku-buildpack-php ) from 205 to 206.
- [Release notes](https://github.com/heroku/heroku-buildpack-php/releases )
- [Changelog](https://github.com/heroku/heroku-buildpack-php/blob/main/CHANGELOG.md )
- [Commits](https://github.com/heroku/heroku-buildpack-php/compare/v205...v206 )
---
updated-dependencies:
- dependency-name: heroku/heroku-buildpack-php
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-02-02 13:12:30 +00:00
Jose Diaz-Gonzalez
9d3f4ff508
Merge pull request #5019 from dokku/4965-global-domain-renames
...
Only rename app domains associated with a global domain
2022-01-29 07:24:36 -05:00
Jose Diaz-Gonzalez
7e45cbccc7
Merge pull request #5017 from dokku/5002-proxy-clear-config
...
Add command to clear all proxy configs
2022-01-29 05:31:25 -05:00
Jose Diaz-Gonzalez
21ecf4b299
fix: run shfmt
2022-01-29 05:31:10 -05:00
Jose Diaz-Gonzalez
26e7a16fd7
fix: only rename app domains associated with a global domain
...
Closes #4965
2022-01-28 22:38:24 -05:00
Jose Diaz-Gonzalez
00d11b8440
docs: document proxy:clear-config
2022-01-28 21:32:58 -05:00
Jose Diaz-Gonzalez
4e5ae25d5f
fix: generate clear-config subcommand
2022-01-28 21:31:13 -05:00
Jose Diaz-Gonzalez
ecea1488e1
fix: ignore errors clearing proxy configs
...
If one fails to rebuild for whatever reason, just continue onward.
2022-01-28 20:58:31 -05:00
Jose Diaz-Gonzalez
7136da1aa5
feat: add a command to clear all proxy configs
...
Closes #5002
2022-01-28 20:58:31 -05:00
Jose Diaz-Gonzalez
3b0bf4d8f2
feat: use --all flag for clearing proxy config during ps:restore
...
Without this, we might end up with one or more apps that still have a proxy config.
2022-01-28 20:58:31 -05:00
Jose Diaz-Gonzalez
c75149fb9f
feat: add support for clearing all nginx proxy entries in a single go
2022-01-28 20:58:31 -05:00
Jose Diaz-Gonzalez
9bde10cdef
Merge pull request #5018 from dokku/4799-port-warn
...
Add warning for setting PORT environment variable
2022-01-28 20:40:34 -05:00
Jose Diaz-Gonzalez
1c681d23eb
docs: add warning for setting PORT
...
Closes #4799
2022-01-28 20:40:05 -05:00
Jose Diaz-Gonzalez
647c4578e2
Merge pull request #4975 from tcurdt/master
...
add arm64 to the build
2022-01-28 19:26:41 -05:00
Jose Diaz-Gonzalez
110aa1f4d9
fix: run shfmt
2022-01-28 18:31:42 -05:00
Jose Diaz-Gonzalez
7a7f44614d
fix: build correct image as multi-platform image
2022-01-28 18:25:18 -05:00
Jose Diaz-Gonzalez
4fede344fc
refactor: build docker image for all architectures
2022-01-28 17:55:46 -05:00
Dokku Bot
705fb16d70
Release 0.26.8
...
# History
## 0.26.8
Install/update via the bootstrap script:
```shell
wget https://raw.githubusercontent.com/dokku/dokku/v0.26.8/bootstrap.sh
sudo DOKKU_TAG=v0.26.8 bash bootstrap.sh
```
### Bug Fixes
- #5016 : @josegonzalez Properly support the --global flag when detecting the scheduler
- #5015 : @josegonzalez Avoid popd errors when dokku is run as root
### New Features
- #5006 : @josegonzalez Better go mod support in VSCode Dev Containers
### Documentation
- #5014 : @josegonzalez Clarify that all run containers are removed at the end of process execution
- #5010 : @josegonzalez Add documentation for ps:restore
- #5009 : @josegonzalez Clarify installation documentation
v0.26.8
2022-01-28 16:35:25 +00:00
Jose Diaz-Gonzalez
2d8c3cd247
Merge pull request #5016 from dokku/global-scheduler-detection
...
Properly support the --global flag when detecting the scheduler
2022-01-28 11:34:30 -05:00
Jose Diaz-Gonzalez
c42916c027
Merge pull request #5015 from dokku/5012-clone-fixes
...
Avoid popd errors when dokku is run as root
2022-01-28 11:34:16 -05:00
Jose Diaz-Gonzalez
02927b3866
fix: properly support the --global flag when detecting the scheduler
...
Previously this caused errors when fetching the global scheduler.
2022-01-27 22:16:22 -05:00
Jose Diaz-Gonzalez
b0faf2e1f2
fix: avoid popd errors when dokku is run as root
...
When running the dokku command in a directory that the dokku user does not have access to - such as /root - popd will fail loudly (starting in Ubuntu 16.04). This change ignores those errors and changes the working dir in the bin to /tmp.
Refs #5012
2022-01-27 22:14:14 -05:00
Jose Diaz-Gonzalez
faf204c03a
Merge pull request #5014 from dokku/4701-remove-containers
...
Clarify that all run containers are removed at the end of process execution
2022-01-27 21:09:05 -05:00
Jose Diaz-Gonzalez
b706b6f579
docs: clarify that all run containers are removed at the end of process execution
2022-01-27 21:08:34 -05:00
Jose Diaz-Gonzalez
51fe0836dc
Merge pull request #5010 from dokku/4966-restore-docs
...
Add documentation for ps:restore
2022-01-24 01:38:21 -05:00
Jose Diaz-Gonzalez
8cbec57bf5
docs: add documentation for ps:restore
...
Also document dokku-event-listener usage.
Closes #4966
2022-01-24 01:37:59 -05:00
Jose Diaz-Gonzalez
c034f509e7
docs: drop extra words
2022-01-23 22:38:04 -05:00
Jose Diaz-Gonzalez
4f4cb88a81
Merge pull request #5009 from dokku/4947-update-install-docs
...
Clarify installation documentation
2022-01-23 22:28:40 -05:00
Jose Diaz-Gonzalez
30cd670a16
docs: clarify installation documentation
...
- Simplify first-install instructions
- Move advanced docs around
- Drop references to web installer
Closes #4947
2022-01-23 22:28:17 -05:00
Jose Diaz-Gonzalez
0a2ea6786d
Merge pull request #5006 from dokku/devcontainer-go-mod-support
...
Better go mod support in VSCode Dev Containers
2022-01-22 04:46:00 -05:00
Jose Diaz-Gonzalez
2bd5794ab9
chore: run go mod download/tidy for all plugins
...
This cleans up the development environment for each module.
2022-01-22 02:56:27 -05:00
Jose Diaz-Gonzalez
d3b01ffb2f
refactor: use vscode workspace to better support go modules in devcontainer
...
This allows gopls to handle autocompletion by setting multiple workspace roots it can traverse for dependencies.
2022-01-22 02:52:08 -05:00
Dokku Bot
3bb8812e33
Release 0.26.7
...
# History
## 0.26.7
Install/update via the bootstrap script:
```shell
wget https://raw.githubusercontent.com/dokku/dokku/v0.26.7/bootstrap.sh
sudo DOKKU_TAG=v0.26.7 bash bootstrap.sh
```
### Bug Fixes
- #5003 : @josegonzalez Respect pre-existing .env files when preparing the herokuish buildenv
- #4950 : @emdienn Use exported environment vars during pack build
- #4999 : @elhu Purge cache for all apps when calling buildpacks:set-property with --global flag
- #4988 : @fomojola Conditionally restart NGINX
- #4922 : @josegonzalez Gitignore more built plugin triggers in apps plugin
### New Features
- #4964 : @josegonzalez Add log message when running state is false
- #4970 : @josegonzalez Log the string error and not bytes when there is an issue updating the cron schedule
- #4924 : @josegonzalez Update devcontainer to include aliased go packages
- #4920 : @josegonzalez Ensure related go source and vscode plugins are installed in devcontainer
### Documentation
- #4949 : @IlyaSemenov docs: update herokuish upgrade instructions
- #4992 : @anthonyshew Typo for deploying using image SHA
- #4976 : @josegonzalez Update link in header to dokku pro
- #4972 : @Dam-Buty Clarify cron:report command
- #4943 : @Stormheg Fix typo in registry management documentation
- #4935 : @josegonzalez Reword note about env vars in nginx config templates
### Other
- #4995 : @dependabot[bot] chore(deps-dev): bump heroku/heroku-buildpack-php from 203 to 205 in /tests/apps/php
- #4978 : @dependabot[bot] chore(deps-dev): bump heroku/heroku-buildpack-php from 201 to 203 in /tests/apps/php
- #4936 : @dependabot[bot] chore(deps-dev): bump heroku/heroku-buildpack-php from 200 to 201 in /tests/apps/php
- #4937 : @dependabot[bot] chore(deps): bump socket.io from 4.3.2 to 4.4.0 in /tests/apps/.websocket.disabled
v0.26.7
2022-01-18 09:35:34 +00:00
Jose Diaz-Gonzalez
230a1dbcc4
Merge pull request #5003 from dokku/4894-dotenv
...
Respect pre-existing .env files when preparing the herokuish buildenv
2022-01-18 04:06:52 -05:00
Jose Diaz-Gonzalez
07f2ef1411
fix: respect pre-existing .env files when preparing the herokuish buildenv
...
Closes #4894
2022-01-18 02:21:12 -05:00
Jose Diaz-Gonzalez
3c68114ad3
Merge pull request #4950 from emdienn/bugfix/env-at-build-time
...
Use exported environment vars during pack build
2022-01-16 18:23:56 -05:00
Jose Diaz-Gonzalez
4f870512f4
fix: correct lint error
2022-01-15 08:44:02 -05:00
Jose Diaz-Gonzalez
5b7464f525
refactor: use new name for pack format
2022-01-15 08:39:53 -05:00
Jose Diaz-Gonzalez
64d6c28e30
Merge pull request #4999 from elhu/4990-set-stack-global-cache
...
Purge cache for all apps when calling buildpacks:set-property with --global flag
2022-01-15 08:37:43 -05:00
Jose Diaz-Gonzalez
6f55b89149
refactor: simplify env var passing by using a new config:export format
...
Also add a test for env vars during build time for pack-built applications.
2022-01-15 08:34:02 -05:00
TheDoctor
7f213beefa
Mirror env behaviour from herokuish builder, adapt to pack
...
Docker accepts its flags as --env=FOO but pack requires --env FOO, which is why ENV_ARGS_VALUES is iterated into ENV_ARGS, then pack run through eval
2022-01-15 06:54:03 -05:00
TheDoctor
bc1aba6c7a
Use exported environment vars during pack build
...
Config was exported, but the result never used.
2022-01-15 06:54:03 -05:00
Jose Diaz-Gonzalez
861dc9fe95
Merge pull request #4949 from IlyaSemenov/fix/herokuish_update
...
docs: update herokuish upgrade instructions
2022-01-15 06:46:44 -05:00
Jose Diaz-Gonzalez
0a7994b67f
Merge pull request #4964 from dokku/josegonzalez-patch-1
...
Add log message when running state is false
2022-01-15 06:44:06 -05:00
Jose Diaz-Gonzalez
a5441ff03e
Merge pull request #4970 from dokku/4969-log-err
...
Log the string error and not bytes when there is an issue updating the cron schedule
2022-01-15 06:42:18 -05:00
Jose Diaz-Gonzalez
dd7ae8c617
Merge pull request #4995 from dokku/dependabot/composer/tests/apps/php/heroku/heroku-buildpack-php-205
...
chore(deps-dev): bump heroku/heroku-buildpack-php from 203 to 205 in /tests/apps/php
2022-01-15 06:41:41 -05:00
Vincent Boisard
cf4eed2de0
Add test for buildpacks:set-property --global
2022-01-13 23:21:57 +01:00
Vincent Boisard
d7dfc5d30b
Purge cache for all apps when calling buildpacks:set-property with --global flag
2022-01-13 19:42:11 +01:00