Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #436 from Esri/bsvensson/#316-no-more-beta
Browse files Browse the repository at this point in the history
Stop using beta in version string, #316
  • Loading branch information
jgravois authored Aug 16, 2017
2 parents d541045 + 85e7561 commit 7381558
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions DotNet/proxy.ashx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
*/
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Java/proxy.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions PHP/proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 7381558

Please sign in to comment.