Luc
35a1fe4563
Translated using Weblate (German)
...
Currently translated at 100.0% (3427 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/de/
Signed-off-by: Luc <some_physics@live.com>
2023-03-28 15:55:58 +02:00
Kristijan \"Fremen\" Velkovski
7f2bc925d6
Translated using Weblate (Macedonian)
...
Currently translated at 26.6% (912 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/mk/
Signed-off-by: "Kristijan \"Fremen\" Velkovski" <me@krisfremen.com>
2023-03-27 06:38:50 +02:00
Maurício Meneghini Fauth
cf764231b5
Fix incomplete test
...
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-03-26 12:37:32 -03:00
William Desportes
2208f98ed0
Archive 2019 and 2020 ChangeLog entries
...
- 2019 -> 11c4f81a96
- 2020 -> 56c47386c7
2023-03-25 17:50:23 +01:00
Kristijan \"Fremen\" Velkovski
cfea665989
Translated using Weblate (Macedonian)
...
Currently translated at 26.5% (909 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/mk/
Signed-off-by: "Kristijan \"Fremen\" Velkovski" <me@krisfremen.com>
2023-03-25 03:11:10 +01:00
William Desportes
dca52a4357
Merge branch 'QA_5_1' into QA_5_2
...
- Updates the ChangeLog from the branches below, yay
-> 4.9 into 5.0 (until now could not push 5.0)
-> 5.0 into 5.1 (pushed)
-> 5.1 into 5.2 (this commit)
2023-03-25 01:40:11 +01:00
William Desportes
a90c797014
Merge branch 'QA_5_0' into QA_5_1
...
- Pagination fix is already there since 77c34f4e65
- Adds security fix for drag and drop
- Updates ChangeLog
- I did omit the 5.0.5 not yet released cut as the changes where eaten by 5.1.0
- discarded all incoming changes (all already applied, normally)
2023-03-25 01:33:36 +01:00
William Desportes
5f12e75bfd
Merge branch 'QA_4_9' into QA_5_0
2023-03-25 01:08:15 +01:00
William Desportes
472c4442b4
Merge branch 'QA_5_1' into QA_5_2
2023-03-24 22:52:20 +01:00
William Desportes
1fa01593db
Merge branch 'QA_5_0' into QA_5_1
2023-03-24 22:50:06 +01:00
Maurício Meneghini Fauth
0301e48a27
Add ChangeLog entry for #17702
...
- Closes #17702
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-03-24 16:35:15 -03:00
Maurício Meneghini Fauth
64aa5fc7b9
Merge pull request #17718 from PicoI2/handle-large-number-of-tables-in-database-qa52
...
Fix for handle large number of tables in a single database (based on QA_5_2)
2023-03-24 11:56:56 -03:00
Nicolas Hervouet
e4d9a1a66a
Fix for handle large number of tables in a single database (more than 10k)
...
getTablesFull was taking too much time, because MySQL do not have a real table where it stores all tables information.
So when it runs a query like select * from information_schema.TABLES ORDER BY Name limit 250 offset 0, MySQL has to read information about all tables to build his in memory table, then sort it by name, and then return 250 first tables.
But reading information about one table takes time, and that's why the query is very slow when you have a lot of tables.
Note that the problem is the same with 'SHOW TABLE STATUS'.
So, in order to speed up this query, we have to limit it to a small list of tables, as it, MySQL has to read table information only for few tables.
Note that SHOW TABLES is not that long, even with a large amount of tables.
The idea here is to use the result of SHOW TABLES query, to apply paging on this table list, and then to run the query on information_schema.TABLES only on tables we want.
Signed-off-by: Nicolas Hervouet <github@pico12.fr>
2023-03-24 11:55:30 -03:00
Marcin Gil
c245378862
Translated using Weblate (Polish)
...
Currently translated at 99.5% (3293 of 3309 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/pl/
Signed-off-by: Marcin Gil <mg@artigo.pl>
2023-03-22 04:43:29 +01:00
109247019824
be1759cab5
Translated using Weblate (Bulgarian)
...
Currently translated at 68.4% (2265 of 3309 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/bg/
Signed-off-by: 109247019824 <stoyan@gmx.com>
2023-03-22 04:43:28 +01:00
Marcin Gil
56d19eb4aa
Translated using Weblate (Polish)
...
Currently translated at 47.1% (1616 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/pl/
Signed-off-by: Marcin Gil <mg@artigo.pl>
2023-03-22 04:43:22 +01:00
109247019824
0aeda2bde0
Translated using Weblate (Bulgarian)
...
Currently translated at 63.6% (2181 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/bg/
Signed-off-by: 109247019824 <stoyan@gmx.com>
2023-03-22 04:43:21 +01:00
William Desportes
ac52485973
Merge #18280 - Ref #18249 - Don't parse SQL if no tracking is in progress
...
Pull-request: #18280
Ref: #18249
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-21 10:03:18 +01:00
Maurício Meneghini Fauth
9086e1f07d
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (3427 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-03-21 07:25:33 +01:00
Kamil Tekiela
8550db2d11
Don't parse SQL if no tracking is in progress
...
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-03-20 16:24:35 +00:00
Maurício Meneghini Fauth
5e0caaf099
Merge pull request #18262 from kamil-tekiela/Fix-bug-and-optimize-export
...
Optimize export of many tables
2023-03-18 07:07:48 -03:00
Maurício Meneghini Fauth
3655497d61
Merge pull request #18268 from liviuconcioiu/appearence
...
Fix empty Appearance settings
2023-03-18 05:11:50 -03:00
Herman Peeren
c75398af78
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (3309 of 3309 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/nl/
Signed-off-by: Herman Peeren <herman@yepr.nl>
2023-03-17 11:41:41 +01:00
Herman Peeren
ef6cb6cc18
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (3427 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/nl/
Signed-off-by: Herman Peeren <herman@yepr.nl>
2023-03-17 11:39:16 +01:00
Liviu-Mihail Concioiu
f7f7e63f9a
Fix empty appearance settings
...
Signed-off-by: Liviu-Mihail Concioiu <liviu.concioiu@gmail.com>
2023-03-17 11:12:05 +01:00
Herman Peeren
3a4f7c6453
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (3427 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/nl/
Signed-off-by: Herman Peeren <herman@yepr.nl>
2023-03-16 10:41:14 +01:00
Kamil Tekiela
e9b9c120af
Fix getTablesFull() and related tests
...
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-03-15 19:59:35 +00:00
Kamil Tekiela
3db245f462
Optimize export of many tables
...
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-03-15 19:59:35 +00:00
Maurício Meneghini Fauth
00197f4ff4
Merge pull request #18261 from kamil-tekiela/tableStatus-with-numerical-table
...
Fix a bug with numerical table name
2023-03-15 13:49:38 -03:00
Kamil Tekiela
d7f599df00
Accept table with name 0 in getTablesFull
...
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-03-14 22:11:05 +00:00
Kamil Tekiela
282dc9a27e
Fix a bug with numerical table name
...
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-03-14 21:35:10 +00:00
Kuba Niewiarowski
d3ec2fc5cf
Translated using Weblate (Polish)
...
Currently translated at 45.9% (1573 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/pl/
Signed-off-by: Kuba Niewiarowski <jakub@niewiarowski.it>
2023-03-14 01:51:38 +01:00
Henrik Dankvardt
664af9e639
Translated using Weblate (Danish)
...
Currently translated at 98.2% (3251 of 3309 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/da/
Signed-off-by: Henrik Dankvardt <dankvardt@gmail.com>
2023-03-13 14:05:54 +01:00
William Desportes
11abd923a4
Translated using Weblate (French)
...
Currently translated at 99.9% (3308 of 3309 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/fr/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-13 03:42:04 +01:00
ssantos
869ecea9cc
Translated using Weblate (Portuguese)
...
Currently translated at 97.7% (3349 of 3427 strings)
[ci skip]
Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/pt/
Signed-off-by: ssantos <ssantos@web.de>
2023-03-12 17:38:27 +01:00
William Desportes
b55c951503
Fix #16199 - Dragging of tables in designer, adjust registerTeardown
...
Pull-request: #18155
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 16:14:10 +01:00
William Desportes
35db930fc8
Fix #16199 - Dragging of tables in designer, adjust .off()
...
Pull-request: #18155
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 16:12:48 +01:00
William Desportes
62ce5a7aea
Add a ChangeLog entry for #16199
...
Pull-request: #18155
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 16:11:32 +01:00
William Desportes
05914b9f10
Merge #18155 - Fix #16199 - Dragging of tables in designer
...
Pull-request: #18155
Fixes : #16199
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 16:10:31 +01:00
Kim Oliver Drechsel
ed0ea1e81d
Fix #16199 - buggy dragging of tables in designer
...
Fixes : #16199
Signed-off-by: Kim Oliver Drechsel <kim@drechsel.xyz>
2023-03-10 16:03:43 +01:00
William Desportes
ce1d0bf34c
Add a ChangeLog entry for ae355d99b1
...
Ref: ae355d99b1
Pull-request: #18177
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 16:00:26 +01:00
William Desportes
ae355d99b1
Merge #18177 - Fix "IS NULL" is shown for non-nullable columns on search page
...
Pull-request: #18177
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 15:58:02 +01:00
William Desportes
531e8798f2
Add a ChangeLog entry for #16451
...
Pull-request: #18123
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 15:51:49 +01:00
William Desportes
a8bfc4ceea
Merge #18123 - Ref #16451 - Increase password characters limit to 2000 during login
...
Pull-request: #18123
Ref: #16451
Ref: #16452
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 15:50:53 +01:00
Yuval Haor Noga
b305ec30fa
Ref #16451 - Increase max password length from 1000 to 2000
...
Signed-off-by: Yuval Haor Noga <yuvalhnoga@gmail.com>
2023-03-10 15:45:30 +01:00
William Desportes
05230492aa
Add ChangeLog entries for b3c35c2045, 80d7f0dfa3, #18196 , #18093
...
Ref: b3c35c2045
Ref: 80d7f0dfa3
Pull-request: #18197
Pull-request: #18200
Pull-request: #18208
Pull-request: #18220
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 15:40:23 +01:00
William Desportes
33f9b57e18
Add examples for Google reCapatcha
...
Fixes : #17988
Signed-off-by: William Desportes <williamdes@wdes.fr>
2023-03-10 15:30:36 +01:00
SlushUwU
9188cf251b
Add CloudFlare Turnstile captcha example ( #18098 )
...
Added reCaptcha example for CloudFlare Turnstile
Cloudflare Developer Page for Turnstile: https://developers.cloudflare.com/turnstile/get-started/
Pull-Request: #18098
Cherry-picked-from: d10b5d9e4e
Signed-off-by: SlushUwU <rolgoy@satowa-network.eu>
Co-authored-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Co-authored-by: William Desportes <williamdes@wdes.fr>
2023-03-10 15:30:34 +01:00
Maurício Meneghini Fauth
59b4fdbea0
Update OpenLayers and zxcvbn-ts files
...
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-03-09 22:51:31 -03:00
Maurício Meneghini Fauth
b2ab87a0fa
Update JavaScript dependencies
...
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-03-09 22:27:03 -03:00