{"id":106836,"date":"2021-09-28T17:13:00","date_gmt":"2021-09-28T08:13:00","guid":{"rendered":"https:\/\/support.questetra.com\/developer-blog\/nashorn-deprecated\/"},"modified":"2026-07-02T16:52:51","modified_gmt":"2026-07-02T07:52:51","slug":"nashorn-deprecated","status":"publish","type":"post","link":"https:\/\/support.questetra.com\/en\/developer-blog\/nashorn-deprecated\/","title":{"rendered":"Notice Concerning Deprecation of Nashorn (April 2022)"},"content":{"rendered":"\n<p class=\"has-border-background-color has-background wp-block-paragraph\">2021-05-25\uff1aPublished<br>\n2021-09-28\uff1aThe schedule for discontinuation has been postponed to April 2022 from October 2021. Appended &#8220;<a href=\"#retirement\">The Schedule for Nashorn Discontinuation<\/a>.&#8221;<\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-default\"\/>\n\n\n\n<p class=\"wp-block-paragraph\">There are two types of automatic Steps in Questetra BPM Suite, which are:  [<a href=\"https:\/\/support.questetra.com\/en\/bpmn-icons\/script-task\/\">Script Task<\/a>] where you can define your own processing by writing ECMAScript codes, and [Service Task (Add-on)] which you can add to your workflow platform by importing (available for Professional Edition).<br>(For [Service Task (Add-on)], there are <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360010635012\">Service Task Definitions published on the Questetra site<\/a> and ones to be created by users.)<gwmw style=\"display:none;\"><\/gwmw><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As of May 2021, &#8220;Nashorn&#8221; is available in [Script Task] and [Service Task (Add-on)] as a script engine, but it is going to be discontinued in the new version <s>13.2 scheduled to be released in October 2021<\/s> 14.0 scheduled to be released in April 2022.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Therefore, if you are using Nashorn as the script engine in [Script Task] or [Service Task (Add-on)], please proceed with the following measures by September 30.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><s>(Regarding the Rhino script engine, it is going to be discontinued with the new version 13.1 scheduled to be released in July 2021, so <a href=\"https:\/\/support.questetra.com\/en\/developer-blog\/rhino-deprecated\/\">please correspond by June 30th<\/a>.)<\/s><\/p>\n\n\n\n<h3 id=\"retirement\" class=\"wp-block-heading\">The Schedule for Nashorn Discontinuation<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>January 2022 (TRA: Ver. 13.3)\n<ul class=\"wp-block-list\">\n<li>If there is a Step in which Nashorn is used in a Workflow App, an App Setting Error (workflow app definition error) will occur\n<ul class=\"wp-block-list\">\n<li>If you want to [Release] a new version of the App, the App Setting Error must be resolved<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>It does not affect the running of the Workflow App (Case execution)\n<ul class=\"wp-block-list\">\n<li>In the Workflow App that has already been released, the Case is executed by the script engine Nashorn<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>April 2022 (TBA: Ver. 14.0)\n<ul class=\"wp-block-list\">\n<li>Script engine Nashorn will be completely discontinued<\/li>\n\n\n\n<li>Script Tasks\n<ul class=\"wp-block-list\">\n<li>Nashorn will be forcibly changed to Graal JS<\/li>\n\n\n\n<li>Depending on the code content, the processing result may change or there may be a failure (error)<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Service Tasks (Add-on)\n<ul class=\"wp-block-list\">\n<li>No changes to the script engine<\/li>\n\n\n\n<li>When the Case is executed, the corresponding Step will result in a failure<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Script Task<gwmw style=\"display:none;\"><\/gwmw><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Changing Script Engine <gwmw style=\"display:none;\"><gwmw style=\"display:none;\"><\/gwmw><\/gwmw><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Switch from Nashorn to GraalJS<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Modifying Script (code)<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Scripts that used to work in Nashorn work the same in GraalJS in most cases.<br>However, in a script where implicit type conversion is performed the processing result may change, or an execution error may occur depending on the content of the written code. In such cases, you will need to modify the script to explicitly specify the type.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Operational check<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">After changing the settings, conduct [Debug Case execution] to check whether the App behaves as expected.<br>If the processing result is different or results in an error, modify the code.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Examples of code modifications<\/h4>\n\n\n\n<h5 class=\"wp-block-heading\">Data type conversion<\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">Whereas Nashorn performs implicit (automatic) type conversions, GraalJS requires explicit type conversions (casting).<br>For example, if there is a part where a numerical value is specified as an argument (unknowingly) in queryParam \/ formParam of <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471-R2300#HttpRequestWrapper\">HttpRequestWrapper<\/a>, an error will occur in GraalJS so it needs to be corrected.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>const limitNum = 1000;\n\nhttpClient.begin().queryParam(&quot;limit&quot;, limitNum); \/\/before\n\u2193\nhttpClient.begin().queryParam(&quot;limit&quot;, String(limitNum)); \/\/after<\/code><\/pre><\/div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"> Service Task (Add-on) -Service Task definition (Add-on XML)-<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Service Task Definition files (Add-on XML) have been registered in either of the following sections.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Service Task Definition unique to Apps\n<ul class=\"wp-block-list\">\n<li>Detail > \u25bcApp > Manage Add-on > Definition of service task<\/li>\n\n\n\n<li>App Administrator Authorization of the target App is required<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>App- shared Service Task Definition\n<ul class=\"wp-block-list\">\n<li>System settings > App-shared Add-on> Definition of service task<\/li>\n\n\n\n<li>System Administrator Authorization is required<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">In the registered Addon-XML file, if the value of &amp;lit;engine-type&gt; element is 1 (Nashorn), you need to modify it.<br>(In cases where &amp;lit;engine-type&gt; is 0 or undefined, you need to as well)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There are several ways to handle the Service Task definition, so please consider a suitable method for your environment.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">a. Replace with the standard Modeling Elements<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">If the function of the Service Task definition you are using is equivalent to a standard modelling element, we recommend that you replace it with that modelling element in the workflow diagram.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Standard Modelling elements: <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360007459612-R2010\">R2010: List of Modelling Elements<\/a>\n<ul class=\"wp-block-list\">\n<li>More standard items are being added all the time<\/li>\n\n\n\n<li>Some of the Service Task definitions which were previously published as add-ons have now become standard modelling elements<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">b. Replace with new Service Task Definitions<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">If a new version of a Service Task Definition is published, download the new Addon-XML file then update the existing add-on file, or register it separately and replace it in a workflow diagram. <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Service Task Definition: <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360010635012\">Add Automatic Processing Step (Addon)<\/a>\n<ul class=\"wp-block-list\">\n<li>In the retrieved Addon-XML file, confirm that the value of &lt;engine-type> element is 2 (GraalJS)<\/li>\n\n\n\n<li>Operational specifications of Service Task Definitions may be changed. Please check if it meets your purpose<\/li>\n\n\n\n<li>If you update the existing Service Task Definition file, it will affect the operation of the running App<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">c. Edit Service Task Definition (Add-on XML) to update<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">In the case of your own Service Task Definition, or the measures mentioned in the a\/b sections are not available, you should edit and update the Addon-XML file by yourself.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Related information: <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360002247772-M416\">M416: Create your own Auto-Step for Workfow App<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Changing Script Engines<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Change the value of <engine-type> element to 2 (GraalJs)<\/engine-type>\n<ul class=\"wp-block-list\">\n<li>&lt;engine-type>2&lt;\/engine-type><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Modifying Script (codes)<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">See &#8220;Modifying Scripts (Code)&#8221; in the &#8220;Script Tasks&#8221; section above for how to modify.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Changing &lt;last-modified&gt;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If <last-modified> (last modified date) has been configured, overwrite the value with a new one<\/last-modified>\n<ul class=\"wp-block-list\">\n<li>If the last update date is not new, a validation error will occur when registering the updated file to the Workflow App<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<p class=\"wp-block-paragraph\">We apologize for the inconvenience, but we would appreciate it if you could prepare for and deal with the deprecation of Nashorn.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>With the new version scheduled for release in April 2022, the script engine Nashorn will be discontinued. Please change the settings by March 31th.<\/p>\n","protected":false},"author":3,"featured_media":114405,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","_uag_custom_page_level_css":"","advanced_seo_description":"","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_seo_schema_type":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_wpcom_ai_launchpad_first_post":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"{title}\n\n{excerpt}\n\n{url}","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[296],"tags":[],"class_list":["post-106836","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developer-blog"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1","uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1",1200,675,false],"thumbnail":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=440%2C440&ssl=1",440,440,true],"medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=560%2C315&ssl=1",560,315,true],"medium_large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=768%2C432&ssl=1",768,432,true],"large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1024%2C576&ssl=1",1024,576,true],"1536x1536":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1",1200,675,true],"2048x2048":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-portrait-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=900%2C675&ssl=1",900,675,true],"newspack-article-block-square-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=800%2C600&ssl=1",800,600,true],"newspack-article-block-portrait-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=600%2C675&ssl=1",600,675,true],"newspack-article-block-square-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=800%2C675&ssl=1",800,675,true],"newspack-article-block-landscape-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=600%2C450&ssl=1",600,450,true],"newspack-article-block-portrait-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=450%2C600&ssl=1",450,600,true],"newspack-article-block-square-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=600%2C600&ssl=1",600,600,true],"newspack-article-block-landscape-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=400%2C300&ssl=1",400,300,true],"newspack-article-block-portrait-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=300%2C400&ssl=1",300,400,true],"newspack-article-block-square-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=400%2C400&ssl=1",400,400,true],"newspack-article-block-landscape-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=200%2C150&ssl=1",200,150,true],"newspack-article-block-portrait-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=150%2C200&ssl=1",150,200,true],"newspack-article-block-square-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?resize=200%2C200&ssl=1",200,200,true],"newspack-article-block-uncropped":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1",1200,675,true]},"uagb_author_info":{"display_name":"Hirotaka NISHI","author_link":"https:\/\/support.questetra.com\/en\/author\/nishiquestetra\/"},"uagb_comment_info":9,"uagb_excerpt":"With the new version scheduled for release in April 2022, the script engine Nashorn will be discontinued. Please change the settings by March 31th.","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9DiIh-rNa","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":97914,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/rhino-deprecated\/","url_meta":{"origin":106836,"position":0},"title":"Notice Concerning Deprecation of Rhino (June 2021)","author":"Hirotaka NISHI","date":"2021-01-12","format":false,"excerpt":"As of June 30, 2021, the script engine Rhino will be deprecated.","rel":"","context":"In &quot;Questetra Developers Blog&quot;","block_context":{"text":"Questetra Developers Blog","link":"https:\/\/support.questetra.com\/en\/category\/developer-blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":117336,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1321\/","url_meta":{"origin":106836,"position":1},"title":"2021-12-05 Ver.13.2.1 Improved Performance","author":"Hirotaka NISHI","date":"2021-11-29","format":false,"excerpt":"Improve performance in Process search and Open Chat","rel":"","context":"In &quot;Version Info&quot;","block_context":{"text":"Version Info","link":"https:\/\/support.questetra.com\/en\/category\/versions\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/11\/version-1321-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/11\/version-1321-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/11\/version-1321-fi-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/11\/version-1321-fi-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/11\/version-1321-fi-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":146699,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/graaljs-nashorn-compatible-deprecated\/","url_meta":{"origin":106836,"position":2},"title":"Correspondence for Script Engine GraalJS (Nashorn Compatible Mode) Abolition (April 2024)","author":"Peter Glover","date":"2023-08-15","format":false,"excerpt":"Script engine GraalJS (Nashorn Compatible Mode) will be discontinued in the new version to be updated in April 2024.","rel":"","context":"In &quot;Questetra Developers Blog&quot;","block_context":{"text":"Questetra Developers Blog","link":"https:\/\/support.questetra.com\/en\/category\/developer-blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/05\/GraalJS-Nashorn-Compatible-deprecated-202404-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/05\/GraalJS-Nashorn-Compatible-deprecated-202404-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/05\/GraalJS-Nashorn-Compatible-deprecated-202404-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/05\/GraalJS-Nashorn-Compatible-deprecated-202404-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/05\/GraalJS-Nashorn-Compatible-deprecated-202404-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":99135,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1230\/","url_meta":{"origin":106836,"position":3},"title":"v12.3 2021-01-17 Added Auto-step that Cooperates with kintone","author":"Hirotaka NISHI","date":"2020-12-28","format":false,"excerpt":"An auto-step that can be used as the standard in the workflow platform of Advanced or higher is added. Also, Apps in which \"Rhino\" is used in the Script Task results a setting error","rel":"","context":"In &quot;Version Info&quot;","block_context":{"text":"Version Info","link":"https:\/\/support.questetra.com\/en\/category\/versions\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/12\/version-1230-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/12\/version-1230-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/12\/version-1230-fi-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/12\/version-1230-fi-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/12\/version-1230-fi-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":120326,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1332\/","url_meta":{"origin":106836,"position":4},"title":"2022-04-10 Ver. 13.3.2 Correspondent to Spring4Shell","author":"Hirotaka NISHI","date":"2022-04-04","format":false,"excerpt":"Workflow platform server maintenance will be carried out","rel":"","context":"In &quot;Version Info&quot;","block_context":{"text":"Version Info","link":"https:\/\/support.questetra.com\/en\/category\/versions\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/04\/version-1332-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/04\/version-1332-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/04\/version-1332-fi-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/04\/version-1332-fi-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/04\/version-1332-fi-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":103200,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1232\/","url_meta":{"origin":106836,"position":5},"title":"Ver.12.3.2 2021-03-14 Improved Stability of Script Task","author":"Hirotaka NISHI","date":"2021-03-08","format":false,"excerpt":"Improved Stability of Script Task","rel":"","context":"In &quot;Version Info&quot;","block_context":{"text":"Version Info","link":"https:\/\/support.questetra.com\/en\/category\/versions\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/03\/version-1232-fi-en-1.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/03\/version-1232-fi-en-1.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/03\/version-1232-fi-en-1.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/03\/version-1232-fi-en-1.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/03\/version-1232-fi-en-1.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/106836","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/comments?post=106836"}],"version-history":[{"count":20,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/106836\/revisions"}],"predecessor-version":[{"id":188765,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/106836\/revisions\/188765"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media\/114405"}],"wp:attachment":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media?parent=106836"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/categories?post=106836"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/tags?post=106836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}