summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
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-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-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
2020-03-31Update ChangelogDamien Regad1-0/+2
2020-01-30Merge remote-tracking branch 'origin/hotfix/5.20'Damien Regad1-0/+4
# Conflicts: # docs/changelog.md
2020-01-30Do not overwrite $fn function parameterDamien Regad1-0/+4
When using transactions (startTrans/completeTrans), the ADOdb Exception thrower function ($raiseErrorFn property) is replaced by a specific handler (ADODB_TransMonitor method), which itself calls the original handler (adodb_throw) by default. ADODB_TransMonitor incorrectly overwrites the $fn parameter (which drives the behavior of the ADODB_Exception class constructor) with the name of the original handler, causing ADOdb_Exception::__construct() to throw an "Array to string conversion" PHP notice when the query triggering the exception has parameters. Using a dedicated variable to store and call the original handler fixes the problem. Fixes #601
2020-01-25Update changelogDamien Regad1-0/+1
2020-01-25Update ChangelogDamien Regad1-0/+2
2020-01-25pgsql: fix param number reset with param(false)Damien Regad1-0/+1
Prior to this, calling $db->param(false) would reset the parameter number to 1 instead of 0, causing the next param() call to return `$2` instead of the expected `$1`. Fixes #380
2020-01-24Update ChangelogDamien Regad1-1/+1
2020-01-12Update changelogDamien Regad1-3/+10
2020-01-12Merge branch 'hotfix/5.20' (5.20.16)Damien Regad1-0/+4
# Conflicts: # docs/changelog.md
2020-01-12Update ChangelogDamien Regad1-0/+4
2020-01-09XML: add support for 'DESCR' tags for tables/fieldspeterdd1-0/+1
Fixes #265 Signed-off-by: Damien Regad <dregad@mantisbt.org> Original commits squashed; commit message reworded; updated changelog.
2020-01-04Fix MSSQL support changelog inconsistencyDamien Regad1-2/+1
This update was suggested by @obmsch's [1]. Release 5.20.8 introduced support for MSSQL 2014 and later, but the corresponding changelog entry actually documented that as 2016 and later while the 5.21.0 changelog indicated support for MSSQL 2014 (after commit 98e7db89ba08c40dd491e83e0981d7b271b9bbcd). [1]: https://github.com/ADOdb/ADOdb/commit/259602ce203b3820231e01e0690818ac38b6c65c
2020-01-03Update changelogDamien Regad1-1/+25
2019-11-24mssqlnative: delegate _numOfFields init to _fetchFields()Damien Regad1-0/+1
The recent release of the PHP mssql native driver (5.6) has introduced an issue that causes ADODB/PHP to crash on any query that returns no fields/data. Until a fix is available, we remove the sqlsrv_field_metadata() call in _initrs() method, since the _numOfFields property is anyway initialized as part of _fetchFields() execution. Fixes #492
2019-11-24Merge branch 'hotfix/5.20' (5.20.15)Damien Regad2-71/+68
Conflicts: docs/changelog.md
2019-11-24Bump version to 5.20.15v5.20.15Damien Regad1-1/+1
2019-11-24Fix broken markdown in 4.x changelogDamien Regad1-69/+64
2019-11-24Fix broken documentation reference in changelogDamien Regad1-1/+1
In 5.06, a link was referencing the old html documentation. Changed to adodb.org instead.
2019-11-24Update changelogDamien Regad1-0/+2
2019-11-22Merge branch 'hotfix/5.20'Damien Regad1-0/+1
2019-11-22pgsql: stop using obsolete pg_attrdef.adsrc columnDamien Regad1-0/+1
Historically, the 'adsrc' column was used to retrieve a human-readable representation of a column's default value. Starting with PostgreSQL 8.0 it is considered obsolete, and it was removed in 12.0 [[1]]. Its usage has been replaced by pg_get_expr(adbin, adrelid), in postgres8 driver, per documentation[[2]]. Fixes #562 [1]: https://www.postgresql.org/docs/12/release-12.html#id-1.11.6.6.4 [2]: https://www.postgresql.org/docs/12/catalog-pg-attrdef.html
2019-11-12Codespell assisted typo cleaningJean-Michel Vourgère4-12/+12
2019-08-23Merge branch 'hotfix/5.20'Damien Regad1-1/+2
# Conflicts: # docs/changelog.md
2019-08-23PHP 7.4: fix deprecated usage of join()Damien Regad1-1/+1
Passing parameters to implode() in reverse order is deprecated Fixes #547
2019-05-08Merge branch 'hotfix/5.20'Damien Regad1-0/+7
# Conflicts: # docs/changelog.md
2019-05-08Update changelogDamien Regad1-0/+1
2019-05-07Update changelogDamien Regad1-0/+7
2019-03-25Update README.mdjane-lyndon1-1/+1
Add :