<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Wed Feb 07 21:21:37 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>[CDRIVER-4679] Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection</title>
                <link>https://jira.mongodb.org/browse/CDRIVER-4679</link>
                <project id="10030" key="CDRIVER">C Driver</project>
                    <description>&lt;h4&gt;&lt;a name=&quot;Update%3AResolution&quot;&gt;&lt;/a&gt;Update: Resolution&lt;/h4&gt;

&lt;p&gt;Reduced the scope of &lt;tt&gt;strerror_r&lt;/tt&gt; use to the Apple platform where &lt;tt&gt;strerror_l&lt;/tt&gt; is not yet available and deliberately opted to discard the return value to avoid dealing with complicated XSI-compliance detection. Prefer &lt;tt&gt;strerror_l&lt;/tt&gt; otherwise on Unix-like platforms as to-be-recommended by POSIX spec. See &lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/pull/1370&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;the PR description&lt;/a&gt; for more detail.&lt;/p&gt;
&lt;h4&gt;&lt;a name=&quot;Summary&quot;&gt;&lt;/a&gt;Summary&lt;/h4&gt;

&lt;p&gt;A user in &lt;a href=&quot;https://github.com/mongodb/mongo-php-driver/issues/1445&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;mongodb/mongo-php-driver#1445&lt;/a&gt; reported a build error compiling libbson (via the PHP driver) on Alpine Linux:&lt;/p&gt;
&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;/tmp/t/php-src/ext/mongodb/src/libmongoc/src/libbson/src/bson/bson-error.c:113:8: error: incompatible integer to pointer conversion assigning to &apos;char *&apos; from &apos;int&apos; [-Wint-conversion]&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;   ret = strerror_r (err_code, buf, buflen);&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;       ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;1 error generated.&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;
&lt;p&gt;According to the clang docs, &lt;tt&gt;-Wint-conversion&lt;/tt&gt; is an error by default. Since libbson is tested with clang, I think this has more to do with Alpine linux. Some further research lead me to &lt;a href=&quot;https://linux.die.net/man/3/strerror_r&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;strerror_r(3)&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;The XSI-compliant version of strerror_r() is provided if:&lt;/p&gt;
&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;(_POSIX_C_SOURCE &amp;gt;= 200112L || _XOPEN_SOURCE &amp;gt;= 600) &amp;amp;&amp;amp; ! _GNU_SOURCE&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;
&lt;p&gt;Otherwise, the GNU-specific version is provided.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Looking at &lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/blob/1.24.1/src/libbson/src/bson/bson-error.c#L112-L118&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;bson-error.c&lt;/a&gt;, libbson currently uses the following condition to check for GNU:&lt;/p&gt;
&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;defined(__GNUC__) &amp;amp;&amp;amp; defined(_GNU_SOURCE)&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;
&lt;p&gt;If that condition is not met, XSI is used by default.&lt;/p&gt;
&lt;h4&gt;&lt;a name=&quot;Environment&quot;&gt;&lt;/a&gt;Environment&lt;/h4&gt;

&lt;p&gt;User was compiling the PHP driver 1.16.1 with bundled libbson 1.24.1 using clang on Alpine Linux (versions unknown).&lt;/p&gt;

&lt;p&gt;The PHP driver was being compiled statically into PHP, which is atypical, but I don&apos;t think that&apos;s relevant.&lt;/p&gt;
&lt;h4&gt;&lt;a name=&quot;AdditionalBackground&quot;&gt;&lt;/a&gt;Additional Background&lt;/h4&gt;

&lt;p&gt;Some related discussions on &lt;tt&gt;strerror_r(3)&lt;/tt&gt; and Alpine:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://stackoverflow.com/q/41953104/162228&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://stackoverflow.com/q/41953104/162228&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;https://gitlab.alpinelinux.org/alpine/aports/-/issues/14147&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://gitlab.alpinelinux.org/alpine/aports/-/issues/14147&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
                <environment></environment>
        <key id="2390755">CDRIVER-4679</key>
            <summary>Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="10300" iconUrl="https://jira.mongodb.org/images/icons/priorities/medium.svg">Unknown</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="ezra.chung@mongodb.com">Ezra Chung</assignee>
                                    <reporter username="jmikola@mongodb.com">Jeremy Mikola</reporter>
                        <labels>
                    </labels>
                <created>Thu, 13 Jul 2023 13:52:20 +0000</created>
                <updated>Tue, 28 Nov 2023 16:28:44 +0000</updated>
                            <resolved>Mon, 24 Jul 2023 19:41:08 +0000</resolved>
                                                    <fixVersion>1.25.0</fixVersion>
                    <fixVersion>1.24.3</fixVersion>
                                    <component>libbson</component>
                                        <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="5614455" author="JIRAUSER1261413" created="Fri, 4 Aug 2023 19:10:13 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=jmikola%40mongodb.com&quot; class=&quot;user-hover&quot; rel=&quot;jmikola@mongodb.com&quot;&gt;jmikola@mongodb.com&lt;/a&gt; Done.&lt;/p&gt;</comment>
                            <comment id="5614438" author="jmikola@gmail.com" created="Fri, 4 Aug 2023 19:02:46 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=ezra.chung%40mongodb.com&quot; class=&quot;user-hover&quot; rel=&quot;ezra.chung@mongodb.com&quot;&gt;ezra.chung@mongodb.com&lt;/a&gt;: Would you like to rename this issue for changelog visibility reasons? Perhaps something to convey we&apos;re preferring &lt;tt&gt;strerror_l&lt;/tt&gt; for XSI, falling back to GNU &lt;tt&gt;strerror_r&lt;/tt&gt;, and erroring otherwise? The special Windows/Apple logic doesn&apos;t need to be mentioned IMO.&lt;/p&gt;</comment>
                            <comment id="5611825" author="xgen-internal-githook" created="Thu, 3 Aug 2023 21:34:16 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Ezra Chung&apos;, &apos;email&apos;: &apos;88335979+eramongodb@users.noreply.github.com&apos;, &apos;username&apos;: &apos;eramongodb&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-4679&quot; title=&quot;Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-4679&quot;&gt;&lt;del&gt;CDRIVER-4679&lt;/del&gt;&lt;/a&gt; Revert BSON_HAVE_XSI_STRERROR_R and use strerror_l instead (#1370)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;Revert commit ac436db8c1c0ee45a663a469e0783d50713e16e3.&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Depend on XSI-compliant strerror_l instead of strerror_r&lt;br/&gt;
Branch: r1.24&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/16cc4b3c9861a2f98f42d2a29aed93f3f044883d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/16cc4b3c9861a2f98f42d2a29aed93f3f044883d&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="5611818" author="xgen-internal-githook" created="Thu, 3 Aug 2023 21:32:35 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Ezra Chung&apos;, &apos;email&apos;: &apos;88335979+eramongodb@users.noreply.github.com&apos;, &apos;username&apos;: &apos;eramongodb&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-4679&quot; title=&quot;Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-4679&quot;&gt;&lt;del&gt;CDRIVER-4679&lt;/del&gt;&lt;/a&gt; Revert BSON_HAVE_XSI_STRERROR_R and use strerror_l instead (#1370)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;Revert commit ac436db8c1c0ee45a663a469e0783d50713e16e3.&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Depend on XSI-compliant strerror_l instead of strerror_r&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/d933a8c996ee0d266c0d5af6e47d577f35255826&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/d933a8c996ee0d266c0d5af6e47d577f35255826&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="5587731" author="xgen-internal-githook" created="Mon, 24 Jul 2023 20:08:17 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Ezra Chung&apos;, &apos;email&apos;: &apos;88335979+eramongodb@users.noreply.github.com&apos;, &apos;username&apos;: &apos;eramongodb&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-4679&quot; title=&quot;Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-4679&quot;&gt;&lt;del&gt;CDRIVER-4679&lt;/del&gt;&lt;/a&gt; Prefer XSI-compliant strerror_r when available (#1350)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-4679&quot; title=&quot;Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-4679&quot;&gt;&lt;del&gt;CDRIVER-4679&lt;/del&gt;&lt;/a&gt; Prefer XSI-compliant strerror_r when available&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Use CheckCSourceCompiles to test for XSI-compliant strerror_r&lt;br/&gt;
Branch: r1.24&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/85ce54bf4a71095b010abcb2e9e9d2b5b06c70be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/85ce54bf4a71095b010abcb2e9e9d2b5b06c70be&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="5587648" author="xgen-internal-githook" created="Mon, 24 Jul 2023 19:40:55 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Ezra Chung&apos;, &apos;email&apos;: &apos;88335979+eramongodb@users.noreply.github.com&apos;, &apos;username&apos;: &apos;eramongodb&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-4679&quot; title=&quot;Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-4679&quot;&gt;&lt;del&gt;CDRIVER-4679&lt;/del&gt;&lt;/a&gt; Prefer XSI-compliant strerror_r when available (#1350)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/CDRIVER-4679&quot; title=&quot;Prefer strerror_l instead of dealing with buggy XSI-compliant strerror_r detection&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CDRIVER-4679&quot;&gt;&lt;del&gt;CDRIVER-4679&lt;/del&gt;&lt;/a&gt; Prefer XSI-compliant strerror_r when available&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Use CheckCSourceCompiles to test for XSI-compliant strerror_r&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo-c-driver/commit/ac436db8c1c0ee45a663a469e0783d50713e16e3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo-c-driver/commit/ac436db8c1c0ee45a663a469e0783d50713e16e3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="5567096" author="jmikola@gmail.com" created="Fri, 14 Jul 2023 15:35:37 +0000"  >&lt;p&gt;Some further investigation by the user determined that &lt;a href=&quot;https://github.com/php/php-src/commit/067df263448ee26013cddee1065bc9c1f028bd23#diff-49473dca262eeab3b4a43002adb08b4db31020d190caaad1594b47f1d5daa810R268&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;php/php-src@067df26&lt;/a&gt; (PHP 8.2+) introduced &lt;tt&gt;-D_GNU_SOURCE&lt;/tt&gt; to PHP&apos;s build flags. That explains why the issue only started appearing in PHP 8.2+.&lt;/p&gt;

&lt;p&gt;I believe libbson still needs a patch to improve its detection of which &lt;tt&gt;strerror_r()&lt;/tt&gt; variant is being used.&lt;/p&gt;

&lt;p&gt;I also noted that PHP calls &lt;tt&gt;strerror_r()&lt;/tt&gt; once, but never works with its return value. That might explain why PHP itself never encountered a build error; however, there may still be a lingering bug there for the GNU version of the function, which I reported in &lt;a href=&quot;https://github.com/php/php-src/commit/067df263448ee26013cddee1065bc9c1f028bd23#commitcomment-121630134&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;this comment on the above commit&lt;/a&gt;.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                                                <inwardlinks description="is depended on by">
                                        <issuelink>
            <issuekey id="2398725">PHPC-2263</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="2510843">PHPC-2332</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="2510626">CDRIVER-4790</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="2409585">PHPC-2270</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                    <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|hr6jhq:w</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>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </customfields>
    </item>
</channel>
</rss>