Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions bundle/rmccue/requests/.editorconfig

This file was deleted.

65 changes: 65 additions & 0 deletions bundle/rmccue/requests/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,68 @@
Changelog
=========

2.0.17
------

### Overview of changes
- Update bundled certificates as of 2025-12-02. [#1000]
- General housekeeping.

[#1000]: https://github.com/WordPress/Requests/pull/1000

2.0.16
------

### Overview of changes
- Update bundled certificates as of 2025-11-04. [#954]
- Fixed: PHP 8.5 deprecation notices for `Reflection*::setAccessible()` [#940]
- Fixed: PHP 8.5 deprecation notices for `curl_close()` [#947] Props [@TobiasBg][gh-TobiasBg]
- Fixed: PHP 8.5 deprecation notices `Using null as an array offset` [#956]
- Fixed: Disallow `FilteredIterator` to accept objects (PHP 8.5 deprecation). [#968]
Note: This is technically a breaking change as this was documented behaviour. However, `FilteredIterator` is an internal class and the only detected use of this behavior was in a test.
- Fixed: tests for expired and revoked SSL certificates. [#967]
- Composer: remove `roave/security-advisories` (no longer needed with Composer 2.9+). [#961]
- README: corrected Python Requests library URL. [#944] Props [@pmbaldha][gh-pmbaldha]
- General housekeeping.

[#940]: https://github.com/WordPress/Requests/pull/940
[#944]: https://github.com/WordPress/Requests/pull/944
[#947]: https://github.com/WordPress/Requests/pull/947
[#954]: https://github.com/WordPress/Requests/pull/954
[#956]: https://github.com/WordPress/Requests/pull/956
[#961]: https://github.com/WordPress/Requests/pull/961
[#967]: https://github.com/WordPress/Requests/pull/967
[#968]: https://github.com/WordPress/Requests/pull/968

2.0.15
------

### Overview of changes
- Update bundled certificates as of 2024-12-31. [#919]
- General housekeeping.

[#919]: https://github.com/WordPress/Requests/pull/919

2.0.14
------

### Overview of changes
- Update bundled certificates as of 2024-11-26. [#910]
- Confirmed compatibility with PHP 8.4.
No new changes were needed, so Request 2.0.11 and higher can be considered compatible with PHP 8.4.
- Various other general housekeeping.

[#910]: https://github.com/WordPress/Requests/pull/910

2.0.13
------

### Overview of changes
- Update bundled certificates as of 2024-09-24. [#900]
- Various minor documentation improvements and other general housekeeping.

[#900]: https://github.com/WordPress/Requests/pull/900

2.0.12
------

Expand Down Expand Up @@ -1067,6 +1129,7 @@ Initial release!
[gh-ozh]: https://github.com/ozh
[gh-patmead]: https://github.com/patmead
[gh-peterwilsoncc]: https://github.com/peterwilsoncc
[gh-pmbaldha]: https://github.com/pmbaldha
[gh-qibinghua]: https://github.com/qibinghua
[gh-remik]: https://github.com/remik
[gh-rmccue]: https://github.com/rmccue
Expand All @@ -1080,6 +1143,7 @@ Initial release!
[gh-szepeviktor]: https://github.com/szepeviktor
[gh-TimothyBJacobs]: https://github.com/TimothyBJacobs
[gh-tnorthcutt]: https://github.com/tnorthcutt
[gh-TobiasBg]: https://github.com/TobiasBg
[gh-todeveni]: https://github.com/todeveni
[gh-tomsommer]: https://github.com/tomsommer
[gh-tonebender]: https://github.com/tonebender
Expand All @@ -1090,3 +1154,4 @@ Initial release!
[gh-xknown]: https://github.com/xknown
[gh-Zegnat]: https://github.com/Zegnat
[gh-ZsgsDesign]: https://github.com/ZsgsDesign

3 changes: 2 additions & 1 deletion bundle/rmccue/requests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ Requests for PHP
[![Lint](https://github.com/WordPress/Requests/actions/workflows/lint.yml/badge.svg)](https://github.com/WordPress/Requests/actions/workflows/lint.yml)
[![Test](https://github.com/WordPress/Requests/actions/workflows/test.yml/badge.svg)](https://github.com/WordPress/Requests/actions/workflows/test.yml)
[![codecov.io](https://codecov.io/gh/WordPress/Requests/branch/stable/graph/badge.svg?token=AfpxK7WMxj&branch=stable)](https://codecov.io/gh/WordPress/Requests?branch=stable)
[![Packagist License](https://img.shields.io/packagist/l/rmccue/requests)](https://github.com/WordPress/Requests/blob/stable/LICENSE)

Requests is a HTTP library written in PHP, for human beings. It is roughly
based on the API from the excellent [Requests Python
library](http://python-requests.org/). Requests is [ISC
library](https://requests.readthedocs.io/en/latest/). Requests is [ISC
Licensed](https://github.com/WordPress/Requests/blob/stable/LICENSE) (similar to
the new BSD license) and has no dependencies, except for PHP 5.6+.

Expand Down
Loading