Skip to content

Commit 3aecb58

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into 4.5
Conflicts: user_guide_src/source/changelogs/index.rst user_guide_src/source/installation/upgrading.rst
2 parents 7f556d5 + 72dab03 commit 3aecb58

File tree

6 files changed

+100
-4
lines changed

6 files changed

+100
-4
lines changed

.github/workflows/test-autoreview.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Automatic Code Review
1+
name: AutoReview
22

33
on:
44
pull_request:
@@ -23,9 +23,10 @@ permissions:
2323

2424
jobs:
2525
auto-review-tests:
26+
name: Automatic Code Review
2627
uses: ./.github/workflows/reusable-serviceless-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
2728
with:
28-
job-name: Automatic Code Review [PHP 8.1]
29+
job-name: PHP 8.1
2930
php-version: '8.1'
3031
job-id: auto-review-tests
3132
group-name: AutoReview

.github/workflows/test-phpunit.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
echo "version=8.1" >> $GITHUB_OUTPUT
5151
5252
sanity-tests:
53+
name: Others
5354
needs: coverage-php-version
5455

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

7778
database-live-tests:
79+
name: DatabaseLive
7880
needs:
7981
- coverage-php-version
8082
- sanity-tests
@@ -103,7 +105,7 @@ jobs:
103105

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

118120
separate-process-tests:
121+
name: SeparateProcess
119122
needs:
120123
- coverage-php-version
121124
- sanity-tests
@@ -132,7 +135,7 @@ jobs:
132135

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

145148
cache-live-tests:
149+
name: CacheLive
146150
needs:
147151
- coverage-php-version
148152
- sanity-tests

user_guide_src/source/changelogs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ See all the changes.
1313
:titlesonly:
1414

1515
v4.5.0
16+
v4.4.4
1617
v4.4.3
1718
v4.4.2
1819
v4.4.1
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#############
2+
Version 4.4.4
3+
#############
4+
5+
Release Date: Unreleased
6+
7+
**4.4.4 release of CodeIgniter4**
8+
9+
.. contents::
10+
:local:
11+
:depth: 3
12+
13+
********
14+
BREAKING
15+
********
16+
17+
***************
18+
Message Changes
19+
***************
20+
21+
*******
22+
Changes
23+
*******
24+
25+
************
26+
Deprecations
27+
************
28+
29+
**********
30+
Bugs Fixed
31+
**********
32+
33+
See the repo's
34+
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_
35+
for a complete list of bugs fixed.
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#############################
2+
Upgrading from 4.4.3 to 4.4.4
3+
#############################
4+
5+
Please refer to the upgrade instructions corresponding to your installation method.
6+
7+
- :ref:`Composer Installation App Starter Upgrading <app-starter-upgrading>`
8+
- :ref:`Composer Installation Adding CodeIgniter4 to an Existing Project Upgrading <adding-codeigniter4-upgrading>`
9+
- :ref:`Manual Installation Upgrading <installing-manual-upgrading>`
10+
11+
.. contents::
12+
:local:
13+
:depth: 2
14+
15+
**********************
16+
Mandatory File Changes
17+
**********************
18+
19+
****************
20+
Breaking Changes
21+
****************
22+
23+
*********************
24+
Breaking Enhancements
25+
*********************
26+
27+
*************
28+
Project Files
29+
*************
30+
31+
Some files in the **project space** (root, app, public, writable) received updates. Due to
32+
these files being outside of the **system** scope they will not be changed without your intervention.
33+
34+
There are some third-party CodeIgniter modules available to assist with merging changes to
35+
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
36+
37+
Content Changes
38+
===============
39+
40+
The following files received significant changes (including deprecations or visual adjustments)
41+
and it is recommended that you merge the updated versions with your application:
42+
43+
Config
44+
------
45+
46+
- @TODO
47+
48+
All Changes
49+
===========
50+
51+
This is a list of all files in the **project space** that received changes;
52+
many will be simple comments or formatting that have no effect on the runtime:
53+
54+
- @TODO

user_guide_src/source/installation/upgrading.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ See also :doc:`./backward_compatibility_notes`.
1717
backward_compatibility_notes
1818

1919
upgrade_450
20+
upgrade_444
2021
upgrade_443
2122
upgrade_442
2223
upgrade_441

0 commit comments

Comments
 (0)