<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 08:54:10 UTC 2024

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 append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[JAVA-1258] Introduce closed type system for BSON documents</title>
                <link>https://jira.mongodb.org/browse/JAVA-1258</link>
                <project id="10006" key="JAVA">Java Driver</project>
                    <description>&lt;p&gt;Introduce a closed type system for BSON documents and use it pervasively in the core of the driver, in preference to the open-typed Document class that is used now.  &lt;/p&gt;

&lt;p&gt;Introduce a BsonDocumentReader implementation of BsonReader and a BsonDocument implementation of BsonWriter.  This allows for easy conversion from any type with a Codec to and from a BsonDocument.  &lt;/p&gt;

&lt;p&gt;This also means that clients of the core driver don&apos;t have to pass a separate encoder/decoder to operations that take or receive BsonDocument instances, as operations can just use the built-in BsonDocument Codec (which does not need to be extensible since the type system is closed)&lt;/p&gt;

&lt;p&gt;To handle the case where a client wants to pass an object to an operation without paying the cost of converting to BsonDocument, provide a BsonDocumentWrapper sub-class of BsonDocument that is constructed with an instance of T and an Encoder&amp;lt;T&amp;gt;.  When the operation serializes it to the wire, it will just use that Encoder to do it.&lt;/p&gt;</description>
                <environment></environment>
        <key id="139184">JAVA-1258</key>
            <summary>Introduce closed type system for BSON documents</summary>
                <type id="2" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14711&amp;avatarType=issuetype">New Feature</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="jeff.yemin@mongodb.com">Jeffrey Yemin</assignee>
                                    <reporter username="jeff.yemin@mongodb.com">Jeffrey Yemin</reporter>
                        <labels>
                    </labels>
                <created>Thu, 29 May 2014 20:29:29 +0000</created>
                <updated>Tue, 31 Mar 2015 20:09:58 +0000</updated>
                            <resolved>Thu, 19 Jun 2014 19:42:15 +0000</resolved>
                                                    <fixVersion>3.0.0</fixVersion>
                                    <component>API</component>
                    <component>BSON</component>
                                        <votes>0</votes>
                                    <watches>1</watches>
                                                                                                                <comments>
                            <comment id="869481" author="jeff.yemin" created="Tue, 31 Mar 2015 20:09:58 +0000"  >&lt;p&gt;Closing all resolved 3.0.0 issues, as 3.0.0 has been tagged and released.&lt;/p&gt;</comment>
                            <comment id="817724" author="xgen-internal-githook" created="Fri, 30 Jan 2015 18:37:48 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Created BsonDocumentReader class that supports a BsonDocument as the source of a BSONReader.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/cb8f1eabe117c0503c0af6430ddb179136b88e09&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/cb8f1eabe117c0503c0af6430ddb179136b88e09&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="817723" author="xgen-internal-githook" created="Fri, 30 Jan 2015 18:37:47 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Changed BSONReader and BSONWriter to interfaces, and added AbstractBSONReader and AbstractBSONWriter.  Refactored AbstractBSONReader to pull more behavior up, to make it easier to write subclasses.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/0aaf4dcfa9b7a320fd5fc88ed4c8440d51432dbd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/0aaf4dcfa9b7a320fd5fc88ed4c8440d51432dbd&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="817722" author="xgen-internal-githook" created="Fri, 30 Jan 2015 18:37:46 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added BsonDocumentWriter, a BsonWriter whose sink is a BsonDocument&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/ced5b54f04bc108d06dd57dac0ae04970998477e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/ced5b54f04bc108d06dd57dac0ae04970998477e&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="817721" author="xgen-internal-githook" created="Fri, 30 Jan 2015 18:37:45 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added support for a closed type system for BSON, which among other things includes a type-safe BsonDocument class as well as a BsonDocumentCodec.  Introduce a BsonValue base class for all BSON types, and added ones that were missing, most notably BsonDocument, BsonArray, and the missing primitives like BsonInt32, BsonInt64, BsonBoolean, etc.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/6fb1830a3dd42997efc4ed8068ec267c20a247be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/6fb1830a3dd42997efc4ed8068ec267c20a247be&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="620323" author="xgen-internal-githook" created="Fri, 13 Jun 2014 16:08:40 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Created BsonDocumentReader class that supports a BsonDocument as the source of a BSONReader.&lt;br/&gt;
Branch: 3.0.x&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/cb8f1eabe117c0503c0af6430ddb179136b88e09&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/cb8f1eabe117c0503c0af6430ddb179136b88e09&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="620321" author="xgen-internal-githook" created="Fri, 13 Jun 2014 16:08:37 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Changed BSONReader and BSONWriter to interfaces, and added AbstractBSONReader and AbstractBSONWriter.  Refactored AbstractBSONReader to pull more behavior up, to make it easier to write subclasses.&lt;br/&gt;
Branch: 3.0.x&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/0aaf4dcfa9b7a320fd5fc88ed4c8440d51432dbd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/0aaf4dcfa9b7a320fd5fc88ed4c8440d51432dbd&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="620320" author="xgen-internal-githook" created="Fri, 13 Jun 2014 16:08:35 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added BsonDocumentWriter, a BsonWriter whose sink is a BsonDocument&lt;br/&gt;
Branch: 3.0.x&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/ced5b54f04bc108d06dd57dac0ae04970998477e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/ced5b54f04bc108d06dd57dac0ae04970998477e&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="620319" author="xgen-internal-githook" created="Fri, 13 Jun 2014 16:08:33 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added support for a closed type system for BSON, which among other things includes a type-safe BsonDocument class as well as a BsonDocumentCodec.  Introduce a BsonValue base class for all BSON types, and added ones that were missing, most notably BsonDocument, BsonArray, and the missing primitives like BsonInt32, BsonInt64, BsonBoolean, etc.&lt;br/&gt;
Branch: 3.0.x&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/6fb1830a3dd42997efc4ed8068ec267c20a247be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/6fb1830a3dd42997efc4ed8068ec267c20a247be&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="617613" author="xgen-internal-githook" created="Wed, 11 Jun 2014 20:15:25 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Created BsonDocumentReader class that supports a BsonDocument as the source of a BSONReader.&lt;br/&gt;
Branch: rozza/codecs-bson-rename-ontop&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/b3e964a6bef80dd90c527e43e1c0c7efc100c5cd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/b3e964a6bef80dd90c527e43e1c0c7efc100c5cd&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="617612" author="xgen-internal-githook" created="Wed, 11 Jun 2014 20:15:23 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Changed BSONReader and BSONWriter to interfaces, and added AbstractBSONReader and AbstractBSONWriter.  Refactored AbstractBSONReader to pull more behavior up, to make it easier to write subclasses.&lt;br/&gt;
Branch: rozza/codecs-bson-rename-ontop&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/3d6aa6fe5a1c5ec665adc9e10e4de13ba5b3d446&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/3d6aa6fe5a1c5ec665adc9e10e4de13ba5b3d446&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="617611" author="xgen-internal-githook" created="Wed, 11 Jun 2014 20:15:21 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added BsonDocumentWriter, a BsonWriter whose sink is a BsonDocument&lt;br/&gt;
Branch: rozza/codecs-bson-rename-ontop&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/edeb99a620eb26a41904ac12e446b269a96bf8dc&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/edeb99a620eb26a41904ac12e446b269a96bf8dc&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="617610" author="xgen-internal-githook" created="Wed, 11 Jun 2014 20:15:18 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added support for a closed type system for BSON, which among other things includes a type-safe BsonDocument class as well as a BsonDocumentCodec.  Introduce a BsonValue base class for all BSON types, and added ones that were missing, most notably BsonDocument, BsonArray, and the missing primitives like BsonInt32, BsonInt64, BsonBoolean, etc.&lt;br/&gt;
Branch: rozza/codecs-bson-rename-ontop&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/b97942ec7943924dc011112acc4657481c3904c2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/b97942ec7943924dc011112acc4657481c3904c2&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="610312" author="xgen-internal-githook" created="Thu, 5 Jun 2014 21:25:06 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Created BsonDocumentReader class that supports a BsonDocument as the source of a BSONReader.&lt;br/&gt;
Branch: codecs-bson-rename&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/50877b1dadfbd35e08dcfd57ee0a18d2e5fc8e66&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/50877b1dadfbd35e08dcfd57ee0a18d2e5fc8e66&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="610311" author="xgen-internal-githook" created="Thu, 5 Jun 2014 21:25:04 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Changed BSONReader and BSONWriter to interfaces, and added AbstractBSONReader and AbstractBSONWriter.  Refactored AbstractBSONReader to pull more behavior up, to make it easier to write subclasses.&lt;br/&gt;
Branch: codecs-bson-rename&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/2a10d35e9569a101addae51a88dd347edd42edc1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/2a10d35e9569a101addae51a88dd347edd42edc1&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="610310" author="xgen-internal-githook" created="Thu, 5 Jun 2014 21:25:01 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added BsonDocumentWriter, a BsonWriter whose sink is a BsonDocument&lt;br/&gt;
Branch: codecs-bson-rename&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/bfea940e23e35f4ae359c31ecea5d5e3559a723d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/bfea940e23e35f4ae359c31ecea5d5e3559a723d&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="610309" author="xgen-internal-githook" created="Thu, 5 Jun 2014 21:24:59 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jyemin&apos;, u&apos;name&apos;: u&apos;Jeff Yemin&apos;, u&apos;email&apos;: u&apos;jeff.yemin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/JAVA-1258&quot; title=&quot;Introduce closed type system for BSON documents&quot; class=&quot;issue-link&quot; data-issue-key=&quot;JAVA-1258&quot;&gt;&lt;del&gt;JAVA-1258&lt;/del&gt;&lt;/a&gt;: Added support for a closed type system for BSON, which among other things includes a type-safe BsonDocument class as well as a BsonDocumentCodec.  Introduce a BsonValue base class for all BSON types, and added ones that were missing, most notably BsonDocument, BsonArray, and the missing primitives like BsonInt32, BsonInt64, BsonBoolean, etc.&lt;br/&gt;
Branch: codecs-bson-rename&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-java-driver/commit/2ddbbd0450ca4a46200d75eda36c4aa99d2551d9&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-java-driver/commit/2ddbbd0450ca4a46200d75eda36c4aa99d2551d9&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10012"><![CDATA[Major Change]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hrg9ev:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>8430</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="202">Sprint 4 - June 16 - July 3</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </customfields>
    </item>
</channel>
</rss>