1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-24 10:03:27 +01:00

2520 Commits

Author SHA1 Message Date
Michael Dowling
3ec476d49d Testing an edge case 2015-03-22 16:50:32 -07:00
Michael Dowling
5eabdb6db0 Simplifying some client methods and removing URI template arrays 2015-03-22 16:35:41 -07:00
Michael Dowling
841592b09c Making the handler stack an actual stack 2015-03-22 14:51:11 -07:00
Michael Dowling
83fbed5d8a CS fixes 2015-03-22 12:27:58 -07:00
Michael Dowling
1d2b9499e5 Finishing RedirectMiddleware 2015-03-22 12:26:00 -07:00
Michael Dowling
0c21769785 Updating HandlerStack 2015-03-22 10:43:34 -07:00
Michael Dowling
58310521b6 Adding client tests 2015-03-21 23:33:02 -07:00
Michael Dowling
f22fefeaea More functionality to MockHandler 2015-03-21 22:52:06 -07:00
Michael Dowling
af5602945d Test coverage 2015-03-21 22:40:21 -07:00
Michael Dowling
fd39fbbca3 Simplifying multipart post file input 2015-03-21 22:28:50 -07:00
Michael Dowling
8f79355c5e Removing get_ prefix 2015-03-21 22:16:16 -07:00
Michael Dowling
2528a073cd Updating packager 2015-03-21 19:32:12 -07:00
Michael Dowling
7cc3409d22 Updating documentation 2015-03-21 19:30:11 -07:00
Michael Dowling
035c8a1774 Removing the option to not hydrate test server responses 2015-03-21 19:25:09 -07:00
Michael Dowling
4facbb2583 Removing set_path/get_path 2015-03-21 19:00:34 -07:00
Michael Dowling
67b5c802be More option updates 2015-03-21 17:58:10 -07:00
Michael Dowling
129e153750 Moving default request options up a layer 2015-03-21 17:34:27 -07:00
Michael Dowling
acb33e0731 Cleaning up test server and starting on ClientTest 2015-03-21 17:10:17 -07:00
Michael Dowling
ab1ef88b4c Finishing off remaining pool test 2015-03-21 16:16:49 -07:00
Michael Dowling
af06584ec4 Adding functions.php tests 2015-03-21 16:14:23 -07:00
Michael Dowling
46abe49257 Refactoring 2015-03-21 15:53:38 -07:00
Michael Dowling
6386296592 Cleaning up Pool and test server 2015-03-21 15:33:30 -07:00
Michael Dowling
1c79c36df6 Adding magic request methods 2015-03-20 10:19:47 -07:00
Michael Dowling
5129164be7 Lots of refactoring and updates 2015-03-20 00:21:42 -07:00
Michael Dowling
69038eee6e Removing on prefix from EachPromise keys 2015-03-16 09:47:33 -07:00
Michael Dowling
fd52370dd7 Updating for PSR7 changes and promise changes 2015-03-15 23:08:26 -07:00
Michael Dowling
9c9a4cdd71 Backwards compat updates 2015-03-03 14:02:24 -08:00
Michael Dowling
99125ec94d Adding batching and multipart tests 2015-02-26 16:43:45 -08:00
Michael Dowling
b08fc28944 Adding pool tests 2015-02-25 22:49:50 -08:00
Michael Dowling
8930c85880 Removing PSR7 functions and adding default content-type and content-length 2015-02-25 15:18:38 -08:00
Michael Dowling
1a9ad6b553 WIP refactor for PSR-7 2015-02-25 14:50:44 -08:00
Michael Dowling
646ca5302b More cleanup of creating a default handler 2015-02-08 15:01:30 -08:00
Michael Dowling
64958c1d55 Cleaning up resolving a default handler 2015-02-07 11:48:59 -08:00
Michael Dowling
9b279d3989 Optimization for setPath 2015-02-07 11:36:27 -08:00
Michael Dowling
c75e810db6 Merge pull request #974 from njohansson/patch-1
MockAdapter has been renamed to MockHandler
2015-02-06 15:40:07 -08:00
njohansson
4037688c6f MockAdapter has been renamed to MockHandler 2015-02-06 10:35:58 +01:00
Michael Dowling
475b29ccd4 5.2.0 release 5.2.0 2015-01-27 17:03:29 -08:00
Michael Dowling
2714378ff2 5.2.0 release 2015-01-27 17:02:22 -08:00
Michael Dowling
15f7a25245 Merge pull request #967 from guzzle/prevent-pool-recursion
Prevent pool recursion by detecting retries
2015-01-26 17:18:18 -08:00
Michael Dowling
c681b34ba0 Prevent pool recursion by detecting retries 2015-01-24 21:52:59 -08:00
Michael Dowling
e38282adb2 Simplifying request sending.
- Removing some duplication
- Nested futures are now resolved in the client.
- Simplified injecting in futures in request events and removing now
  extraneous conditional.
2015-01-23 17:07:13 -08:00
Michael Dowling
af4e03c6b7 Removing extraneous return statement 2015-01-23 11:41:54 -08:00
Michael Dowling
25410a06aa Merge pull request #965 from guzzle/refactor-fsm-with-gotos
Updated the RequestFSM to use gotos.
2015-01-23 11:19:42 -08:00
Michael Dowling
8edf6d2bbc Updated the RequestFSM to use gotos.
- This commit updates the request FSM to use goto statements to reduce
  function call overhead and removes 5 stack frames from each request.
- Removed `$finalState` from RequestFSM::__invoke
- Finishing FSM transitions is not handled in the FSM rather than the
  RingBridge.
- Slightly related to #964
2015-01-23 10:57:12 -08:00
Michael Dowling
14f66ae8fd URI template arrays always require a list of two elements. Closes #956 2015-01-11 15:52:51 -08:00
Michael Dowling
d15519338c Adding weird fix for #955 2015-01-11 15:44:44 -08:00
Michael Dowling
d86e62bee6 Removing extra check because PHP is broken 2015-01-11 14:23:16 -08:00
Michael Dowling
d446779ad6 Merge pull request #950 from guzzle/generic_apply_headers_body
Adding AppliesHeadersInterface
2015-01-02 12:25:40 -08:00
Michael Dowling
2959c111de Merge pull request #952 from hannesvdvreken/patch-1
More consistent use of backticks in changelog markdown file
2014-12-31 10:14:14 -08:00
Hannes Van De Vreken
87f0fe8c02 More consistent use of backticks 2014-12-26 20:06:01 +01:00