Skip to content

Commit 3458a09

Browse files
authored
Force STD_CR_TEMPLATE to empty (#722)
* Add changelog for 1.4.1 * Force variable to empty (#721) if the var STD_CR_TEMPLATE is not explicitly defined to "" the test on line 218 fails and the callback is not called
1 parent 8bdc085 commit 3458a09

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

incubating/service-now/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v1.4.1 (Apr 29, 2025)
4+
### Fixed
5+
- Force variable STD_CR_TEMPLATE to empty by default
6+
37
## v1.4.0 (Mar 28, 2025)
48
### Added
59
* ability to create a Standard Change passing the template name

incubating/service-now/step.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ kind: step-type
22
version: '1.0'
33
metadata:
44
name: service-now
5-
version: 1.4.0
5+
version: 1.4.1
66
isPublic: true
77
description: Integration with ServiceNow Change Management
88
sources:
@@ -86,7 +86,7 @@ spec:
8686
},
8787
"SN_IMAGE_VERSION": {
8888
"type": "string",
89-
"default": "1.4.0",
89+
"default": "1.4.1",
9090
"description": "Version of the ServiceNow image to use, Docker image tag."
9191
},
9292
"SN_INSTANCE": {
@@ -116,7 +116,8 @@ spec:
116116
},
117117
"STD_CR_TEMPLATE": {
118118
"type": "string",
119-
"description": "name of a Standard Change template. Using this parameter will open a Standard Change (pre-approved) instead of a normal one."
119+
"description": "name of a Standard Change template. Using this parameter will open a Standard Change (pre-approved) instead of a normal one.",
120+
"default": ""
120121
},
121122
"CR_CONFLICT_POLICY": {
122123
"type": "string",

0 commit comments

Comments
 (0)