diff --git a/WHATSNEW b/WHATSNEW index 6dcfe9b2c..ff6e43af7 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -1,6 +1,15 @@ Changes from Ant 1.10.12 TO Ant 1.10.13 ======================================= +Changes that could break older environments: +------------------------------------------- + +* has a new attribute authenticateOnRedirect that can be used to + prevent Ant from sending the configured credentials when following a + redirect. It is false by default, which means builds that rely on + credentials being used on the redirected URI may break. + Github Pull Request #173 + Other changes: -------------- @@ -16,11 +25,6 @@ Other changes: * now supports FTPs. Github Pull Request #170 -* has a new attribute authenticateOnRedirect that can be used to - prevent Ant from sending the configured credentials when following a - redirect. It is true by default for backwards compatibility reasons. - Github Pull Request #173 - Changes from Ant 1.10.11 TO Ant 1.10.12 ======================================= diff --git a/manual/Tasks/get.html b/manual/Tasks/get.html index b4c4e579b..fe7deb4f2 100644 --- a/manual/Tasks/get.html +++ b/manual/Tasks/get.html @@ -95,7 +95,7 @@ the request is relayed to the proxy.

authenticateOnRedirect Whether the credentials should also be sent to the new location when a redirect is followed.
since Ant 1.10.13 - No; default is true + No; default is false maxtime diff --git a/src/main/org/apache/tools/ant/taskdefs/Get.java b/src/main/org/apache/tools/ant/taskdefs/Get.java index 15f732f16..03915cc50 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Get.java +++ b/src/main/org/apache/tools/ant/taskdefs/Get.java @@ -82,7 +82,7 @@ public class Get extends Task { private boolean ignoreErrors = false; private String uname = null; private String pword = null; - private boolean authenticateOnRedirect = true; // on by default for backward compatibility + private boolean authenticateOnRedirect = false; private long maxTime = 0; private int numberRetries = NUMBER_RETRIES; private boolean skipExisting = false;