Skip to content

Releases: MaibornWolff/alt-core-js

v1.18.9

09 Nov 12:44
Compare
Choose a tag to compare

Add option to specify accepted Status Codes in RESTAction

v1.18.8

30 Jul 08:15
Compare
Choose a tag to compare

Add option to allow insecure SSL for mqtt publish action

v1.18.7

29 Jul 20:10
Compare
Choose a tag to compare

Add option to allow insecure SSL for mqtt action

v1.18.6

21 Jan 14:08
601e449
Compare
Choose a tag to compare
Update package.json

v1.18.5: Merge pull request #110 from MaibornWolff/fix_wrong_amqp_source_in_uml

21 Jan 14:03
ddc2f2b
Compare
Choose a tag to compare

v1.18.4

10 Jan 21:04
cad4d48
Compare
Choose a tag to compare
Bump version

v1.18.3

26 Nov 10:26
Compare
Choose a tag to compare
bump version

v1.18.2

16 Nov 09:17
14a3d11
Compare
Choose a tag to compare
Merge pull request #103 from MaibornWolff/variableAsPayload_for_mqtt_…

v1.13.0

02 Dec 16:13
Compare
Choose a tag to compare

Changelog

Features

Added the possibility to hide specific fields in payloads and plaitext payloads in the drawn diagrams. This can be achieved on a per action level by setting the the field diagramConfigurationof the corresponding action. diagramConfiguration is an object which supports 2 fields:

  • hiddenFields: A list of the names of the fields to hide
  • hidePlaintext: true or false
    All actions which have payloads are support this new feature

Example

type: REST
service: https://some.url
endpoint: /
diagramConfiguration:
  hiddenFields:
    - foo
    - bar
    - password
  hidePlaintext: true

v1.12.0

31 Oct 10:57
Compare
Choose a tag to compare

Changelog

Feature

  • Added the possibility to use a variable directly as payload for a REST action. This basically enables sending arbitrary data. This can be achieved by providing the name of the variable to be sent to the parameter variableAsPayload in the REST action definition. Only variables of type type string, Buffer or ReadStream are supported. Providing a variable of another type will result in the action failing. Here is an example:
    type: REST
    service: https://some.url
    endpoint: /
    variableAsPayload: someVar # The contents of the variable someVar will be sent as payload