Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.16 KB

releasenotes.md

File metadata and controls

36 lines (25 loc) · 1.16 KB

design.automation.inventor-utilities

2.0.1

  • fixed HeartBeat issue with .net8.

2.0.0

  • refactored the helper class NameValueMapHelper into an Extension class for the original NameValueMap instead of inheritance. Class name changed to NameValueMapExtension to reflect this change.

1.1.0

  • added new helper class NameValueMapHelper that serves as a wrapper around NameValueMap. The class is designed to provide the user with easier interface for the underlying data stored inside of the NameValueMap. See NameValueMapHelper page for more information.

1.0.0-beta3

  • modified contract for HttpOperation
    • requestOrContentFile onDemand parameter is optional for now
    • usage of this parameter (other value than empty ) will produce exception since it is not supported now
// previous call for 1.0.0-beta2 version
HttpOperation("ArgumentName", "queryArguments", "header1=value1;header2=value2", "file://output", null)

// current format
HttpOperation("ArgumentName", "queryArguments", 
	new Dictionary<string,string>(
	{
		{"header1","value1"},
		{"header2","value2"}
	}),
	"file://output")

1.0.0-beta2

  • fixed ondemand return value