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

5.3.1 Release #16433

Merged
merged 24 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9cfb819
Fixed infinite save loop #16395
rudiservo Aug 10, 2023
982e728
Refactor & simplify Di and Service classes
Jeckerson Aug 20, 2023
94148c8
Merge pull request #16413 from phalcon/small-di-refactor
Jeckerson Aug 20, 2023
dc11306
force routeId to be a string
niden Aug 24, 2023
922af53
updating changelog
niden Aug 24, 2023
3caf2ef
updating actions
niden Aug 24, 2023
fd62e2a
Merge pull request #16415 from niden/T16414-route-routeid-type-error
niden Aug 24, 2023
d5a12bf
Merge pull request #16399 from rudiservo/i16395
niden Aug 29, 2023
ddef5db
Fix #16420, fixed metadata get column from cache adapters, added tests
rudiservo Sep 1, 2023
c7820df
Merge pull request #16421 from rudiservo/i16420
niden Sep 5, 2023
a40fd81
added page for http codes
niden Sep 11, 2023
97e92d5
alignment with phalcon - phpcs
niden Sep 11, 2023
35daebe
phpcs; added interpolation tests
niden Sep 11, 2023
42c5a39
Merge pull request #16429 from niden/T16427-logger-interpolation
niden Sep 11, 2023
426b6bf
Move out Request service from cycle
Jeckerson Sep 11, 2023
14472ed
Adjust tests
Jeckerson Sep 11, 2023
052a940
Update CHANGELOG-5.0.md
Jeckerson Sep 11, 2023
eccd93f
Update CHANGELOG-5.0.md
Jeckerson Sep 11, 2023
620e7a9
Merge pull request #16431 from phalcon/router-memory-leak
Jeckerson Sep 11, 2023
76f470e
Update CHANGELOG-5.0.md
Jeckerson Sep 12, 2023
b7ea8e2
Update composer.lock
Jeckerson Sep 12, 2023
c7ae90e
Bump version to `5.3.1`
Jeckerson Sep 12, 2023
f28e1e6
Regenerate `ext/` directory
Jeckerson Sep 12, 2023
3f9efda
Merge pull request #16432 from phalcon/5.3.1-Prep
niden Sep 12, 2023
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
2 changes: 1 addition & 1 deletion .github/actions/pack-phalcon-ext/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
& 7z a "${{ inputs.target-name }}.zip" *

- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.target-name }}.zip
path: ./build-artifacts/phalcon*.zip
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
# All versions should be declared here
PHALCON_VERSION: 5.3.0
PHALCON_VERSION: 5.3.1
ZEPHIR_PARSER_VERSION: 1.5.3
ZEPHIR_VERSION: 0.17.0

Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG-5.0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [5.3.1](https://github.com/phalcon/cphalcon/releases/tag/v5.3.1) (2023-09-12)

### Fixed
- Fixed infinite save loop in `Phalcon\Mvc\Model::save()` [#16395](https://github.com/phalcon/cphalcon/issues/16395)
- Fixed undefined column with columnMap and model caching [#16420](https://github.com/phalcon/cphalcon/issues/16420)
- Fixed memory leak in `Phalcon\Mvc\Router::handle()` [#16431](https://github.com/phalcon/cphalcon/pull/16431)


## [5.3.0](https://github.com/phalcon/cphalcon/releases/tag/v5.3.0) (2023-08-15)

### Added
Expand All @@ -23,6 +31,13 @@
- Fixed memory leak in Micro application [#16404](https://github.com/phalcon/cphalcon/pull/16404)


## [5.3.1](https://github.com/phalcon/cphalcon/releases/tag/v5.3.1) (xxxx-xx-xx)

### Fixed

- Forced `routeId` in `Phalcon\Mvc\Router\Route` to always return a string [#16414](https://github.com/phalcon/cphalcon/pull/16414)


## [5.2.3](https://github.com/phalcon/cphalcon/releases/tag/v5.2.3) (2023-07-26)

### Fixed
Expand Down
Loading
Loading