Skip to content

Commit

Permalink
Prepping for 3.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Jan 28, 2014
1 parent 1cad576 commit 4de0618
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
CHANGELOG
=========

3.8.1 (2013-01-28)
------------------

* Bug: Always using GET requests when redirecting from a 303 response
* Bug: CURLOPT_SSL_VERIFYHOST is now correctly set to false when setting `$certificateAuthority` to false in
`Guzzle\Http\ClientInterface::setSslVerification()`
* Bug: RedirectPlugin now uses strict RFC 3986 compliance when combining a base URL with a relative URL
* Bug: The body of a request can now be set to `"0"`
* Sending PHP stream requests no longer forces `HTTP/1.0`
* Adding more information to ExceptionCollection exceptions so that users have more context, including a stack trace of
each sub-exception
* Updated the `$ref` attribute in service descriptions to merge over any existing parameters of a schema (rather than
clobbering everything).
* Merging URLs will now use the query string object from the relative URL (thus allowing custom query aggregators)
* Query strings are now parsed in a way that they do no convert empty keys with no value to have a dangling `=`.
For example `foo&bar=baz` is now correctly parsed and recognized as `foo&bar=baz` rather than `foo=&bar=baz`.
* Now properly escaping the regular expression delimiter when matching Cookie domains.
* Network access is now disabled when loading XML documents

3.8.0 (2013-12-05)
------------------

Expand Down
2 changes: 1 addition & 1 deletion src/Guzzle/Common/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
class Version
{
const VERSION = '3.8.0';
const VERSION = '3.8.1';

/**
* @var bool Set this value to true to enable warnings for deprecated functionality use. This should be on in your
Expand Down

5 comments on commit 4de0618

@davidbarratt
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mtdowling

This commit's message is "Prepping for 3.8.1". However, I noticed that it is tagged as 3.8.1 as well.

Is this commit the actual 3.8.1 release?

Thanks!

@stloyd
Copy link
Contributor

@stloyd stloyd commented on 4de0618 Jan 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mtdowling
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this is the 3.8.1 release. I forgot to draft a release. Here's the release: https://github.com/guzzle/guzzle/releases/tag/v3.8.1

@mastacheata
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You didn't actually release 3.8.1 a year ago and just finished the changelog yesterday, right?
Because if that's not the case, you should probably change the date in the changelog to reflect the change in years that occured a couple of weeks ago.

@GrahamCampbell
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol

Please # to comment.