Skip to content

Commit d97647b

Browse files
authored
Merge pull request #59 from hollodotme/development
Release v3.1.2
2 parents f67b10b + 02aa35b commit d97647b

File tree

5 files changed

+31
-6
lines changed

5 files changed

+31
-6
lines changed

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Do not export those files in the Composer archive (lighter dependency)
2+
.circleci/ export-ignore
3+
.docker/ export-ignore
4+
.github/ export-ignore
5+
bin/ export-ignore
6+
build/ export-ignore
7+
tests/ export-ignore
8+
CHANGELOG.md export-ignore

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com).
55

6+
## [3.1.2] - 2020-05-19
7+
8+
### Added
9+
10+
* `.gitattributes` file to exclude non-relevant files/directories from archives/releases installed by composer - [#58]
11+
12+
### Fixed
13+
14+
* Remove link to `bin/fcgiget` in `composer.json` as it is a potential security issue (because `bin/fcgiget` accepts any accessible fastCGI endpoint and may be exposed in some setups)
15+
616
## [3.1.1] - 2020-05-06
717

818
### Fixed
@@ -328,6 +338,7 @@ Based on [Pierrick Charron](https://github.com/adoy)'s [PHP-FastCGI-Client](http
328338
* Getters/Setters for connect timeout, read/write timeout, keep alive, socket persistence from `Client` (now part of the socket connection)
329339
* Method `Client->getValues()`
330340

341+
[3.1.2]: https://github.com/hollodotme/fast-cgi-client/compare/v3.1.1...v3.1.2
331342
[3.1.1]: https://github.com/hollodotme/fast-cgi-client/compare/v3.1.0...v3.1.1
332343
[3.1.0]: https://github.com/hollodotme/fast-cgi-client/compare/v3.0.1...v3.1.0
333344
[3.0.1]: https://github.com/hollodotme/fast-cgi-client/compare/v3.0.0...v3.0.1
@@ -373,3 +384,4 @@ Based on [Pierrick Charron](https://github.com/adoy)'s [PHP-FastCGI-Client](http
373384
[#53]: https://github.com/hollodotme/fast-cgi-client/issues/53
374385
[#55]: https://github.com/hollodotme/fast-cgi-client/pull/55
375386
[#56]: https://github.com/hollodotme/fast-cgi-client/issues/56
387+
[#58]: https://github.com/hollodotme/fast-cgi-client/pull/58

LICENSE

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ SOFTWARE.
2222
Contributors:
2323

2424
* https://github.com/dugwood (Yvan Taviaud)
25+
* https://github.com/zackse (Evan Zacks)
26+
* https://github.com/themsaid (Mohamed Said)
27+
* https://github.com/teanooki (Markus)
28+
* https://github.com/jdreesen (Jacob Dreesen)
2529
* https://github.com/rbro
2630
* https://github.com/theseer (Arne Blankerts)
27-
* https://github.com/andybee (Andy Buckingham)
31+
* https://github.com/andybee (Andy Buckingham)
32+
* https://github.com/mnapoli (Matthieu Napoli)

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Please see the following links for earlier releases:
2020

2121
* PHP >= 7.0 (EOL) [v1.0.0], [v1.0.1], [v1.1.0], [v1.2.0], [v1.3.0], [v1.4.0], [v1.4.1], [v1.4.2]
2222
* PHP >= 7.1 [v2.0.0], [v2.0.1], [v2.1.0], [v2.2.0], [v2.3.0], [v2.4.0], [v2.4.1], [v2.4.2], [v2.4.3], [v2.5.0], [v2.6.0], [v2.7.0], [v2.7.1],
23-
[v2.7.2], [v3.0.0-alpha], [v3.0.0-beta], [v3.0.0], [v3.0.1], [v3.1.0]
23+
[v2.7.2], [v3.0.0-alpha], [v3.0.0-beta], [v3.0.0], [v3.0.1], [v3.1.0], [v3.1.1]
2424

2525
Read more about the journey to and changes in `v2.6.0` in [this blog post](https://github.com/hollodotme/fast-cgi-client/wiki/Background-Info-FastCgiClient-Version-2.6.0).
2626

@@ -975,7 +975,9 @@ if ('File not found.' === trim($response->getBody()))
975975

976976
sh tests/runTestsOnAllLocalPhpVersions.sh
977977

978-
## Command line tool (for debugging only)
978+
## Command line tool (for local debugging only)
979+
980+
**Please note:** `bin/fcgiget` is not included and linked to `vendor/bin` via composer anymore since version `v3.1.2` for security reasons. [Read more.](https://github.com/hollodotme/fast-cgi-client/pull/58)
979981

980982
Run a call through a network socket:
981983

@@ -988,6 +990,7 @@ Run a call through a Unix Domain Socket
988990
This shows the response of the php-fpm status page.
989991

990992

993+
[v3.1.1]: https://github.com/hollodotme/fast-cgi-client/blob/v3.1.1/README.md
991994
[v3.1.0]: https://github.com/hollodotme/fast-cgi-client/blob/v3.1.0/README.md
992995
[v3.0.1]: https://github.com/hollodotme/fast-cgi-client/blob/v3.0.1/README.md
993996
[v3.0.0]: https://github.com/hollodotme/fast-cgi-client/blob/v3.0.0/README.md

composer.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
"email": "[email protected]"
1717
}
1818
],
19-
"bin": [
20-
"bin/fcgiget"
21-
],
2219
"autoload": {
2320
"psr-4": {
2421
"hollodotme\\FastCGI\\": "src/"

0 commit comments

Comments
 (0)