Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into 4.5
Browse files Browse the repository at this point in the history
 Conflicts:
	user_guide_src/source/changelogs/index.rst
	user_guide_src/source/installation/upgrading.rst
  • Loading branch information
kenjis committed Oct 27, 2023
2 parents 7f556d5 + 72dab03 commit 3aecb58
Show file tree
Hide file tree
Showing 6 changed files with 100 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-autoreview.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Automatic Code Review
name: AutoReview

on:
pull_request:
Expand All @@ -23,9 +23,10 @@ permissions:

jobs:
auto-review-tests:
name: Automatic Code Review
uses: ./.github/workflows/reusable-serviceless-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
job-name: Automatic Code Review [PHP 8.1]
job-name: PHP 8.1
php-version: '8.1'
job-id: auto-review-tests
group-name: AutoReview
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
echo "version=8.1" >> $GITHUB_OUTPUT
sanity-tests:
name: Others
needs: coverage-php-version

strategy:
Expand All @@ -75,6 +76,7 @@ jobs:
extra-composer-options: ${{ matrix.composer-option }}

database-live-tests:
name: DatabaseLive
needs:
- coverage-php-version
- sanity-tests
Expand Down Expand Up @@ -103,7 +105,7 @@ jobs:

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
job-name: Database Live Tests
job-name:
php-version: ${{ matrix.php-version }}
job-id: database-live-tests
db-platform: ${{ matrix.db-platform }}
Expand All @@ -116,6 +118,7 @@ jobs:
extra-composer-options: ${{ matrix.composer-option }}

separate-process-tests:
name: SeparateProcess
needs:
- coverage-php-version
- sanity-tests
Expand All @@ -132,7 +135,7 @@ jobs:

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
job-name: Separate Process Tests
job-name:
php-version: ${{ matrix.php-version }}
job-id: separate-process-tests
group-name: SeparateProcess
Expand All @@ -143,6 +146,7 @@ jobs:
extra-composer-options: ${{ matrix.composer-option }}

cache-live-tests:
name: CacheLive
needs:
- coverage-php-version
- sanity-tests
Expand Down
1 change: 1 addition & 0 deletions user_guide_src/source/changelogs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ See all the changes.
:titlesonly:

v4.5.0
v4.4.4
v4.4.3
v4.4.2
v4.4.1
Expand Down
35 changes: 35 additions & 0 deletions user_guide_src/source/changelogs/v4.4.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#############
Version 4.4.4
#############

Release Date: Unreleased

**4.4.4 release of CodeIgniter4**

.. contents::
:local:
:depth: 3

********
BREAKING
********

***************
Message Changes
***************

*******
Changes
*******

************
Deprecations
************

**********
Bugs Fixed
**********

See the repo's
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_
for a complete list of bugs fixed.
54 changes: 54 additions & 0 deletions user_guide_src/source/installation/upgrade_444.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
#############################
Upgrading from 4.4.3 to 4.4.4
#############################

Please refer to the upgrade instructions corresponding to your installation method.

- :ref:`Composer Installation App Starter Upgrading <app-starter-upgrading>`
- :ref:`Composer Installation Adding CodeIgniter4 to an Existing Project Upgrading <adding-codeigniter4-upgrading>`
- :ref:`Manual Installation Upgrading <installing-manual-upgrading>`

.. contents::
:local:
:depth: 2

**********************
Mandatory File Changes
**********************

****************
Breaking Changes
****************

*********************
Breaking Enhancements
*********************

*************
Project Files
*************

Some files in the **project space** (root, app, public, writable) received updates. Due to
these files being outside of the **system** scope they will not be changed without your intervention.

There are some third-party CodeIgniter modules available to assist with merging changes to
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.

Content Changes
===============

The following files received significant changes (including deprecations or visual adjustments)
and it is recommended that you merge the updated versions with your application:

Config
------

- @TODO

All Changes
===========

This is a list of all files in the **project space** that received changes;
many will be simple comments or formatting that have no effect on the runtime:

- @TODO
1 change: 1 addition & 0 deletions user_guide_src/source/installation/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ See also :doc:`./backward_compatibility_notes`.
backward_compatibility_notes

upgrade_450
upgrade_444
upgrade_443
upgrade_442
upgrade_441
Expand Down

0 comments on commit 3aecb58

Please sign in to comment.