<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Wed Feb 07 22:37: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>[COMPASS-4694] Export NumberLong Doesn&apos;t Work Properly</title>
                <link>https://jira.mongodb.org/browse/COMPASS-4694</link>
                <project id="13182" key="COMPASS">Compass </project>
                    <description>&lt;h3&gt;&lt;a name=&quot;ProblemDescription&quot;&gt;&lt;/a&gt;Problem Description&lt;/h3&gt;

&lt;p&gt;Community user reports that when we export document that contains NumberLong fields, in the exported JSON file the type is wrong.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;StepstoReproduce&quot;&gt;&lt;/a&gt;Steps to Reproduce&lt;/h3&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Create a new collection export_test&lt;/li&gt;
	&lt;li&gt;Insert a document {_id: ObjectId(&quot;6045a072e208592596c96009&quot;), long: NumberLong(&quot;1234567890000&quot;)}&lt;/li&gt;
	&lt;li&gt;Export export_test to JSON using the Compass export function&lt;/li&gt;
&lt;/ul&gt;


&lt;h3&gt;&lt;a name=&quot;ExpectedResults&quot;&gt;&lt;/a&gt;Expected Results&lt;/h3&gt;
&lt;p&gt;[{&lt;br/&gt;
  &quot;_id&quot;: &lt;/p&gt;
{
    &quot;$oid&quot;: &quot;6045a072e208592596c96009&quot;
  }
&lt;p&gt;,&lt;br/&gt;
  &quot;long&quot;: &lt;/p&gt;
{
  	&quot;$numberlong&quot;: &quot;12345678900000&quot;
  }
&lt;p&gt;}]&lt;/p&gt;

&lt;h3&gt;&lt;a name=&quot;ActualResults&quot;&gt;&lt;/a&gt;Actual Results&lt;/h3&gt;
&lt;p&gt;[{&lt;br/&gt;
  &quot;_id&quot;: &lt;/p&gt;
{
    &quot;$oid&quot;: &quot;6045a072e208592596c96009&quot;
  }
&lt;p&gt;,&lt;br/&gt;
  &quot;long&quot;: 12345678900000&lt;br/&gt;
}]&lt;/p&gt;

&lt;h3&gt;&lt;a name=&quot;AdditionalNotes&quot;&gt;&lt;/a&gt;Additional Notes&lt;/h3&gt;</description>
                <environment></environment>
        <key id="1645202">COMPASS-4694</key>
            <summary>Export NumberLong Doesn&apos;t Work Properly</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</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="13201">Fixed</resolution>
                                        <assignee username="anna.henningsen@mongodb.com">Anna Henningsen</assignee>
                                    <reporter username="yaoxing.zhang@mongodb.com">Yaoxing Zhang</reporter>
                        <labels>
                    </labels>
                <created>Wed, 10 Mar 2021 06:03:09 +0000</created>
                <updated>Sun, 29 Oct 2023 02:39:57 +0000</updated>
                            <resolved>Tue, 12 Apr 2022 15:17:59 +0000</resolved>
                                    <version>1.26.0</version>
                                    <fixVersion>1.31.2</fixVersion>
                                    <component>Import/Export</component>
                        <due></due>
                            <votes>1</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="4490617" author="xgen-internal-githook" created="Tue, 19 Apr 2022 12:25:48 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5519&quot; title=&quot;Update collection header styles and components&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5519&quot;&gt;&lt;del&gt;COMPASS-5519&lt;/del&gt;&lt;/a&gt;-update-collection-header-styles&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4490494" author="xgen-internal-githook" created="Tue, 19 Apr 2022 11:37:50 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: clustered-collections&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4482665" author="xgen-internal-githook" created="Thu, 14 Apr 2022 10:18:06 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5669&quot; title=&quot;Run Aggregation: display results paginated&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5669&quot;&gt;&lt;del&gt;COMPASS-5669&lt;/del&gt;&lt;/a&gt;-aggregate-results&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4482605" author="xgen-internal-githook" created="Thu, 14 Apr 2022 09:24:03 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: remove-metrics&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4480864" author="xgen-internal-githook" created="Wed, 13 Apr 2022 17:10:14 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5671&quot; title=&quot;Update performance tab error banner in Compass to leafygreen&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5671&quot;&gt;&lt;del&gt;COMPASS-5671&lt;/del&gt;&lt;/a&gt;-update-error-banners-to-lg&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4480701" author="xgen-internal-githook" created="Wed, 13 Apr 2022 16:35:31 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5543&quot; title=&quot;Toolbar: Add export button to the new Aggregations toolbar&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5543&quot;&gt;&lt;del&gt;COMPASS-5543&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4478513" author="xgen-internal-githook" created="Tue, 12 Apr 2022 21:11:37 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: 5717-dev&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4478014" author="xgen-internal-githook" created="Tue, 12 Apr 2022 18:25:35 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: 1.31-releases&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4477612" author="xgen-internal-githook" created="Tue, 12 Apr 2022 16:25:58 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5610&quot; title=&quot;Move maxTimeMS to More options&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5610&quot;&gt;&lt;del&gt;COMPASS-5610&lt;/del&gt;&lt;/a&gt;-move-maxtime-ms&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4477478" author="xgen-internal-githook" created="Tue, 12 Apr 2022 15:55:23 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: compass-5655-replace-react-dnd&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4477271" author="xgen-internal-githook" created="Tue, 12 Apr 2022 15:16:24 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode (#2971)&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: main&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/47e5bfae7ee7b3424901c01bf66da21a0a9096e4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4473490" author="xgen-internal-githook" created="Mon, 11 Apr 2022 17:11:44 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Anna Henningsen&apos;, &apos;email&apos;: &apos;anna@addaleax.net&apos;, &apos;username&apos;: &apos;addaleax&apos;}
&lt;p&gt;Message: fix: prefer half-relaxed EJSON mode&lt;/p&gt;

&lt;p&gt;Fix various EJSON handling bugs by aligning our EJSON handling&lt;br/&gt;
a bit more closely. This fixes regressions introduced by me&lt;br/&gt;
in e654e1d63977 (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5710&quot; title=&quot;Inserting documents replaces Int64 with Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5710&quot;&gt;&lt;del&gt;COMPASS-5710&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-5711&quot; title=&quot;JSON editor displays and edits Int64 as Int32&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-5711&quot;&gt;&lt;del&gt;COMPASS-5711&lt;/del&gt;&lt;/a&gt; aka&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/issues/2960&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/issues/2960&lt;/a&gt;) and another&lt;br/&gt;
long-standing export bug (&lt;a href=&quot;https://jira.mongodb.org/browse/COMPASS-4694&quot; title=&quot;Export NumberLong Doesn&amp;#39;t Work Properly&quot; class=&quot;issue-link&quot; data-issue-key=&quot;COMPASS-4694&quot;&gt;&lt;del&gt;COMPASS-4694&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Specifically, use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` when parsing values&lt;br/&gt;
into `HadronDocument`, and use `&lt;/p&gt;
{ relaxed: false }
&lt;p&gt;` but&lt;br/&gt;
undo the strict conversion for `$numberInt` and `$numberDouble`.&lt;br/&gt;
This is a mode that we may eventually want to upstream&lt;br/&gt;
into the Node.js driver&#8217;s `bson` package.&lt;br/&gt;
Branch: ejson-fixes&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb-js/compass/commit/f7e519d8964297a4223ba6b1e8d80671a7923d8c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb-js/compass/commit/f7e519d8964297a4223ba6b1e8d80671a7923d8c&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                            <outwardlinks description="depends on">
                                        <issuelink>
            <issuekey id="1991257">NODE-4044</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>12.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Thu, 24 Feb 2022 11:29:32 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        1 year, 42 weeks, 1 day ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[<s><a href='https://jira.mongodb.org/browse/NODE-4044'>NODE-4044</a></s>]]></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_10257" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Documentation Changes</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11861"><![CDATA[Not Needed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>luke.bonanomi@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            1 year, 42 weeks, 1 day ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>anna.henningsen@mongodb.com</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>yaoxing.zhang@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hyyua7:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hyitbb:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="6016">Iteration Yonkers</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hyygjb:</customfieldvalue>

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