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

Commit 7381558

Browse files
authored
Merge pull request #436 from Esri/bsvensson/#316-no-more-beta
Stop using beta in version string, #316
2 parents d541045 + 85e7561 commit 7381558

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,26 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.1.1] - 2017-08-15
6+
7+
### Added
8+
- (DotNet) Support for using IIS application pool for authenticating with secured resources
9+
10+
### Fixed
11+
- Support WMS servers that use `application/vnd.ogc.wms_xml` content-type
12+
- (DotNet) Change error response to be well-formed JSON
13+
- (DotNet) Smarter SSL/TLS1.2/TLS1.3 picking
14+
- (DotNet) Smarter HTTP header pass-alongs
15+
- (DotNet) Improved 498/499 handling
16+
- (DotNet) Avoid "Exception thrown: 'System.Threading.ThreadAbortException' in mscorlib.dll" error in Visual Studio.
17+
- (Java) Support chunked transfers
18+
- Improved doc
19+
20+
### Security
21+
522
## [1.1.0] - 2015-11-05
623

7-
### Added
24+
### Added
825
- Support for 10.3 tokens
926
- Support for federated services
1027
- Support for hostRedirect to use aliased domains
@@ -45,6 +62,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4562

4663
- Initial public release
4764

48-
[Unreleased]: https://github.com/Esri/resource-proxy/compare/v1.1.0...HEAD
65+
[Unreleased]: https://github.com/Esri/resource-proxy/compare/v1.1.1...HEAD
66+
[1.1.1]: https://github.com/Esri/resource-proxy/compare/v1.1.0...v1.1.1
4967
[1.1.0]: https://github.com/Esri/resource-proxy/compare/v1.0...v1.1.0
5068
[1.0]: https://github.com/Esri/resource-proxy/compare/v0.9...v1.0

DotNet/proxy.ashx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* DotNet proxy client.
55
*
6-
* Version 1.1.1-beta
6+
* Version 1.1.1
77
* See https://github.com/Esri/resource-proxy for more information.
88
*
99
*/
@@ -21,7 +21,7 @@ using System.Net;
2121

2222
public class proxy : IHttpHandler {
2323

24-
private static String version = "1.1.1-beta";
24+
private static String version = "1.1.1";
2525

2626
class RateMeter {
2727
double _rate; //internal rate is stored in requests per second

Java/proxy.jsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ java.text.SimpleDateFormat" %>
3535
*
3636
* JSP proxy client
3737
*
38-
* Version 1.1.1-beta
38+
* Version 1.1.1
3939
* See https://github.com/Esri/resource-proxy for more information.
4040
*
4141
----------------------------------------------------------- -->
4242

43-
<%! final String version = "1.1.1-beta"; %>
43+
<%! final String version = "1.1.1"; %>
4444

4545
<%!
4646
public static final class DataValidUtil {

PHP/proxy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
/**
44
* PHP Proxy Client
55
*
6-
* Version 1.1.1-beta
6+
* Version 1.1.1
77
* See https://github.com/Esri/resource-proxy for more information.
88
*
99
*/
1010

11-
$version = "1.1.1-beta";
11+
$version = "1.1.1";
1212

1313
error_reporting(0);
1414

0 commit comments

Comments
 (0)