Skip to content

Commit a4b586c

Browse files
committed
Release v4.5.4
1 parent 22be7a0 commit a4b586c

File tree

286 files changed

+1744
-1015
lines changed

Some content is hidden

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

286 files changed

+1744
-1015
lines changed

CodeIgniter4.5.4.epub

1.8 MB
Binary file not shown.

docs/.buildinfo

+1-1
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: 4e3cf24cef15caa8e1f5b17db1cb7e99
3+
config: 730d91c547aa75b5b2844b0b3d5207bb
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_static/documentation_options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '4.5.3',
2+
VERSION: '4.5.4',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

docs/_static/searchtools.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const Search = {
178178

179179
htmlToText: (htmlString, anchor) => {
180180
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
181-
for (const removalQuery of [".headerlinks", "script", "style"]) {
181+
for (const removalQuery of [".headerlink", "script", "style"]) {
182182
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
183183
}
184184
if (anchor) {
@@ -328,13 +328,14 @@ const Search = {
328328
for (const [title, foundTitles] of Object.entries(allTitles)) {
329329
if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
330330
for (const [file, id] of foundTitles) {
331-
let score = Math.round(100 * queryLower.length / title.length)
331+
const score = Math.round(Scorer.title * queryLower.length / title.length);
332+
const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
332333
normalResults.push([
333334
docNames[file],
334335
titles[file] !== title ? `${titles[file]} > ${title}` : title,
335336
id !== null ? "#" + id : "",
336337
null,
337-
score,
338+
score + boost,
338339
filenames[file],
339340
]);
340341
}

docs/changelogs/index.html

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Change Logs &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Change Logs &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,15 +17,15 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
2424
<script src="../_static/js/carbon.js?v=b287325f"></script>
2525
<script src="../_static/js/theme.js"></script>
2626
<link rel="index" title="Index" href="../genindex.html" />
2727
<link rel="search" title="Search" href="../search.html" />
28-
<link rel="next" title="Version 4.5.3" href="v4.5.3.html" />
28+
<link rel="next" title="Version 4.5.4" href="v4.5.4.html" />
2929
<link rel="prev" title="Deployment" href="../installation/deployment.html" />
3030
</head>
3131

@@ -293,6 +293,7 @@ <h2>Version 4.5<a class="headerlink" href="#version-version" title="Link to this
293293
<p>See all the changes.</p>
294294
<div class="toctree-wrapper compound">
295295
<ul>
296+
<li class="toctree-l1"><a class="reference internal" href="v4.5.4.html">Version 4.5.4</a></li>
296297
<li class="toctree-l1"><a class="reference internal" href="v4.5.3.html">Version 4.5.3</a></li>
297298
<li class="toctree-l1"><a class="reference internal" href="v4.5.2.html">Version 4.5.2</a></li>
298299
<li class="toctree-l1"><a class="reference internal" href="v4.5.1.html">Version 4.5.1</a></li>
@@ -365,14 +366,14 @@ <h2>Version 4.5<a class="headerlink" href="#version-version" title="Link to this
365366
</div>
366367
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
367368
<a href="../installation/deployment.html" class="btn btn-neutral float-left" title="Deployment" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
368-
<a href="v4.5.3.html" class="btn btn-neutral float-right" title="Version 4.5.3" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
369+
<a href="v4.5.4.html" class="btn btn-neutral float-right" title="Version 4.5.4" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
369370
</div>
370371

371372
<hr/>
372373

373374
<div role="contentinfo">
374375
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
375-
<span class="lastupdated">Last updated on Jun 25, 2024.
376+
<span class="lastupdated">Last updated on Jul 27, 2024.
376377
</span></p>
377378
</div>
378379

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.1 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-alpha.1 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -549,7 +549,7 @@ <h2><a class="toc-backref" href="#id1" role="doc-backlink">New Packages List</a>
549549

550550
<div role="contentinfo">
551551
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
552-
<span class="lastupdated">Last updated on Jun 25, 2024.
552+
<span class="lastupdated">Last updated on Jul 27, 2024.
553553
</span></p>
554554
</div>
555555

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.2 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-alpha.2 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -700,7 +700,7 @@ <h2><a class="toc-backref" href="#id2" role="doc-backlink">PRs merged</a><a clas
700700

701701
<div role="contentinfo">
702702
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
703-
<span class="lastupdated">Last updated on Jun 25, 2024.
703+
<span class="lastupdated">Last updated on Jul 27, 2024.
704704
</span></p>
705705
</div>
706706

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.3 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-alpha.3 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -985,7 +985,7 @@ <h2><a class="toc-backref" href="#id2" role="doc-backlink">PRs merged</a><a clas
985985

986986
<div role="contentinfo">
987987
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
988-
<span class="lastupdated">Last updated on Jun 25, 2024.
988+
<span class="lastupdated">Last updated on Jul 27, 2024.
989989
</span></p>
990990
</div>
991991

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.4 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-alpha.4 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -751,7 +751,7 @@ <h2><a class="toc-backref" href="#id3" role="doc-backlink">PRs merged</a><a clas
751751

752752
<div role="contentinfo">
753753
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
754-
<span class="lastupdated">Last updated on Jun 25, 2024.
754+
<span class="lastupdated">Last updated on Jul 27, 2024.
755755
</span></p>
756756
</div>
757757

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-alpha.5 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-alpha.5 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -816,7 +816,7 @@ <h2><a class="toc-backref" href="#id3" role="doc-backlink">PRs merged</a><a clas
816816

817817
<div role="contentinfo">
818818
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
819-
<span class="lastupdated">Last updated on Jun 25, 2024.
819+
<span class="lastupdated">Last updated on Jul 27, 2024.
820820
</span></p>
821821
</div>
822822

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.1 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-beta.1 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -683,7 +683,7 @@ <h2><a class="toc-backref" href="#id5" role="doc-backlink">PRs merged</a><a clas
683683

684684
<div role="contentinfo">
685685
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
686-
<span class="lastupdated">Last updated on Jun 25, 2024.
686+
<span class="lastupdated">Last updated on Jul 27, 2024.
687687
</span></p>
688688
</div>
689689

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.2 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-beta.2 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -823,7 +823,7 @@ <h2><a class="toc-backref" href="#id5" role="doc-backlink">PRs merged</a><a clas
823823

824824
<div role="contentinfo">
825825
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
826-
<span class="lastupdated">Last updated on Jun 25, 2024.
826+
<span class="lastupdated">Last updated on Jul 27, 2024.
827827
</span></p>
828828
</div>
829829

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.3 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-beta.3 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -690,7 +690,7 @@ <h2><a class="toc-backref" href="#id5" role="doc-backlink">PRs merged</a><a clas
690690

691691
<div role="contentinfo">
692692
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
693-
<span class="lastupdated">Last updated on Jun 25, 2024.
693+
<span class="lastupdated">Last updated on Jul 27, 2024.
694694
</span></p>
695695
</div>
696696

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-beta.4 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-beta.4 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -730,7 +730,7 @@ <h2><a class="toc-backref" href="#id6" role="doc-backlink">PRs merged</a><a clas
730730

731731
<div role="contentinfo">
732732
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
733-
<span class="lastupdated">Last updated on Jun 25, 2024.
733+
<span class="lastupdated">Last updated on Jul 27, 2024.
734734
</span></p>
735735
</div>
736736

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Version 4.0.0-rc.1 &mdash; CodeIgniter 4.5.3 documentation</title>
7+
<title>Version 4.0.0-rc.1 &mdash; CodeIgniter 4.5.4 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d10597a4" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/citheme.css?v=eacb1234" />
1010
<link rel="stylesheet" type="text/css" href="../_static/css/citheme_dark.css?v=2b70fae9" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="../_static/documentation_options.js?v=da7b45b8"></script>
20+
<script src="../_static/documentation_options.js?v=3f657225"></script>
2121
<script src="../_static/doctools.js?v=9a2dae69"></script>
2222
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="../_static/js/citheme.js?v=e0bcfc84"></script>
@@ -801,7 +801,7 @@ <h2><a class="toc-backref" href="#id5" role="doc-backlink">PRs merged</a><a clas
801801

802802
<div role="contentinfo">
803803
<p>&#169; Copyright 2019-2024 CodeIgniter Foundation.
804-
<span class="lastupdated">Last updated on Jun 25, 2024.
804+
<span class="lastupdated">Last updated on Jul 27, 2024.
805805
</span></p>
806806
</div>
807807

0 commit comments

Comments
 (0)