Skip to content

Commit b3aeb3d

Browse files
committed
v2.3.0
1 parent 1dbafac commit b3aeb3d

10 files changed

+12
-7
lines changed

Diff for: Excel-REST - Blank.xlsm

1.97 KB
Binary file not shown.

Diff for: README.md

+5
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
101101

102102
### Release Notes
103103

104+
#### 2.3.0
105+
106+
- Add `form-urlencoded` format and helpers
107+
- Combine Body + Parameters and Querystring + Parameters with priority given to Body or Querystring, respectively
108+
104109
#### 2.2.0
105110

106111
- Add cookies support with `Request.AddCookie(key, value)` and `Response.Cookies`

Diff for: examples/Excel-REST - Example.xlsm

1.73 KB
Binary file not shown.

Diff for: specs/Excel-REST - Specs.xlsm

-38 KB
Binary file not shown.

Diff for: src/IAuthenticator.cls

+1-1
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-
' IAuthenticator v2.2.1
11+
' IAuthenticator v2.3.0
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interface for creating authenticators for rest client

Diff for: src/RestClient.cls

+1-1
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-
' RestClient v2.2.1
11+
' RestClient v2.3.0
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interact with REST web services from Excel

Diff for: src/RestClientBase.bas

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestClientBase"
22
''
3-
' RestClientBase v2.2.1
3+
' RestClientBase v2.3.0
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Extendable RestClientBase for developing custom client classes

Diff for: src/RestHelpers.bas

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestHelpers"
22
''
3-
' RestHelpers v2.2.1
3+
' RestHelpers v2.3.0
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Common helpers RestClient
@@ -38,7 +38,7 @@ Attribute VB_Name = "RestHelpers"
3838

3939
#End If
4040

41-
Private Const UserAgent As String = "Excel Client v2.2.1 (https://github.com/timhall/Excel-REST)"
41+
Private Const UserAgent As String = "Excel Client v2.3.0 (https://github.com/timhall/Excel-REST)"
4242

4343
' Moved to top from JSONLib
4444
Private Const INVALID_JSON As Long = 1

Diff for: src/RestRequest.cls

+1-1
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-
' RestRequest v2.2.1
11+
' RestRequest v2.3.0
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Create a request for use with a rest client

Diff for: src/RestResponse.cls

+1-1
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-
' RestResponse v2.2.1
11+
' RestResponse v2.3.0
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Wrapper for http responses

0 commit comments

Comments
 (0)