<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to manage plugin/application updates in Upgrades and Patching forum</title>
    <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3530765#M9648</link>
    <description>&lt;P&gt;&amp;nbsp;I am also facing the same headache with the plugins and trying to work out the best way forward to manage these in and outside a family upgrade. Following this post in the hope that someone may have a great idea or a future update on this. Really feels like ServiceNow hasn't thought about the poor individuals managing the platforms.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Apr 2026 08:24:16 GMT</pubDate>
    <dc:creator>mhutton</dc:creator>
    <dc:date>2026-04-23T08:24:16Z</dc:date>
    <item>
      <title>How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3186729#M6712</link>
      <description>&lt;P&gt;Dear Community&lt;/P&gt;&lt;P&gt;We are struggling to find a proper way to manage plugin/applications updates. As you are aware plugin/applications are receiving outside upgrades and patches new versions that you can install. Frist of all when you look for updates for the plugins we see a difference in the new application manager:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-02-24 at 15.05.55.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/421626i9F31482E9EF15A8E/image-dimensions/603x324?v=v2" alt="Screenshot 2025-02-24 at 15.05.55.png" title="Screenshot 2025-02-24 at 15.05.55.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the old application manager:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-02-24 at 15.05.03.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/421627iA7CD9692D293CCB8/image-dimensions/526x247?v=v2" alt="Screenshot 2025-02-24 at 15.05.03.png" title="Screenshot 2025-02-24 at 15.05.03.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure why that is but therefore we stick to the old application manager. We really struggle how to manage this because of the following:&lt;/P&gt;&lt;P&gt;- We are not sure which of these plugins will be updated during a upgrade, during our last upgrade to Xanadu we could see 138 plugins where updated in the logs but it unclear in this overview which ones.&lt;/P&gt;&lt;P&gt;- It is nearly impossible to combine this with an upgrade, we received that request because during an upgrade all processes are being tested so it would be ideal to include these plugin upgrades there. Downside of this is that your upgrade time will be huge because you would need to manually upgrade all these plugins first so that why we don't really want to combine that with an upgrade.&lt;/P&gt;&lt;P&gt;- We have not found a way to easily export this overview so that you see the plugin name and the release notes, we now perform this as a manual action. We need this overview with the release notes to inform product owners about this so that they can use this information after installation to test it.&lt;/P&gt;&lt;P&gt;- We performed an update of all plugins a couple of months before an upgrade but after the upgrade we already have a new list of more than 100 plugins so it feels impossible to keep track of this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So this a bit of braindump on this topic, I would really love to hear feedback from the community how you are managing this process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;UPDATE:&lt;/P&gt;&lt;H3 id="Best-Approach:-CI/CD-Batch-Install-API-via-Background-Script"&gt;Best Approach: CI/CD Batch Install API via Background Script&lt;/H3&gt;&lt;P&gt;This is the community-accepted solution and avoids manual clicking entirely. Here's how it works:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 1 — Run this background script&lt;/STRONG&gt; in your instance after the family release upgrade. It queries the sys_store_apptable for all installed apps/plugins where the installed version differs from the latest version, builds a JSON payload, and hands you a URL + body to trigger a batch install:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var loadDemoData = false;
var prevName;
var appsArray = [];
var grSSA = new GlideRecord('sys_store_app');
grSSA.addEncodedQuery('install_dateISNOTEMPTY^hide_on_ui=false');
grSSA.orderBy('name');
grSSA.orderBy('version');
grSSA.query();
while (grSSA.next()) {
    var curName = grSSA.getValue('name');
    if (curName == prevName) { continue; }
    var installedVersion = grSSA.getValue('version');
    var latestVersion = grSSA.getValue('latest_version');
    if (latestVersion != installedVersion) {
        prevName = curName;
        appsArray.push({
            displayName: curName,
            id: grSSA.getUniqueValue(),
            load_demo_data: loadDemoData,
            type: "application",
            requested_version: latestVersion
        });
    }
}
var appsPackages = { packages: appsArray, name: 'Update Apps' };
var data = new global.JSON().encode(appsPackages);
var url = 'https://' + gs.getProperty('instance_name') + '.service-now.com/$restapi.do?ns=sn_cicd&amp;amp;service=CICD%20Batch%20Install%20API&amp;amp;version=latest';
gs.info('Open the following URL:\n\n' + url + '\n\nPaste this JSON as the Raw Request body:\n\n' + data);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 2 —&lt;/STRONG&gt; The script outputs a URL and JSON payload. Open the URL in a browser tab and paste the payload into the raw request body to trigger the batch install.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 3 —&lt;/STRONG&gt; Let it run overnight. It queues all updates and processes them sequentially without any further manual interaction.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 3 —&lt;/STRONG&gt; To monitor it you can check sys_progress_worker.list and filter on name “CICDBatchInstallService$CICDBatchInstallWorker”&lt;/P&gt;&lt;HR /&gt;&lt;H3 id="Important-things-to-know"&gt;Important things to know&lt;/H3&gt;&lt;P&gt;&lt;STRONG&gt;About the family upgrade itself:&lt;/STRONG&gt; When you do a family upgrade (e.g. moving from Xanadu to Yokohama), apps and plugins will "true-up" to a compatible version but this doesn't mean the &lt;EM&gt;latest&lt;/EM&gt; version. Individual product teams determine which version is aligned to a given family release. So you'll likely still have a batch of updates to run afterward, which is exactly what the script above handles. &lt;A class="" title="https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3186729" href="https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3186729" target="_blank" rel="noopener"&gt;ServiceNow Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Parent/child plugins:&lt;/STRONG&gt; If you update a parent plugin, child plugins get updated automatically. So your amount of plugins may actually be fewer independent operations than you think prioritize parent plugins first and watch the count drop. &lt;A class="" title="https://www.servicenow.com/community/upgrades-and-patching-forum/updating-outdated-plugins-in-servicenow/m-p/3137346" href="https://www.servicenow.com/community/upgrades-and-patching-forum/updating-outdated-plugins-in-servicenow/m-p/3137346" target="_blank" rel="noopener"&gt;ServiceNow Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Timing matters:&lt;/STRONG&gt; Plan the batch update to run overnight or over a weekend. It works, but it's not fast the system queues jobs one by one.&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 14:10:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3186729#M6712</guid>
      <dc:creator>Kevin Rol1</dc:creator>
      <dc:date>2026-05-22T14:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3187255#M6721</link>
      <description>&lt;P&gt;In terms of easing your pain, ServiceNow are aware of this and there are roadmap items to improve this experience. Yokohama introduces an upgrade workspace as a starting point which may aid in your visibility.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you do a family upgrade (i.e moving from Xanadu to Yokohama) apps and plugins will "true-up" to a compatible version. However, this doesn't mean the latest version of that app. Individual product teams determine which version is aligned to a product family release.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In terms of approach - focus on functionality your stakeholders desire. Those apps should be what you prioritise to upgrade (past that of the true-up version). An example would be SOW and Workflow Studio. The new features in those are often highly desirable and adopted on a quarterly basis&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 22:55:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3187255#M6721</guid>
      <dc:creator>Kieran Anson</dc:creator>
      <dc:date>2025-02-24T22:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3188113#M6724</link>
      <description>&lt;P&gt;Thanks Kieran this is good to know!&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 14:33:45 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3188113#M6724</guid>
      <dc:creator>KevinR704142142</dc:creator>
      <dc:date>2025-02-25T14:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3193384#M6775</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/431446"&gt;@Kieran Anson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have a Yokohama instance but we could not really find the mentioned "&lt;SPAN&gt;Yokohama introduces an upgrade workspace as a starting point which may aid in your visibility." can you provide more detailed information about this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Much appreciated,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kevin&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Mar 2025 08:49:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3193384#M6775</guid>
      <dc:creator>Kevin Rol1</dc:creator>
      <dc:date>2025-03-03T08:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3194297#M6782</link>
      <description>&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;Full name is Upgrade Management, it's part of the admin experience. It's not a workspace apologies. But is built on UI Builder.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.servicenow.com/docs/bundle/yokohama-platform-administration/page/administer/upgrade-management/concept/um-overview.html" target="_blank"&gt;https://www.servicenow.com/docs/bundle/yokohama-platform-administration/page/administer/upgrade-management/concept/um-overview.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Mar 2025 20:06:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3194297#M6782</guid>
      <dc:creator>Kieran Anson</dc:creator>
      <dc:date>2025-03-03T20:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3195332#M6789</link>
      <description>&lt;P&gt;Hi Kieran,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But how does this help with the issue I have with plugins this is really only for upgrade related topics there is nothing about plugins here:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-03-04 at 14.57.39.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/423836i0D1E3BF5F169798A/image-size/large?v=v2&amp;amp;px=999" alt="Screenshot 2025-03-04 at 14.57.39.png" title="Screenshot 2025-03-04 at 14.57.39.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2025 13:58:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3195332#M6789</guid>
      <dc:creator>Kevin Rol1</dc:creator>
      <dc:date>2025-03-04T13:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3199225#M6822</link>
      <description>&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;I was indicating that this module within the admin experience is part of the roadmap of SN enhancing our ability to manage upgrades. It may not have plugin management to the degree you wish as of yet.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2025 09:09:19 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3199225#M6822</guid>
      <dc:creator>Kieran Anson</dc:creator>
      <dc:date>2025-03-07T09:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3391525#M8393</link>
      <description>&lt;P&gt;Experiencing the same administrative issue. Curious if there have been any further updates or if others have implemented a process solution to track.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 12:34:56 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3391525#M8393</guid>
      <dc:creator>Courtney Yurt_</dc:creator>
      <dc:date>2025-09-26T12:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3391556#M8396</link>
      <description>&lt;P&gt;No unfortunately not, still waiting for the golden answer&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 12:53:25 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3391556#M8396</guid>
      <dc:creator>Kevin Rol1</dc:creator>
      <dc:date>2025-09-26T12:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3463116#M9074</link>
      <description>&lt;P&gt;Hi guys, I met the same issue with Yokohama. Joining you in this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2026 09:03:12 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3463116#M9074</guid>
      <dc:creator>FotinaG</dc:creator>
      <dc:date>2026-01-08T09:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3464263#M9089</link>
      <description>&lt;P&gt;Be aware that with a recent update to Store, ServiceNow's Application Manager in the instance started showing updates for apps where the version is NOT compatible with your current version (example, you are on Yokohama and still App Manager shows update which is compatible with Zurich). This creates a mess in the Application Manager "Updates" section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have noticed just today is that it changed again and it might be fixed, as today I stopped seeing there the "Zurich" only versions. SN Support told me that this is fixed in Zurich release already, but it might rather be that the fix comes also from the Store itself.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2026 11:58:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3464263#M9089</guid>
      <dc:creator>Dominik Simunek</dc:creator>
      <dc:date>2026-01-09T11:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3467251#M9139</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/433826"&gt;@Kevin Rol1&lt;/a&gt;&amp;nbsp;Hi Kevin.&amp;nbsp; I came across your post.&amp;nbsp; I too, am having a difficult time managing plugin updates and have some of the same concerns as you initially stated.&amp;nbsp; I'm curious to know if found a solution?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 17:56:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3467251#M9139</guid>
      <dc:creator>RodHill11</dc:creator>
      <dc:date>2026-01-14T17:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3514186#M9499</link>
      <description>&lt;P&gt;Yes, same here.&amp;nbsp; Following the conversation to see what options are available because I was asked to start tracking SPM plug-ins every quarter.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2026 07:15:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3514186#M9499</guid>
      <dc:creator>Ann43</dc:creator>
      <dc:date>2026-03-25T07:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage plugin/application updates</title>
      <link>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3530765#M9648</link>
      <description>&lt;P&gt;&amp;nbsp;I am also facing the same headache with the plugins and trying to work out the best way forward to manage these in and outside a family upgrade. Following this post in the hope that someone may have a great idea or a future update on this. Really feels like ServiceNow hasn't thought about the poor individuals managing the platforms.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 08:24:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/upgrades-and-patching-forum/how-to-manage-plugin-application-updates/m-p/3530765#M9648</guid>
      <dc:creator>mhutton</dc:creator>
      <dc:date>2026-04-23T08:24:16Z</dc:date>
    </item>
  </channel>
</rss>

