eloquent-ifrs
eloquent-ifrs copied to clipboard
Upgrade: Bump doctrine/dbal from 2.13.x-dev to 3.2.x-dev
⚠️ Dependabot is rebasing this PR ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps doctrine/dbal from 2.13.x-dev to 3.2.x-dev.
Release notes
Sourced from doctrine/dbal's releases.
3.1.0
Release 3.1.0
3.1.0
- Total issues resolved: 3
- Total pull requests resolved: 16
- Total contributors: 5
Deprecation,New Feature
Deprecation,Documentation
Deprecation,Documentation,Reserved Keywords
- [4587: [GH-4510] Deprecate ReservedWordsCommand::setKeywordListClass()](doctrine/dbal#4587) thanks to
@morozov
Deprecation,Oracle,Schema Managers
- [4584: [GH-4503] Mark OracleSchemaManager methods internal](doctrine/dbal#4584) thanks to
@morozov
Error Handling,Improvement,Prepared Statements,oci8
Deprecation,Improvement,QueryBuilder
- 4578: Predictable
QueryBuilder::executeQuery()
andQueryBuilder::executeStatement()
thanks to@PowerKiKi
Deprecation
Connections,Sequences,pdo_sqlsrv
... (truncated)
Upgrade guide
Sourced from doctrine/dbal's upgrade guide.
Note about upgrading: Doctrine uses static and runtime mechanisms to raise awareness about deprecated code.
- Use of
@deprecated
docblock that is detected by IDEs (like PHPStorm) or Static Analysis tools (like Psalm, phpstan)- Use of our low-overhead runtime deprecation API, details: https://github.com/doctrine/deprecations/
Upgrade to 3.1
Deprecated schema- and namespace-related methods
The usage of the following schema- and namespace-related methods is deprecated:
AbstractPlatform::getListNamespacesSQL()
,AbstractSchemaManager::listNamespaceNames()
,AbstractSchemaManager::getPortableNamespacesList()
,AbstractSchemaManager::getPortableNamespaceDefinition()
,PostgreSQLSchemaManager::getSchemaNames()
.Use
AbstractSchemaManager::listSchemaNames()
instead.
PostgreSQLSchemaManager
methods marked internal.
PostgreSQLSchemaManager::getExistingSchemaSearchPaths()
and::determineExistingSchemaSearchPaths()
have been marked internal.
OracleSchemaManager
methods marked internal.
OracleSchemaManager::dropAutoincrement()
has been marked internal.Deprecated
AbstractPlatform::getReservedKeywordsClass()
Instead of implementing
getReservedKeywordsClass()
,AbstractPlatform
subclasses should implementcreateReservedKeywordsList()
.Deprecated
ReservedWordsCommand::setKeywordListClass()
The usage of
ReservedWordsCommand::setKeywordListClass()
has been deprecated. To add or replace a keyword list, usesetKeywordList()
instead.Deprecated
$driverOptions
argument ofPDO\Statement::bindParam()
andPDO\SQLSrv\Statement::bindParam()
The usage of the
$driverOptions
argument ofPDO\Statement::bindParam()
andPDO\SQLSrv\Statement::bindParam()
is deprecated. To define parameter binding type asASCII
,BINARY
orBLOB
, use the correspondingParameterType::*
constant.Deprecated
Connection::$_schemaManager
andConnection::getSchemaManager()
The usage of
Connection::$_schemaManager
andConnection::getSchemaManager()
is deprecated. UseConnection::createSchemaManager()
instead.
... (truncated)
Commits
- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)