Skip to content

Commit e2d3699

Browse files
committed
Release v4.2.12
1 parent b4992ff commit e2d3699

File tree

235 files changed

+1778
-902
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+1778
-902
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Close Pull Request
2+
3+
on:
4+
pull_request_target:
5+
types: [opened]
6+
7+
jobs:
8+
main:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Close PR with nice message
12+
uses: superbrothers/close-pull-request@v3
13+
with:
14+
comment: >
15+
Thank you for your pull request. However, you have submitted your PR on a read-only
16+
split of `codeigniter4/CodeIgniter4`. This repository, unfortunately, does
17+
not accept PRs. Please submit your PR at https://github.com/codeigniter4/CodeIgniter4
18+
repository.<br/><br/>Thank you.

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,4 @@ user_guide_src/cilexer/build/*
1010
user_guide_src/cilexer/dist/*
1111
user_guide_src/cilexer/pycilexer.egg-info/*
1212

13-
#codeigniter 3
14-
application/logs/*
15-
!application/logs/index.html
16-
!application/logs/.htaccess
1713
/vendor/

CodeIgniter4.2.12.epub

1.55 MB
Binary file not shown.

LICENSE

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
MIT License
1+
The MIT License (MIT)
22

3-
Copyright (c) 2018 CodeIgniter 4 web framework
3+
Copyright (c) 2014-2019 British Columbia Institute of Technology
4+
Copyright (c) 2019-2023 CodeIgniter Foundation
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +10,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
910
copies of the Software, and to permit persons to whom the Software is
1011
furnished to do so, subject to the following conditions:
1112

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
13+
The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
1415

1516
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1617
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1718
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1819
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1920
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
THE SOFTWARE.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# CodeIgniter 4 User Guide
22

3-
CodeIgniter 4 is a PHP web framework that is light, fast, flexible, and secure.
3+
CodeIgniter 4 is a PHP web framework that is light, fast, flexible, and secure.
44
More information can be found at the [official site](http://codeigniter.com).
55

6-
**This is a read-only repository used to publish the user guide for the current release.**
6+
**This is a read-only repository used to publish the user guide for the current release.**
77
It is built automatically as part of the framework release workflow, and pull
88
requests are not accepted here.
99

1010
Development is done in the [main repository](https://github.com/codeigniter4/codeigniter4).
1111
If you find problems with the user guide, please submit a correcting pull request there.
1212

13-
If you feel that features are missing or unclear, please comment on our
13+
If you feel that features are missing or unclear, please comment on our
1414
[forum](https://forum.codeigniter.com/index.php),
1515
in the appropriate CodeIgniter4 subforum.

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 8174e60eb5fc374cfef472e138ca4038
3+
config: cfe9f67a8e00b3eaad71451b6dcca059
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '4.2.11',
3+
VERSION: '4.2.12',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

docs/changelogs/index.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Change Logs &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Change Logs &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -21,7 +21,7 @@
2121
<script src="../_static/js/theme.js"></script>
2222
<link rel="index" title="Index" href="../genindex.html" />
2323
<link rel="search" title="Search" href="../search.html" />
24-
<link rel="next" title="Version 4.2.11" href="v4.2.11.html" />
24+
<link rel="next" title="Version 4.2.12" href="v4.2.12.html" />
2525
<link rel="prev" title="Troubleshooting" href="../installation/troubleshooting.html" />
2626
</head>
2727

@@ -279,6 +279,7 @@ <h2>Version 4.2<a class="headerlink" href="#version-version" title="Permalink to
279279
<p>See all the changes.</p>
280280
<div class="toctree-wrapper compound">
281281
<ul>
282+
<li class="toctree-l1"><a class="reference internal" href="v4.2.12.html">Version 4.2.12</a></li>
282283
<li class="toctree-l1"><a class="reference internal" href="v4.2.11.html">Version 4.2.11</a></li>
283284
<li class="toctree-l1"><a class="reference internal" href="v4.2.10.html">Version 4.2.10</a></li>
284285
<li class="toctree-l1"><a class="reference internal" href="v4.2.9.html">Version 4.2.9</a></li>
@@ -328,14 +329,14 @@ <h2>Version 4.2<a class="headerlink" href="#version-version" title="Permalink to
328329
</div>
329330
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
330331
<a href="../installation/troubleshooting.html" class="btn btn-neutral float-left" title="Troubleshooting" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
331-
<a href="v4.2.11.html" class="btn btn-neutral float-right" title="Version 4.2.11" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
332+
<a href="v4.2.12.html" class="btn btn-neutral float-right" title="Version 4.2.12" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
332333
</div>
333334

334335
<hr/>
335336

336337
<div role="contentinfo">
337-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
338-
<span class="lastupdated">Last updated on Dec 22, 2022.
338+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
339+
<span class="lastupdated">Last updated on Jan 09, 2023.
339340
</span></p>
340341
</div>
341342

docs/changelogs/v4.0.0-alpha.1.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.1 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-alpha.1 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -534,8 +534,8 @@ <h2><a class="toc-backref" href="#id1">New Packages List</a><a class="headerlink
534534
<hr/>
535535

536536
<div role="contentinfo">
537-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
538-
<span class="lastupdated">Last updated on Dec 22, 2022.
537+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
538+
<span class="lastupdated">Last updated on Jan 09, 2023.
539539
</span></p>
540540
</div>
541541

docs/changelogs/v4.0.0-alpha.2.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.2 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-alpha.2 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -685,8 +685,8 @@ <h2><a class="toc-backref" href="#id2">PRs merged</a><a class="headerlink" href=
685685
<hr/>
686686

687687
<div role="contentinfo">
688-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
689-
<span class="lastupdated">Last updated on Dec 22, 2022.
688+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
689+
<span class="lastupdated">Last updated on Jan 09, 2023.
690690
</span></p>
691691
</div>
692692

docs/changelogs/v4.0.0-alpha.3.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.3 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-alpha.3 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -970,8 +970,8 @@ <h2><a class="toc-backref" href="#id2">PRs merged</a><a class="headerlink" href=
970970
<hr/>
971971

972972
<div role="contentinfo">
973-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
974-
<span class="lastupdated">Last updated on Dec 22, 2022.
973+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
974+
<span class="lastupdated">Last updated on Jan 09, 2023.
975975
</span></p>
976976
</div>
977977

docs/changelogs/v4.0.0-alpha.4.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.4 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-alpha.4 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -736,8 +736,8 @@ <h2><a class="toc-backref" href="#id3">PRs merged</a><a class="headerlink" href=
736736
<hr/>
737737

738738
<div role="contentinfo">
739-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
740-
<span class="lastupdated">Last updated on Dec 22, 2022.
739+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
740+
<span class="lastupdated">Last updated on Jan 09, 2023.
741741
</span></p>
742742
</div>
743743

docs/changelogs/v4.0.0-alpha.5.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.5 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-alpha.5 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -801,8 +801,8 @@ <h2><a class="toc-backref" href="#id3">PRs merged</a><a class="headerlink" href=
801801
<hr/>
802802

803803
<div role="contentinfo">
804-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
805-
<span class="lastupdated">Last updated on Dec 22, 2022.
804+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
805+
<span class="lastupdated">Last updated on Jan 09, 2023.
806806
</span></p>
807807
</div>
808808

docs/changelogs/v4.0.0-beta.1.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.1 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-beta.1 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -668,8 +668,8 @@ <h2><a class="toc-backref" href="#id5">PRs merged</a><a class="headerlink" href=
668668
<hr/>
669669

670670
<div role="contentinfo">
671-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
672-
<span class="lastupdated">Last updated on Dec 22, 2022.
671+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
672+
<span class="lastupdated">Last updated on Jan 09, 2023.
673673
</span></p>
674674
</div>
675675

docs/changelogs/v4.0.0-beta.2.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.2 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-beta.2 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -808,8 +808,8 @@ <h2><a class="toc-backref" href="#id5">PRs merged</a><a class="headerlink" href=
808808
<hr/>
809809

810810
<div role="contentinfo">
811-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
812-
<span class="lastupdated">Last updated on Dec 22, 2022.
811+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
812+
<span class="lastupdated">Last updated on Jan 09, 2023.
813813
</span></p>
814814
</div>
815815

docs/changelogs/v4.0.0-beta.3.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.3 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-beta.3 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -675,8 +675,8 @@ <h2><a class="toc-backref" href="#id5">PRs merged</a><a class="headerlink" href=
675675
<hr/>
676676

677677
<div role="contentinfo">
678-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
679-
<span class="lastupdated">Last updated on Dec 22, 2022.
678+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
679+
<span class="lastupdated">Last updated on Jan 09, 2023.
680680
</span></p>
681681
</div>
682682

docs/changelogs/v4.0.0-beta.4.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.4 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-beta.4 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -715,8 +715,8 @@ <h2><a class="toc-backref" href="#id6">PRs merged</a><a class="headerlink" href=
715715
<hr/>
716716

717717
<div role="contentinfo">
718-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
719-
<span class="lastupdated">Last updated on Dec 22, 2022.
718+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
719+
<span class="lastupdated">Last updated on Jan 09, 2023.
720720
</span></p>
721721
</div>
722722

docs/changelogs/v4.0.0-rc.1.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-rc.1 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-rc.1 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -786,8 +786,8 @@ <h2><a class="toc-backref" href="#id5">PRs merged</a><a class="headerlink" href=
786786
<hr/>
787787

788788
<div role="contentinfo">
789-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
790-
<span class="lastupdated">Last updated on Dec 22, 2022.
789+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
790+
<span class="lastupdated">Last updated on Jan 09, 2023.
791791
</span></p>
792792
</div>
793793

docs/changelogs/v4.0.0-rc.2.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-rc.2 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-rc.2 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -738,8 +738,8 @@ <h2><a class="toc-backref" href="#id5">PRs merged</a><a class="headerlink" href=
738738
<hr/>
739739

740740
<div role="contentinfo">
741-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
742-
<span class="lastupdated">Last updated on Dec 22, 2022.
741+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
742+
<span class="lastupdated">Last updated on Jan 09, 2023.
743743
</span></p>
744744
</div>
745745

docs/changelogs/v4.0.0-rc.3.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-rc.3 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-rc.3 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -636,8 +636,8 @@ <h2><a class="toc-backref" href="#id5">PRs merged</a><a class="headerlink" href=
636636
<hr/>
637637

638638
<div role="contentinfo">
639-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
640-
<span class="lastupdated">Last updated on Dec 22, 2022.
639+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
640+
<span class="lastupdated">Last updated on Jan 09, 2023.
641641
</span></p>
642642
</div>
643643

docs/changelogs/v4.0.0-rc.4.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-rc.4 &mdash; CodeIgniter 4.2.11 documentation</title>
7+
<title>Version 4.0.0-rc.4 &mdash; CodeIgniter 4.2.12 documentation</title>
88
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="../_static/css/citheme.css" type="text/css" />
1010
<link rel="shortcut icon" href="../_static/favicon.ico"/>
@@ -385,8 +385,8 @@ <h2><a class="toc-backref" href="#id2">PRs merged</a><a class="headerlink" href=
385385
<hr/>
386386

387387
<div role="contentinfo">
388-
<p>&#169; Copyright 2019-2022 CodeIgniter Foundation.
389-
<span class="lastupdated">Last updated on Dec 22, 2022.
388+
<p>&#169; Copyright 2019-2023 CodeIgniter Foundation.
389+
<span class="lastupdated">Last updated on Jan 09, 2023.
390390
</span></p>
391391
</div>
392392

0 commit comments

Comments
 (0)