diff --git a/CHANGELOG.md b/CHANGELOG.md index 718a0447..2be4ff08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,26 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.1.1] - 2017-08-15 + +### Added +- (DotNet) Support for using IIS application pool for authenticating with secured resources + +### Fixed +- Support WMS servers that use `application/vnd.ogc.wms_xml` content-type +- (DotNet) Change error response to be well-formed JSON +- (DotNet) Smarter SSL/TLS1.2/TLS1.3 picking +- (DotNet) Smarter HTTP header pass-alongs +- (DotNet) Improved 498/499 handling +- (DotNet) Avoid "Exception thrown: 'System.Threading.ThreadAbortException' in mscorlib.dll" error in Visual Studio. +- (Java) Support chunked transfers +- Improved doc + +### Security + ## [1.1.0] - 2015-11-05 -### Added +### Added - Support for 10.3 tokens - Support for federated services - Support for hostRedirect to use aliased domains @@ -45,6 +62,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial public release -[Unreleased]: https://github.com/Esri/resource-proxy/compare/v1.1.0...HEAD +[Unreleased]: https://github.com/Esri/resource-proxy/compare/v1.1.1...HEAD +[1.1.1]: https://github.com/Esri/resource-proxy/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/Esri/resource-proxy/compare/v1.0...v1.1.0 [1.0]: https://github.com/Esri/resource-proxy/compare/v0.9...v1.0 diff --git a/DotNet/proxy.ashx b/DotNet/proxy.ashx index b81da7ea..922ca14b 100644 --- a/DotNet/proxy.ashx +++ b/DotNet/proxy.ashx @@ -3,7 +3,7 @@ /* * DotNet proxy client. * - * Version 1.1.1-beta + * Version 1.1.1 * See https://github.com/Esri/resource-proxy for more information. * */ @@ -21,7 +21,7 @@ using System.Net; public class proxy : IHttpHandler { - private static String version = "1.1.1-beta"; + private static String version = "1.1.1"; class RateMeter { double _rate; //internal rate is stored in requests per second diff --git a/Java/proxy.jsp b/Java/proxy.jsp index 8771e195..82c51ed2 100644 --- a/Java/proxy.jsp +++ b/Java/proxy.jsp @@ -35,12 +35,12 @@ java.text.SimpleDateFormat" %> * * JSP proxy client * -* Version 1.1.1-beta +* Version 1.1.1 * See https://github.com/Esri/resource-proxy for more information. * ----------------------------------------------------------- --> -<%! final String version = "1.1.1-beta"; %> +<%! final String version = "1.1.1"; %> <%! public static final class DataValidUtil { diff --git a/PHP/proxy.php b/PHP/proxy.php index 7bfeed96..24233757 100644 --- a/PHP/proxy.php +++ b/PHP/proxy.php @@ -3,12 +3,12 @@ /** * PHP Proxy Client * - * Version 1.1.1-beta + * Version 1.1.1 * See https://github.com/Esri/resource-proxy for more information. * */ -$version = "1.1.1-beta"; +$version = "1.1.1"; error_reporting(0);