From d3881e66a908259a02bc812dc123178a12ee1dc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Bru=CC=88ckner?= Date: Thu, 9 May 2019 12:50:39 +0200 Subject: [PATCH 1/4] Updates site description in MkDocs configruation --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 6e056c3c..c72a44a6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -9,6 +9,6 @@ pages: - "Optional Input Filters": optional-input-filters.md - "Unfiltered Data": unfiltered-data.md site_name: zend-inputfilter -site_description: zend-inputfilter +site_description: 'Normalize and validate input sets from the web, APIs, the CLI, and more, including files.' repo_url: 'https://github.com/zendframework/zend-inputfilter' copyright: 'Copyright (c) 2016-2019 Zend Technologies USA Inc.' From 79c83695bdc917446da844a4384bda05a43691bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Bru=CC=88ckner?= Date: Thu, 9 May 2019 12:51:08 +0200 Subject: [PATCH 2/4] Removes unused copyright note from MkDocs configruation --- mkdocs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index c72a44a6..d4333719 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -11,4 +11,3 @@ pages: site_name: zend-inputfilter site_description: 'Normalize and validate input sets from the web, APIs, the CLI, and more, including files.' repo_url: 'https://github.com/zendframework/zend-inputfilter' -copyright: 'Copyright (c) 2016-2019 Zend Technologies USA Inc.' From e2dc1ea7ce105c53dacb2431dad84f4253d2f924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Bru=CC=88ckner?= Date: Thu, 9 May 2019 12:51:39 +0200 Subject: [PATCH 3/4] Updates version notes in documentation --- docs/book/file-input.md | 2 +- docs/book/optional-input-filters.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/book/file-input.md b/docs/book/file-input.md index 425f837b..cc26e657 100644 --- a/docs/book/file-input.md +++ b/docs/book/file-input.md @@ -92,7 +92,7 @@ if ($inputFilter->isValid()) { // FileInput validators are run, but no ## PSR-7 Support -- Since 2.9.0 +> Since 2.9.0 You may also pass an array of uploaded files from a [PSR-7 ServerRequestInterface](http://www.php-fig.org/psr/psr-7/#serverrequestinterface). diff --git a/docs/book/optional-input-filters.md b/docs/book/optional-input-filters.md index 0136ce8c..22e3a895 100644 --- a/docs/book/optional-input-filters.md +++ b/docs/book/optional-input-filters.md @@ -1,6 +1,6 @@ # Optional Input Filters -- Since 2.8.0 +> Since 2.8.0 Normally, input filters are _required_, which means that if you compose them as a subset of another input filter (e.g., to validate a subset of a larger set of From d0b5a6ad24a83569ce4315e46a1bd61ece6b5293 Mon Sep 17 00:00:00 2001 From: frank Date: Thu, 22 Aug 2019 22:24:57 +0200 Subject: [PATCH 4/4] Updates version notes to new format --- docs/book/file-input.md | 2 +- docs/book/optional-input-filters.md | 2 +- docs/book/unfiltered-data.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/book/file-input.md b/docs/book/file-input.md index cc26e657..22bfcbd1 100644 --- a/docs/book/file-input.md +++ b/docs/book/file-input.md @@ -92,7 +92,7 @@ if ($inputFilter->isValid()) { // FileInput validators are run, but no ## PSR-7 Support -> Since 2.9.0 +> Available since version 2.9.0 You may also pass an array of uploaded files from a [PSR-7 ServerRequestInterface](http://www.php-fig.org/psr/psr-7/#serverrequestinterface). diff --git a/docs/book/optional-input-filters.md b/docs/book/optional-input-filters.md index 22e3a895..0ea23c54 100644 --- a/docs/book/optional-input-filters.md +++ b/docs/book/optional-input-filters.md @@ -1,6 +1,6 @@ # Optional Input Filters -> Since 2.8.0 +> Available since version 2.8.0 Normally, input filters are _required_, which means that if you compose them as a subset of another input filter (e.g., to validate a subset of a larger set of diff --git a/docs/book/unfiltered-data.md b/docs/book/unfiltered-data.md index e9141a81..63283629 100644 --- a/docs/book/unfiltered-data.md +++ b/docs/book/unfiltered-data.md @@ -1,6 +1,6 @@ # Unfiltered Data -> Since 2.10.0 +> Available since version 2.10.0 On input filters, there are several methods for retrieving the data: