aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Marcet <javier@marcet.info>2022-05-31 21:03:28 +0200
committerRosen Penev <rosenp@gmail.com>2022-06-01 13:53:40 -0700
commit8089548622c46a7f0b18b2a98a52bc658e544f3c (patch)
tree23c3b0c6ccd6f640932d9c5d1815f78268b22b1a
parent25bd93c20309da888eb44401e213f6457942d256 (diff)
docker-compose: Update to version 2.6.0
What's Changed: - fix TestLocalComposeUp which fail locally and bump compose-go to 1.2.7 by @glours - attach only to services declared by project applying profiles by @ndeloof - Add ddev's e2e test by @ulyssessouza - Fix local run of make e2e-compose-standalone by @ulyssessouza - fix: prevent flickering prompt when pulling same image from N services by @maxcleme - add tags property to build section by @glours - update golang version to 1.18 by @glours - bump compose-go to 1.2.6 by @maxcleme - add e2e tests to verify env variables priority by @glours - Import dotenv file to os environment by @ulyssessouza New Contributors: - @maxcleme made their first contribution Signed-off-by: Javier Marcet <javier@marcet.info>
-rw-r--r--utils/docker-compose/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/docker-compose/Makefile b/utils/docker-compose/Makefile
index 3c3571d40..6633c53f9 100644
--- a/utils/docker-compose/Makefile
+++ b/utils/docker-compose/Makefile
@@ -1,14 +1,14 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=compose
-PKG_VERSION:=2.5.1
+PKG_VERSION:=2.6.0
PKG_RELEASE:=$(AUTORELEASE)
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
PKG_SOURCE:=v$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/docker/compose/tar.gz/v${PKG_VERSION}?
-PKG_HASH:=f3eeaac99d2467fe482f499787ae38f66738bc0641dbf34a6045f34aaab893b7
+PKG_HASH:=b01b998dbc29478ec989a9df4ebaf4017b7406bba1847b061632f0a7a9841751
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>