1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Add versionadded tags to many ffeatures in the docs.

This commit is contained in:
Benjamin Eberlei 2013-02-27 12:34:10 +01:00
parent 6b85d5b5ac
commit f001c31342
7 changed files with 17 additions and 1 deletions

View file

@ -410,6 +410,8 @@ Get all users that have no phonenumber
Get all instances of a specific type, for use with inheritance Get all instances of a specific type, for use with inheritance
hierarchies: hierarchies:
.. versionadded:: 2.1
.. code-block:: php .. code-block:: php
<?php <?php
@ -419,6 +421,8 @@ hierarchies:
Get all users visible on a given website that have chosen certain gender: Get all users visible on a given website that have chosen certain gender:
.. versionadded:: 2.3
.. code-block:: php .. code-block:: php
<?php <?php

View file

@ -1,6 +1,8 @@
Filters Filters
======= =======
.. versionadded:: 2.2
Doctrine 2.2 features a filter system that allows the developer to add SQL to Doctrine 2.2 features a filter system that allows the developer to add SQL to
the conditional clauses of queries, regardless the place where the SQL is the conditional clauses of queries, regardless the place where the SQL is
generated (e.g. from a DQL query, or by loading associated entities). generated (e.g. from a DQL query, or by loading associated entities).

View file

@ -1,6 +1,8 @@
Implementing a NamingStrategy Implementing a NamingStrategy
============================== ==============================
.. versionadded:: 2.3
Using a naming strategy you can provide rules for automatically generating Using a naming strategy you can provide rules for automatically generating
database identifiers, columns and tables names database identifiers, columns and tables names
when the table/column name is not given. when the table/column name is not given.
@ -145,4 +147,4 @@ Just set your naming strategy calling ``Doctrine\ORM\Configuration#setNamingStra
<?php <?php
$namingStrategy = new MyAppNamingStrategy(); $namingStrategy = new MyAppNamingStrategy();
$configuration()->setNamingStrategy($namingStrategy); $configuration()->setNamingStrategy($namingStrategy);

View file

@ -731,6 +731,8 @@ examples are equivalent:
By Criteria By Criteria
~~~~~~~~~~~ ~~~~~~~~~~~
.. versionadded:: 2.3
The Repository implement the ``Doctrine\Common\Collections\Selectable`` The Repository implement the ``Doctrine\Common\Collections\Selectable``
interface. That means you can build ``Doctrine\Common\Collections\Criteria`` interface. That means you can build ``Doctrine\Common\Collections\Criteria``
and pass them to the ``matching($criteria)`` method. and pass them to the ``matching($criteria)`` method.

View file

@ -1,6 +1,8 @@
Composite and Foreign Keys as Primary Key Composite and Foreign Keys as Primary Key
========================================= =========================================
.. versionadded:: 2.1
Doctrine 2 supports composite primary keys natively. Composite keys are a very powerful relational database concept Doctrine 2 supports composite primary keys natively. Composite keys are a very powerful relational database concept
and we took good care to make sure Doctrine 2 supports as many of the composite primary key use-cases. and we took good care to make sure Doctrine 2 supports as many of the composite primary key use-cases.
For Doctrine 2.0 composite keys of primitive data-types are supported, for Doctrine 2.1 even foreign keys as For Doctrine 2.0 composite keys of primitive data-types are supported, for Doctrine 2.1 even foreign keys as

View file

@ -1,6 +1,8 @@
Extra Lazy Associations Extra Lazy Associations
======================= =======================
.. versionadded:: 2.1
In many cases associations between entities can get pretty large. Even in a simple scenario like a blog. In many cases associations between entities can get pretty large. Even in a simple scenario like a blog.
where posts can be commented, you always have to assume that a post draws hundreds of comments. where posts can be commented, you always have to assume that a post draws hundreds of comments.
In Doctrine 2.0 if you accessed an association it would always get loaded completely into memory. This In Doctrine 2.0 if you accessed an association it would always get loaded completely into memory. This

View file

@ -1,6 +1,8 @@
Pagination Pagination
========== ==========
.. versionadded:: 2.2
Starting with version 2.2 Doctrine ships with a Paginator for DQL queries. It Starting with version 2.2 Doctrine ships with a Paginator for DQL queries. It
has a very simple API and implements the SPL interfaces ``Countable`` and has a very simple API and implements the SPL interfaces ``Countable`` and
``IteratorAggregate``. ``IteratorAggregate``.