From 14602e19b555cd6d78e694c9811bb33fc6e15ba9 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 22 May 2020 12:31:09 +0200 Subject: [PATCH] [BUGFIX] Stop caching vendor/ on Travis CI (#52) Downgrades of Composer packages do not work reliably if a higher version of a package already is installed in `vendor/`. This causes builds to use higher versions of packages than intended if Travis CI has the corresponding version in the cached and restored `vendor/` folder. --- .travis.yml | 1 - CHANGELOG.md | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d820102..7f872e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,6 @@ env: cache: directories: - - .Build/vendor - $HOME/.composer/cache before_install: diff --git a/CHANGELOG.md b/CHANGELOG.md index d064f62..a6b74bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Drop the dependency of `roave/security-advisories` ### Fixed +- Stop caching `vendor/` on Travis CI (#51) - Use the PHP version from the matrix in the CI (#48) - Re-add the static TypoScript registration (#41) - Keep the global namespace clean in `ext_localconf.php` (#40)