22837 Commits

Author SHA1 Message Date
kenjis
0e283beff9
Merge pull request #9169 from kenjis/fix-auto-link-regexp
fix: `auto_link()` regexp
2024-09-07 08:04:17 +09:00
kenjis
ae0dcf4a17
Merge pull request #9163 from obozdag/patch-21
docs: Fix some function definitions in helpers/html_helper.rst
2024-09-07 08:03:22 +09:00
kenjis
f8e36d92fd
Merge pull request #9164 from obozdag/patch-22
docs: Fix track function definition in helpers/html_helper.rst
2024-09-06 18:26:41 +09:00
Osman Bozdag
8e09849c27
docs: Fix source function definition in helpers/html_helper.rst
Co-authored-by: kenjis <kenji.uui@gmail.com>
2024-09-06 11:24:37 +02:00
Osman Bozdag
1e868d035a
docs: Fix param function definition in helpers/html_helper.rst
Co-authored-by: kenjis <kenji.uui@gmail.com>
2024-09-06 11:23:44 +02:00
kenjis
e570f46dc8
Merge pull request #9140 from kenjis/workaround-for-implicit-nullable-deprecations
[4.6] feat: workaround for implicit nullable deprecations in PHP 8.4
2024-09-06 18:22:52 +09:00
kenjis
008f2a9329
Merge pull request #9172 from eightrix/patch-1
docs: correct grammar in validation.rst
2024-09-06 18:20:55 +09:00
Osman Bozdag
e81e8e7f0e
docs: Fix track function src param definition in helpers/html_helper.rst
Fix track function src param definition in helpers/html_helper.rst
2024-09-06 09:51:33 +02:00
Shayo Rowland
9ac45a1d64
Update validation.rst
Insert 'are' after 'that' on line 1053
2024-09-06 07:05:20 +01:00
kenjis
2ef57abe35
docs: decorate text 2024-09-06 13:53:24 +09:00
kenjis
3dfd4bcb4c
docs: fix param types 2024-09-06 13:53:08 +09:00
kenjis
fdba50299c
docs: add changelog 2024-09-06 10:34:07 +09:00
kenjis
d7da0b8cef
fix: auto_link() regexp
From CI3.
See 2042929bab/system/helpers/url_helper.php (L397)
2024-09-06 10:27:16 +09:00
kenjis
3d310cf0bf
test: add tests for auto_link() 2024-09-06 10:27:15 +09:00
kenjis
4a4a6489b5
Merge remote-tracking branch 'upstream/develop' into 4.6 2024-09-06 09:15:59 +09:00
kenjis
39c289882d
Merge pull request #9161 from obozdag/patch-19
docs: Fix some typos in helpers/html_helper.rst
2024-09-06 09:08:40 +09:00
kenjis
0deb9098bd
Merge pull request #9168 from kenjis/add-phpdoc-html_helper
docs: update PHPDoc in html_helper
2024-09-06 09:04:56 +09:00
kenjis
4cbe5ec609
Merge pull request #9170 from ThomasMeschke/develop
refactor: fix typo in BaseConnection.php
2024-09-06 09:03:45 +09:00
kenjis
2eeb971770
fix: only Faker/Kint errors are skipped
This is a workaround for the dependent packages that are not compatible with PHP 8.4.
So we should not skip all implicit nullable deprecations.
2024-09-06 08:58:58 +09:00
Osman Bozdag
fe6efeddf8
docs: Update $config['indexPage'] in helpers/html_helper.rst
Update $config['indexPage'] to Config\App::$indexPage in img function in helpers/html_helper.rst
2024-09-05 21:38:02 +02:00
Thomas Meschke
06958be352
Fix typo in BaseConnection.php 2024-09-05 12:28:12 +02:00
kenjis
1daaa579d9
docs: fix typos 2024-09-05 12:09:53 +09:00
kenjis
31abe0b198
docs: add missing @param 2024-09-05 12:09:23 +09:00
kenjis
ba1702f147
feat: add workround for implicit nullable deprecation errors in PHP 8.4 2024-09-05 10:31:19 +09:00
kenjis
31e8f9f9c4
Merge remote-tracking branch 'upstream/develop' into 4.6
Conflicts:
	system/Database/Database.php
2024-09-05 10:30:40 +09:00
kenjis
8442cb120a
Merge pull request #9139 from kenjis/session-sid-change
[4.6] feat: force PHP default 32 chars length at 4 bits to Session ID
2024-09-05 10:26:23 +09:00
kenjis
ffd1b68b0d
Merge pull request #9160 from kenjis/check-db-ext
refactor: improve error message for missing PHP DB extensions
2024-09-05 10:23:07 +09:00
Osman Bozdag
de35cf487e
docs: Fix track function definition in helpers/html_helper.rst
Fix track function definition in helpers/html_helper.rst
2024-09-02 06:59:31 +02:00
Osman Bozdag
31b4508b26
docs: Fix some function definitions in helpers/html_helper.rst
Fix some function definitions in helpers/html_helper.rst
2024-09-02 06:46:15 +02:00
Osman Bozdag
496ef239ba
docs: Fix some typos in helpers/html_helper.rst
Fix some typos in helpers/html_helper.rst
2024-09-02 06:13:07 +02:00
kenjis
a9925c740e
fix: pass through custom drivers
Because we can name any classname.
2024-08-30 10:22:55 +09:00
kenjis
59aca8ed47
feat: add function to check PHP DB extension
To improve the error message.
2024-08-30 09:53:58 +09:00
kenjis
703c2730fe
docs: add changelog and upgrade 2024-08-30 09:06:55 +09:00
kenjis
12385ed3b7
fix!: we force PHP defaults of session.sid_bits_per_character/session.sid_length
They are deprecated in PHP 8.4.
2024-08-30 09:06:10 +09:00
kenjis
973e148756
feat: add deprecation error handling for session.sid_length and session.sid_bits_per_character 2024-08-30 09:06:09 +09:00
kenjis
dc45e4246e
Merge remote-tracking branch 'upstream/develop' into 4.6 2024-08-30 09:05:14 +09:00
kenjis
c326cd1d98
Merge pull request #9157 from kenjis/refactor-BaseBuilder
refactor: BaseBuilder
2024-08-30 09:04:06 +09:00
kenjis
b45f151010
Merge pull request #9150 from ddevsr/router-multiple-hostname
feat: multiple hostname routing
2024-08-30 09:03:17 +09:00
kenjis
77f5e4768d
Merge pull request #9151 from kenjis/fix-comment-Router.php
docs: fix doc comments for Router
2024-08-30 09:02:10 +09:00
kenjis
675c8190be
Merge pull request #9144 from kenjis/fix-inconsistency-in-detailed-error-reports
[4.6] fix: inconsistency in detailed error reporting
2024-08-30 09:01:20 +09:00
kenjis
1938a7cc02
Merge remote-tracking branch 'upstream/develop' into 4.6 2024-08-29 10:11:14 +09:00
kenjis
83d1bd999f
Merge pull request #9159 from kenjis/update-cs-fixert-to-3.63
chore: update php-cs-fixer to ^3.63.2
2024-08-29 10:10:24 +09:00
kenjis
388fed8422
Merge pull request #9137 from kenjis/add-php84-GA-phpunit-4.6
[4.6] chore: add PHP 8.4 to test-phpunit.yml
2024-08-29 10:06:04 +09:00
kenjis
f5102cbc7d
Merge pull request #9138 from kenjis/docs-php-version-and-ci4-version
[4.6] docs: add note about PHP versions supported by CI4 versions
2024-08-29 10:01:46 +09:00
kenjis
d12af0a4b4
chore: update php-cs-fixer to ^3.63.2 2024-08-29 09:34:24 +09:00
kenjis
9e97a0c6d4
refactor: break long lines 2024-08-28 17:30:49 +09:00
kenjis
694b031996
fix: remove uneeded if condition 2024-08-28 17:30:46 +09:00
kenjis
87acaf7917
docs: update comment 2024-08-28 17:30:13 +09:00
Abdul Malik Ikhsan
68d2fed936
Merge pull request #9156 from samsonasik/refactor-enable-add-method-call-based-param
refactor: enable AddMethodCallBasedStrictParamTypeRector
2024-08-28 10:19:55 +07:00
Abdul Malik Ikhsan
87eb71ce29
refactor: enable AddMethodCallBasedStrictParamTypeRector 2024-08-28 08:54:48 +07:00