Skip to content

Commit

Permalink
Merge branch '4.0.x' into 4.1.x
Browse files Browse the repository at this point in the history
* 4.0.x:
  Add MariaDB 11.3 to the test matrix (#6342)
  [Documentation] Fixing markup (#6340)
  Remove older versions from the docs
  [Documentation] Adding "versionadded" (#6336)
  Update UPGRADE.md
  Spell which properly
  Fix double quote used wrongly for literal value in SqliteSchemaManager (#6325)
  • Loading branch information
derrabus committed Mar 21, 2024
2 parents 90e098c + c70bae9 commit e7d1c68
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 48 deletions.
45 changes: 0 additions & 45 deletions .doctrine-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,51 +82,6 @@
"branchName": "3.0.x",
"slug": "3.0",
"maintained": false
},
{
"name": "2.13",
"slug": "2.13",
"maintained": false
},
{
"name": "2.12",
"slug": "2.12",
"maintained": false
},
{
"name": "2.11",
"slug": "2.11",
"maintained": false
},
{
"name": "2.10",
"slug": "2.10",
"maintained": false
},
{
"name": "2.9",
"slug": "2.9",
"maintained": false
},
{
"name": "2.8",
"slug": "2.8",
"maintained": false
},
{
"name": "2.7",
"slug": "2.7",
"maintained": false
},
{
"name": "2.6",
"slug": "2.6",
"maintained": false
},
{
"name": "2.5",
"slug": "2.5",
"maintained": false
}
]
}
2 changes: 2 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,13 +280,15 @@ jobs:
php-version:
- "8.1"
mariadb-version:
# keep in sync with https://mariadb.org/about/#maintenance-policy
- "10.4" # Oldest version supported by DBAL, LTS (Jun 2024)
- "10.5" # LTS (Jun 2025)
- "10.6" # LTS (Jul 2026)
- "10.11" # LTS (Feb 2028)
- "11.0" # STS (Jun 2024)
- "11.1" # STS (Aug 2024)
- "11.2" # STS (Nov 2024)
- "11.3" # STS (Feb 2025)
extension:
- "mysqli"
- "pdo_mysql"
Expand Down
2 changes: 1 addition & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1757,7 +1757,7 @@ We have been working on phasing out `doctrine/cache`, and 3.2.0 allows to use
`psr/cache` instead. To help calling our own internal APIs in a unified way, we
also wrap `doctrine/cache` implementations with a `psr/cache` adapter.
Using cache keys containing characters reserved by `psr/cache` will result in
an exception. The characters are the following: `{}()/\@`.
an exception. The characters are the following: `{}()/\@:`.

## Deprecated `SQLLogger` and its implementations.

Expand Down
4 changes: 4 additions & 0 deletions docs/en/reference/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ Values retrieved from the database are always converted to PHP's ``integer`` typ
if they are within PHP's integer range or ``string`` if they aren't.
Otherwise, returns ``null`` if no data is present.

.. versionadded:: 4.0

The mapping to PHP ``int`` was added in version 4.0

.. note::

Due to architectural differences, 32-bit PHP systems have a smaller
Expand Down
2 changes: 1 addition & 1 deletion src/Query/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ public function __clone()

/**
* Enables caching of the results of this query, for given amount of seconds
* and optionally specified witch key to use for the cache entry.
* and optionally specified which key to use for the cache entry.
*
* @return $this
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Schema/SQLiteSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ protected function selectForeignKeyColumns(string $databaseName, ?string $tableN
p.*
FROM sqlite_master t
JOIN pragma_foreign_key_list(t.name) p
ON p."seq" != "-1"
ON p."seq" != '-1'
SQL;

$conditions = [
Expand Down

0 comments on commit e7d1c68

Please sign in to comment.