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.3 #184

Merged
merged 2 commits into from
Jan 4, 2024
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
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
## Changelog:

### 1.15.3 - 2024-01-04
- general: php 8.2 & 8.3 compatibility
- php 8.3 compatibility fixes ([#182])
- php 8.2 compatibility fixes ([#183]), including:
- add missing class properties, to address `Creation of dynamic property {x} is deprecated` deprecation messages + more fixes ([#170])
- allow dynamic props in `Zend_Form`, `Zend_Form_Element` and `Zend_View_Abstract` ([#180])
- remaining compatibility fixes ([#181])
- zend-controller
- make zend-filter dependency required ([#171])
- zend-uri
- update required and suggested dependencies according to usage ([#177])
- zend-validate
- update required and suggested dependencies according to usage ([#179])
- zend-view
- update required and suggested dependencies according to usage ([#178])
- general: ci & tests
- github weekly workflow run ([#173])
- zend-ldap: fix failing tests due to changes in `bitnami/openldap:2.5` ([#172])

[#170]: https://github.com/zf1s/zf1/pull/170
[#171]: https://github.com/zf1s/zf1/pull/171
[#172]: https://github.com/zf1s/zf1/pull/172
[#173]: https://github.com/zf1s/zf1/pull/173
[#177]: https://github.com/zf1s/zf1/pull/177
[#178]: https://github.com/zf1s/zf1/pull/178
[#179]: https://github.com/zf1s/zf1/pull/179
[#180]: https://github.com/zf1s/zf1/pull/180
[#181]: https://github.com/zf1s/zf1/pull/181
[#182]: https://github.com/zf1s/zf1/pull/182
[#183]: https://github.com/zf1s/zf1/pull/183

### 1.15.2 - 2023-02-19
- zend-ldap
- php 8.1 compatibility fixes ([#159])
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ where `*` may be one of:
[xmlrpc](https://github.com/zf1s/zend-xmlrpc).

These packages will be maintained as long as we're using them, mainly just to keep it all working on new versions of PHP as they're released.
Currently everything should be compatible with **PHP 5.3-8.1**. _5.2 support is dropped._
Currently everything should be compatible with **PHP 5.3-8.3**. _5.2 support is dropped._

They may also contain some fixes, either for long-standing bugs, which haven't made their way into zf1 official repo before EOL, or newly found ones
and (backwards compatible) adjustments (optimisations for composer autoloader mostly). Maybe even one or two new features.
Expand Down 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.3"
../monorepo-builder/bin/monorepo-builder bump-interdependency "^1.15.4"
```

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.3
../monorepo-builder/bin/monorepo-builder split --max-processes=1 --tag=1.15.4
```

_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 composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zf1s/zf1",
"description": "Zend Framework 1 complete package, PHP 5.3-8.1 compatible. Please consider using individual zf1s/zend-* packages instead - see README.",
"description": "Zend Framework 1 complete package, PHP 5.3-8.3 compatible. Please consider using individual zf1s/zend-* packages instead - see README.",
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-acl/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-acl (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2"
"zf1s/zend-exception": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-amf/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-amf (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-server": "^1.15.2",
"zf1s/zend-xml": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-server": "^1.15.3",
"zf1s/zend-xml": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-application/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-application (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-controller": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-controller": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-auth/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-auth (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2"
"zf1s/zend-exception": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-barcode/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-barcode (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-validate": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-validate": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-cache/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-cache (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2"
"zf1s/zend-exception": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-captcha/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-captcha (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-exception": "^1.15.2",
"zf1s/zend-service-recaptcha": "^1.15.2",
"zf1s/zend-text": "^1.15.2",
"zf1s/zend-validate": "^1.15.2"
"zf1s/zend-crypt": "^1.15.3",
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-service-recaptcha": "^1.15.3",
"zf1s/zend-text": "^1.15.3",
"zf1s/zend-validate": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-cloud/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-cloud (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-loader": "^1.15.2",
"zf1s/zend-http": "^1.15.2",
"zf1s/zend-queue": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-loader": "^1.15.3",
"zf1s/zend-http": "^1.15.3",
"zf1s/zend-queue": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-codegenerator/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-codegenerator (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-reflection": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-reflection": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-config/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-config (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-xml": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-xml": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-console-getopt/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-console-getopt (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2"
"zf1s/zend-exception": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-controller/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-controller (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
Expand Down
16 changes: 8 additions & 8 deletions packages/zend-controller/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"php": ">=5.3.3",
"ext-reflection": "*",
"ext-session": "*",
"zf1s/zend-config": "^1.15.2",
"zf1s/zend-exception": "^1.15.2",
"zf1s/zend-filter": "^1.15.2",
"zf1s/zend-loader": "^1.15.2",
"zf1s/zend-registry": "^1.15.2",
"zf1s/zend-uri": "^1.15.2",
"zf1s/zend-view": "^1.15.2",
"zf1s/zend-xml": "^1.15.2"
"zf1s/zend-config": "^1.15.3",
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-filter": "^1.15.3",
"zf1s/zend-loader": "^1.15.3",
"zf1s/zend-registry": "^1.15.3",
"zf1s/zend-uri": "^1.15.3",
"zf1s/zend-view": "^1.15.3",
"zf1s/zend-xml": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-crypt/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-crypt (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2"
"zf1s/zend-exception": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-currency/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-currency (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-locale": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-locale": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-date/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-date (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
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.2",
"zf1s/zend-locale": "^1.15.2"
"zf1s/zend-exception": "^1.15.3",
"zf1s/zend-locale": "^1.15.3"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion packages/zend-db/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-db (Zend Framework 1)

This package is a part of the Zend Framework 1. Each component was separated and put into its own composer package.
**PHP 5.3-8.1** compatible.
**PHP 5.3-8.3** compatible.

- [Report issues](https://github.com/zf1s/zf1/issues) and
[send Pull Requests](https://github.com/zf1s/zf1/pulls)
Expand Down
Loading