Skip to content

Tags: demvsystems/php-vcr

Tags

1.5.2

Toggle 1.5.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#339 from Khartir/support-multi-getcontent Support curl_multi_getcontent

1.5.1

Toggle 1.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#260 from alnorth/fix-calling-of-private-cu… …rl-functions call_user_func doesn't work in this context with private or protected…

1.5.0

Toggle 1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#326 from php-vcr/1.5 Version 1.5

1.5.0alpha1

Toggle 1.5.0alpha1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#317 from php-vcr/1.5-fix-stat-error Implemented stream_stat

1.5.0alpha0

Toggle 1.5.0alpha0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#315 from php-vcr/1.5-fix-uncareful-merge Fixed the uncareful merge of PR311

1.4.5

Toggle 1.4.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#290 from janvernieuwe/travis-update Test php 7.3 and 7.4

1.4.4

Toggle 1.4.4's commit message
Fix curl reset (php-vcr#248) ### Context When using PHP-VCR with Guzzle 6 with async requests, the first request is playing correctly but the next request is putting Guzzle in an infinite loop. It took me a whole day but I traced back this problem to the way the "curl_reset" hook is written. It clears the request but not the response. Hence, when another request is performed (even on a different URL) the same response is sent. This weird behaviour is causing an infinite loop in Guzzle 6. This problem is probably exactly the same as the issue php-vcr#211. This PR should fix it. ### What has been done The first commit of this PR contains only the failing test (to showcase the problem). You see that the test never completes (because of the infinite loop): https://travis-ci.org/php-vcr/php-vcr/jobs/366140696 The second commit is the fix. I simply added one line in the curl_reset hook to remove the response as well as the request. Note: this PR is based on the branch from PR php-vcr#246 since I need unit tests from Guzzle 6 that are not yet merged.

1.4.3

Toggle 1.4.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#246 from moufmouf/guzzle6-integration-tests Adding integration tests for Guzzle 6

1.4.2

Toggle 1.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request php-vcr#235 from tiagobrito/Allow-symfony/yaml-v4-… …as-dependency [RFC] Allow symfony/yaml and symfony/event-dispatcher v4.0 as dependency

1.4.1

Toggle 1.4.1's commit message
Merge pull request php-vcr#206 from alnorth/empty-string-post-fix Make handling of empty strings in CURLOPT_POSTFIELDS consistent.