1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
-*- markdown -*-
2023-08-15 0.5.4.3
* Replace cryptonite(deprecated) with crypto
2023-08-15 0.5.4.2
* Fix base bounds
2023-07-31 0.5.4.1
* Cabal version change2023-07-31 0.5.4.1
* Cabal version change
2023-03-01 0.5.4.0
* Aeson 2.0 compatibility
* Add patch request
2020-02-08 0.5.3.3
* GHC9 compatibility
2019-01-25 0.5.3.2
* Compatibility with http-client >= 0.6.0
2018-12-10 0.5.3.1
* Fix AWS-related things
2018-11-16 0.5.3.0
* Added Postable/Putable on aeson encoding
* Added better AWS signing for urls without region
2018-03-01 0.5.2.1
* Fixed some building issues with older versions
* Removed dependency on cryptohash, using cryptonite instead
2018-01-01 0.5.2.0
* Added some HistoriedResponse support
* Deprecated withSession, added newSession (to be inline with upstream http-client)
* Added same instances for Putable as for Postable (might be merged?)
* Added getSessionCookieJar to get cookies from a Session
* Fixed customPayloadMethod to follow the method (it was sometimes POST)
2017-12-23 0.5.1.1
* Add awsSessionTokenAuth (in addition to the existing awsAuth) to
support AWS Session Token Service (AWS STS) credentials. These look
like regular AWS credentials but have an additional session token as
a 3rd element. This mechanism is needed to be able to (a) use EC2
instance profiles, (b) make calls form AWS Lambda, (c) is useful for
delegated role access (assumeRole within and across accounts), and (d)
enables MFA-protected access scenarios.
See tests/AWS/IAM.hs for a test and simple example.
2017-01-09 0.5.1.0
* Add Session-specific version of Network.Wreq.customPayloadMethodWith
* 8.2 GHC compatibility
2017-01-09 0.5.0.0
* Compatible with `http-client` >= 0.5
* This compatibility change required a small API change: `checkStatus`
is now named `checkResponse` for compatibility with the
`http-client` package
2015-05-10 0.4.0.0
* Compatible with GHC 7.10.
* New withAPISession and withSessionControl functions make talking to
REST services more efficient.
* Added support for AWS S3 virtual-host style URLs.
* Added signing support for region specific calls to the AWS Security
Token Service (AWS STS).
* The introduction of AWS support accidentally introduced unwanted AWS
headers and computation into all requests. This has been fixed.
2014-12-11 0.3.0.1
* Bump lower bound on http-client to 0.3.0.1
2014-12-02 0.3.0.0
* Support for Amazon Web Services request signing
* New customMethod, customMethodWith functions allow use of arbitrary
HTTP verbs
* httpProxy, basicAuth, oauth2Bearer, oauth2Token: removed Maybe from
result types, changed documentation to suggest use of (?~)
2014-08-25 0.2.0.0
* Support for lens 4.4
2014-04-22 0.1.0.0
* Initial release.
|