Updating upgrade docs and fixes suggested by @beberlei
This commit is contained in:
parent
86dbddd596
commit
fc00d5f39f
2 changed files with 17 additions and 9 deletions
15
UPGRADE.md
15
UPGRADE.md
|
@ -1,5 +1,12 @@
|
||||||
# Upgrade to 2.3
|
# Upgrade to 2.3
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
`Doctrine\ORM\Configuration#newDefaultAnnotationDriver` has been changed to reflect latest changes in Doctrine\Common.
|
||||||
|
If you use it to have an AnnotationDriver configured with a SimpleAnnotationReader in your projects, you should from now
|
||||||
|
on call `newDefaultAnnotationDriver` with its second parameter set to `true`. Otherwise, the default consumed reader
|
||||||
|
will be the AnnotationReader, which uses the `@Namespace\AnnotationName` syntax.
|
||||||
|
|
||||||
## EntityGenerator add*() method generation
|
## EntityGenerator add*() method generation
|
||||||
|
|
||||||
When generating an add*() method for a collection the EntityGenerator will now not
|
When generating an add*() method for a collection the EntityGenerator will now not
|
||||||
|
@ -315,7 +322,7 @@ the association. Example:
|
||||||
private $user;
|
private $user;
|
||||||
//...
|
//...
|
||||||
}
|
}
|
||||||
|
|
||||||
// SINCE BETA1
|
// SINCE BETA1
|
||||||
// User class DOES NOT CHANGE
|
// User class DOES NOT CHANGE
|
||||||
class Address
|
class Address
|
||||||
|
@ -325,7 +332,7 @@ the association. Example:
|
||||||
private $user;
|
private $user;
|
||||||
//...
|
//...
|
||||||
}
|
}
|
||||||
|
|
||||||
Thus, the inversedBy attribute is the counterpart to the mappedBy attribute. This change
|
Thus, the inversedBy attribute is the counterpart to the mappedBy attribute. This change
|
||||||
was necessary to enable some simplifications and further performance improvements. We
|
was necessary to enable some simplifications and further performance improvements. We
|
||||||
apologize for the inconvenience.
|
apologize for the inconvenience.
|
||||||
|
@ -344,7 +351,7 @@ had a DQL query like this:
|
||||||
|
|
||||||
[sql]
|
[sql]
|
||||||
SELECT u.id, u.name FROM User u
|
SELECT u.id, u.name FROM User u
|
||||||
|
|
||||||
Since BETA1, simple state field path expressions in the select clause are used to select
|
Since BETA1, simple state field path expressions in the select clause are used to select
|
||||||
object fields as plain scalar values (something that was not possible before).
|
object fields as plain scalar values (something that was not possible before).
|
||||||
To achieve the same result as previously (that is, a partial object with only id and name populated)
|
To achieve the same result as previously (that is, a partial object with only id and name populated)
|
||||||
|
@ -427,7 +434,7 @@ With new required method AbstractTask::buildDocumentation, its implementation de
|
||||||
# Upgrade from 2.0-ALPHA2 to 2.0-ALPHA3
|
# Upgrade from 2.0-ALPHA2 to 2.0-ALPHA3
|
||||||
|
|
||||||
This section details the changes made to Doctrine 2.0-ALPHA3 to make it easier for you
|
This section details the changes made to Doctrine 2.0-ALPHA3 to make it easier for you
|
||||||
to upgrade your projects to use this version.
|
to upgrade your projects to use this version.
|
||||||
|
|
||||||
## CLI Changes
|
## CLI Changes
|
||||||
|
|
||||||
|
|
|
@ -126,22 +126,23 @@ class Configuration extends \Doctrine\DBAL\Configuration
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a new default annotation driver with a correctly configured annotation reader. If $useDefaultNamespace is
|
* Add a new default annotation driver with a correctly configured annotation reader. If $useSimpleAnnotationReader
|
||||||
* to true, the notation `@Entity` will work, otherwise, the notation `@ORM\Entity` will be supported.
|
* is true, the notation `@Entity` will work, otherwise, the notation `@ORM\Entity` will be supported.
|
||||||
*
|
*
|
||||||
* @param array $paths
|
* @param array $paths
|
||||||
* @param bool $useDefaultNamespace
|
* @param bool $useSimpleAnnotationReader
|
||||||
* @return AnnotationDriver
|
* @return AnnotationDriver
|
||||||
*/
|
*/
|
||||||
public function newDefaultAnnotationDriver($paths = array(), $useDefaultNamespace = false)
|
public function newDefaultAnnotationDriver($paths = array(), $useSimpleAnnotationReader = false)
|
||||||
{
|
{
|
||||||
AnnotationRegistry::registerFile(__DIR__ . '/Mapping/Driver/DoctrineAnnotations.php');
|
AnnotationRegistry::registerFile(__DIR__ . '/Mapping/Driver/DoctrineAnnotations.php');
|
||||||
|
|
||||||
if ($useDefaultNamespace) {
|
if ($useSimpleAnnotationReader) {
|
||||||
// Register the ORM Annotations in the AnnotationRegistry
|
// Register the ORM Annotations in the AnnotationRegistry
|
||||||
$reader = new SimpleAnnotationReader();
|
$reader = new SimpleAnnotationReader();
|
||||||
$reader->addNamespace('Doctrine\ORM\Mapping');
|
$reader->addNamespace('Doctrine\ORM\Mapping');
|
||||||
$cachedReader = new CachedReader($reader, new ArrayCache());
|
$cachedReader = new CachedReader($reader, new ArrayCache());
|
||||||
|
|
||||||
return new AnnotationDriver($cachedReader, (array) $paths);
|
return new AnnotationDriver($cachedReader, (array) $paths);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue