Skip to content

Deploy 23.1 Documentation Updates #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2024
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
15 changes: 15 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ sidebar_label: 'Release notes'

# OpCon Deploy Release Notes

## Version 23.1

2024 May

:eight_spoked_asterisk: **OPCDEPLOY-843**: Fixed a problem when transformation rule names are queries using case sensitivity.

:eight_spoked_asterisk: **OPCDEPLOY-1301**: Implemented new transformation rules for machine group name to machine name definitions. The following rules have been included

* Job_Machine_Group_Name_to_Machine_Name used to transform a machine group name to a machine name.
* Job_Machine_Name_to_Machine_Group_Name used to transform a machine name to a machine group name.

:eight_spoked_asterisk: **OPCDEPLOY-1365**: Fixed a problem displaying all versions of a selected item in the selection view when creating / editing packages.

:eight_spoked_asterisk: **OPCDEPLOY-1378**: Implemented support for new GuideWireCloud and ACS job types. Compatibility check implemented to ensure these job types can only be deployed to OpCon versions 23.o or greater. Requires updated ImpEx2 OpCon versions for OpCon versions 24.2.0 or 23.0.4.

## Version 23.0

2024 February
Expand Down
41 changes: 40 additions & 1 deletion docs/transformations/transformation-tag-definitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,11 +403,30 @@ This tag is used to change the job instance property name value of the job insta

* Indicates if the match to be performed is the complete definition or a partial definition (value is true or false; default is false).


### Job_Machine_Group_Name

This tag is used to change the machine group value of the job definition and supports the following tags:

* jobName

* (*Optional*): When present, this indicates the job or group of jobs with which the rule is associated. A group of jobs is defined by using a wild card character in the job name (e.g., JOB0100 or JOB01* for all jobs starting with the characters JOB01).

* currentValue

* (*Required*): Contains the name of the value of the machine group in the job definition.

* newValue

* (*Required*): The value to be inserted in the definition if the currentValue matches the value in the definition.

* partialUpdate

* Indicates if the match to be performed is the complete definition or a partial definition (value is true or false; default is false).

### Job_Machine_Group_Name_to_Machine_Name

This tag is used to change the machine group value of the job definition and supports the following tags:

* jobName

* (*Optional*): When present, this indicates the job or group of jobs with which the rule is associated. A group of jobs is defined by using a wild card character in the job name (e.g., JOB0100 or JOB01* for all jobs starting with the characters JOB01).
Expand All @@ -428,6 +447,26 @@ This tag is used to change the machine group value of the job definition and sup

This tag is used to change the Primary, Alternate Machine 1, Alternate Machine 2, Alternate Machine 3, File Transfer Source, and Destination Host values of the job definition. The Job_Machine_Name tag supports the following tags:

* jobName

* (*Optional*): When present, this indicates the job or group of jobs with which the rule is associated. A group of jobs is defined by using a wild card character in the job name (e.g., JOB0100 or JOB01* for all jobs starting with the characters JOB01).

* currentValue

* (*Required*): Contains the name of the machine in the job definition.

* newValue

* (*Required*): The value to be inserted in the definition if the currentValue matches the value in the definition.

* partialUpdate

* Indicates if the match to be performed is the complete definition or a partial definition (value is true or false; default is false).

### Job_Machine_Name_to_Machine_Group_Name

This tag is used to change the Primary Machine name to a Machine Group name. The Job_Machine_Name_to_Machine_Group_Name tag supports the following tags:

* jobName

* (*Optional*): When present, this indicates the job or group of jobs with which the rule is associated. A group of jobs is defined by using a wild card character in the job name (e.g., JOB0100 or JOB01* for all jobs starting with the characters JOB01).
Expand Down
Loading