{"id":97914,"date":"2021-01-12T15:05:22","date_gmt":"2021-01-12T06:05:22","guid":{"rendered":"https:\/\/support.questetra.com\/developer-blog\/rhino-deprecated\/"},"modified":"2026-07-02T18:05:12","modified_gmt":"2026-07-02T09:05:12","slug":"rhino-deprecated","status":"publish","type":"post","link":"https:\/\/support.questetra.com\/en\/developer-blog\/rhino-deprecated\/","title":{"rendered":"Notice Concerning Deprecation of Rhino (June 2021)"},"content":{"rendered":"\n<p class=\"has-border-background-color has-background wp-block-paragraph\">2020-11-13: Published<br>\n2021-05-11: Appended &#8220;<a href=\"#retirement\">Reaction associated with the discontinuation of Rhino, and the behavior result<\/a>.&#8221; <br>Deleted suggestions of changing to Nashorn.<\/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.<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.)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As of November 2020, &#8220;GraalJS&#8221;, &#8220;Nashorn&#8221; and &#8220;Rhino&#8221; are available in [Script Task] and [Service Task (Add-on)] as a script engine, but regarding Rhino, it is going to be <strong>discontinued at new version 13.1 on July, 2021<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The following forms of retrieving and updating data that are available only in Rhino also will be deprecated.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Retrieving: data.get(&#8220;1&#8221;)<\/li>\n\n\n\n<li>Updating: retVal.put(&#8220;1&#8221;, foobar)<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Therefore, if you are using Rhino as the script engine in [Script Task]  or [Service Task (Add-on)], please proceed with the following measures by June 30.<\/p>\n\n\n\n<p class=\"has-very-light-gray-background-color has-background wp-block-paragraph\">The version 12.3 of Questetra BPM Suite upgraded on 18th Jan. 2021 will be configured to cause an error in Workflow Apps that use Rhino. \u200bAn error does not affect the operation of a running Workflow App, but you will need to fix the error when releasing a new version of the App. <\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 id=\"retirement\" class=\"wp-block-heading\">Reaction associated with the discontinuation of Rhino, and the behavior result (appended 2021-05-11)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">As of May 2021, if the latest version of a Workflow App includes a Step in which Rhino is used, a warning message (App definition error) will be displayed in the App details screen. Even if the warning is displayed, the script will work as before, without any run-time errors until Rhino support is completely discontinued. But it will behave as follows upon discontinuation.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Script Task<\/strong>\n<ul class=\"wp-block-list\">\n<li>Script engine Rhino will be forcibly switched to GraalJS<\/li>\n\n\n\n<li>Depending on the code written, the behavior may change as follows:\n<ul class=\"wp-block-list\">\n<li>The Script Step results in an error (Processing failure)<\/li>\n\n\n\n<li>The Script Step ends normally, but the processing result differs<\/li>\n\n\n\n<li>The processing result will be the same as before<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Service Task (Add-on)<\/strong>\n<ul class=\"wp-block-list\">\n<li>Script engine setting is not changed (do nothing)<\/li>\n\n\n\n<li>If the value of the &lt;engine-type> element is &#8220;0&#8221; or the element is undefined, the target Step will always result in a Processing failure<\/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<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Changing Script Engine <\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Switch from &#8220;Rhino&#8221; to &#8220;GraalJS<s>\/Nashorn<\/s>&#8221; <\/li>\n\n\n\n<li><s>&#8220;GraalJS&#8221; is recommended in the long term<\/s>\n<ul class=\"wp-block-list\">\n<li>Since Nashorn&#8221; is deprecated in JDK 11, Questetra determined <s>also plans<\/s> to discontinue <s>in the near future<\/s> on October 2021<\/li>\n<\/ul>\n<\/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\">If your script uses the deprecated formats for data retrieving\/updating or E4X for XML processing, you will need to modify your code.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Change formats for data retrieving\/updating\n<ul class=\"wp-block-list\">\n<li>Retrieve: data.get(&#8220;Data definition number&#8221;)<br>=> engine.findDataByNumber(&#8220;Data definition number&#8221;), engine.findDataByVarName(&#8220;field name&#8221;), etc.<\/li>\n\n\n\n<li>Updating: retVal.put(&#8220;Data definition number&#8221;, value in format according to data type)<br>=> engine.setDataByNumber(&#8220;Data definition number&#8221;, value in format according to data type), engine.setDataByVarName(&#8220;field name&#8221;, value in format according to data type), etc.<\/li>\n\n\n\n<li>The formats using &#8220;field name&#8221; are recommended<\/li>\n\n\n\n<li>Related information: <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574771-R2301\">R2301: Script Data Retrieving \/ Updating<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Change XML processing\n<ul class=\"wp-block-list\">\n<li>Changes to processing with XPath expressions instead of E4X<\/li>\n\n\n\n<li>Related information: <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471#XPathWrapper\">R2300: Java Classes available in Script Task<\/a>\n<ul class=\"wp-block-list\">\n<li>XPathWrapper<\/li>\n\n\n\n<li>XPathWrapper.NodeWrapper<\/li>\n\n\n\n<li>XPathWrapper.NodeListWrapper<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Operational check<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">\u200bAfter changing the settings, conduct [Debug execution] to check whether the App behaves as expected.<br>Even if you merely change the script engine, the operation may change depending on your code. \u200bIf the behavior changes, modify the code.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u200bExamples of code modifications<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a code example that reads the following XML in a String-type Data item and outputs the price\/quantity element of the type = \u201cApple\u201d.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>&lt;sales vendor=&quot;John&quot;&gt;\n  &lt;merchandise type=&quot;Orange&quot; price=&quot;4&quot; quantity=&quot;6&quot;\/&gt;\n  &lt;merchandise type=&quot;Apple&quot; price=&quot;3&quot; quantity=&quot;10&quot;\/&gt;\n  &lt;merchandise type=&quot;Peach&quot; price=&quot;5&quot; quantity=&quot;3&quot;\/&gt;\n&lt;\/sales&gt;<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Before (Rhino)<\/strong>: Formats of deprecated data retrieving\/updating, E4X is  used<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>var type = &quot;Apple&quot;;\nvar xmlText = data.get(&quot;2&quot;);\nvar xmlObj = new XML( xmlText );\n\nvar price = xmlObj.merchandise.(@type == type).@price;\nvar quantity = xmlObj.merchandise.(@type == type).@quantity;\n\nvar outStr = &quot;type: &quot; + type + &quot;\\n&quot; +\n             &quot;price: &quot; + price + &quot;\\n&quot; +\n             &quot;quantity: &quot; + quantity;\n\nretVal.put(&quot;0&quot;, outStr);<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>After (GraalJS)<\/strong>: Formats of data retrieving\/updating with Field name,  XPath expression is used<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>const type = &quot;Apple&quot;;\nconst xmlText = engine.findDataByVarName(&quot;q_xml_text&quot;);\n\nconst xpathType = &quot;\/sales\/merchandise[@type=&#39;&quot; + type + &quot;&#39;]&quot;\nconst node = xpath.findNode(xmlText, xpathType);\nconst price = xpath.findNodeText(node, &quot;@price&quot;);\nconst quantity = xpath.findNodeText(node, &quot;@quantity&quot;);\n\n\/\/ Retrieve texts directly\n\/\/ const price = xpath.findNodeText(xmlText, &quot;\/sales\/merchandise[@type=&#39;&quot; + type + &quot;&#39;]\/@price&quot;);\n\/\/ const quantity = xpath.findNodeText(xmlText, &quot;\/sales\/merchandise[@type=&#39;Apple&#39;]\/@quantity&quot;);\n\nlet outStr = &quot;type: &quot; + type + &quot;\\n&quot; +\n             &quot;price: &quot; + price + &quot;\\n&quot; +\n             &quot;quantity: &quot; + quantity;\n\nengine.setDataByVarName(&quot;q_xpath_output&quot;, outStr);\n<\/code><\/pre><\/div>\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 0 (Rhino), or if the element is undefined, you need to modify it.<\/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 the provided modelling element, we recommend that you replace it with a 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>Modelling elements are added to the standard one after another<\/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\">\u200bIf a new version of Service Task Definition is published, download a new Addon-XML file then update the existing add-on file, or register it separately and replace it in a workflow diagram.\n<\/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 <s>either &#8220;1&#8221; (Nashorn) or<\/s> &#8220;2&#8221; (GraalJS)<\/li>\n\n\n\n<li>\u200bOperational specifications of Service Task Definitions may be changed. \u200bPlease check if it meets your purpose<\/li>\n\n\n\n<li>\u200bIf 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 Workflow 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) <s>or 1 (Nashorn)<\/s><\/engine-type>\n<ul class=\"wp-block-list\">\n<li>&lt;engine-type>2&lt;\/engine-type><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>If &lt;engine-type> is not set, add it<\/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\">If your code in the &lt;script&gt; element uses an obsolete format for data retrieving \/updating or uses E4X for XML processing, you need to modify the code.<br>See &#8220;Modifying Scripts (Code)&#8221; in the &#8220;Script Tasks&#8221; section above for how to modify.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<p class=\"wp-block-paragraph\">We apologize for your inconvenience, but we would appreciate it if you could prepare for and deal with the deprecation of Rhino.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As of June 30, 2021, the script engine Rhino will be deprecated.<\/p>\n","protected":false},"author":3,"featured_media":97935,"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-97914","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\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1","uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1",1200,675,false],"thumbnail":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?resize=440%2C440&ssl=1",440,440,true],"medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=560%2C315&ssl=1",560,315,true],"medium_large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=768%2C432&ssl=1",768,432,true],"large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1024%2C576&ssl=1",1024,576,true],"1536x1536":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-en.png?fit=1200%2C675&ssl=1",1200,675,true],"2048x2048":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-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\/2020\/11\/Rhino-deprecated-202106-en.png?resize=200%2C200&ssl=1",200,200,true],"newspack-article-block-uncropped":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/11\/Rhino-deprecated-202106-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":35,"uagb_excerpt":"As of June 30, 2021, the script engine Rhino will be deprecated.","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9DiIh-ptg","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":103200,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1232\/","url_meta":{"origin":97914,"position":0},"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":[]},{"id":99135,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1230\/","url_meta":{"origin":97914,"position":1},"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":101029,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1231\/","url_meta":{"origin":97914,"position":2},"title":"Ver.12.3.1 2021-02-07 Updated the Java Library of API Client","author":"Hirotaka NISHI","date":"2021-02-01","format":false,"excerpt":"Updated API client library (Java)","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\/02\/version-1231-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\/02\/version-1231-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/version-1231-fi-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/version-1231-fi-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/version-1231-fi-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":106836,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/nashorn-deprecated\/","url_meta":{"origin":97914,"position":3},"title":"Notice Concerning Deprecation of Nashorn (April 2022)","author":"Hirotaka NISHI","date":"2021-09-28","format":false,"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.","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\/2021\/09\/Nashorn-deprecated-202204-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\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/09\/Nashorn-deprecated-202204-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":89853,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1210\/","url_meta":{"origin":97914,"position":4},"title":"v12.1 2020-07-13 Supports Narrowed Search and Data Item Display in [My Tasks]","author":"Hirotaka NISHI","date":"2020-06-29","format":false,"excerpt":"You can search and display Data Items in the My Tasks\/Offered list. You will also be able to use BPMN Icons and functions according to the contract Edition.","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\/06\/version-1210-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\/06\/version-1210-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/06\/version-1210-fi-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/06\/version-1210-fi-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/06\/version-1210-fi-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":91354,"url":"https:\/\/support.questetra.com\/en\/versions\/version-1211\/","url_meta":{"origin":97914,"position":5},"title":"v12.1.1 2020-08-03 Improved Performances of the Workflow Platform","author":"Hirotaka NISHI","date":"2020-07-27","format":false,"excerpt":"Performances of the Workflow Platform have been improved","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\/07\/version-1211-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\/07\/version-1211-fi-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/07\/version-1211-fi-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/07\/version-1211-fi-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/07\/version-1211-fi-en.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\/97914","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=97914"}],"version-history":[{"count":21,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/97914\/revisions"}],"predecessor-version":[{"id":188806,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/97914\/revisions\/188806"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media\/97935"}],"wp:attachment":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media?parent=97914"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/categories?post=97914"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/tags?post=97914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}