<!-- 
RSS generated by JIRA (1001.0.0-SNAPSHOT#100246-sha1:7a5c50119eb0633d306e14180817ddef5e80c75d) at Thu Feb 08 23:31:27 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 add field=key&field=summary to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>FOLIO Jira</title>
    <link>https://folio-org.atlassian.net</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>1001.0.0-SNAPSHOT</version>
        <build-number>100246</build-number>
        <build-date>07-02-2024</build-date>
    </build-info>

<item>
            <title>[FOLIO-3876] Poppy 2023 R2 - BREAKING upgrade react to v18</title>
                <link>https://folio-org.atlassian.net/browse/FOLIO-3876</link>
                <project id="10290" key="FOLIO">FOLIO</project>
                    <description>&lt;p&gt;&lt;b&gt;Summary:&lt;/b&gt; Upgrade react to v18, including tests, test infrastructure (in the case of BTOG) and possible updates to component code. THIS IS A BREAKING CHANGE.&#160;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Details:&lt;/b&gt; Update react and its related packages in &lt;tt&gt;package.json&lt;/tt&gt; with the commands such as the following:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
yarn add -D react@^18.2.0 react-dom@^18.2.0 @folio/stripes-cli@^3.0.0 @folio/eslint-config-stripes@^7.0.0
yarn add -P react@^18.2.0 react-dom@^18.2.0 @folio/stripes@^9.0.0
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Updating the lower range of a peer-dependency is a breaking change, so &lt;b&gt;you must increment your package-version to its next major version&lt;/b&gt; (e.g. if the current version is &lt;tt&gt;7.1.0&lt;/tt&gt; then update to &lt;tt&gt;8.0.0&lt;/tt&gt;; if the current version is &lt;tt&gt;6.0.0&lt;/tt&gt;&#160;then update to &lt;tt&gt;7.0.0&lt;/tt&gt;). You may need to update individual &lt;tt&gt;@folio/stripes-*&lt;/tt&gt; packages as well. The versions that correspond to &lt;tt&gt;@folio/stripes v9.0.0&lt;/tt&gt; are:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&lt;span class=&quot;code-quote&quot;&gt;&quot;@folio/stripes-components&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;~12.0.0&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;@folio/stripes-connect&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;~9.0.0&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;@folio/stripes-core&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;~10.0.0&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;@folio/stripes-&lt;span class=&quot;code-keyword&quot;&gt;final&lt;/span&gt;-form&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;~8.0.0&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;@folio/stripes-form&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;~9.0.0&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;@folio/stripes-smart-components&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;~9.0.0&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;@folio/stripes-util&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;~6.0.0&quot;&lt;/span&gt;,&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;If you use Jest/RTL:&lt;/b&gt;&#160;A good option is to depend on and import from &lt;a href=&quot;https://github.com/folio-org/jest-config-stripes&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;jest-config-stripes&lt;/a&gt; v2 to leverage centralized configuration and dependencies (&lt;a href=&quot;https://github.com/folio-org/stripes-core/pull/1330&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;example PR&lt;/a&gt;). Although this involves changing the import paths in all your tests, the following code-mod will fix up &lt;tt&gt;@testing-library&lt;/tt&gt; imports within your &lt;tt&gt;./src&lt;/tt&gt; directory:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
grep -rl testing-library ./src | xargs perl -pi -e &lt;span class=&quot;code-quote&quot;&gt;&apos;s/\@testing\-library/\@folio\/jest-config-stripes\/testing-library/g&apos;&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Alternatively, if you want to continue to maintain the infrastructure yourself, the versions that correspond to react v18 are:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&lt;span class=&quot;code-quote&quot;&gt;&quot;@jest/globals&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;^29.6.1&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;@testing-library/dom&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;^9.3.1&quot;&lt;/span&gt;, 
&lt;span class=&quot;code-quote&quot;&gt;&quot;@testing-library/react&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;^14.0.0&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;babel-jest&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;^29.6.1&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;jest&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;^29.6.1&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;jest-environment-jsdom&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;^29.6.1&quot;&lt;/span&gt;,
&lt;span class=&quot;code-quote&quot;&gt;&quot;jest-junit&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;^16.0.0&quot;&lt;/span&gt;,
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Note that some functions have changed/moved (e.g. waitFor), and the functionality of &lt;tt&gt;@testing-library/react-hooks&lt;/tt&gt; has been&#160;folded directly into &lt;tt&gt;@testing-library/react&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;If you still use BTOG:&lt;/b&gt; note that &lt;tt&gt;@bigtest/react&lt;/tt&gt; is not compatible with react v18. If your test helpers import from stripes-core&apos;s setup-application, they should continue to work when you update stripes-core to v10; otherwise you will have to make some adjustments to mount components and visit URLs (&lt;a href=&quot;https://github.com/folio-org/stripes-core/pull/1324&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;example PR&lt;/a&gt;).&lt;/p&gt;</description>
                <environment></environment>
        <key id="82528">FOLIO-3876</key>
            <summary>Poppy 2023 R2 - BREAKING upgrade react to v18</summary>
                <type id="10000" iconUrl="https://folio-org.atlassian.net/images/icons/issuetypes/epic.svg">Epic</type>
                                            <priority id="10005" iconUrl="https://dev.folio.org/assets/jira-priority/tbd.svg">TBD</priority>
                        <status id="6" iconUrl="https://folio-org.atlassian.net/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="green"/>
                                    <resolution id="10003">Done</resolution>
                                                        <assignee accountid="-1">Unassigned</assignee>
                                                                <reporter accountid="615afd1cd9820f0070a09ef0">Zak Burke</reporter>
                                    <labels>
                    </labels>
                <created>Mon, 26 Jun 2023 13:44:45 +0000</created>
                <updated>Thu, 30 Nov 2023 16:43:22 +0000</updated>
                            <resolved>Wed, 25 Oct 2023 08:52:10 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                <comments>
                                                            <comment id="196292" author="5af5e627525ba96b58654f12" created="Fri, 28 Jul 2023 11:53:49 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt;&#160; Just to confirm - does this work need to be done in Poppy, or can it wait until Quesnelia?&lt;/p&gt;</comment>
                                                            <comment id="196293" author="615afd1cd9820f0070a09ef0" created="Fri, 28 Jul 2023 12:57:27 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5af5e627525ba96b58654f12&quot; class=&quot;user-hover&quot; rel=&quot;5af5e627525ba96b58654f12&quot; data-account-id=&quot;5af5e627525ba96b58654f12&quot; accountid=&quot;5af5e627525ba96b58654f12&quot; rel=&quot;noreferrer&quot;&gt;Ann-Marie Breaux&lt;/a&gt;, this is required for Poppy. We&apos;ve been talking about it for a while and posted to Slack#stripes-updates about the plan back on June 13 so hopefully teams were already anticipating it.&#160;&lt;/p&gt;</comment>
                                                            <comment id="196294" author="712020:01a529b3-76ce-4980-a5f7-b606ed86635e" created="Tue, 15 Aug 2023 07:46:52 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt;, I was wondering if you could provide a bit more insight into the reasons behind changing the import paths. From my perspective, things seem to be functioning smoothly without altering the import paths.&lt;/p&gt;</comment>
                                                            <comment id="196295" author="615afd1cd9820f0070a09ef0" created="Wed, 16 Aug 2023 18:18:45 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=712020%3A01a529b3-76ce-4980-a5f7-b606ed86635e&quot; class=&quot;user-hover&quot; rel=&quot;712020:01a529b3-76ce-4980-a5f7-b606ed86635e&quot; data-account-id=&quot;712020:01a529b3-76ce-4980-a5f7-b606ed86635e&quot; accountid=&quot;712020:01a529b3-76ce-4980-a5f7-b606ed86635e&quot; rel=&quot;noreferrer&quot;&gt;Tino Ryll&lt;/a&gt;, you&apos;re correct that things will continue &quot;functioning smoothly without altering the import paths&quot; but &lt;tt&gt;yarn lint&lt;/tt&gt; should complain loudly because those import paths won&apos;t match up with the packages listed in deps and dev-deps. Without changing the paths, you&apos;re directly importing a package that is only transitively imported via dependencies. &lt;/p&gt;

&lt;p&gt;Imagine, for example, that instead of directly depending on lodash, you figured, &quot;Hey, &lt;a href=&quot;https://github.com/redux-form/redux-form/blob/88866f08120c1297daf54a5b887b90708e7f35e9/package.json&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;redux-form&lt;/a&gt; already depends on it so I can just use it. That&apos;ll work now, but if redux-form refactored to avoid lodash then you&apos;d suddenly be out of luck. &lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10003">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="44198">ERM-2994</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44216">ERM-2995</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44215">ERM-2996</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44217">ERM-2997</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44218">ERM-2998</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="73233">UICR-187</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="36130">UILDP-102</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77733">UIPCIR-55</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77970">UIPFIMP-59</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="68189">UIBULKED-337</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="50760">UIDATIMP-1485</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="46432">UIIN-2508</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44188">ERM-2984</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44190">ERM-2985</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44193">ERM-2986</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44191">ERM-2987</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44192">ERM-2988</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44194">ERM-2989</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44195">ERM-2990</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44196">ERM-2991</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78594">SI-27</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78595">SI-28</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78596">SI-29</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="37328">STDTC-92</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38852">UIAC-69</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="70307">UICAL-270</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="68829">UICHKIN-388</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="65480">UICHKOUT-860</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59228">UICIRC-966</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="75854">UICIRCLOG-129</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73862">UICONSET-138</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77024">UID-131</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="69730">UIDEXP-332</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="52157">UIEH-1384</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="70026">UIEUS-337</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38032">UIEXPMGR-93</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="66319">UIF-470</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="39949">UIGS-18</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="72129">UIINREACH-227</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="70449">UIMARCAUTH-300</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77395">UIMPROF-83</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="37882">UINOTES-146</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="30881">UINV-493</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="34178">UIOA-216</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38593">UIOAIPMH-69</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="25585">UIOR-1134</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="31980">UIORGS-377</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78484">UIPBEX-51</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="37095">UIPER-115</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77848">UIPFAUTH-69</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78865">UIPFCONT-33</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="79122">UIPFF-15</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="36285">UIPFI-121</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="39776">UIPFINT-35</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78716">UIPFO-40</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78404">UIPFPAT-55</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78350">UIPFPOL-58</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38451">UIPFU-70</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78920">UIPFUDP-30</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77285">UIPQB-43</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="64527">UIQM-532</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="33743">UIREC-280</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="26478">UIREQ-998</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="37692">UIRS-102</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73701">UISACQCOMP-157</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77112">UISAUTCOMP-62</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="39280">UISER-32</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78679">UISP-46</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77932">UITAG-70</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="71273">UITEN-254</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44151">UIU-2921</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10000" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummarycf">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10057" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Development Team</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10168"><![CDATA[None]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10011" key="com.pyxis.greenhopper.jira:gh-epic-label">
                        <customfieldname>Epic Name</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>react 18</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10063" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>PO Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10019" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i07e57:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10046" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Release</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10076"><![CDATA[Poppy (R2 2023)]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10020" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10024" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>[CHART] Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 28 Jul 2023 11:53:49 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10025" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>[CHART] Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>