Intent.SoftwareFactory.CLI 4.2.0-beta.6

This is a prerelease version of Intent.SoftwareFactory.CLI.
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global Intent.SoftwareFactory.CLI --version 4.2.0-beta.6
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local Intent.SoftwareFactory.CLI --version 4.2.0-beta.6
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Intent.SoftwareFactory.CLI&version=4.2.0-beta.6&prerelease
                    
nuke :add-package Intent.SoftwareFactory.CLI --version 4.2.0-beta.6
                    

Software Factory CLI

A CLI (command line interface) version of the Intent Architect Software Factory.

Pre-requisites

Latest Long Term Support (LTS) version of .NET.

Installation

This CLI tool is available as a .NET Tool and can be installed with the following command:

dotnet tool install Intent.SoftwareFactory.CLI --global

If dotnet tool install fails with an error to the effect of The required NuGet feed can't be accessed, perhaps because of an Internet connection problem. and it shows a private NuGet feed URL, you can try add the --ignore-failed-sources command line option (source).

You should see output to the effect of:

You can invoke the tool using the following command: intent-cli
Tool 'intent.softwarefactory.cli' (version 'x.x.x') was successfully installed.

Usage

intent-cli [command] [options]

Options

Option Description
--version Show version information
-?, -h, --help Show help and usage information
--error-logging-command <error-logging-command> Command to use for logging an error. Some continuous integration environments watch output for "commands" for logging of errors. Will be automatically configured when the process is detected to be running on the following kinds of build servers:<br />- Azure Pipelines<br /><br />See the documentation on Serilog.Expressions ExpressionTemplate for formatting options: https://github.com/serilog/serilog-expressions#formatting-with-expressiontemplate
--warning-logging-command <warning-logging-command> Command to use for logging a warning. Some continuous integration environments watch output for "commands" for logging of errors. Will be automatically configured when the process is detected to be running on the following kinds of build servers:<br />- Azure Pipelines<br /><br />See the documentation on Serilog.Expressions ExpressionTemplate for formatting options: https://github.com/serilog/serilog-expressions#formatting-with-expressiontemplate

Commands

Command Description
ensure-no-outstanding-changes <username> <password> <isln-path> Runs the Software Factory and if there are any outstanding changes it prints out an error and exits with a non-zero return code.

ensure-no-outstanding-changes command

Runs the Software Factory and if there are any outstanding changes it prints out an error and exits with a non-zero return code.

ensure-no-outstanding-changes usage

intent-cli ensure-no-outstanding-changes <username> <password> <isln-path> [options]

ensure-no-outstanding-changes arguments

Argument Description
<username> Username for an active Intent Architect account.
<password> Password for the Intent Architect account.
<isln-path> Path to the Intent Architect solution (.isln) file or folder containing a single .isln file.

ensure-no-outstanding-changes options

Option Description
--application-id <application-id> The Id of the Intent Architect application. If unspecified then all applications found in the .isln will be run.
--attach-debugger The Software Factory will pause at startup giving you chance to attach a .NET debugger.
-?, -h, --help Show help and usage information
--error-logging-command <error-logging-command> Command to use for logging an error. Some continuous integration environments watch output for "commands" for logging of errors. Will be automatically configured when the process is detected to be running on the following kinds of build servers:<br />- Azure Pipelines<br /><br />See the documentation on Serilog.Expressions ExpressionTemplate for formatting options: https://github.com/serilog/serilog-expressions#formatting-with-expressiontemplate
--warning-logging-command <warning-logging-command> Command to use for logging a warning. Some continuous integration environments watch output for "commands" for logging of errors. Will be automatically configured when the process is detected to be running on the following kinds of build servers:<br />- Azure Pipelines<br /><br />See the documentation on Serilog.Expressions ExpressionTemplate for formatting options: https://github.com/serilog/serilog-expressions#formatting-with-expressiontemplate

Example: Azure Pipelines

Install the Intent.ContinuousIntegration.AzurePipelines module into your Intent Architect application to have it automatically generate an azure-pipelines.yml file for you, refer its readme for more information.

Create a variable group with the Intent Architect account details

Create a variable group with the Intent Architect account details, for example:

Variable group with Intent Architect account details

Variable groups are defined globally for an Azure DevOps project, to be able to access a variable group for a particular pipeline, it needs to be linked to it.

Add the variable group and other variables to the pipeline YAML file

To make the variable group available to a stage within your pipeline, it will need to be added to its variables. You may also want to define variables for the other command line arguments and options:

variables:
- group: 'Intent Architect Credentials'
- name: 'intentSolutionPath'
  value: 'intent'

Create a step to install the CLI

- task: PowerShell@2
  displayName: 'Install Intent Architect Software Factory CLI'
  inputs:
    targetType: 'inline'
    pwsh: true
    script: 'dotnet tool install Intent.SoftwareFactory.CLI --global'

Create a step to run the CLI

- task: PowerShell@2
  displayName: 'run intent cli'
  env:
    INTENT_USER: $(intent-architect-user)
    INTENT_PASS: $(intent-architect-password)
    INTENT_SOLUTION_PATH: $(intentSolutionPath)
  inputs:
    targetType: 'inline'
    pwsh: true
    script: |
      intent-cli ensure-no-outstanding-changes "$Env:INTENT_USER" "$Env:INTENT_PASS" "$Env:INTENT_SOLUTION_PATH"

A complete YAML file

trigger:
  batch: 'true'
  branches:
    include:
    - '*'

pool:
  vmImage: 'ubuntu-latest'

variables:
- group: 'Intent Architect Credentials'
- name: 'intentSolutionPath'
  value: 'intent'

steps:

- task: PowerShell@2
  displayName: 'Install Intent Architect Software Factory CLI'
  inputs:
    targetType: 'inline'
    pwsh: true
    script: 'dotnet tool install Intent.SoftwareFactory.CLI --global'

- task: PowerShell@2
  displayName: 'run intent cli'
  env:
    INTENT_USER: $(intent-architect-user)
    INTENT_PASS: $(intent-architect-password)
    INTENT_SOLUTION_PATH: $(intentSolutionPath)
  inputs:
    targetType: 'inline'
    pwsh: true
    script: |
      intent-cli ensure-no-outstanding-changes "$Env:INTENT_USER" "$Env:INTENT_PASS" "$Env:INTENT_SOLUTION_PATH"

Run the pipeline

When you run the pipeline, it should now install the CLI and run it.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
4.5.14 23 8/26/2025
4.5.14-pre.2 79 8/22/2025
4.5.14-pre.1 66 8/22/2025
4.5.14-pre.0 69 8/22/2025
4.5.13 193 8/18/2025
4.5.13-pre.3 125 8/18/2025
4.5.13-pre.2 173 8/14/2025
4.5.13-pre.1 137 8/13/2025
4.5.13-pre.0 151 8/12/2025
4.5.12 273 8/12/2025
4.5.11 628 8/5/2025
4.5.10 206 8/4/2025
4.5.9 166 7/29/2025
4.5.8 534 7/22/2025
4.5.7 182 7/17/2025
4.5.6 190 7/16/2025
4.5.5 310 7/14/2025
4.5.4 177 7/13/2025
4.5.3 320 7/9/2025
4.5.3-pre.0 136 7/8/2025
4.5.2 262 7/7/2025
4.5.1 114 7/4/2025
4.5.0 233 7/3/2025
4.5.0-alpha.10 128 7/2/2025
4.5.0-alpha.9 119 7/2/2025
4.5.0-alpha.8 141 7/1/2025
4.5.0-alpha.7 125 6/30/2025
4.5.0-alpha.6 197 6/24/2025
4.5.0-alpha.5 131 6/23/2025
4.5.0-alpha.4 137 6/22/2025
4.5.0-alpha.3 83 6/21/2025
4.5.0-alpha.2 81 6/21/2025
4.5.0-alpha.1 62 6/20/2025
4.5.0-alpha.0 345 6/10/2025
4.4.6 849 6/2/2025
4.4.6-pre.1 234 5/16/2025
4.4.6-pre.0 177 5/16/2025
4.4.5 914 5/6/2025
4.4.4 1,121 4/8/2025
4.4.4-pre.0 178 3/31/2025
4.4.3 873 3/26/2025
4.4.3-pre.3 454 3/25/2025
4.4.3-pre.2 471 3/25/2025
4.4.3-pre.1 156 3/20/2025
4.4.3-pre.0 139 3/18/2025
4.4.2 350 3/18/2025
4.4.2-pre.1 144 3/13/2025
4.4.2-pre.0 131 3/12/2025
4.4.1 365 3/9/2025
4.4.0 788 2/19/2025
4.4.0-beta-cli.14 134 2/14/2025
4.4.0-beta-cli.13 206 2/1/2025
4.4.0-beta-cli.12 143 1/27/2025
4.4.0-beta-cli.11 74 1/27/2025
4.4.0-beta-cli.10 80 1/27/2025
4.4.0-beta-cli.9 81 1/26/2025
4.4.0-beta-cli.8 105 1/20/2025
4.4.0-beta.4.2 79 1/17/2025
4.4.0-beta.4.1 76 1/17/2025
4.4.0-beta.4 65 1/16/2025
4.4.0-beta.2 98 1/13/2025
4.4.0-alpha.0 242 12/13/2024
4.3.9 736 12/15/2024
4.3.9-pre.0 135 12/10/2024
4.3.9-beta.0 250 11/26/2024
4.3.8 369 11/25/2024
4.3.8-pre.0 97 11/22/2024
4.3.7 260 11/19/2024
4.3.7-pre.0 97 11/18/2024
4.3.6 219 11/14/2024
4.3.6-pre.2 94 11/13/2024
4.3.6-pre.1 147 11/7/2024
4.3.6-pre.0 73 11/7/2024
4.3.5 1,155 11/7/2024
4.3.5-pre.2 146 11/1/2024
4.3.5-pre.1 135 10/28/2024
4.3.5-pre.0 156 10/22/2024
4.3.4 276 10/21/2024
4.3.4-pre.4 84 10/21/2024
4.3.4-pre.2 134 10/14/2024
4.3.4-pre.1 86 10/14/2024
4.3.4-pre.0 96 10/13/2024
4.3.3 227 10/11/2024
4.3.3-pre.2 97 10/11/2024
4.3.3-pre.1 82 10/10/2024
4.3.3-pre.0 78 10/10/2024
4.3.2 182 10/10/2024
4.3.2-pre.0 116 10/9/2024
4.3.1 303 10/2/2024
4.3.1-pre.1 77 10/2/2024
4.3.1-pre.0 87 10/1/2024
4.3.0 206 9/29/2024
4.3.0-beta.10 167 9/23/2024
4.3.0-beta.8 258 9/14/2024
4.3.0-beta.6 98 9/12/2024
4.3.0-beta.0 532 8/6/2024
4.2.10-alpha.0 91 8/21/2024
4.2.9 763 7/15/2024
4.2.9-pre.1 110 7/10/2024
4.2.9-pre.0 148 7/2/2024
4.2.8 319 6/30/2024
4.2.8-pre.1 146 6/24/2024
4.2.8-pre.0 119 6/21/2024
4.2.7 242 6/19/2024
4.2.7-pre.0 121 6/13/2024
4.2.6 419 5/22/2024
4.2.6-pre.0 106 5/21/2024
4.2.5 178 5/21/2024
4.2.5-pre.8 107 5/20/2024
4.2.5-pre.7 83 5/20/2024
4.2.5-pre.6 84 5/20/2024
4.2.5-pre.5 113 5/14/2024
4.2.5-pre.4 109 5/13/2024
4.2.5-pre.3 92 5/11/2024
4.2.5-pre.2 133 5/7/2024
4.2.5-pre.1 82 5/2/2024
4.2.5-pre.0 114 4/29/2024
4.2.4 511 4/12/2024
4.2.4-pre.1 145 4/7/2024
4.2.4-pre.0 96 4/5/2024
4.2.4-beta.6 81 4/5/2024
4.2.4-beta.5 117 4/4/2024
4.2.4-beta.4 128 4/2/2024
4.2.4-beta.3 90 4/2/2024
4.2.4-beta.2 111 4/1/2024
4.2.4-beta.1 99 3/27/2024
4.2.4-beta.0 150 3/26/2024
4.2.3 318 3/25/2024
4.2.3-pre.0 192 3/19/2024
4.2.2 306 3/12/2024
4.2.2-pre.0 93 3/11/2024
4.2.1 203 3/11/2024
4.2.1-pre.0 109 3/11/2024
4.2.0 212 3/10/2024
4.2.0-beta.8 101 3/8/2024
4.2.0-beta.7 89 3/8/2024
4.2.0-beta.6 155 3/5/2024
4.2.0-beta.5 98 3/5/2024
4.2.0-beta.4 120 2/29/2024
4.2.0-beta.3 382 2/14/2024
4.2.0-beta.2 92 2/14/2024
4.2.0-beta.1 109 2/14/2024
4.2.0-beta.0 185 2/9/2024
4.1.5 537 1/23/2024
4.1.5-pre.2 107 1/22/2024
4.1.5-pre.1 100 1/21/2024
4.1.5-pre.0 89 1/20/2024
4.1.4 381 1/17/2024
4.1.4-pre.0 104 1/16/2024
4.1.3 358 1/14/2024
4.1.3-pre.4 102 1/13/2024
4.1.3-pre.3 98 1/13/2024
4.1.3-pre.2 121 1/12/2024
4.1.3-pre.1 165 1/10/2024
4.1.3-pre.0 92 1/10/2024
4.1.2 422 1/8/2024
4.1.2-pre.6 143 1/6/2024
4.1.2-pre.5 109 1/5/2024
4.1.2-pre.4 110 1/5/2024
4.1.2-pre.3 122 1/3/2024
4.1.2-pre.2 118 1/2/2024
4.1.2-pre.1 141 12/31/2023
4.1.2-pre.0 98 12/28/2023
4.1.1 164 12/22/2023
4.1.1-pre.2 74 12/22/2023
4.1.1-pre.1 79 12/22/2023
4.1.1-pre.0 61 12/22/2023
4.1.0 126 12/20/2023
4.1.0-beta.21 288 12/10/2023
4.1.0-beta.20 194 12/6/2023
4.1.0-beta.19 76 12/5/2023
4.1.0-beta.18 99 12/4/2023
4.1.0-beta.17 87 12/2/2023
4.1.0-beta.16 109 11/30/2023
4.1.0-beta.15 77 11/29/2023
4.1.0-beta.14 98 11/28/2023
4.1.0-beta.12 139 11/24/2023
4.1.0-beta.11 141 11/22/2023
4.1.0-beta.10 120 11/19/2023
4.1.0-beta.9 130 11/15/2023
4.1.0-beta.8 165 11/7/2023
4.1.0-beta.7 115 11/6/2023
4.1.0-beta.6 79 11/3/2023
4.1.0-beta.5 90 11/3/2023
4.1.0-beta.4 102 11/2/2023
4.1.0-beta.3 92 11/2/2023
4.1.0-beta.2 181 10/29/2023
4.1.0-beta.1 76 10/28/2023
4.1.0-beta.0 147 10/25/2023
4.1.0-alpha.202312081616 68 12/8/2023
4.1.0-alpha.202312062101 69 12/7/2023
4.1.0-alpha.32 103 10/25/2023
4.1.0-alpha.31 77 10/24/2023
4.1.0-alpha.30 112 10/24/2023
4.1.0-alpha.29 72 10/23/2023
4.1.0-alpha.28 118 10/22/2023
4.1.0-alpha.27 149 10/17/2023
4.1.0-alpha.26 127 10/14/2023
4.1.0-alpha.25 101 10/12/2023
4.1.0-alpha.24 139 10/9/2023
4.1.0-alpha.23 93 10/8/2023
4.1.0-alpha.21 196 10/1/2023
4.1.0-alpha.20 86 9/30/2023
4.1.0-alpha.19 93 9/29/2023
4.1.0-alpha.17 116 9/28/2023
4.1.0-alpha.16 154 9/25/2023
4.1.0-alpha.15 97 9/24/2023
4.1.0-alpha.14 89 9/24/2023
4.1.0-alpha.13 97 9/23/2023
4.1.0-alpha.12 145 9/19/2023
4.1.0-alpha.11 110 9/19/2023
4.1.0-alpha.10 94 9/19/2023
4.1.0-alpha.9 107 9/17/2023
4.1.0-alpha.8 86 9/16/2023
4.1.0-alpha.6 177 9/9/2023
4.1.0-alpha.5 86 9/8/2023
4.1.0-alpha.4 138 9/5/2023
4.1.0-alpha.3 94 9/2/2023
4.1.0-alpha.2 114 8/26/2023
4.1.0-alpha.1 91 8/25/2023
4.1.0-alpha.0 92 8/24/2023
4.0.6 1,266 10/2/2023
4.0.5 124 9/28/2023
4.0.5-pre.3 86 9/19/2023
4.0.5-pre.2 75 9/18/2023
4.0.5-pre.1 205 9/15/2023
4.0.5-pre.0 88 9/15/2023
4.0.4 263 9/13/2023
4.0.4-pre.1 102 9/7/2023
4.0.4-pre.0 94 8/29/2023
4.0.4-alpha.2 221 8/21/2023
4.0.4-alpha.0 145 8/10/2023
4.0.3 982 8/3/2023
4.0.3-pre.7 137 7/27/2023
4.0.3-pre.6 104 7/26/2023
4.0.3-pre.5 111 7/24/2023
4.0.3-pre.4 119 7/23/2023
4.0.3-pre.3 117 7/23/2023
4.0.3-pre.2 109 7/22/2023
4.0.3-pre.1 124 7/19/2023
4.0.3-pre.0 126 7/17/2023
4.0.2 434 7/17/2023
4.0.2-pre.8 104 7/17/2023
4.0.2-pre.7 107 7/17/2023
4.0.2-pre.6 104 7/16/2023
4.0.2-pre.5 110 7/15/2023
4.0.2-pre.4 100 7/14/2023
4.0.2-pre.3 107 7/11/2023
4.0.2-pre.2 133 7/7/2023
4.0.2-pre.1 143 7/3/2023
4.0.1 1,061 6/9/2023
4.0.1-pre.14 100 6/8/2023
4.0.1-pre.13 104 6/6/2023
4.0.1-pre.12 94 6/5/2023
4.0.1-pre.11 104 6/1/2023
4.0.1-pre.10 94 5/31/2023
4.0.1-pre.9 101 5/30/2023
4.0.1-pre.8 110 5/26/2023
4.0.1-pre.7 101 5/25/2023
4.0.1-pre.6 94 5/25/2023
4.0.1-pre.5 135 5/20/2023
4.0.1-pre.4 101 5/19/2023
4.0.1-pre.3 100 5/17/2023
4.0.1-pre.2 121 5/12/2023
4.0.1-pre.1 129 5/10/2023
4.0.1-pre.0 100 5/10/2023
4.0.0 700 5/7/2023
4.0.0-test.11 146 4/28/2023
4.0.0-test.10 109 4/27/2023
4.0.0-beta.12 105 5/1/2023
4.0.0-beta.11 111 4/28/2023
4.0.0-beta.10 105 4/26/2023
4.0.0-beta.9 161 4/21/2023
4.0.0-beta.8 105 4/18/2023
4.0.0-beta.7 112 4/16/2023
4.0.0-beta.6 109 4/16/2023
4.0.0-beta.5 100 4/14/2023
4.0.0-beta.4 99 4/13/2023
4.0.0-beta.3 106 4/13/2023
4.0.0-beta.2 109 4/12/2023
4.0.0-beta.1 107 4/11/2023
4.0.0-beta.0 113 4/6/2023
4.0.0-alpha.18 105 4/5/2023
4.0.0-alpha.17 106 4/5/2023
4.0.0-alpha.15 104 4/5/2023
4.0.0-alpha.14 109 4/5/2023
4.0.0-alpha.13 108 4/4/2023
4.0.0-alpha.12 107 4/2/2023
4.0.0-alpha.11 106 4/1/2023
4.0.0-alpha.10 111 3/31/2023
4.0.0-alpha.9 126 3/27/2023
4.0.0-alpha.8 121 3/24/2023
4.0.0-alpha.7 116 3/22/2023
4.0.0-alpha.6 113 3/22/2023
4.0.0-alpha.5 108 3/19/2023
4.0.0-alpha.4 108 3/16/2023
4.0.0-alpha.3 108 3/14/2023
4.0.0-alpha.2 108 3/13/2023
4.0.0-alpha.1 103 3/12/2023
4.0.0-alpha.0 117 3/12/2023
3.4.5 528 4/14/2023
3.4.4 198 4/13/2023
3.4.3 172 4/11/2023
3.4.3-pre.2 114 4/3/2023
3.4.3-pre.1 123 3/23/2023
3.4.3-pre.0 112 3/14/2023
3.4.2 593 3/14/2023
3.4.2-pre.5 115 3/13/2023
3.4.2-pre.4 159 3/2/2023
3.4.2-pre.3 169 2/22/2023
3.4.2-pre.2 132 2/22/2023
3.4.2-pre.1 131 2/21/2023
3.4.2-pre.0 130 2/20/2023
3.4.1 250 2/20/2023
3.4.1-pre.9 128 2/15/2023
3.4.1-pre.8 119 2/15/2023
3.4.1-pre.7 134 2/12/2023
3.4.1-pre.6 116 2/11/2023
3.4.1-pre.5 126 2/10/2023
3.4.1-pre.4 141 2/4/2023
3.4.1-pre.3 165 1/25/2023
3.4.1-pre.2 165 1/18/2023
3.4.1-pre.1 156 1/12/2023
3.4.1-pre.0 136 1/12/2023
3.4.0 151 1/7/2023
3.4.0-pre.16 131 12/29/2022
3.4.0-pre.15 125 12/23/2022
3.4.0-pre.14 121 12/21/2022
3.4.0-pre.13 124 12/21/2022
3.4.0-pre.12 132 12/19/2022
3.4.0-pre.11 160 12/12/2022
3.4.0-pre.10 141 12/8/2022
3.4.0-pre.9 164 12/2/2022
3.4.0-pre.8 141 12/1/2022
3.4.0-pre.7 141 11/29/2022
3.4.0-pre.6 136 11/27/2022
3.4.0-pre.5 123 11/26/2022
3.4.0-pre.4 130 11/24/2022
3.4.0-pre.3 129 11/23/2022
3.4.0-pre.2 158 11/21/2022
3.4.0-pre.1 131 11/20/2022
3.4.0-pre.0 133 11/18/2022
3.3.20-pre.3 153 11/9/2022
3.3.20-pre.2 131 11/8/2022
3.3.20-pre.1 155 11/4/2022
3.3.20-pre.0 158 10/31/2022
3.3.19 183 10/21/2022
3.3.19-pre.2 167 10/20/2022
3.3.19-pre.1 150 10/17/2022
3.3.19-pre.0 137 10/14/2022
3.3.18 168 10/10/2022
3.3.18-pre.8 139 10/7/2022
3.3.18-pre.7 156 10/2/2022
3.3.18-pre.6 139 9/29/2022
3.3.18-pre.5 138 9/29/2022
3.3.18-pre.4 134 9/29/2022
3.3.18-pre.3 136 9/29/2022
3.3.18-pre.2 131 9/28/2022
3.3.18-pre.1 141 9/28/2022
3.3.17 187 9/26/2022
3.3.16 157 9/24/2022
3.3.16-pre.5 134 9/22/2022
3.3.16-pre.4 137 9/20/2022
3.3.16-pre.3 139 9/19/2022
3.3.16-pre.2 137 9/15/2022
3.3.16-pre.1 140 9/15/2022
3.3.16-pre.0 140 9/14/2022
3.3.15 206 9/11/2022
3.3.14 161 9/9/2022
3.3.14-test.0 154 9/6/2022
3.3.14-pre.1 144 9/7/2022
3.3.14-pre.0 156 8/26/2022
3.3.13 259 8/24/2022
3.3.13-pre.3 169 8/21/2022
3.3.13-pre.2 166 8/20/2022
3.3.13-pre.1 159 8/19/2022
3.3.13-pre.0 160 8/18/2022
3.3.12 187 8/15/2022
3.3.12-pre.5 163 8/14/2022
3.3.12-pre.4 165 8/14/2022
3.3.12-pre.3 171 8/12/2022
3.3.12-pre.2 172 8/9/2022
3.3.12-pre.1 160 8/9/2022
3.3.12-pre.0 167 8/9/2022
3.3.11 248 8/1/2022
3.3.10 190 7/31/2022
3.3.10-pre.6 172 7/31/2022
3.3.10-pre.5 170 7/27/2022
3.3.10-pre.4 157 7/25/2022
3.3.10-pre.3 168 7/24/2022
3.3.10-pre.2 175 7/19/2022
3.3.10-pre.1 169 7/18/2022
3.3.10-pre.0 182 7/12/2022
3.3.9 210 6/30/2022
3.3.8 216 6/15/2022
3.3.8-pre.3 169 6/15/2022
3.3.8-pre.2 183 6/8/2022
3.3.8-pre.1 175 6/6/2022
3.3.7 223 5/24/2022
3.3.6 196 5/24/2022
3.3.5 203 5/22/2022
3.3.4 207 5/16/2022
3.3.4-pre.1 185 5/12/2022
3.3.4-pre.0 192 5/11/2022
3.3.3 248 5/6/2022
3.3.3-cli-test.16 193 5/5/2022
3.3.3-cli-test.12 192 5/5/2022
3.3.3-cli-test.9 193 5/4/2022