Changes for page 207 - Aligned State
Last modified by Carlijn Kokkeler on 2024/04/18 13:10
From version 102.1
edited by Erik Bakker
on 2023/04/13 09:23
on 2023/04/13 09:23
Change comment:
There is no comment for this version
To version 69.1
edited by Erik Bakker
on 2023/01/18 11:04
on 2023/01/18 11:04
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 -19 5-EasterParty1 +190 - Fast Forward - Content
-
... ... @@ -2,95 +2,117 @@ 2 2 {{container layoutStyle="columns"}}((( 3 3 [[image:Main.Images.Release Blog.WebHome@release-blog-intro.png]] 4 4 5 -**Hi there, eMagiz developers!** I nthelastfew weeks,wehavefocused on wrapping up theprevious quarterandstartingthenewone.Whenthishappens, we gosilentfora few weeksto planforthepcomingquarterduring our PI rituals. This timewe addedthe famous"Hackathon"toheendofthePIweeksowe couldstarttheEasterbreak with excellentspiritaftersolvingseveralsmallerfeedbackitemsandbugsreportedby you. Severalof thosestorieswillbeincluded inhisand the upcomingrelease.Ontopofthat,weintroducevariousimprovementstoourAPI Gateway patternandour 3rd generation runtime architecture.Subsequently, wewillrelease aewruntimeimagesupporting themultiple improvements.5 +**Hi there, eMagiz developers!** It has been a while since our last deployment on the 9th of December. As a result we have finished up a lot of new improvements to our 3rd generation runtime offering and fixed a variety of annoying bugs as well as some small improvements. This release is characterized by the major steps we took to release several major features on our 3rd generation runtime among which are the queue browser and message redelivery functionality. 6 6 7 -== ** Releaseproperties** ==**7 +== **Queue Browser** == ~*~* 8 8 9 - With this releasewe bringan improvedversion ofthe releaseproperties functionality.With the introductionof the 3rd generation runtime the waypropertiescan be updated andwhentheyneed tobe available for the solution to startuphaschanged comparedtothe current runtimearchitecture. More on that can befound[[here>>Main.eMagizAcademy.Fundamentals.fundamental-runtime-generation3||target= "blank"]].9 +{{warning}}Note that this functionality only works when your JMS server is running on the 3rd generation runtime{{/warning}} 10 10 11 - Asofnow you cannotonly viewall propertyvaluesrelated to acificreleaseby pressing thewrenchicon.Youcan also create what wecall a "propertyrelease"onachofhe threeenvironmentthatallowsyouto quickly changeoneor morepropertyvaluesanddeploythe changesto your environment.Whendeploying such areleaseeMagizwill checkonwhichruntimesthepropertiesareused andonlyexecutethedeployactionsforthemachinestowhichsaidruntime(s) belong(s).11 +To enhance the observability of your integration landscape while running in the 3rd generation runtime architecture we have added a new feature to our Manage phase called the "Queue browser". You can access this functionality via the "Explore" menu option in Manage. With the help of the queue browser you can, as the name suggests, browse your queue. 12 12 13 - {{videoattachment="release-blog-easter-party--release-properties.mp4"reference="Main.Videos.Microlearning.WebHome"/}}13 +To do so, we offer two options within this functionality. We have the Explore function and we have the Wiretap function. When selecting a queue and opting for the Explore option you get a live view of what data is currently present on the queue. When selecting the Wiretap functionality you automatically wiretap your queue and are presented with copies (on a special queue) of your actual message that pass through the queue from the moment you pressed the Wiretap button. 14 14 15 -{{info}}The following considerations need to be taken into account when using this functionality: 16 -* This functionality works from the moment one runtime is running on the 3rd generation runtime architecture 17 -* This functionality can only change property values. Functional changes need a seperate release that needs to be promoted 18 -* In comparison to standard releases a property release can be created on each environment (as the property value is linked to a specific environment). 19 -*{{/info}} 15 +[[image:Main.Images.Release Blog.WebHome@190-release-blog--queue-browser-overview.png]] 20 20 21 - == **APIimprovements**==17 +After selecting the queue and choosing the option eMagiz will show you the list of messages (oldest first) that are currently on the queue (Explore option) or that passed the queue since the moment you activate the option (Wiretap option). For each message you have various options at your disposal. 22 22 23 -//__Improved auto-generated error handling__// 24 -When you create a new operation in your API gateway, eMagiz will now automatically generate the correct schemas, HTTP codes, and examples for this operation based on industry standards. 19 +* Delete the message from the queue (Explore option) 20 + ** This means throwing away live data which can be helpful in a test or acceptance environment where you inadvertedly put a lot of messages on a queue. 21 +* Clear message from the wiretap queue (Wiretap option) 22 + ** Once you are done with the analysis of a certain message in the wiretap functionality you can clear it from the overview so it does not clutter the view anymore 23 +* Refresh messages list (both options) 24 + ** By pressing this button you can refresh the list of messages that are displayed to you. Note that the list is sorted in such a way that the oldest messages are shown first 25 +* Save as test message 26 + ** By pressing this button you can save the message and use it in our flow testing functionality in Create. Note that we link the message to the corresponding flow if we can. Should we not be able to do so we link the message to your model so you can still use it in the flow testing functionality. 27 +* Download 28 + ** By pressing this button you can download the message and use it outside of the tooling should that be needed. 25 25 26 -//__Switch default message format__// 27 -We have improved the logic when you switch the message format of your gateway message from XML to JSON or vice versa. As a result, the Swagger file will be changed accordingly. Once you update the relevant flow in Create and deploy the solution, the Swagger UI will automatically match the expected result. 30 +[[image:Main.Images.Release Blog.WebHome@190-release-blog--queue-browser-explore-overview.png]] 28 28 29 -//__Re-using elements in gateway message__// 30 -This release improves how the examples and schemas in Swagger and the Flow Testing functionality are generated when certain elements repeatedly appear in different places within one specific gateway message. 32 +[[image:Main.Images.Release Blog.WebHome@190-release-blog--queue-browser-wiretap-overview.png]] 31 31 32 -//__Improved naming of API operations when adding integrations to Create__// 33 -Previously when you added API operations to the Create phase, the HTTP operation (i.e., POST, PUT, GET) was not visible to a user. As a result, it became tough for a user to discern between specific operations once multiple of them were used on one resource (i.e., Order, Invoice, Lead). To clarify this for the user, the display name defined in Design (instead of Capture) is now used within this overview for these operations. 34 +== **Message Redelivery ** == ~*~* 34 34 35 - ==**3rd generation improvements** ==36 +{{warning}}Note that this functionality only works when your JMS server is running on the 3rd generation runtime and the functionality is enabled for you environment.{{/warning}} 36 36 37 -//__Update of the static alerting engine__// 38 -In this release, we have updated the static alerting engine that determines when one of the static alerts, as defined by eMagiz, should be triggered (or not). This change will improve the performance of the solution and will ensure that the alerts are activated correctly. 38 +[[image:Main.Images.Release Blog.WebHome@190-release-blog--message-redelivery-overview.png]] 39 39 40 -//__Add "Data pipeline" functionality__// 41 -This release introduces the "data pipeline" functionality to the 3rd generation runtime. This removes another blockage for models waiting on this before migrating to the 3rd generation runtime. 40 +Just as with our current offering we now offer our message redelivery functionality for our 3rd generation architecture. To enhance the user experience we have placed this functionality as well under the "Explore" option in Manage. When selecting the message redelivery option you will see all messages that are currently in need to be redelivered (as an error occurred). 42 42 43 -//__Fix related to the debugger__// 44 -This release introduces a fix that allows users to debug a flow once the toggle "Send error messages to eMagiz" is activated. 42 +Just as in the current functionality you can select a specific message and retry (or delete) it. The same can be done for all messages at once. Following that you can still see the linked error message as you could before. 45 45 46 - {{warning}}Tomake useof thisbugfix,you needtobe onthe latestruntime image{{/warning}}44 +On top of that we have added some additional functionality. 47 47 48 -//__Improved migration process__// 49 -This release introduced a fix that allows a user to migrate event processors with custom error handling without manual intervention. 46 +* Search option 47 + ** Original queue name 48 + ** Original message ID (which can be found as a header called jms_messageid in the error message view) 49 +* Save as test message 50 + ** By pressing this button you can save the message and use it in our flow testing functionality in Create. 51 +* Download 52 + ** By pressing this button you can download the message and use it outside of the tooling should that be needed. 50 50 51 -//__Deployment plan change__// 52 -In this release, the prepare release step will not start automatically anymore. This prevents the user from waiting for this action to be finished before they can continue deploying the solution to their environment. 54 +[[image:Main.Images.Release Blog.WebHome@190-release-blog--message-redelivery-detail-overview.png]] 53 53 54 - {{warning}}Shouldyou be interested in migrating your model to our new3rd generationarchitecture, don'thesitate to contact us at [[productmanagement@emagiz.com>>mailto:productmanagement@emagiz.com]]or read our [[documentation>>doc:Main.eMagiz Academy.Fundamentals.fundamental-runtime-generation3||target="blank"]]on the subject.{{/warning}}56 +== **3rd generation runtime bolstering** == 55 55 56 - ==**Feedbackitems**==58 +This release will introduce various improvements for our 3rd generation runtime. Below you will find the most noteworthy enhancements we made to the 3rd generation runtime and its interaction with the portal. 57 57 58 -//__ LicenseTracker improvements__//59 -With this release, wehave addedseveralnewfeaturesavailable topurchase.Ontopofthat,additional informationonthe license,suchasaddingnotesandseeingthedatasinkpackets,isnowavailable.60 +//__Define memory settings for on-premise runtimes from Deploy Architecture__// 61 +With this release, you are now able to define the memory settings (and therefore the memory limits) of your on-premise runtimes in the same manner as cloud runtimes. In all cases you can now define and change the memory settings via Deploy Architecture. In contrast to how these values are actualized for cloud runtimes you need to create a new release and deploy it to actualize the changes on-premise. 60 60 61 -//__ Ability to viewthemessage definitionfor a topic__//62 - Currently,youcan easilynavigate tothemessagedefinitionofatopicvia thecontextmenuinDesign,even ifthereisno eventprocessorlinkedtothetopic.63 +//__Empty runtime feedback when deploying a release (or setting the release as active)__// 64 +To prevent that you are not being able to deploy a release to your environment due to a mismatch between what is in your release and in Deploy Architecture we have now added a feedback pop-up when deploying a release that notifies you for which runtimes there is a mismatch between your release and Deploy Architecture. 63 63 64 -//__ Restrictedaccessforuploadingcustomcertificatesto endpoints__//65 - Toimproveour cloud offerings' general securityandpreventusersfrom uploadingthe wrongcertificates,wehavenowrestrictedaccessto this viewto ensurethat onlythe administratorcanexecutethishange. This allowsforadiscussionbetweenhe teamimplementing thesolution andeMagiz before actionsaretaken.66 +//__Auto-fill namespaces for SOAP hosted webservices__// 67 +Based on your configuration in Design eMagiz will now auto-fill the namespace when you host a SOAP web service. This avoids any potential problems in validating messages. 66 66 67 -== **Bug fixes ** == 69 +//__Updated H2 database setting__// 70 +As of this release, we have improved the configuration of our H2 databases that are used within eMagiz. This new setting will ensure that the runtime controls when the H2 database is shut down. 68 68 69 -//__Improved deletion behavior for enumerations__// 70 -To prevent that eMagiz will incorrectly delete enumeration lists when you press a "Cancel" button, we have improved the deletion behavior when viewing enumerations in the Create phase of eMagiz. 72 +{{warning}}If you already migrated your runtime, you should execute a "Reset" action on the infra flow to get these changes in your model{{/warning}} 71 71 72 -//__ Prevent"async"api operations__//73 - Withthisrelease,we haveremovedthe abilitytoselectthe"async"option when thedefaultmessageformatisAPI Management.74 +//__Runtime settings option added to context menu on runtime level Deploy Architecture__// 75 +As a replacement of the current HTTP settings context menu we have added a new menu item called runtime settings. On top of being able to configure your HTTP settings (which you need to define for a hosted web service) you now also can define whether the control bus needs to work for this runtime. 74 74 75 -//__ Importingaresponsedefinitionbroke therequestdefinition__//76 - Currently,importingaresponsedefinitionbreakstherequestdefinition.Withthisrelease,we havechangedthisbehavior,ensuringthatlythesponsedefinition ischangedwhenimportingdnotthe requestdefinition.77 +//__Deploy Agent option added to context menu on machine level Deploy Architecture__// 78 +With this release, we have added a context menu item that allows user to deploy the agent that is needed to run your 3rd generation architecture on-premise. For more information on how to install this please check out this [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Expert Level.Solution Architecture.expert-solution-architecture-onpremises-installguide.WebHome||target="blank"]] 77 77 78 -//__ Removinga flow doesnotupdatethe API "all-entry"anymore__//79 -W hen you removed a flow from Create, the API Gateway all-entry received a new version oftheflow. Withthis release, we havechanged this behaviorsothat this only happenswhenthe flow youremove isanAPI-relatedflowand notwhenit is a messagingoreventstreaming flow.80 +//__Performance improvement creating a release__// 81 +With this release, we have improved the performance of creating a release. 80 80 81 -//__Stop deployment plan when a property is missing__// 82 -Currently, the execution of your deployment plan continues when eMagiz notices a missing property. As this is confusing for a user and not desirable, we have updated the logic to ensure that when this happens, the execution stops. This allows you to fill in the properties, and once filled in, you can continue with the remainder of the deployment plan. 83 +== **Feedback items ** == 83 83 84 -//__Cap stack trace of error messages and log entries__// 85 -To prevent that enormous stack traces of error messages and log entries need to be processed by various systems, we have now limited what is kept so only the relevant information is shown to the user. 85 +We have also solved other feedback items besides the flow designer's critical updates. 86 86 87 +//__Sensitive information stored in properties is masked __// 88 +We have made how we display sensitive information across the portal in the same manner for various parts of the portal. 89 + 90 +//__Importing "Private" store content to which you do not have access__// 91 +We have improved the user feedback a user will get when trying to import a "Private" store item that is not available to the user. 92 + 93 + 94 +== **Bug fixes ** == 95 + 96 +//__Fix possibility that allowed you to break the system message when dealing with the "Order matters" functionality__// 97 +We have fixed the possibility you had that would break your system message upon validating it in Create when using the "Order matters" functionality. 98 + 99 +//__Synchronization of Event Streaming topic states__// 100 +We have fixed synchronization issues that could occur when several changes were executed on a model that uses a fast amount of topics. 101 + 102 +//__Copy and paste default support objects__// 103 +With this release you can now copy and paste components without having to worry that additional support objects that already exist in your target flow are copied over and over into the same flow. 104 + 105 +//__Fix editability of properties when importing store items__// 106 +With this release you can once again change property names upon importing a store item. 107 + 87 87 == **Fancy Forum Answers** == 88 88 89 89 As always, this is a gentle reminder to ask questions via the Q&A forum. The Q&A forum is available in the eMagiz iPaaS portal, so we can all benefit from the knowledge within the community. For some inspiration, take a look at these forum answers: 90 90 91 -* [[Entry stops polling occasionally since generation 3>>https://my.emagiz.com/p/question/172825635703376768||target="blank"]] 92 -* [[Invalid datetime>>https://my.emagiz.com/p/question/172825635703389326||target="blank"]] 93 -* [[Paging with a queue -16>>https://my.emagiz.com/p/question/172825635703389781||target="blank"]] 112 +* [[Can I change my 2FA secret, eg. move to another authenticator?>>https://my.emagiz.com/p/question/172825635703274697||target="blank"]] 113 +* [[Webrequest header 'SOAPAction'>>https://my.emagiz.com/p/question/172825635703274615||target="blank"]] 114 +* [[XPathException on XPATH router>>https://my.emagiz.com/p/question/172825635703274295||target="blank"]] 115 +* [[Change property with new release in generation 3 runtimes>>https://my.emagiz.com/p/question/172825635703274441||target="blank"]] 94 94 95 95 == **Key takeaways** == 96 96