Intent.SoftwareFactory.CLI 4.1.0-beta.12

This is a prerelease version of Intent.SoftwareFactory.CLI.
This package has a SemVer 2.0.0 package version: 4.1.0-beta.12+a739d762799b3abfcb131476fa7095a05a0bb7d6.
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.1.0-beta.12
                    
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.1.0-beta.12
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Intent.SoftwareFactory.CLI&version=4.1.0-beta.12&prerelease
                    
nuke :add-package Intent.SoftwareFactory.CLI --version 4.1.0-beta.12
                    

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 net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.4 26 7/13/2025
4.5.3 287 7/9/2025
4.5.3-pre.0 124 7/8/2025
4.5.2 235 7/7/2025
4.5.1 103 7/4/2025
4.5.0 220 7/3/2025
4.5.0-alpha.10 121 7/2/2025
4.5.0-alpha.9 112 7/2/2025
4.5.0-alpha.8 133 7/1/2025
4.5.0-alpha.7 118 6/30/2025
4.5.0-alpha.6 190 6/24/2025
4.5.0-alpha.5 124 6/23/2025
4.5.0-alpha.4 130 6/22/2025
4.5.0-alpha.3 76 6/21/2025
4.5.0-alpha.2 75 6/21/2025
4.5.0-alpha.1 55 6/20/2025
4.5.0-alpha.0 337 6/10/2025
4.4.6 836 6/2/2025
4.4.6-pre.1 225 5/16/2025
4.4.6-pre.0 167 5/16/2025
4.4.5 902 5/6/2025
4.4.4 1,016 4/8/2025
4.4.4-pre.0 169 3/31/2025
4.4.3 862 3/26/2025
4.4.3-pre.3 445 3/25/2025
4.4.3-pre.2 463 3/25/2025
4.4.3-pre.1 147 3/20/2025
4.4.3-pre.0 129 3/18/2025
4.4.2 337 3/18/2025
4.4.2-pre.1 134 3/13/2025
4.4.2-pre.0 122 3/12/2025
4.4.1 354 3/9/2025
4.4.0 777 2/19/2025
4.4.0-beta-cli.14 126 2/14/2025
4.4.0-beta-cli.13 195 2/1/2025
4.4.0-beta-cli.12 133 1/27/2025
4.4.0-beta-cli.11 65 1/27/2025
4.4.0-beta-cli.10 71 1/27/2025
4.4.0-beta-cli.9 72 1/26/2025
4.4.0-beta-cli.8 97 1/20/2025
4.4.0-beta.4.2 70 1/17/2025
4.4.0-beta.4.1 67 1/17/2025
4.4.0-beta.4 57 1/16/2025
4.4.0-beta.2 91 1/13/2025
4.4.0-alpha.0 233 12/13/2024
4.3.9 724 12/15/2024
4.3.9-pre.0 126 12/10/2024
4.3.9-beta.0 243 11/26/2024
4.3.8 359 11/25/2024
4.3.8-pre.0 90 11/22/2024
4.3.7 250 11/19/2024
4.3.7-pre.0 89 11/18/2024
4.3.6 210 11/14/2024
4.3.6-pre.2 85 11/13/2024
4.3.6-pre.1 138 11/7/2024
4.3.6-pre.0 64 11/7/2024
4.3.5 1,070 11/7/2024
4.3.5-pre.2 139 11/1/2024
4.3.5-pre.1 127 10/28/2024
4.3.5-pre.0 149 10/22/2024
4.3.4 266 10/21/2024
4.3.4-pre.4 77 10/21/2024
4.3.4-pre.2 125 10/14/2024
4.3.4-pre.1 79 10/14/2024
4.3.4-pre.0 89 10/13/2024
4.3.3 217 10/11/2024
4.3.3-pre.2 88 10/11/2024
4.3.3-pre.1 71 10/10/2024
4.3.3-pre.0 69 10/10/2024
4.3.2 172 10/10/2024
4.3.2-pre.0 108 10/9/2024
4.3.1 294 10/2/2024
4.3.1-pre.1 69 10/2/2024
4.3.1-pre.0 78 10/1/2024
4.3.0 197 9/29/2024
4.3.0-beta.10 160 9/23/2024
4.3.0-beta.8 249 9/14/2024
4.3.0-beta.6 91 9/12/2024
4.3.0-beta.0 524 8/6/2024
4.2.10-alpha.0 84 8/21/2024
4.2.9 752 7/15/2024
4.2.9-pre.1 102 7/10/2024
4.2.9-pre.0 141 7/2/2024
4.2.8 310 6/30/2024
4.2.8-pre.1 138 6/24/2024
4.2.8-pre.0 110 6/21/2024
4.2.7 230 6/19/2024
4.2.7-pre.0 113 6/13/2024
4.2.6 409 5/22/2024
4.2.6-pre.0 98 5/21/2024
4.2.5 169 5/21/2024
4.2.5-pre.8 100 5/20/2024
4.2.5-pre.7 74 5/20/2024
4.2.5-pre.6 76 5/20/2024
4.2.5-pre.5 104 5/14/2024
4.2.5-pre.4 102 5/13/2024
4.2.5-pre.3 85 5/11/2024
4.2.5-pre.2 125 5/7/2024
4.2.5-pre.1 76 5/2/2024
4.2.5-pre.0 106 4/29/2024
4.2.4 502 4/12/2024
4.2.4-pre.1 137 4/7/2024
4.2.4-pre.0 88 4/5/2024
4.2.4-beta.6 74 4/5/2024
4.2.4-beta.5 105 4/4/2024
4.2.4-beta.4 120 4/2/2024
4.2.4-beta.3 83 4/2/2024
4.2.4-beta.2 104 4/1/2024
4.2.4-beta.1 93 3/27/2024
4.2.4-beta.0 142 3/26/2024
4.2.3 309 3/25/2024
4.2.3-pre.0 185 3/19/2024
4.2.2 298 3/12/2024
4.2.2-pre.0 82 3/11/2024
4.2.1 194 3/11/2024
4.2.1-pre.0 102 3/11/2024
4.2.0 204 3/10/2024
4.2.0-beta.8 93 3/8/2024
4.2.0-beta.7 83 3/8/2024
4.2.0-beta.6 147 3/5/2024
4.2.0-beta.5 89 3/5/2024
4.2.0-beta.4 114 2/29/2024
4.2.0-beta.3 376 2/14/2024
4.2.0-beta.2 84 2/14/2024
4.2.0-beta.1 101 2/14/2024
4.2.0-beta.0 179 2/9/2024
4.1.5 527 1/23/2024
4.1.5-pre.2 100 1/22/2024
4.1.5-pre.1 92 1/21/2024
4.1.5-pre.0 82 1/20/2024
4.1.4 372 1/17/2024
4.1.4-pre.0 96 1/16/2024
4.1.3 348 1/14/2024
4.1.3-pre.4 96 1/13/2024
4.1.3-pre.3 91 1/13/2024
4.1.3-pre.2 114 1/12/2024
4.1.3-pre.1 158 1/10/2024
4.1.3-pre.0 85 1/10/2024
4.1.2 413 1/8/2024
4.1.2-pre.6 136 1/6/2024
4.1.2-pre.5 102 1/5/2024
4.1.2-pre.4 103 1/5/2024
4.1.2-pre.3 116 1/3/2024
4.1.2-pre.2 110 1/2/2024
4.1.2-pre.1 134 12/31/2023
4.1.2-pre.0 97 12/28/2023
4.1.1 162 12/22/2023
4.1.1-pre.2 69 12/22/2023
4.1.1-pre.1 77 12/22/2023
4.1.1-pre.0 59 12/22/2023
4.1.0 124 12/20/2023
4.1.0-beta.21 285 12/10/2023
4.1.0-beta.20 192 12/6/2023
4.1.0-beta.19 75 12/5/2023
4.1.0-beta.18 97 12/4/2023
4.1.0-beta.17 86 12/2/2023
4.1.0-beta.16 105 11/30/2023
4.1.0-beta.15 74 11/29/2023
4.1.0-beta.14 96 11/28/2023
4.1.0-beta.12 137 11/24/2023
4.1.0-beta.11 139 11/22/2023
4.1.0-beta.10 118 11/19/2023
4.1.0-beta.9 128 11/15/2023
4.1.0-beta.8 162 11/7/2023
4.1.0-beta.7 113 11/6/2023
4.1.0-beta.6 76 11/3/2023
4.1.0-beta.5 87 11/3/2023
4.1.0-beta.4 99 11/2/2023
4.1.0-beta.3 91 11/2/2023
4.1.0-beta.2 178 10/29/2023
4.1.0-beta.1 73 10/28/2023
4.1.0-beta.0 145 10/25/2023
4.1.0-alpha.202312081616 66 12/8/2023
4.1.0-alpha.202312062101 64 12/7/2023
4.1.0-alpha.32 101 10/25/2023
4.1.0-alpha.31 72 10/24/2023
4.1.0-alpha.30 107 10/24/2023
4.1.0-alpha.29 69 10/23/2023
4.1.0-alpha.28 116 10/22/2023
4.1.0-alpha.27 140 10/17/2023
4.1.0-alpha.26 124 10/14/2023
4.1.0-alpha.25 100 10/12/2023
4.1.0-alpha.24 138 10/9/2023
4.1.0-alpha.23 91 10/8/2023
4.1.0-alpha.21 194 10/1/2023
4.1.0-alpha.20 84 9/30/2023
4.1.0-alpha.19 91 9/29/2023
4.1.0-alpha.17 113 9/28/2023
4.1.0-alpha.16 152 9/25/2023
4.1.0-alpha.15 96 9/24/2023
4.1.0-alpha.14 87 9/24/2023
4.1.0-alpha.13 92 9/23/2023
4.1.0-alpha.12 143 9/19/2023
4.1.0-alpha.11 105 9/19/2023
4.1.0-alpha.10 92 9/19/2023
4.1.0-alpha.9 105 9/17/2023
4.1.0-alpha.8 82 9/16/2023
4.1.0-alpha.6 176 9/9/2023
4.1.0-alpha.5 84 9/8/2023
4.1.0-alpha.4 137 9/5/2023
4.1.0-alpha.3 92 9/2/2023
4.1.0-alpha.2 112 8/26/2023
4.1.0-alpha.1 83 8/25/2023
4.1.0-alpha.0 90 8/24/2023
4.0.6 1,264 10/2/2023
4.0.5 121 9/28/2023
4.0.5-pre.3 84 9/19/2023
4.0.5-pre.2 74 9/18/2023
4.0.5-pre.1 203 9/15/2023
4.0.5-pre.0 86 9/15/2023
4.0.4 260 9/13/2023
4.0.4-pre.1 99 9/7/2023
4.0.4-pre.0 92 8/29/2023
4.0.4-alpha.2 219 8/21/2023
4.0.4-alpha.0 144 8/10/2023
4.0.3 981 8/3/2023
4.0.3-pre.7 135 7/27/2023
4.0.3-pre.6 102 7/26/2023
4.0.3-pre.5 109 7/24/2023
4.0.3-pre.4 116 7/23/2023
4.0.3-pre.3 115 7/23/2023
4.0.3-pre.2 107 7/22/2023
4.0.3-pre.1 122 7/19/2023
4.0.3-pre.0 124 7/17/2023
4.0.2 431 7/17/2023
4.0.2-pre.8 103 7/17/2023
4.0.2-pre.7 106 7/17/2023
4.0.2-pre.6 100 7/16/2023
4.0.2-pre.5 108 7/15/2023
4.0.2-pre.4 99 7/14/2023
4.0.2-pre.3 103 7/11/2023
4.0.2-pre.2 132 7/7/2023
4.0.2-pre.1 138 7/3/2023
4.0.1 1,060 6/9/2023
4.0.1-pre.14 97 6/8/2023
4.0.1-pre.13 101 6/6/2023
4.0.1-pre.12 91 6/5/2023
4.0.1-pre.11 102 6/1/2023
4.0.1-pre.10 93 5/31/2023
4.0.1-pre.9 99 5/30/2023
4.0.1-pre.8 105 5/26/2023
4.0.1-pre.7 100 5/25/2023
4.0.1-pre.6 92 5/25/2023
4.0.1-pre.5 132 5/20/2023
4.0.1-pre.4 100 5/19/2023
4.0.1-pre.3 98 5/17/2023
4.0.1-pre.2 119 5/12/2023
4.0.1-pre.1 127 5/10/2023
4.0.1-pre.0 99 5/10/2023
4.0.0 699 5/7/2023
4.0.0-test.11 144 4/28/2023
4.0.0-test.10 107 4/27/2023
4.0.0-beta.12 103 5/1/2023
4.0.0-beta.11 109 4/28/2023
4.0.0-beta.10 102 4/26/2023
4.0.0-beta.9 159 4/21/2023
4.0.0-beta.8 102 4/18/2023
4.0.0-beta.7 110 4/16/2023
4.0.0-beta.6 106 4/16/2023
4.0.0-beta.5 99 4/14/2023
4.0.0-beta.4 97 4/13/2023
4.0.0-beta.3 105 4/13/2023
4.0.0-beta.2 107 4/12/2023
4.0.0-beta.1 105 4/11/2023
4.0.0-beta.0 111 4/6/2023
4.0.0-alpha.18 103 4/5/2023
4.0.0-alpha.17 105 4/5/2023
4.0.0-alpha.15 102 4/5/2023
4.0.0-alpha.14 105 4/5/2023
4.0.0-alpha.13 106 4/4/2023
4.0.0-alpha.12 104 4/2/2023
4.0.0-alpha.11 105 4/1/2023
4.0.0-alpha.10 110 3/31/2023
4.0.0-alpha.9 124 3/27/2023
4.0.0-alpha.8 118 3/24/2023
4.0.0-alpha.7 113 3/22/2023
4.0.0-alpha.6 108 3/22/2023
4.0.0-alpha.5 106 3/19/2023
4.0.0-alpha.4 106 3/16/2023
4.0.0-alpha.3 105 3/14/2023
4.0.0-alpha.2 106 3/13/2023
4.0.0-alpha.1 100 3/12/2023
4.0.0-alpha.0 115 3/12/2023
3.4.5 525 4/14/2023
3.4.4 197 4/13/2023
3.4.3 170 4/11/2023
3.4.3-pre.2 106 4/3/2023
3.4.3-pre.1 121 3/23/2023
3.4.3-pre.0 110 3/14/2023
3.4.2 592 3/14/2023
3.4.2-pre.5 114 3/13/2023
3.4.2-pre.4 158 3/2/2023
3.4.2-pre.3 168 2/22/2023
3.4.2-pre.2 129 2/22/2023
3.4.2-pre.1 129 2/21/2023
3.4.2-pre.0 128 2/20/2023
3.4.1 249 2/20/2023
3.4.1-pre.9 127 2/15/2023
3.4.1-pre.8 117 2/15/2023
3.4.1-pre.7 132 2/12/2023
3.4.1-pre.6 115 2/11/2023
3.4.1-pre.5 123 2/10/2023
3.4.1-pre.4 139 2/4/2023
3.4.1-pre.3 164 1/25/2023
3.4.1-pre.2 162 1/18/2023
3.4.1-pre.1 155 1/12/2023
3.4.1-pre.0 132 1/12/2023
3.4.0 150 1/7/2023
3.4.0-pre.16 130 12/29/2022
3.4.0-pre.15 124 12/23/2022
3.4.0-pre.14 120 12/21/2022
3.4.0-pre.13 122 12/21/2022
3.4.0-pre.12 131 12/19/2022
3.4.0-pre.11 159 12/12/2022
3.4.0-pre.10 139 12/8/2022
3.4.0-pre.9 154 12/2/2022
3.4.0-pre.8 139 12/1/2022
3.4.0-pre.7 139 11/29/2022
3.4.0-pre.6 134 11/27/2022
3.4.0-pre.5 120 11/26/2022
3.4.0-pre.4 126 11/24/2022
3.4.0-pre.3 127 11/23/2022
3.4.0-pre.2 157 11/21/2022
3.4.0-pre.1 129 11/20/2022
3.4.0-pre.0 131 11/18/2022
3.3.20-pre.3 151 11/9/2022
3.3.20-pre.2 130 11/8/2022
3.3.20-pre.1 154 11/4/2022
3.3.20-pre.0 156 10/31/2022
3.3.19 182 10/21/2022
3.3.19-pre.2 166 10/20/2022
3.3.19-pre.1 147 10/17/2022
3.3.19-pre.0 135 10/14/2022
3.3.18 167 10/10/2022
3.3.18-pre.8 138 10/7/2022
3.3.18-pre.7 155 10/2/2022
3.3.18-pre.6 137 9/29/2022
3.3.18-pre.5 136 9/29/2022
3.3.18-pre.4 132 9/29/2022
3.3.18-pre.3 133 9/29/2022
3.3.18-pre.2 128 9/28/2022
3.3.18-pre.1 138 9/28/2022
3.3.17 186 9/26/2022
3.3.16 156 9/24/2022
3.3.16-pre.5 131 9/22/2022
3.3.16-pre.4 135 9/20/2022
3.3.16-pre.3 138 9/19/2022
3.3.16-pre.2 136 9/15/2022
3.3.16-pre.1 138 9/15/2022
3.3.16-pre.0 139 9/14/2022
3.3.15 204 9/11/2022
3.3.14 159 9/9/2022
3.3.14-test.0 152 9/6/2022
3.3.14-pre.1 141 9/7/2022
3.3.14-pre.0 151 8/26/2022
3.3.13 257 8/24/2022
3.3.13-pre.3 167 8/21/2022
3.3.13-pre.2 165 8/20/2022
3.3.13-pre.1 156 8/19/2022
3.3.13-pre.0 158 8/18/2022
3.3.12 185 8/15/2022
3.3.12-pre.5 162 8/14/2022
3.3.12-pre.4 164 8/14/2022
3.3.12-pre.3 169 8/12/2022
3.3.12-pre.2 170 8/9/2022
3.3.12-pre.1 157 8/9/2022
3.3.12-pre.0 165 8/9/2022
3.3.11 247 8/1/2022
3.3.10 189 7/31/2022
3.3.10-pre.6 170 7/31/2022
3.3.10-pre.5 167 7/27/2022
3.3.10-pre.4 156 7/25/2022
3.3.10-pre.3 166 7/24/2022
3.3.10-pre.2 173 7/19/2022
3.3.10-pre.1 168 7/18/2022
3.3.10-pre.0 180 7/12/2022
3.3.9 208 6/30/2022
3.3.8 214 6/15/2022
3.3.8-pre.3 168 6/15/2022
3.3.8-pre.2 182 6/8/2022
3.3.8-pre.1 174 6/6/2022
3.3.7 222 5/24/2022
3.3.6 194 5/24/2022
3.3.5 202 5/22/2022
3.3.4 204 5/16/2022
3.3.4-pre.1 184 5/12/2022
3.3.4-pre.0 191 5/11/2022
3.3.3 246 5/6/2022
3.3.3-cli-test.16 188 5/5/2022
3.3.3-cli-test.12 189 5/5/2022
3.3.3-cli-test.9 189 5/4/2022