Skip to content

Commit ce54b47

Browse files
committed
v3.0.3
1 parent 1b6e118 commit ce54b47

17 files changed

+16
-15
lines changed

Excel-REST - Blank.xlsm

-28.1 KB
Binary file not shown.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It seems like everything has a REST webservice these days and there is no reason
66
Getting started
77
---------------
88

9-
1. Download the [latest release (v3.0.2)](https://github.com/timhall/Excel-REST/releases)
9+
1. Download the [latest release (v3.0.3)](https://github.com/timhall/Excel-REST/releases)
1010
2. `Excel-REST - Blank.xlsm` has everything setup and ready to go.
1111

1212
For more details see the [Wiki](https://github.com/timhall/Excel-REST/wiki)
@@ -177,6 +177,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
177177
- Add `AfterExecute` to `IAuthenticator` (Breaking change, all IAuthenticators must implement this new method)
178178
- __3.0.1__ Add `DigestAuthenticator`, new helpers, and cleanup
179179
- __3.0.2__ Switch timeout to `Long` and remove `RestClientBase` (out of sync with v3)
180+
- __3.0.3__ Update OAuth1, deprecate `IncludeCacheBreaker`, update True/False formatting to lowercase, add LinkedIn example
180181

181182
#### 2.3.0
182183

authenticators/DigestAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Digest Authenticator v2.0.4
11+
' Digest Authenticator v2.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for Digest Authentication

authenticators/EmptyAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Base for setting up authenticator v2.0.4
11+
' Base for setting up authenticator v2.0.5
1212
'
1313
' @implements: IAuthenticator v3.*
1414
' @author:

authenticators/FacebookAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' Facebook Authenticator v2.0.4
11+
' Facebook Authenticator v2.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for Facebook OAuth

authenticators/GoogleAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' Google Authenticator v2.0.4
11+
' Google Authenticator v2.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for "installed application" authentication for Google APIs

authenticators/HttpBasicAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' HttpBasicAuthenticator v2.0.4
11+
' HttpBasicAuthenticator v2.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize http basic authentication

authenticators/OAuth1Authenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' OAuth1 Authenticator v2.0.4
11+
' OAuth1 Authenticator v2.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize OAuth1 authentication

authenticators/OAuth2Authenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' OAuth2 Authenticator v2.0.4
11+
' OAuth2 Authenticator v2.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize OAuth2 authentication

authenticators/TwitterAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Twitter Authenticator v2.0.4
11+
' Twitter Authenticator v2.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for application-only authentication in Twitter's V1.1 REST API

0 commit comments

Comments
 (0)