Skip to content

Commit 3f3c58f

Browse files
authored
Update README and useragent for v1.3 tag (#223)
1 parent 9acbc62 commit 3f3c58f

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

README

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
========================================================================
2-
MOD_AUTH_CAS 1.2 README
2+
MOD_AUTH_CAS 1.3 README
33
========================================================================
44
Apache CAS Authentication Module for the JASIG/Apereo CAS Server.
55

@@ -103,13 +103,14 @@ protocol and requires that the 'edupersonaffiliation' attribute is set to
103103
========================================================================
104104
NEW FEATURES AND FUNCTIONS IN THIS RELEASE
105105
========================================================================
106-
* OpenSSL 1.1 support.
107-
* CASv2 attributes.
108-
* CASPreserveTicket, which allows tickets to pass through when a valid session exists.
109-
* CASGatewayCookieDomain, to set the gateway cookie domain.
110-
* Use a dynamic buffer to store the CAS validation response.
111-
* Various bug and documentation fixes.
112-
https://github.com/apereo/mod_auth_cas/milestone/6?closed=1
106+
* CASCookieSameSite, specify the SameSite parameter.
107+
* CASCookieSecure, specify the optional 'Secure' attribute for cookies.
108+
* Use apr_pescape_urlencoded() to URL-encode.
109+
* Fix escaping for small chars in urlEncode().
110+
* Add a random RequestID to the SAML payload.
111+
* Bump required APR versions.
112+
* Require Apache 2.4.
113+
https://github.com/apereo/mod_auth_cas/milestone/7?closed=1
113114

114115
========================================================================
115116
KNOWN ISSUES

src/mod_auth_cas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1909,7 +1909,7 @@ char *getResponseFromServer (request_rec *r, cas_cfg *c, char *ticket)
19091909
}
19101910

19111911
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 2L);
1912-
curl_easy_setopt(curl, CURLOPT_USERAGENT, "mod_auth_cas 1.0.10");
1912+
curl_easy_setopt(curl, CURLOPT_USERAGENT, "mod_auth_cas 1.3");
19131913

19141914
if(c->CASValidateSAML == TRUE) {
19151915
curl_easy_setopt(curl, CURLOPT_POST, 1L);

0 commit comments

Comments
 (0)