Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.15.0 #132

Merged
merged 1 commit into from
Oct 4, 2022
Merged
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
44 changes: 42 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,48 @@
## Changelog:

### 1.14.1 - 2022-xx-xx
### 1.15.0 - 2022-10-04
- zend-loader
- overhaul of zend-loader and autoloader done again ([#116])
- continues work done initially in [#1] / [76477fb]
- potential breaking changes:
> Introduced `Zend_Loader_Exception_FileNotFoundException` and `Zend_Loader_Exception_ClassNotFoundException`
>
> Instead of throwing `Zend_Exception` in `Zend_Loader::loadClass()` with a generic message `File \"$file\" does not exist or class \"$class\" was not found in the file`
> - `Zend_Loader_Exception_FileNotFoundException` will be thrown with message `File "$file" could not be found within configured include_path`. or
> - `Zend_Loader_Exception_ClassNotFoundException` with message `Class "$class" was not found in the file "$file".`, in their respective cases.

> Not suppressing loading classes with `@` suppressor by default anymore.
>
> Regular warnings/errors coming from a loaded file should be visible, otherwise it might be very confusing for devs
>
> At the same time though, `Zend_Loader` will not emit warnings when checking for files if they exist, by default. Added `isReadable` check inside `loadFile` before `include`/`include_once`.
>
> There might be a performance hit, but it should be okay when most of the autoloading is handled by composer autoloader.
>
> This change should finally allow seamless integration of `Zend_Loader` with composer autoloader, without any warnings.
- fixed issues with loading custom Translate/File_Transfer/Filter adapters
- for more details see [#116]
- zend-session
- added "session.cookie_samesite" option
- added "session.cookie_samesite" option ([#126])
- zend-validate
- hostname: update TLDs (Version 2022100300) ([#104])
- hostname: allow underscores in subdomain parts ([#131])
- general: docblock annotations
- fixed parameter annotation for `Zend_XmlRpc_Fault::setMessage()` ([#117])
- fixed parameter annotation for `Zend_Db_Table_Select::setIntegrityCheck()` ([#119])
- fixed wrong return-type in `Zend_Form_Element::removeValidator()` ([#121])
- fixed annotations for `Zend_Controller_Router_Route_Regex::__construct()` ([#123])

[#1]: https://github.com/zf1s/zf1/pull/1
[#104]: https://github.com/zf1s/zf1/pull/104
[#116]: https://github.com/zf1s/zf1/pull/116
[#117]: https://github.com/zf1s/zf1/pull/117
[#119]: https://github.com/zf1s/zf1/pull/119
[#121]: https://github.com/zf1s/zf1/pull/121
[#123]: https://github.com/zf1s/zf1/pull/123
[#126]: https://github.com/zf1s/zf1/pull/126
[#131]: https://github.com/zf1s/zf1/pull/131
[76477fb]: https://github.com/zf1s/zf1/commit/76477fbe00a198ef4376ea38c46df3960c574af8

### 1.14.0 - 2021-10-01
- general: php 8.0 compatibility ([#51])
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Original README: [click](README.orig.md)
2. Bump interdependencies of packages to the next version

```bash
../monorepo-builder/bin/monorepo-builder bump-interdependency "^1.14.1"
../monorepo-builder/bin/monorepo-builder bump-interdependency "^1.15.1"
```

3. Add git tag and push to this monorepo
Expand All @@ -133,7 +133,7 @@ Original README: [click](README.orig.md)

Split operation:
```bash
../monorepo-builder/bin/monorepo-builder split --max-processes=1 --tag=1.14.1
../monorepo-builder/bin/monorepo-builder split --max-processes=1 --tag=1.15.1
```

_Note: I had no success splitting this repo on win os, so unix-based system is recommended. (or WSL)
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-acl/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0"
"zf1s/zend-exception": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
6 changes: 3 additions & 3 deletions packages/zend-amf/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"require": {
"php": ">=5.3.3",
"ext-dom": "*",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-server": "^1.14.0",
"zf1s/zend-xml": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-server": "^1.15.0",
"zf1s/zend-xml": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-application/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-controller": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-controller": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-auth/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"require": {
"php": ">=5.3.3",
"ext-ctype": "*",
"zf1s/zend-exception": "^1.14.0"
"zf1s/zend-exception": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-barcode/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-validate": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-validate": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-cache/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0"
"zf1s/zend-exception": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
10 changes: 5 additions & 5 deletions packages/zend-captcha/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"require": {
"php": ">=5.3.3",
"ext-gd": "*",
"zf1s/zend-crypt": "^1.14.0",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-service-recaptcha": "^1.14.0",
"zf1s/zend-text": "^1.14.0",
"zf1s/zend-validate": "^1.14.0"
"zf1s/zend-crypt": "^1.15.0",
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-service-recaptcha": "^1.15.0",
"zf1s/zend-text": "^1.15.0",
"zf1s/zend-validate": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
8 changes: 4 additions & 4 deletions packages/zend-cloud/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-loader": "^1.14.0",
"zf1s/zend-http": "^1.14.0",
"zf1s/zend-queue": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-http": "^1.15.0",
"zf1s/zend-queue": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-codegenerator/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-reflection": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-reflection": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-config/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-xml": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-xml": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-console-getopt/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0"
"zf1s/zend-exception": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
14 changes: 7 additions & 7 deletions packages/zend-controller/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"php": ">=5.3.3",
"ext-reflection": "*",
"ext-session": "*",
"zf1s/zend-config": "^1.14.0",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-loader": "^1.14.0",
"zf1s/zend-registry": "^1.14.0",
"zf1s/zend-uri": "^1.14.0",
"zf1s/zend-view": "^1.14.0",
"zf1s/zend-xml": "^1.14.0"
"zf1s/zend-config": "^1.15.0",
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-registry": "^1.15.0",
"zf1s/zend-uri": "^1.15.0",
"zf1s/zend-view": "^1.15.0",
"zf1s/zend-xml": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-crypt/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0"
"zf1s/zend-exception": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-currency/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"require": {
"php": ">=5.3.3",
"ext-iconv": "*",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-locale": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-locale": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-date/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-locale": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-locale": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-db/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-loader": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-loader": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
10 changes: 5 additions & 5 deletions packages/zend-dojo/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-form": "^1.14.0",
"zf1s/zend-json": "^1.14.0",
"zf1s/zend-registry": "^1.14.0",
"zf1s/zend-view": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-form": "^1.15.0",
"zf1s/zend-json": "^1.15.0",
"zf1s/zend-registry": "^1.15.0",
"zf1s/zend-view": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-dom/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"require": {
"php": ">=5.3.3",
"ext-dom": "*",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-xml": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-xml": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-eventmanager/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-stdlib": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-stdlib": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
12 changes: 6 additions & 6 deletions packages/zend-feed/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"ext-dom": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-http": "^1.14.0",
"zf1s/zend-loader": "^1.14.0",
"zf1s/zend-uri": "^1.14.0",
"zf1s/zend-version": "^1.14.0",
"zf1s/zend-xml": "^1.14.0",
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-http": "^1.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-uri": "^1.15.0",
"zf1s/zend-version": "^1.15.0",
"zf1s/zend-xml": "^1.15.0",
"symfony/polyfill-php70": "^1.19"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-file-transfer/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0"
"zf1s/zend-exception": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
8 changes: 4 additions & 4 deletions packages/zend-filter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"require": {
"php": ">=5.3.3",
"ext-reflection": "*",
"zf1s/zend-crypt": "^1.14.0",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-loader": "^1.14.0",
"zf1s/zend-validate": "^1.14.0"
"zf1s/zend-crypt": "^1.15.0",
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-validate": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
6 changes: 3 additions & 3 deletions packages/zend-form/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-filter": "^1.14.0",
"zf1s/zend-validate": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-filter": "^1.15.0",
"zf1s/zend-validate": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
10 changes: 5 additions & 5 deletions packages/zend-gdata/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"php": ">=5.3.3",
"ext-ctype": "*",
"ext-dom": "*",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-http": "^1.14.0",
"zf1s/zend-mime": "^1.14.0",
"zf1s/zend-version": "^1.14.0",
"zf1s/zend-xml": "^1.14.0",
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-http": "^1.15.0",
"zf1s/zend-mime": "^1.15.0",
"zf1s/zend-version": "^1.15.0",
"zf1s/zend-xml": "^1.15.0",
"symfony/polyfill-php70": "^1.19"
},
"autoload": {
Expand Down
6 changes: 3 additions & 3 deletions packages/zend-http/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"require": {
"php": ">=5.3.3",
"ext-ctype": "*",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-loader": "^1.14.0",
"zf1s/zend-uri": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-uri": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
8 changes: 4 additions & 4 deletions packages/zend-json/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"require": {
"php": ">=5.3.3",
"ext-reflection": "*",
"zf1s/zend-exception": "^1.14.0",
"zf1s/zend-loader": "^1.14.0",
"zf1s/zend-server": "^1.14.0",
"zf1s/zend-xml": "^1.14.0"
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-server": "^1.15.0",
"zf1s/zend-xml": "^1.15.0"
},
"autoload": {
"psr-0": {
Expand Down
Loading