summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2021-10-31Update ChangelogDamien Regad1-5/+29
2021-10-31Merge tag 'v5.21.3'Damien Regad1-2/+4
ADOdb version 5.21.3 released 2021-10-31 # Conflicts: # adodb.inc.php # docs/changelog.md
2021-10-31Bump version to 5.21.3v5.21.3Damien Regad1-2/+3
2021-10-25Merge remote-tracking branch 'origin/hotfix/5.21'Damien Regad1-1/+3
# Conflicts: # drivers/adodb-mysqli.inc.php
2021-10-25Ensure temp $ADODB_COUNTRECS changes really are temporaryDamien Regad1-0/+2
Add try/finally blocks in selectLimit(), getOne(), getRow(), getArray() and cacheGetArray() methods when temporarily changing $ADODB_COUNTRECS global's value, to ensure it is correctly restored to its previous value when the execute() call triggers an exception. Fixes #761
2021-10-25mysqli: force error reporting mode to OFFDamien Regad1-1/+3
PHP 8.1 changes the default error reporting mode from OFF to MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT [1]. We manually set it to MYSQLI_REPORT_OFF in the ADODB_mysqli class constructor to ensure compatibility. Fixes #755 [1]: https://wiki.php.net/rfc/mysqli_default_errmode
2021-09-21Merge branch 'hotfix/5.21'Damien Regad1-1/+10
Conflicts: docs/changelog.md
2021-09-21Update ChangelogDamien Regad1-0/+10
2021-08-22Merge tag 'v5.21.2'Damien Regad1-0/+11
# Conflicts: # adodb.inc.php # docs/changelog.md
2021-08-22Bump version to 5.21.2v5.21.2Damien Regad1-0/+11
2021-08-17Redo Merge tag 'v5.21.1'Damien Regad1-3/+46
# Conflicts: # adodb.inc.php # docs/changelog.md # drivers/adodb-mssqlnative.inc.php # drivers/adodb-mysqli.inc.php Fixes #751
2021-08-17Revert changes since Standardized file headers mergeDamien Regad1-46/+3
The conflicts resolution applied when merging the Standardized file headers (commit e9dcce3df24912ad869d0193f0b419f2309101fc) was seriously messed up, actually overwriting a number of changes in the master branch. Rather than trying to go and fix things one by one which has a high risk of messing things further, it's easier to redo the merge from a clean slate, so this commit reverts the following: - "Merge branch 'hotfix/5.21' Standardized file headers", e9dcce3df24912ad869d0193f0b419f2309101fc - "Merge tag 'v5.21.1'", 5f437df3104159d5d659f60e31bef8d33c34995f - "Reset version to 5.22.0-dev" af9234a525c3255af051a330164486d73be4c63a - "Fix incorrect resolution of merge conflicts" a6733f61b0165b366c8d2c70d9af82edc3881951. - "Fix syntax error in toexport.inc.php" 20b01e83cb61b6b2460f64c7d1277c5f4cc28574. Fixes #751
2021-08-15Merge tag 'v5.21.1'Damien Regad1-3/+46
ADOdb version 5.21.1 released 2021-08-15 # Conflicts: # docs/changelog.md # drivers/adodb-odbc_mssql2012.inc.php # drivers/adodb-sqlite.inc.php # tests/testsessions.php
2021-08-15Bump version to 5.21.1v5.21.1Damien Regad1-3/+2
2021-08-15Update ChangelogDamien Regad1-0/+43
2021-03-15Merge branch 'hotfix/5.21' into masterDamien Regad1-0/+2
2021-03-11mssql: use getOne to get default constraintDamien Regad1-0/+2
Simplifies the code, and gets rid of PHP Warnings, both on line 164 in datadict-mssqlnative.inc.php: - Trying to access array offset on value of type bool - Undefined array key "name" Fixes #696
2021-03-08Merge branch 'hotfix/5.21' into masterDamien Regad1-0/+9
2021-03-08Bump version to 5.21.1-devDamien Regad1-2/+2
2021-03-08get/setCharSet: avoid TypeError when no connectionDamien Regad1-0/+10
On mysqli, PHP 8 throws an 'Uncaught TypeError: method_exists(): Argument 1 ($object_or_class) must be of type object|string, bool given'. Checking that _connectionID is set fixes the problem. A similar issue was found and fixed with the postgres7 driver as well. Note that fixing the legacy mysql driver is not necessary, as the driver has been removed in PHP 7, and the error suppression operator should do the job on PHP 5. Fixes #686
2021-02-27Merge branch 'release/5.21' into masterDamien Regad1-1/+10
# Conflicts: # docs/changelog.md
2021-02-27Reset version to avoid merge conflictsDamien Regad1-0/+2
2021-02-27Bump version to 5.21.0v5.21.0Damien Regad1-1/+1
2021-02-27Update ChangelogDamien Regad1-0/+10
2021-02-02Merge branch 'release/5.21' into master (5.21.0-rc.1)Damien Regad1-1/+31
# Conflicts: # docs/changelog.md
2021-02-02Bump version to 5.21.0-rc.1v5.21.0-rc.1Damien Regad1-1/+1
2021-02-02Changelog for 5.21.0-rc.1Damien Regad1-2/+31
2021-02-01Update ChangelogDamien Regad1-2/+35
2021-02-01Merge branch 'release/5.21' into masterDamien Regad1-263/+636
# Conflicts: # docs/changelog.md
2021-02-01Changelog: move 5.20.20 in chronological orderDamien Regad1-21/+21
2021-02-01Changelog: Update 5.21.x for keepachangelog formatDamien Regad1-95/+210
2021-01-31Merge branch 'hotfix/5.20' into release/5.21Damien Regad1-170/+428
2021-01-31Update changelogDamien Regad1-0/+22
2021-01-31Revise changelog according to "Keep a changelog"Damien Regad1-169/+404
The 5.x changelog (from 5.20.0 and up), now follows the [Keep a changelog](https://keepachangelog.com) format. - Release dates converted to Y-m-d ISO format - Added sections - Added links to GitHub release commits - Added links to GitHub issues
2020-12-26Bump version to 5.22.0-devDamien Regad1-0/+2
2020-12-20Bump version to 5.21.0-beta.1v5.21.0-beta.1Damien Regad1-0/+2
2020-12-19adodb.org is now served over SSLDamien Regad1-1/+1
Change web site references from http://adodb.org to https.
2020-12-16Update changelogDamien Regad1-15/+13
Move 5.20.19 section below 5.21.0
2020-12-16Merge branch 'hotfix/5.20' (v5.20.19)Damien Regad3-55/+70
Note on merge conflict in adodb.inc.php: At line 5133, parse_url() is called with `@` operator in the hotfix/5.20 branch (commit 2026e66e86f35995eee32557c2f83f1d539ca9c7) whereas the same change in the master branch (commit c1a6794ece2b02c2a5d238159ae85da3cbd6d) is without it. Code was kept as it is in master. # Conflicts: # adodb-lib.inc.php # adodb.inc.php # drivers/adodb-mssqlnative.inc.php # drivers/adodb-mysqli.inc.php # drivers/adodb-pdo.inc.php
2020-12-16Reset version to avoid merge conflictsDamien Regad1-0/+2
2020-12-14Bump version to 5.20.19Mark Newnham1-0/+13
2020-12-06Removed references to phplens.com, see #564Mark Newnham2-5/+5
2020-12-06Removed hotlinks to PHPlens see #564Mark Newnham5-60/+60
Site no longer active
2020-08-02Merge branch 'hotfix/5.20' (v5.20.18)Damien Regad1-1/+5
# Conflicts: # docs/changelog.md # drivers/adodb-mssqlnative.inc.php
2020-08-02Reset version to avoid merge conflictsDamien Regad1-0/+2
2020-08-02WhitespaceDamien Regad1-0/+1
2020-06-28Update ChangelogMark Newnham1-0/+3
2020-04-01Merge branch 'hotfix/5.20' (5.20.17)Damien Regad1-0/+2
# Conflicts: # docs/changelog.md # drivers/adodb-mssqlnative.inc.php
2020-04-01Reset version to avoid merge conflictsDamien Regad1-0/+2
2020-03-31Bump version to 5.20.17v5.20.17Damien Regad1-1/+1