1## v1.1
2
3### Added
4
5- Cookies can be added to the HTTP request, either via the `Cookies` map or the `Cookie()` function
6- Function `GetWithClient()` provides the ability to send the request with a custom HTTP client
7- Function `FindStrict()` finds the first instance of the mentioned tag with the exact matching values of the provided attribute (previously `Find()`)
8- Function `FindAllStrict()` finds all the instances of the mentioned tag with the exact matching values of the attributes (previously `FindAll()`)
9
10## Changed
11
12- Function `Find()` now finds the first instance of the mentioned tag with any matching values of the provided attribute.
13- Function `FindAll()` now finds all the instances of the mentioned tag with any matching values of the provided attribute.
14
15---