-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4ecbc4
commit cd07662
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## v1.1 | ||
|
||
### Added | ||
|
||
- Cookies can be added to the HTTP request, either via the `Cookies` map or the `Cookie()` function | ||
- Function `GetWithClient()` provides the ability to send the request with a custom HTTP client | ||
- Function `FindStrict()` finds the first instance of the mentioned tag with the exact matching values of the provided attribute (previously `Find()`) | ||
- Function `FindAllStrict()` finds all the instances of the mentioned tag with the exact matching values of the attributes (previously `FindAll()`) | ||
|
||
## Changed | ||
|
||
- Function `Find()` now finds the first instance of the mentioned tag with any matching values of the provided attribute. | ||
- Function `FindAll()` now finds all the instances of the mentioned tag with any matching values of the provided attribute. | ||
|
||
--- |