<!--
RSS generated by JIRA (5.2.7#850-sha1:b2af0c8dc8537b36121c6a579fabbdf79fc919e5) at Sun May 26 00:28:39 UTC 2013

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
http://www.doctrine-project.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+MODM+AND+resolution+%3D+Unresolved+AND+priority+%3D+Minor+ORDER+BY+key+DESC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://www.doctrine-project.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Doctrine Project</title>
        <link>http://www.doctrine-project.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+MODM+AND+resolution+%3D+Unresolved+AND+priority+%3D+Minor+ORDER+BY+key+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="8" total="8"/>
                <build-info>
            <version>5.2.7</version>
            <build-number>850</build-number>
            <build-date>21-02-2013</build-date>
        </build-info>
<item>
            <title>[MODM-169] Filter API is not unified between ODM and ORM</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-169</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I&apos;m implementing some functionality around filters which will ideally work for both ORM and ODM. The API for managing filters is different on `Doctrine\ORM\EntityManager` and `Doctrine\ODM\MongoDB\DocumentManager`, while the CouchDB implementation of ODM has no filter concept.&lt;/p&gt;

&lt;p&gt;For example, ORM EntityManager has getFilters(), hasFilters(), while ODM MongoDB DocumentManager has getFilterCollection().&lt;/p&gt;

&lt;p&gt;I was wondering what your thoughts were on defining the filter API in an interface, to improve consistency when implementing cross-library functionality?&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br/&gt;
Craig&lt;/p&gt;</description>
                <environment></environment>
            <key id="14301">MODM-169</key>
            <summary>Filter API is not unified between ODM and ORM</summary>
                <type id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="craigmarvelley">Craig Marvelley</reporter>
                        <labels>
                    </labels>
                <created>Mon, 10 Dec 2012 14:42:18 +0000</created>
                <updated>Mon, 10 Dec 2012 14:42:18 +0000</updated>
                                                                    <component>Document Manager</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[MODM-168] Can&apos;t Use Custom Repository Class for Embedded Doc When Using YAML Driver</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-168</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;When using the Yaml driver the ClassMetadata generation process won&apos;t create and use the indicated custom repository class for an embedded document. From what I can see digging into the actual code, it will work when using the Annotations or XML drivers, but in the Yaml driver the call to setCustomRepositoryClass is inside of a conditional that only gets entered if the document type is &apos;document&apos;.&lt;/p&gt;

&lt;p&gt;I&apos;m not completely sure, but from what I can see elsewhere in the code, it looks like mapped superclasses should also be able to have a custom repository class, but can&apos;t when using the Yaml driver. &lt;/p&gt;

&lt;p&gt;So I reckon what would work would be to change the code as indicated below:&lt;/p&gt;

&lt;p&gt;&amp;lt;&amp;lt;EXISTING CODE&amp;gt;&amp;gt;&lt;br/&gt;
//Doctrine/ODM/MongoDb/Mapping/Driver/YamlDriver.php, line 66&lt;br/&gt;
       if ($element&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;type&amp;#39;&amp;#93;&lt;/span&gt; == &apos;document&apos;) {&lt;br/&gt;
            if (isset($element&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;repositoryClass&amp;#39;&amp;#93;&lt;/span&gt;)) &lt;/p&gt;
{
                $class-&amp;gt;setCustomRepositoryClass($element[&apos;repositoryClass&apos;]);
            }
&lt;p&gt;        } elseif ($element&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;type&amp;#39;&amp;#93;&lt;/span&gt; === &apos;mappedSuperclass&apos;) &lt;/p&gt;
{
            $class-&amp;gt;isMappedSuperclass = true;
        }
&lt;p&gt; elseif ($element&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;type&amp;#39;&amp;#93;&lt;/span&gt; === &apos;embeddedDocument&apos;) &lt;/p&gt;
{
            $class-&amp;gt;isEmbeddedDocument = true;
        }

&lt;p&gt;&amp;lt;&amp;lt;TO THIS&amp;gt;&amp;gt;&lt;br/&gt;
        if (isset($documentAnnot-&amp;gt;repositoryClass)) &lt;/p&gt;
{
            $class-&amp;gt;setCustomRepositoryClass($element[&apos;repositoryClass&apos;]);
        }</description>
                <environment></environment>
            <key id="13896">MODM-168</key>
            <summary>Can&apos;t Use Custom Repository Class for Embedded Doc When Using YAML Driver</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="isac1984">Isaac Foster</reporter>
                        <labels>
                    </labels>
                <created>Sun, 29 Jul 2012 23:42:17 +0000</created>
                <updated>Sun, 29 Jul 2012 23:42:17 +0000</updated>
                                                                    <component>Mapping Drivers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[MODM-163] @ReferenceMany and Inheritance</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-163</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;@ReferenceMany doesn&apos;t seem to work when used within a child class unless I specify @InheritanceType(&quot;CLASS_PER_COLLECTION&quot;) (which is fine b/c that works for our architecture)&lt;/p&gt;

&lt;p&gt;Here is an example from our code: &lt;/p&gt;

&lt;p&gt;//Parent Class&lt;/p&gt;

&lt;p&gt;use Doctrine\Common\Collections\ArrayCollection;&lt;/p&gt;

&lt;p&gt;/**&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;@Document(collection=&quot;homepages&quot;)&lt;/li&gt;
	&lt;li&gt;@ChangeTrackingPolicy(&quot;DEFERRED_IMPLICIT&quot;)&lt;/li&gt;
	&lt;li&gt;@Indexes({&lt;/li&gt;
	&lt;li&gt;@Index(keys=
{&quot;vertical&quot;=&quot;asc&quot;,&quot;ts&quot;=&quot;desc&quot;}
&lt;p&gt;, safe=&quot;true&quot;),&lt;/p&gt;&lt;/li&gt;
	&lt;li&gt;@Index(keys=
{&quot;ts&quot;=&quot;desc&quot;}
&lt;p&gt;, safe=&quot;true&quot;)&lt;/p&gt;&lt;/li&gt;
	&lt;li&gt;})&lt;br/&gt;
 */&lt;br/&gt;
class Homepage extends MappedDocument&lt;br/&gt;
{&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;//** References&lt;br/&gt;
	/**&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;@ReferenceMany(targetDocument=&quot;Post&quot;)&lt;/li&gt;
	&lt;li&gt;@var	list&amp;lt;Post&amp;gt;&lt;br/&gt;
	 */&lt;br/&gt;
	protected $touts;&lt;/li&gt;
&lt;/ul&gt;



&lt;p&gt;}&lt;/p&gt;


&lt;p&gt;//Child Class&lt;br/&gt;
/**&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;@Document(collection=&quot;readmes&quot;)&lt;/li&gt;
	&lt;li&gt;@ChangeTrackingPolicy(&quot;DEFERRED_IMPLICIT&quot;)&lt;/li&gt;
	&lt;li&gt;@Indexes({&lt;/li&gt;
	&lt;li&gt;@Index(keys=
{&quot;vertical&quot;=&quot;asc&quot;}
&lt;p&gt;, safe=&quot;true&quot;)&lt;/p&gt;&lt;/li&gt;
	&lt;li&gt;})&lt;br/&gt;
 */&lt;br/&gt;
class Readme extends Homepage
{

//** References
	/**
	 * @ReferenceMany(targetDocument=&quot;Post&quot;)
	 * @var	list&amp;lt;Post&amp;gt;
	 */
	protected $more_touts;

}&lt;/li&gt;
&lt;/ul&gt;



&lt;p&gt;If I don&apos;t add the @InheritanceType annotation the $more_touts data never gets persisted into the DB.&lt;br/&gt;
Other types such as @ReferenceOne all work just fine&lt;/p&gt;
</description>
                <environment>php 5.3 macosx 10.7.3   mongodb-odm 1.0 mongodb v2.0.2</environment>
            <key id="13485">MODM-163</key>
            <summary>@ReferenceMany and Inheritance</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="jsommerville">julie sommerville</reporter>
                        <labels>
                    </labels>
                <created>Thu, 1 Mar 2012 18:07:13 +0000</created>
                <updated>Thu, 1 Mar 2012 18:07:13 +0000</updated>
                                                                    <component>Persister</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[MODM-145] QueryBuilder references() to does not support references on embedded objects&apos; fields</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-145</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;I noticed that the &lt;tt&gt;references()&lt;/tt&gt; method does not support fields on embedded objects, as the argument to the preceding &lt;tt&gt;field()&lt;/tt&gt; method will be passed into &lt;tt&gt;getFieldMapping()&lt;/tt&gt; and trigger an exception. I suppose a solution would require multiple calls to &lt;tt&gt;getFieldMapping()&lt;/tt&gt; in order to dive into the embedded object&apos;s class metadata.&lt;/p&gt;

&lt;p&gt;To demonstrate, below is an example of a &lt;tt&gt;UserRepository&lt;/tt&gt; class. The &lt;tt&gt;User&lt;/tt&gt; document contains an &lt;tt&gt;embeddedObject&lt;/tt&gt; that itself references another &lt;tt&gt;User&lt;/tt&gt;:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;class UserRepository &lt;span class=&quot;code-keyword&quot;&gt;extends&lt;/span&gt; DocumentRepository
{ 
    &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; function findByEmbeddedObjectReference(User $user)
    {
        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; $&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;-&amp;gt;createQueryBuilder()
            -&amp;gt;field(&apos;embeddedObject.user.$id&apos;)-&amp;gt;equals($user-&amp;gt;getId())
&lt;span class=&quot;code-comment&quot;&gt;//          -&amp;gt;field(&apos;embeddedObject.user&apos;)-&amp;gt;references($user)
&lt;/span&gt;            -&amp;gt;getQuery()
            -&amp;gt;execute();
    }
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Using &lt;tt&gt;field()/equals()&lt;/tt&gt; works fine as an alternative to &lt;tt&gt;references()&lt;/tt&gt;, so there is no urgent need for this feature.&lt;/p&gt;</description>
                <environment></environment>
            <key id="12661">MODM-145</key>
            <summary>QueryBuilder references() to does not support references on embedded objects&apos; fields</summary>
                <type id="2" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/newfeature.png">New Feature</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="jmikola">Jeremy Mikola</reporter>
                        <labels>
                    </labels>
                <created>Mon, 23 May 2011 16:22:55 +0000</created>
                <updated>Tue, 25 Oct 2011 13:56:55 +0000</updated>
                                                                    <component>Query Builder</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="16696" author="neekobus" created="Tue, 25 Oct 2011 13:55:13 +0000"  >&lt;p&gt;Hi&lt;/p&gt;

&lt;p&gt;It seems that we have a problem with the temporary solution proposed :&lt;br/&gt;
Doctrine remove the &quot;$id&quot; part in our query : &lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;   obj-&amp;gt;field(&apos;embedded.referenced.$id&apos;)-&amp;gt;equals($reference-&amp;gt;getId())
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;will generate the query without &quot;$id&quot;. &lt;br/&gt;
There is no problem when the reference is directly in the requested object.&lt;/p&gt;

&lt;p&gt;Did someone experience this issue ?&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[MODM-144] Bi-Directional References Feature</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-144</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;I cant&#180;t reproduce the Bi-Directional References with my own example or the example of the documentation.&lt;br/&gt;
Perhaps the documentation is not up to date or their ist a bug.&lt;/p&gt;

&lt;p&gt;BlogPost.php&lt;br/&gt;
&amp;lt;?php&lt;/p&gt;

&lt;p&gt;/** @Document */&lt;br/&gt;
class BlogPost&lt;br/&gt;
{&lt;br/&gt;
    /** @Id */&lt;br/&gt;
    public $id;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $title;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $content;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $createtime;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $updatetime;&lt;/p&gt;

&lt;p&gt;    /** @ReferenceMany(targetDocument=&quot;PostComment&quot;, mappedBy=&quot;post&quot;) */&lt;br/&gt;
    private $comments;&lt;br/&gt;
}&lt;/p&gt;

&lt;p&gt;PostComment.php&lt;br/&gt;
&amp;lt;?php&lt;/p&gt;

&lt;p&gt;/** @Document */&lt;br/&gt;
class PostComment&lt;br/&gt;
{&lt;br/&gt;
    /** @Id */&lt;br/&gt;
    public $id;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $name;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $mail;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $content;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $createtime;&lt;/p&gt;

&lt;p&gt;    /** @String */&lt;br/&gt;
    public $updatetime;&lt;/p&gt;

&lt;p&gt;    /** @ReferenceOne(targetDocument=&quot;BlogPost&quot;, inversedBy=&quot;comments&quot;) */&lt;br/&gt;
    private $post;&lt;br/&gt;
}&lt;/p&gt;


&lt;p&gt;CommentController.php&lt;br/&gt;
        // Save the Post&lt;br/&gt;
        $post = new BlogPost();&lt;br/&gt;
        $post-&amp;gt;setTitle = &apos;testtitle&apos;;&lt;br/&gt;
        //$post-&amp;gt;content = &apos;testcontent&apos;;&lt;br/&gt;
        //$post-&amp;gt;createdate = time();&lt;/p&gt;

&lt;p&gt;        $comment1 = new PostComment();&lt;br/&gt;
        $comment1-&amp;gt;title = &apos;testcommenttitle1&apos;;&lt;/p&gt;

&lt;p&gt;        $comment2 = new PostComment();&lt;br/&gt;
        $comment2-&amp;gt;title = &apos;testcommenttitle2&apos;;&lt;/p&gt;

&lt;p&gt;        $comment3 = new PostComment();&lt;br/&gt;
        $comment3-&amp;gt;title = &apos;testcommenttitle3&apos;;&lt;/p&gt;

&lt;p&gt;        $dm-&amp;gt;persist($comment1);&lt;br/&gt;
        $dm-&amp;gt;persist($comment2);&lt;br/&gt;
        $dm-&amp;gt;persist($comment3);&lt;br/&gt;
        $dm-&amp;gt;flush();&lt;/p&gt;

&lt;p&gt;        echo $post-&amp;gt;id;&lt;/p&gt;

&lt;p&gt;        /*$posts = $dm-&amp;gt;createQueryBuilder(&apos;BlogPost&apos;)&lt;br/&gt;
                        -&amp;gt;getQuery();*/&lt;/p&gt;

&lt;p&gt;        $post = $dm-&amp;gt;getRepository(&apos;BlogPost&apos;)-&amp;gt;find(&apos;4dd45739f563724c23000002&apos;);&lt;/p&gt;

&lt;p&gt;        Zend_Debug::dump($post);&lt;br/&gt;
        $comments = $post-&amp;gt;getComments();&lt;/p&gt;

&lt;p&gt;------------------------&lt;br/&gt;
In the documentation the example is&lt;br/&gt;
$post1-&amp;gt;setUser($user);&lt;br/&gt;
But the only working for me is:&lt;br/&gt;
$post-&amp;gt;setTitle = &apos;testtitle&apos;;&lt;/p&gt;

&lt;p&gt;Anyway, I can&#180;t get the Comments from the mongodb.&lt;br/&gt;
I always get this error.&lt;br/&gt;
Fatal error: Call to undefined method BlogPost::getComments()&lt;br/&gt;
This is a correct error message because BlogPost really dont have a getComments()&lt;br/&gt;
method. How do I get my Comments then?&lt;br/&gt;
Any help would be great.&lt;/p&gt;

&lt;p&gt;Greetings tronga&lt;/p&gt;</description>
                <environment>Zend Framework 1.11.6</environment>
            <key id="12647">MODM-144</key>
            <summary>Bi-Directional References Feature</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="tronga">Jan Gantzert</reporter>
                        <labels>
                    </labels>
                <created>Wed, 18 May 2011 23:49:19 +0000</created>
                <updated>Wed, 18 May 2011 23:49:19 +0000</updated>
                                    <version>1.0.0BETA3</version>
                                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[MODM-130] @ChangeTrackingPolicy notation is ignored in @MappedSuperclass</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-130</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;I am not sure if it&apos;s supposed to be that @MappedSuperclass document can define @ChangeTrackingPolicy for multiple documents but in fact it does not work.&lt;/p&gt;

&lt;p&gt;In other words in the case below:&lt;br/&gt;
===================================================&lt;/p&gt;

&lt;p&gt;/**&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;@MappedSuperclass&lt;/li&gt;
	&lt;li&gt;@InheritanceType(&quot;COLLECTION_PER_CLASS&quot;)&lt;/li&gt;
	&lt;li&gt;@ChangeTrackingPolicy(&quot;DEFERRED_EXPLICIT&quot;)&lt;br/&gt;
 */&lt;br/&gt;
abstract class MappedDocument&lt;br/&gt;
{&lt;br/&gt;
}&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;/**&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;@Document(collection=&quot;chart&quot;)&lt;br/&gt;
 */&lt;br/&gt;
class Chart extends MappedDocument&lt;br/&gt;
{&lt;br/&gt;
}&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;===================================================&lt;/p&gt;

&lt;p&gt;class Chart &lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;has InheritanceType = INHERITANCE_TYPE_COLLECTION_PER_CLASS which is expected&lt;/li&gt;
	&lt;li&gt;but  ChangeTrackingPolicy = CHANGETRACKING_DEFERRED_IMPLICIT (value by default) which is NOT expected.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;At the same time if to define ChangeTrackingPolicy in the Chart class instead of MappedDocument it works as expected.&lt;/p&gt;
</description>
                <environment>CentOS 5.5, PHP 5.3</environment>
            <key id="12443">MODM-130</key>
            <summary>@ChangeTrackingPolicy notation is ignored in @MappedSuperclass</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="vkaplich">Vitaliy Kaplich</reporter>
                        <labels>
                    </labels>
                <created>Wed, 2 Mar 2011 10:56:24 +0000</created>
                <updated>Wed, 2 Mar 2011 10:56:24 +0000</updated>
                                    <version>1.0.0BETA1</version>
                                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[MODM-127] Update queries : update() required ?</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-127</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;In the documentation exemples for update queries : &lt;br/&gt;
&lt;a href=&quot;http://www.doctrine-project.org/docs/mongodb_odm/1.0/en/reference/query-builder-api.html#update-queries&quot; class=&quot;external-link&quot;&gt;http://www.doctrine-project.org/docs/mongodb_odm/1.0/en/reference/query-builder-api.html#update-queries&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;it doesn&apos;t mention a update() function call any more in update queries.&lt;/p&gt;

&lt;p&gt;Did I miss something?&lt;/p&gt;
</description>
                <environment></environment>
            <key id="12414">MODM-127</key>
            <summary>Update queries : update() required ?</summary>
                <type id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/documentation.png">Documentation</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="billybob">Billy Bob</reporter>
                        <labels>
                    </labels>
                <created>Wed, 23 Feb 2011 00:04:26 +0000</created>
                <updated>Wed, 23 Feb 2011 00:04:26 +0000</updated>
                                    <version>1.0.0BETA2</version>
                                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[MODM-126] lessThanOrEq() renamed in lte()</title>
                <link>http://www.doctrine-project.org/jira/browse/MODM-126</link>
                <project id="10044" key="MODM">Doctrine MongoDB ODM</project>
                        <description>&lt;p&gt;The lessThanOrEq() function referenced in the documentation does not exist ay more, it was replaced by lte().&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.doctrine-project.org/docs/mongodb_odm/1.0/en/reference/query-builder-api.html&quot; class=&quot;external-link&quot;&gt;http://www.doctrine-project.org/docs/mongodb_odm/1.0/en/reference/query-builder-api.html&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
            <key id="12413">MODM-126</key>
            <summary>lessThanOrEq() renamed in lte()</summary>
                <type id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/documentation.png">Documentation</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jwage">Jonathan H. Wage</assignee>
                                <reporter username="billybob">Billy Bob</reporter>
                        <labels>
                    </labels>
                <created>Tue, 22 Feb 2011 23:27:07 +0000</created>
                <updated>Tue, 22 Feb 2011 23:27:07 +0000</updated>
                                    <version>1.0.0BETA2</version>
                                <fixVersion>1.0.0BETA2</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>
</channel>
</rss>