Skip to content

Commit 9da5655

Browse files
committed
#190 Release v8.1.0 ... [PublishToPSGalleryAsRelease]
1 parent 7e7c324 commit 9da5655

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Doc/ReleaseNotes-ISHRemote-8.1.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ All customers on ISHRemote v8.0 are advised to upgrade, especially when using IS
2525

2626
## Extending cmdlet Add-IshBackgroundTask with parameter InputDataTemplate to enable Metrics feature
2727

28-
The `Add-IshBackgroundTask` cmdlet, introduced in #112, offered a shorthand way of enabling the `SMARTTAG` feature (*SemanticAI*) plus it offered a raw `InputData` pass through option.
28+
The `Add-IshBackgroundTask` cmdlet, introduced in #112, offered a shorthand way of enabling the *Semantic AI* feature (`SMARTTAG`) plus it offered a raw `InputData` pass through option.
2929

30-
The contract of what you put on the BackgroundTask message queue under `InputData` and how the BackgroundTask handler interprets it is up to the implementer. For the standard product however there are only a handful of `InputData` contracts. An overview where you'll notice that the client triggering the message prefers a minimal contract, so providing the least amount of information as possible as the matching BackgroundTask handler (EventTypes) can retrieve more data if desired. #193
30+
The contract of what you put on the BackgroundTask message queue under `InputData` and how the BackgroundTask handler interprets it is up to the implementer. For the standard product however there are only a handful of `InputData` contracts. An overview where you'll notice that the client triggering the message prefers a minimal contract, so providing the least amount of information as possible as the matching BackgroundTask handler (`EventTypes`) can retrieve more data if desired. #193
3131

3232
| EventTypes | `InputDataTemplate` | incoming IShObjects | `InputData` sample |
3333
|-|-|-|-|
@@ -50,7 +50,7 @@ ForEach-Object -Process {
5050
### Example using SYNCHRONIZEMETRICS
5151
Rebuilding the Metrics subsystem, introduced in Tridion Docs 15.1 Update 1 (15.1.1), is optimally done in the order of Images, Topics and Publications. Add BackgroundTask with event type `SYNCHRONIZEMETRICS` for the objects located under the `General` path (`Data` folder). One BackgroundTask message will appear per folder containing a list of LogicalIds in the `InputData` of the message, hence the content of one folder is passed in one message.
5252

53-
Note that a more complex script will be offered in the product (IShCD) that covers error handling, logging transcript and more. The below illustrates that ISHRemote cmdlets are an enabler for the feature and offering variations like partial rebuilds and more.
53+
Note that a more complex script will be offered in the product (`IShCD` installation media) that covers error handling, logging transcript and more. The below illustrates that ISHRemote cmdlets are an enabler for the feature and offering variations like partial rebuilds and more.
5454
```powershell
5555
# First Images
5656
Get-IshFolder -BaseFolder Data -FolderTypeFilter @("ISHIllustration") -Recurse |
@@ -81,7 +81,7 @@ ForEach-Object -Process {
8181
Add-IshBackgroundTask -EventType "FOLDEREXPORT" -InputDataTemplate EventDataWithIshLngRefs
8282
}
8383
```
84-
Note that without the `ForEach-Object` construction all recursively found content objects would all be passed in one BackgroundTask message.
84+
Note that without the `ForEach-Object` construction, all recursively found content objects would all be passed in one BackgroundTask message.
8585
```powershell
8686
Get-IshFolder -BaseFolder EditorTemplate -Recurse |
8787
Get-IshFolderContent -VersionFilter Latest -LanguagesFilter en |
@@ -116,7 +116,7 @@ n/a
116116

117117
## Known Issues
118118

119-
* Aborting the `New-IShSession`/`Test-IShSession` cmdlets using `Ctrl-C` in PowerShell is not possible, you have to await the non-configurable 60 seconds timeout potentially resulting in `GetTokensOverSystemBrowserAsync Error[Browser login cannceled after 60 seconds.]`. Typically happens if you did not authenticate in the System Browser.
119+
* Aborting the `New-IShSession`/`Test-IShSession` cmdlets using `Ctrl-C` in PowerShell is not possible, you have to await the non-configurable 60 seconds timeout potentially resulting in `GetTokensOverSystemBrowserAsync Error[Browser login canceled after 60 seconds.]`. Typically happens if you did not authenticate in the System Browser.
120120
* Several Authentication known issues...
121121
* Authentication over System Browser, so Authorization Code Flow with Proof Key for Code Exchange (PKCE), will give you 60 seconds. Any slower and you will see the `New-IShSession`/`Test-IShSession` cmdlets respond with `TaskCanceledException` exception stating `Browser login canceled after 60 seconds.`
122122
* Authentication over Client Credentials Flow with non-existing `-ClientId` will error out with `GetTokensOverClientCredentialsAsync Access Error[invalid_client]; either invalid ClientId/ClientSecret combination or expired ClientSecret.`. Please make sure you activate a client/secret on your Access Management User Profile (ISHAM).

Source/ISHRemote/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
2-
<!-- Force CI/GithubAction on 20240425 -->
2+
<!-- Force CI/GithubAction on 20240916 -->
33

44
<PropertyGroup>
55
<ProductName>ISHRemote</ProductName>

0 commit comments

Comments
 (0)