File tree Expand file tree Collapse file tree 5 files changed +28
-11
lines changed Expand file tree Collapse file tree 5 files changed +28
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ v4.3.4] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.4 ) (2023-04-27)
4
+ [ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.3...v4.3.4 )
5
+
6
+ ### Breaking Changes
7
+
8
+ * fix: redirect status code by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7445
9
+ * fix: [ SQLite3] [ Postgres ] [ SQLSRV] [ OCI8 ] Forge::modifyColumn() changes NULL constraint incorrectly by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7371
10
+
11
+ ### Fixed Bugs
12
+
13
+ * fix: view cell cannot locate the auto-generated view file by @sammyskills in https://github.com/codeigniter4/CodeIgniter4/pull/7392
14
+ * fix: CURLRequest - clear response headers between requests by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7398
15
+ * fix: [ Auto Routing Improved] spark routes shows invalid routes by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7419
16
+ * fix: remove $insertID in make: model template by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7443
17
+ * fix: add missing 'make: cell ' in app/Config/Generators.php by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7458
18
+
19
+ ### Refactoring
20
+
21
+ * refactor: Security::getPostedToken() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7377
22
+
3
23
## [ v4.3.3] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.3 ) (2023-03-26)
4
24
[ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.2...v4.3.3 )
5
25
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class CodeIgniter
47
47
/**
48
48
* The current version of CodeIgniter Framework
49
49
*/
50
- public const CI_VERSION = '4.3.3 ' ;
50
+ public const CI_VERSION = '4.3.4 ' ;
51
51
52
52
/**
53
53
* App startup time.
Original file line number Diff line number Diff line change 1
1
Version 4.3.4
2
2
#############
3
3
4
- Release Date: Unreleased
4
+ Release Date: April 27, 2023
5
5
6
6
**4.3.4 release of CodeIgniter4 **
7
7
@@ -50,12 +50,6 @@ Forge::modifyColumn()
50
50
- The ``NULL ``/``NOT NULL `` change may still be unexpectedly, it is recommended
51
51
to always specify the ``null `` key.
52
52
53
- Message Changes
54
- ***************
55
-
56
- Changes
57
- *******
58
-
59
53
Deprecations
60
54
************
61
55
Original file line number Diff line number Diff line change 26
26
version = '4.3'
27
27
28
28
# The full version, including alpha/beta/rc tags.
29
- release = '4.3.3 '
29
+ release = '4.3.4 '
30
30
31
31
# -- General configuration ---------------------------------------------------
32
32
Original file line number Diff line number Diff line change @@ -58,12 +58,15 @@ and it is recommended that you merge the updated versions with your application:
58
58
Config
59
59
------
60
60
61
- - @TODO
61
+ - app/Config/Generators.php
62
62
63
63
All Changes
64
64
===========
65
65
66
66
This is a list of all files in the **project space ** that received changes;
67
67
many will be simple comments or formatting that have no effect on the runtime:
68
68
69
- - @TODO
69
+ - app/Config/App.php
70
+ - app/Config/Generators.php
71
+ - composer.json
72
+ - public/index.php
You can’t perform that action at this time.
0 commit comments