forked from Ivasoft/traefik
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2921e1059a | ||
|
|
fe8e539422 | ||
|
|
45f0591cf6 |
@@ -26,6 +26,7 @@ before_deploy:
|
||||
sudo -E apt-get -yq update;
|
||||
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install docker-ce=${DOCKER_VERSION}*;
|
||||
docker version;
|
||||
echo "${DOCKERHUB_PASSWORD}" | docker login -u "${DOCKERHUB_USERNAME}" --password-stdin;
|
||||
make image;
|
||||
if [ "$TRAVIS_TAG" ]; then
|
||||
make -j${N_MAKE_JOBS} crossbinary-parallel;
|
||||
|
||||
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,7 +1,7 @@
|
||||
# Change Log
|
||||
|
||||
## [v1.7.27](https://github.com/traefik/traefik/tree/v1.7.27) (2021-01-13)
|
||||
[All Commits](https://github.com/traefik/traefik/compare/v1.7.26...v1.7.27)
|
||||
## [v1.7.28](https://github.com/traefik/traefik/tree/v1.7.28) (2021-01-13)
|
||||
[All Commits](https://github.com/traefik/traefik/compare/v1.7.26...v1.7.28)
|
||||
|
||||
**Bug fixes:**
|
||||
- **[middleware,tracing]** Do not SetError on tracing event when whitelist allowed request ([#7174](https://github.com/traefik/traefik/pull/7174) by [LordGaav](https://github.com/LordGaav))
|
||||
@@ -9,9 +9,15 @@
|
||||
|
||||
**Documentation:**
|
||||
- **[acme]** docs: fix language "if challenge is not known" ([#7718](https://github.com/traefik/traefik/pull/7718) by [amosshapira](https://github.com/amosshapira))
|
||||
- Prepare release v1.7.27 ([#7755](https://github.com/traefik/traefik/pull/7755) by [rtribotte](https://github.com/rtribotte))
|
||||
- Update copyright year for 2021 ([#7753](https://github.com/traefik/traefik/pull/7753) by [rtribotte](https://github.com/rtribotte))
|
||||
- Fix typo "CA's" instead of "CA:s" ([#7315](https://github.com/traefik/traefik/pull/7315) by [amosshapira](https://github.com/amosshapira))
|
||||
|
||||
## [v1.7.27](https://github.com/traefik/traefik/tree/v1.7.27) (2021-01-13)
|
||||
[All Commits](https://github.com/traefik/traefik/compare/v1.7.26...v1.7.27)
|
||||
|
||||
Release canceled due to a bad tag.
|
||||
|
||||
## [v1.7.26](https://github.com/traefik/traefik/tree/v1.7.26) (2020-07-28)
|
||||
[All Commits](https://github.com/traefik/traefik/compare/v1.7.25...v1.7.26)
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ git config --global user.name "Traefiker"
|
||||
|
||||
# load ssh key
|
||||
echo "Loading key..."
|
||||
openssl aes-256-cbc -K $encrypted_f9e835a425bc_key -iv $encrypted_f9e835a425bc_iv -in .travis/traefiker_rsa.enc -out ~/.ssh/traefiker_rsa -d
|
||||
openssl aes-256-cbc -K $encrypted_83c521e11abe_key -iv $encrypted_83c521e11abe_iv -in .travis/traefiker_rsa.enc -out ~/.ssh/traefiker_rsa -d
|
||||
eval "$(ssh-agent -s)"
|
||||
chmod 600 ~/.ssh/traefiker_rsa
|
||||
ssh-add ~/.ssh/traefiker_rsa
|
||||
|
||||
@@ -4,11 +4,11 @@ RepositoryName = "traefik"
|
||||
OutputType = "file"
|
||||
FileName = "traefik_changelog.md"
|
||||
|
||||
# example new bugfix v1.7.27
|
||||
# example new bugfix v1.7.28
|
||||
CurrentRef = "v1.7"
|
||||
PreviousRef = "v1.7.26"
|
||||
BaseBranch = "v1.7"
|
||||
FutureCurrentRefName = "v1.7.27"
|
||||
FutureCurrentRefName = "v1.7.28"
|
||||
|
||||
ThresholdPreviousRef = 10
|
||||
ThresholdCurrentRef = 10
|
||||
|
||||
Reference in New Issue
Block a user