Skip to content

Commit

Permalink
release 1.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
falkenhawk committed Dec 12, 2022
1 parent d14f493 commit 62f014e
Show file tree
Hide file tree
Showing 82 changed files with 289 additions and 232 deletions.
57 changes: 57 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,62 @@
## Changelog:

### 1.15.1 - 2022-12-12
- general
- php 8.1 compatibility fixes ([#149])
- php 8.1 compat: `ReturnTypeWillChange` Attribute ([#147])
- require php extensions in dev only - avoid composer warnings for missing extensions when installing `zf1s/zf1` package ([#136])
- add missing `@throws` annotations ([#140])
- fix psr-0 autoloading issues ([#135])
- clean up `zf1s/zf1` package by ignoring unwanted files in export-ignore ([#134])
- zend-amf
- fix for php 8.1+ keep the order of properties when they are being serialized same as PHP <8.1 ([#149])
- phpdoc: fix `Zend_Amf_Server_Response` class name, should be `Zend_Amf_Response` ([#137])
- zend-console-getopt
- Fix `str_split('')` logic to keep same as PHP before 8.2 on PHP 8.2 ([#143])
- zend-date
- properly calculate sunrise, sunset and twilight times ([#151])
- zend-db
- fix MySQLi adapter after changing default reporting mode by PHP 8.1 ([#156], [#158])
- zend-openid
- fix for `Zend_OpenId_Consumer_Storage_File` when symlinks are not used (i.e. on windows) ([#148])
- zend-progressbar
- fix "stty: 'standard input': Inappropriate ioctl for device" spam ([#155])
- zend-server
- fix issues with `Zend_Server_Reflection_Method` ([#149])
- zend-timesync
- fix ntp time sync ([#153])
- general: CI
- enable php 8.1/8.2 builds ([#129])
- fix CI warnings: Node.js 12 actions are deprecated ([#139])
- utilize continue-on-error for 'experimental' flag ([#142])
- enable SQLite tests ([#157])
- general: tests
- fix running tests on windows with composer v2 ([#150])
- [zend-loader] fix failing Zend_Loader_PluginLoaderTest on windows ([#154])
- [zend-paginator] use a temporary fixture test file for unit testing that git ignores ([#160])

[#129]: https://github.com/zf1s/zf1/pull/129
[#134]: https://github.com/zf1s/zf1/pull/134
[#135]: https://github.com/zf1s/zf1/pull/135
[#136]: https://github.com/zf1s/zf1/pull/136
[#137]: https://github.com/zf1s/zf1/pull/137
[#139]: https://github.com/zf1s/zf1/pull/139
[#140]: https://github.com/zf1s/zf1/pull/140
[#142]: https://github.com/zf1s/zf1/pull/142
[#143]: https://github.com/zf1s/zf1/pull/143
[#147]: https://github.com/zf1s/zf1/pull/147
[#148]: https://github.com/zf1s/zf1/pull/148
[#149]: https://github.com/zf1s/zf1/pull/149
[#150]: https://github.com/zf1s/zf1/pull/150
[#151]: https://github.com/zf1s/zf1/pull/151
[#153]: https://github.com/zf1s/zf1/pull/153
[#154]: https://github.com/zf1s/zf1/pull/154
[#155]: https://github.com/zf1s/zf1/pull/155
[#156]: https://github.com/zf1s/zf1/pull/156
[#157]: https://github.com/zf1s/zf1/pull/157
[#158]: https://github.com/zf1s/zf1/pull/158
[#160]: https://github.com/zf1s/zf1/pull/160

### 1.15.0 - 2022-10-05
- zend-loader
- overhaul of zend-loader and autoloader done again ([#116])
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,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.15.1"
../monorepo-builder/bin/monorepo-builder bump-interdependency "^1.15.2"
```

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

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

_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.15.0"
"zf1s/zend-exception": "^1.15.1"
},
"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.15.0",
"zf1s/zend-server": "^1.15.0",
"zf1s/zend-xml": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-server": "^1.15.1",
"zf1s/zend-xml": "^1.15.1"
},
"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.15.0",
"zf1s/zend-controller": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-controller": "^1.15.1"
},
"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.15.0"
"zf1s/zend-exception": "^1.15.1"
},
"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.15.0",
"zf1s/zend-validate": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-validate": "^1.15.1"
},
"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.15.0"
"zf1s/zend-exception": "^1.15.1"
},
"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.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"
"zf1s/zend-crypt": "^1.15.1",
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-service-recaptcha": "^1.15.1",
"zf1s/zend-text": "^1.15.1",
"zf1s/zend-validate": "^1.15.1"
},
"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.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-http": "^1.15.0",
"zf1s/zend-queue": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-loader": "^1.15.1",
"zf1s/zend-http": "^1.15.1",
"zf1s/zend-queue": "^1.15.1"
},
"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.15.0",
"zf1s/zend-reflection": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-reflection": "^1.15.1"
},
"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.15.0",
"zf1s/zend-xml": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-xml": "^1.15.1"
},
"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.15.0"
"zf1s/zend-exception": "^1.15.1"
},
"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.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"
"zf1s/zend-config": "^1.15.1",
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-loader": "^1.15.1",
"zf1s/zend-registry": "^1.15.1",
"zf1s/zend-uri": "^1.15.1",
"zf1s/zend-view": "^1.15.1",
"zf1s/zend-xml": "^1.15.1"
},
"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.15.0"
"zf1s/zend-exception": "^1.15.1"
},
"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.15.0",
"zf1s/zend-locale": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-locale": "^1.15.1"
},
"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.15.0",
"zf1s/zend-locale": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-locale": "^1.15.1"
},
"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.15.0",
"zf1s/zend-loader": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-loader": "^1.15.1"
},
"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.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"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-form": "^1.15.1",
"zf1s/zend-json": "^1.15.1",
"zf1s/zend-registry": "^1.15.1",
"zf1s/zend-view": "^1.15.1"
},
"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.15.0",
"zf1s/zend-xml": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-xml": "^1.15.1"
},
"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.15.0",
"zf1s/zend-stdlib": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-stdlib": "^1.15.1"
},
"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.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",
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-http": "^1.15.1",
"zf1s/zend-loader": "^1.15.1",
"zf1s/zend-uri": "^1.15.1",
"zf1s/zend-version": "^1.15.1",
"zf1s/zend-xml": "^1.15.1",
"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.15.0"
"zf1s/zend-exception": "^1.15.1"
},
"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.15.0",
"zf1s/zend-exception": "^1.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-validate": "^1.15.0"
"zf1s/zend-crypt": "^1.15.1",
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-loader": "^1.15.1",
"zf1s/zend-validate": "^1.15.1"
},
"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.15.0",
"zf1s/zend-filter": "^1.15.0",
"zf1s/zend-validate": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-filter": "^1.15.1",
"zf1s/zend-validate": "^1.15.1"
},
"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.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",
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-http": "^1.15.1",
"zf1s/zend-mime": "^1.15.1",
"zf1s/zend-version": "^1.15.1",
"zf1s/zend-xml": "^1.15.1",
"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.15.0",
"zf1s/zend-loader": "^1.15.0",
"zf1s/zend-uri": "^1.15.0"
"zf1s/zend-exception": "^1.15.1",
"zf1s/zend-loader": "^1.15.1",
"zf1s/zend-uri": "^1.15.1"
},
"autoload": {
"psr-0": {
Expand Down
Loading

0 comments on commit 62f014e

Please sign in to comment.