Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions incubating/service-now/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.4.1 (Apr 29, 2025)
### Fixed
- Force variable STD_CR_TEMPLATE to empty by default

## v1.4.0 (Mar 28, 2025)
### Added
* ability to create a Standard Change passing the template name
Expand Down
7 changes: 4 additions & 3 deletions incubating/service-now/step.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kind: step-type
version: '1.0'
metadata:
name: service-now
version: 1.4.0
version: 1.4.1
isPublic: true
description: Integration with ServiceNow Change Management
sources:
Expand Down Expand Up @@ -86,7 +86,7 @@ spec:
},
"SN_IMAGE_VERSION": {
"type": "string",
"default": "1.4.0",
"default": "1.4.1",
"description": "Version of the ServiceNow image to use, Docker image tag."
},
"SN_INSTANCE": {
Expand Down Expand Up @@ -116,7 +116,8 @@ spec:
},
"STD_CR_TEMPLATE": {
"type": "string",
"description": "name of a Standard Change template. Using this parameter will open a Standard Change (pre-approved) instead of a normal one."
"description": "name of a Standard Change template. Using this parameter will open a Standard Change (pre-approved) instead of a normal one.",
"default": ""
},
"CR_CONFLICT_POLICY": {
"type": "string",
Expand Down
Loading