Intent.SoftwareFactory.CLI.Nightly 4.2.999-nightly.2024-05-07-0102

This is a prerelease version of Intent.SoftwareFactory.CLI.Nightly.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet tool install --global Intent.SoftwareFactory.CLI.Nightly --version 4.2.999-nightly.2024-05-07-0102                
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.Nightly --version 4.2.999-nightly.2024-05-07-0102                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Intent.SoftwareFactory.CLI.Nightly&version=4.2.999-nightly.2024-05-07-0102&prerelease                
nuke :add-package Intent.SoftwareFactory.CLI.Nightly --version 4.2.999-nightly.2024-05-07-0102                

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

[!NOTE] 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

[!TIP] 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. 
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.4.999-nightly.2025-03-12-... 0 3/12/2025
4.4.999-nightly.2025-03-11-... 37 3/11/2025
4.4.999-nightly.2025-03-08-... 169 3/8/2025
4.4.999-nightly.2025-03-07-... 161 3/7/2025
4.4.999-nightly.2025-03-04-... 162 3/4/2025
4.4.999-nightly.2025-03-03-... 59 3/3/2025
4.4.999-nightly.2025-03-02-... 52 3/2/2025
4.4.999-nightly.2025-02-28-... 62 2/28/2025
4.4.999-nightly.2025-02-26-... 55 2/26/2025
4.4.999-nightly.2025-02-25-... 57 2/25/2025
4.4.999-nightly.2025-02-24-... 47 2/24/2025
4.4.999-nightly.2025-02-23-... 57 2/23/2025
4.4.999-nightly.2025-02-21-... 60 2/21/2025
4.4.999-nightly.2025-02-19-... 60 2/19/2025
4.4.999-nightly.2025-02-15-... 63 2/15/2025
4.4.999-nightly.2025-02-14-... 66 2/14/2025
4.4.999-nightly.2025-02-13-... 67 2/13/2025
4.4.999-nightly.2025-02-12-... 68 2/12/2025
4.4.999-nightly.2025-02-11-... 69 2/11/2025
4.4.999-nightly.2025-02-07-... 54 2/7/2025
4.4.999-nightly.2025-02-04-... 60 2/4/2025
4.4.999-nightly.2025-02-03-... 66 2/3/2025
4.4.999-nightly.2025-02-02-... 66 2/2/2025
4.4.999-nightly.2025-01-30-... 57 1/30/2025
4.4.999-nightly.2025-01-29-... 67 1/29/2025
4.4.999-nightly.2025-01-28-... 54 1/28/2025
4.4.999-nightly.2025-01-27-... 52 1/27/2025
4.4.999-nightly.2025-01-24-... 52 1/24/2025
4.4.999-nightly.2025-01-23-... 54 1/23/2025
4.4.999-nightly.2025-01-22-... 56 1/22/2025
4.4.999-nightly.2025-01-21-... 56 1/21/2025
4.4.999-nightly.2025-01-20-... 53 1/20/2025
4.4.999-nightly.2025-01-18-... 57 1/18/2025
4.4.999-nightly.2025-01-17-... 46 1/17/2025
4.4.999-nightly.2025-01-15-... 26 1/15/2025
4.4.999-nightly.2025-01-14-... 53 1/14/2025
4.4.999-nightly.2025-01-12-... 45 1/12/2025
4.4.999-nightly.2025-01-08-... 47 1/8/2025
4.4.999-nightly.2024-12-20-... 65 12/20/2024
4.4.999-nightly.2024-12-19-... 58 12/19/2024
4.4.999-nightly.2024-12-18-... 61 12/18/2024
4.4.999-nightly.2024-12-17-... 64 12/17/2024
4.4.999-nightly.2024-12-16-... 60 12/16/2024
4.4.999-nightly.2024-12-14-... 76 12/14/2024
4.4.999-nightly.2024-12-13-... 68 12/13/2024
4.4.999-nightly.2024-12-12-... 62 12/12/2024
4.4.999-nightly.2024-12-09-... 60 12/9/2024
4.4.999-nightly.2024-12-06-... 66 12/6/2024
4.4.999-nightly.2024-12-04-... 62 12/4/2024
4.4.999-nightly.2024-12-01-... 56 12/1/2024
4.4.999-nightly.2024-11-30-... 62 11/30/2024
4.4.999-nightly.2024-11-29-... 59 11/29/2024
4.4.999-nightly.2024-11-27-... 60 11/27/2024
4.4.999-nightly.2024-11-26-... 63 11/26/2024
4.4.999-nightly.2024-11-24-... 60 11/24/2024
4.4.999-nightly.2024-11-22-... 60 11/22/2024
4.4.999-nightly.2024-11-20-... 56 11/20/2024
4.4.999-nightly.2024-11-19-... 53 11/19/2024
4.4.999-nightly.2024-11-18-... 62 11/18/2024
4.4.999-nightly.2024-11-16-... 60 11/16/2024
4.4.999-nightly.2024-11-15-... 62 11/15/2024
4.4.999-nightly.2024-11-13-... 74 11/13/2024
4.4.999-nightly.2024-11-12-... 75 11/12/2024
4.4.999-nightly.2024-11-03-... 69 11/3/2024
4.4.999-nightly.2024-11-01-... 61 11/1/2024
4.4.999-nightly.2024-10-30-... 64 10/30/2024
4.4.999-nightly.2024-10-29-... 60 10/29/2024
4.4.999-nightly.2024-10-24-... 64 10/24/2024
4.4.999-nightly.2024-10-23-... 60 10/23/2024
4.4.999-nightly.2024-10-21-... 67 10/21/2024
4.4.999-nightly.2024-10-20-... 91 10/20/2024
4.4.999-nightly.2024-10-19-... 98 10/19/2024
4.4.999-nightly.2024-10-17-... 58 10/17/2024
4.3.999-nightly.2025-02-08-... 60 2/8/2025
4.3.999-nightly.2025-01-08-... 48 1/8/2025
4.3.999-nightly.2024-12-19-... 63 12/19/2024
4.3.999-nightly.2024-12-16-... 58 12/16/2024
4.3.999-nightly.2024-12-11-... 64 12/11/2024
4.3.999-nightly.2024-12-04-... 60 12/4/2024
4.3.999-nightly.2024-11-28-... 60 11/28/2024
4.3.999-nightly.2024-11-27-... 60 11/27/2024
4.3.999-nightly.2024-11-23-... 57 11/23/2024
4.3.999-nightly.2024-11-22-... 55 11/22/2024
4.3.999-nightly.2024-11-19-... 53 11/19/2024
4.3.999-nightly.2024-11-18-... 57 11/18/2024
4.3.999-nightly.2024-11-17-... 56 11/17/2024
4.3.999-nightly.2024-11-16-... 59 11/16/2024
4.3.999-nightly.2024-11-15-... 63 11/15/2024
4.3.999-nightly.2024-11-14-... 56 11/14/2024
4.3.999-nightly.2024-11-14-... 58 11/14/2024
4.3.999-nightly.2024-11-13-... 58 11/13/2024
4.3.999-nightly.2024-11-12-... 67 11/12/2024
4.3.999-nightly.2024-11-09-... 71 11/11/2024
4.3.999-nightly.2024-11-08-... 70 11/11/2024
4.3.999-nightly.2024-11-02-... 59 11/2/2024
4.3.999-nightly.2024-10-27-... 65 10/27/2024
4.3.999-nightly.2024-10-23-... 61 10/23/2024
4.3.999-nightly.2024-10-22-... 72 10/22/2024
4.3.999-nightly.2024-10-19-... 97 10/19/2024
4.3.999-nightly.2024-10-16-... 61 10/16/2024
4.3.999-nightly.2024-10-15-... 67 10/15/2024
4.3.999-nightly.2024-10-14-... 62 10/14/2024
4.3.999-nightly.2024-10-13-... 65 10/13/2024
4.3.999-nightly.2024-10-12-... 63 10/12/2024
4.3.999-nightly.2024-10-12-... 58 10/12/2024
4.3.999-nightly.2024-10-11-... 64 10/11/2024
4.3.999-nightly.2024-10-09-... 63 10/9/2024
4.3.999-nightly.2024-10-07-... 60 10/7/2024
4.3.999-nightly.2024-10-03-... 72 10/3/2024
4.3.999-nightly.2024-10-02-... 62 10/2/2024
4.3.999-nightly.2024-09-30-... 73 9/30/2024
4.3.999-nightly.2024-09-29-... 65 9/29/2024
4.3.999-nightly.2024-09-28-... 66 9/28/2024
4.3.999-nightly.2024-09-26-... 64 9/26/2024
4.3.999-nightly.2024-09-25-... 62 9/25/2024
4.3.999-nightly.2024-09-24-... 65 9/24/2024
4.3.999-nightly.2024-09-23-... 61 9/23/2024
4.3.999-nightly.2024-09-21-... 65 9/21/2024
4.3.999-nightly.2024-09-20-... 60 9/20/2024
4.3.999-nightly.2024-09-20-... 67 9/20/2024
4.3.999-nightly.2024-09-19-... 70 9/19/2024
4.3.999-nightly.2024-09-17-... 76 9/17/2024
4.3.999-nightly.2024-09-15-... 73 9/15/2024
4.3.999-nightly.2024-09-14-... 70 9/14/2024
4.3.999-nightly.2024-09-13-... 72 9/13/2024
4.3.999-nightly.2024-09-12-... 66 9/12/2024
4.3.999-nightly.2024-09-11-... 69 9/11/2024
4.3.999-nightly.2024-09-10-... 61 9/10/2024
4.3.999-nightly.2024-09-09-... 63 9/9/2024
4.3.999-nightly.2024-09-08-... 60 9/8/2024
4.3.999-nightly.2024-09-07-... 70 9/7/2024
4.3.999-nightly.2024-09-06-... 71 9/6/2024
4.3.999-nightly.2024-09-05-... 70 9/5/2024
4.3.999-nightly.2024-09-04-... 68 9/4/2024
4.3.999-nightly.2024-09-03-... 67 9/3/2024
4.3.999-nightly.2024-09-02-... 66 9/2/2024
4.3.999-nightly.2024-08-31-... 69 8/31/2024
4.3.999-nightly.2024-08-30-... 67 8/30/2024
4.3.999-nightly.2024-08-29-... 68 8/29/2024
4.3.999-nightly.2024-08-28-... 72 8/28/2024
4.3.999-nightly.2024-08-27-... 69 8/27/2024
4.3.999-nightly.2024-08-26-... 86 8/26/2024
4.3.999-nightly.2024-08-25-... 100 8/25/2024
4.3.999-nightly.2024-08-24-... 86 8/24/2024
4.3.999-nightly.2024-08-22-... 100 8/22/2024
4.3.999-nightly.2024-08-21-... 81 8/21/2024
4.3.999-nightly.2024-08-20-... 94 8/20/2024
4.3.999-nightly.2024-08-17-... 94 8/17/2024
4.3.999-nightly.2024-08-16-... 88 8/16/2024
4.3.999-nightly.2024-08-15-... 95 8/15/2024
4.3.999-nightly.2024-08-13-... 93 8/13/2024
4.3.999-nightly.2024-08-12-... 87 8/12/2024
4.3.999-nightly.2024-08-10-... 84 8/10/2024
4.3.999-nightly.2024-08-09-... 77 8/9/2024
4.3.999-nightly.2024-08-08-... 66 8/8/2024
4.3.999-nightly.2024-08-07-... 63 8/7/2024
4.3.999-nightly.2024-08-06-... 77 8/6/2024
4.3.999-nightly.2024-08-05-... 54 8/5/2024
4.3.999-nightly.2024-08-04-... 61 8/4/2024
4.3.999-nightly.2024-08-03-... 60 8/3/2024
4.3.999-nightly.2024-08-02-... 61 8/2/2024
4.3.999-nightly.2024-08-01-... 78 8/1/2024
4.3.999-nightly.2024-07-31-... 61 7/31/2024
4.3.999-nightly.2024-07-30-... 57 7/30/2024
4.3.999-nightly.2024-07-26-... 77 7/26/2024
4.3.999-nightly.2024-07-24-... 61 7/24/2024
4.3.999-nightly.2024-07-23-... 72 7/23/2024
4.3.999-nightly.2024-07-22-... 97 7/22/2024
4.3.999-nightly.2024-07-20-... 78 7/20/2024
4.3.999-nightly.2024-07-18-... 73 7/18/2024
4.3.999-nightly.2024-07-15-... 74 7/15/2024
4.3.999-nightly.2024-07-10-... 78 7/10/2024
4.3.999-nightly.2024-07-07-... 77 7/7/2024
4.3.999-nightly.2024-07-06-... 77 7/6/2024
4.3.999-nightly.2024-07-05-... 69 7/5/2024
4.3.999-nightly.2024-07-03-... 79 7/3/2024
4.3.999-nightly.2024-07-01-... 72 7/1/2024
4.3.999-nightly.2024-06-30-... 70 6/30/2024
4.3.999-nightly.2024-06-29-... 75 6/29/2024
4.3.999-nightly.2024-06-25-... 73 6/25/2024
4.3.999-nightly.2024-06-24-... 74 6/24/2024
4.3.999-nightly.2024-06-23-... 81 6/23/2024
4.3.999-nightly.2024-06-22-... 79 6/22/2024
4.3.999-nightly.2024-06-21-... 85 6/21/2024
4.3.999-nightly.2024-06-19-... 81 6/19/2024
4.3.999-nightly.2024-06-18-... 67 6/18/2024
4.3.999-nightly.2024-06-17-... 78 6/17/2024
4.3.999-nightly.2024-06-16-... 78 6/16/2024
4.3.999-nightly.2024-06-15-... 76 6/15/2024
4.3.999-nightly.2024-06-14-... 67 6/14/2024
4.3.999-nightly.2024-06-13-... 78 6/13/2024
4.3.999-nightly.2024-06-13-... 70 6/13/2024
4.3.999-nightly.2024-06-12-... 75 6/12/2024
4.3.999-nightly.2024-06-03-... 76 6/3/2024
4.3.999-nightly.2024-06-02-... 81 6/2/2024
4.3.999-nightly.2024-05-30-... 76 5/30/2024
4.3.999-nightly.2024-05-25-... 86 5/25/2024
4.3.999-nightly.2024-05-24-... 88 5/24/2024
4.3.999-nightly.2024-05-23-... 81 5/23/2024
4.3.999-nightly.2024-05-22-... 83 5/22/2024
4.3.999-nightly.2024-05-20-... 87 5/20/2024
4.3.999-nightly.2024-05-19-... 72 5/19/2024
4.3.999-nightly.2024-05-14-... 74 5/14/2024
4.3.999-nightly.2024-05-12-... 72 5/12/2024
4.3.999-nightly.2024-05-05-... 91 5/5/2024
4.3.999-nightly.2024-05-02-... 66 5/2/2024
4.3.999-nightly.2024-04-23-... 93 4/23/2024
4.3.999-nightly.2024-04-21-... 78 4/21/2024
4.3.999-nightly.2024-04-20-... 86 4/20/2024
4.3.999-nightly.2024-04-19-... 77 4/19/2024
4.3.999-nightly.2024-04-18-... 72 4/18/2024
4.3.999-nightly.2024-04-12-... 78 4/12/2024
4.3.999-nightly.2024-04-10-... 77 4/10/2024
4.3.999-nightly.2024-04-09-... 87 4/9/2024
4.3.999-nightly.2024-04-06-... 85 4/6/2024
4.3.999-nightly.2024-04-05-... 80 4/5/2024
4.3.999-nightly.2024-04-03-... 83 4/3/2024
4.3.999-nightly.2024-04-02-... 88 4/2/2024
4.3.999-nightly.2024-04-01-... 85 4/1/2024
4.3.999-nightly.2024-03-30-... 81 3/30/2024
4.3.999-nightly.2024-03-29-... 82 3/29/2024
4.3.999-nightly.2024-03-28-... 85 3/28/2024
4.3.0-nightly.2024-03-23-0102 85 3/23/2024
4.3.0-nightly.2024-03-21-0102 93 3/21/2024
4.2.999-nightly.2024-10-12-... 59 10/12/2024
4.2.999-nightly.2024-09-10-... 62 9/10/2024
4.2.999-nightly.2024-09-07-... 65 9/7/2024
4.2.999-nightly.2024-09-06-... 63 9/6/2024
4.2.999-nightly.2024-09-04-... 63 9/4/2024
4.2.999-nightly.2024-08-27-... 67 8/27/2024
4.2.999-nightly.2024-08-24-... 86 8/24/2024
4.2.999-nightly.2024-08-22-... 91 8/22/2024
4.2.999-nightly.2024-08-20-... 94 8/20/2024
4.2.999-nightly.2024-08-14-... 80 8/14/2024
4.2.999-nightly.2024-07-30-... 60 7/30/2024
4.2.999-nightly.2024-07-23-... 71 7/23/2024
4.2.999-nightly.2024-07-17-... 74 7/17/2024
4.2.999-nightly.2024-07-16-... 73 7/16/2024
4.2.999-nightly.2024-07-10-... 74 7/10/2024
4.2.999-nightly.2024-07-09-... 71 7/9/2024
4.2.999-nightly.2024-07-06-... 77 7/6/2024
4.2.999-nightly.2024-07-05-... 64 7/5/2024
4.2.999-nightly.2024-07-03-... 74 7/3/2024
4.2.999-nightly.2024-06-28-... 70 6/28/2024
4.2.999-nightly.2024-06-27-... 75 6/27/2024
4.2.999-nightly.2024-06-25-... 77 6/25/2024
4.2.999-nightly.2024-06-22-... 76 6/22/2024
4.2.999-nightly.2024-06-20-... 75 6/20/2024
4.2.999-nightly.2024-06-19-... 73 6/19/2024
4.2.999-nightly.2024-06-18-... 71 6/18/2024
4.2.999-nightly.2024-06-14-... 69 6/14/2024
4.2.999-nightly.2024-06-13-... 66 6/13/2024
4.2.999-nightly.2024-06-12-... 71 6/12/2024
4.2.999-nightly.2024-05-28-... 68 5/28/2024
4.2.999-nightly.2024-05-23-... 82 5/23/2024
4.2.999-nightly.2024-05-22-... 75 5/22/2024
4.2.999-nightly.2024-05-21-... 86 5/21/2024
4.2.999-nightly.2024-05-16-... 75 5/16/2024
4.2.999-nightly.2024-05-15-... 74 5/15/2024
4.2.999-nightly.2024-05-14-... 70 5/14/2024
4.2.999-nightly.2024-05-13-... 75 5/13/2024
4.2.999-nightly.2024-05-12-... 72 5/12/2024
4.2.999-nightly.2024-05-09-... 82 5/9/2024
4.2.999-nightly.2024-05-08-... 81 5/8/2024
4.2.999-nightly.2024-05-07-... 94 5/7/2024
4.2.999-nightly.2024-05-03-... 48 5/3/2024
4.2.999-nightly.2024-05-02-... 62 5/2/2024
4.2.999-nightly.2024-04-30-... 77 4/30/2024
4.2.999-nightly.2024-04-26-... 66 4/26/2024
4.2.999-nightly.2024-04-25-... 83 4/25/2024
4.2.999-nightly.2024-04-23-... 83 4/23/2024
4.2.999-nightly.2024-04-20-... 76 4/20/2024
4.2.999-nightly.2024-04-18-... 73 4/18/2024
4.2.999-nightly.2024-04-16-... 79 4/16/2024
4.2.999-nightly.2024-04-13-... 80 4/13/2024
4.2.999-nightly.2024-04-12-... 80 4/12/2024
4.2.999-nightly.2024-04-10-... 71 4/10/2024
4.2.999-nightly.2024-04-09-... 87 4/9/2024
4.2.999-nightly.2024-04-06-... 83 4/6/2024
4.2.999-nightly.2024-04-05-... 94 4/5/2024
4.2.999-nightly.2024-04-03-... 85 4/3/2024
4.2.999-nightly.2024-04-02-... 79 4/2/2024
4.2.999-nightly.2024-03-31-... 87 3/31/2024
4.2.999-nightly.2024-03-30-... 85 3/30/2024
4.2.999-nightly.2024-03-29-... 80 3/29/2024
4.2.999-nightly.2024-03-27-... 79 3/27/2024
4.2.0-nightly.202401090430 144 1/9/2024
4.2.0-nightly.202401060302 161 1/6/2024
4.2.0-nightly.202401050829 106 1/5/2024
4.2.0-nightly.202401050302 103 1/5/2024
4.2.0-nightly.2024-03-26-0102 82 3/26/2024
4.2.0-nightly.2024-03-25-0101 87 3/25/2024
4.2.0-nightly.2024-03-24-0101 88 3/24/2024
4.2.0-nightly.2024-03-21-0102 84 3/21/2024
4.2.0-nightly.2024-03-20-0102 81 3/20/2024
4.2.0-nightly.2024-03-19-0102 82 3/19/2024
4.2.0-nightly.2024-03-18-0102 80 3/18/2024
4.2.0-nightly.2024-03-17-0101 86 3/17/2024
4.2.0-nightly.2024-03-15-0102 85 3/15/2024
4.2.0-nightly.2024-03-14-0102 82 3/14/2024
4.2.0-nightly.2024-03-13-0102 79 3/13/2024
4.2.0-nightly.2024-03-12-0102 95 3/12/2024
4.2.0-nightly.2024-03-10-0101 85 3/10/2024
4.2.0-nightly.2024-03-09-0101 84 3/9/2024
4.2.0-nightly.2024-03-07-0102 81 3/7/2024
4.2.0-nightly.2024-03-06-0102 91 3/6/2024
4.2.0-nightly.2024-03-05-0102 86 3/5/2024
4.2.0-nightly.2024-03-04-0102 89 3/4/2024
4.2.0-nightly.2024-03-03-0101 104 3/3/2024
4.2.0-nightly.2024-03-02-0101 92 3/2/2024
4.2.0-nightly.2024-03-01-0102 96 3/1/2024
4.2.0-nightly.2024-02-29-0102 94 2/29/2024
4.2.0-nightly.2024-02-28-0102 82 2/28/2024
4.2.0-nightly.2024-02-27-0102 90 2/27/2024
4.2.0-nightly.2024-02-26-0102 85 2/26/2024
4.2.0-nightly.2024-02-25-0101 84 2/25/2024
4.2.0-nightly.2024-02-24-0101 96 2/24/2024
4.2.0-nightly.2024-02-22-0102 92 2/22/2024
4.2.0-nightly.2024-02-21-0102 96 2/21/2024
4.2.0-nightly.2024-02-19-0102 92 2/19/2024
4.2.0-nightly.2024-02-17-0101 92 2/17/2024
4.2.0-nightly.2024-02-16-0102 89 2/16/2024
4.2.0-nightly.2024-02-15-0102 102 2/15/2024
4.2.0-nightly.2024-02-14-0102 102 2/14/2024
4.2.0-nightly.2024-02-13-0102 96 2/13/2024
4.2.0-nightly.2024-02-12-0102 93 2/12/2024
4.2.0-nightly.2024-02-10-0101 99 2/10/2024
4.2.0-nightly.2024-02-09-0102 94 2/9/2024
4.2.0-nightly.2024-02-08-0102 94 2/8/2024
4.2.0-nightly.2024-02-07-0102 99 2/7/2024
4.2.0-nightly.2024-02-06-0102 93 2/6/2024
4.2.0-nightly.2024-02-05-0101 96 2/5/2024
4.2.0-nightly.2024-02-03-0101 93 2/3/2024
4.2.0-nightly.2024-02-02-0102 86 2/2/2024
4.2.0-nightly.2024-02-01-0102 86 2/1/2024
4.2.0-nightly.2024-01-31-0639 85 1/31/2024
4.2.0-nightly.2024-01-30-0102 87 1/30/2024
4.2.0-nightly.2024-01-27-0102 93 1/27/2024
4.2.0-nightly.2024-01-26-0632 86 1/26/2024
4.2.0-nightly.2024-01-25-0102 91 1/25/2024
4.2.0-nightly.2024-01-24-0855 87 1/24/2024
4.2.0-nightly.2024-01-24-0102 87 1/24/2024
4.2.0-nightly.2024-01-23-0102 91 1/23/2024
4.2.0-nightly.2024-01-22-1314 88 1/22/2024
4.2.0-nightly.2024-01-22-0125 94 1/22/2024
4.2.0-nightly.2024-01-18-0102 94 1/18/2024
4.2.0-nightly.2024-01-16-0102 87 1/16/2024
4.2.0-nightly.2024-01-15-0837 95 1/15/2024
4.2.0-nightly.2024-01-15-0102 100 1/15/2024
4.2.0-nightly.2024-01-13-0101 90 1/13/2024
4.2.0-nightly.2024-01-12-0102 104 1/12/2024
4.2.0-nightly.2024-01-11-0838 109 1/11/2024
4.2.0-nightly.2024-01-11-0102 107 1/11/2024
4.2.0-nightly.2024-01-10-0102 109 1/10/2024
4.1.0-nightly.202405240302 81 5/24/2024
4.1.0-nightly.202404230302 80 4/23/2024
4.1.0-nightly.202403230301 85 3/23/2024
4.1.0-nightly.202402210302 112 2/21/2024
4.1.0-nightly.202402200302 95 2/20/2024
4.1.0-nightly.202402190302 97 2/19/2024
4.1.0-nightly.202402150302 102 2/15/2024
4.1.0-nightly.202402140302 102 2/14/2024
4.1.0-nightly.202402130302 108 2/13/2024
4.1.0-nightly.202402120302 98 2/12/2024
4.1.0-nightly.202402100302 107 2/10/2024
4.1.0-nightly.202402060302 105 2/6/2024
4.1.0-nightly.202401300302 96 1/30/2024
4.1.0-nightly.202401290302 103 1/29/2024
4.1.0-nightly.202401240302 95 1/24/2024
4.1.0-nightly.202401230302 99 1/23/2024
4.1.0-nightly.202401220302 99 1/22/2024
4.1.0-nightly.202401210301 99 1/21/2024
4.1.0-nightly.202401200301 90 1/20/2024
4.1.0-nightly.202401170302 105 1/17/2024
4.1.0-nightly.202401160302 100 1/16/2024
4.1.0-nightly.202401150301 103 1/15/2024
4.1.0-nightly.202401140301 109 1/14/2024
4.1.0-nightly.202401130302 98 1/13/2024
4.1.0-nightly.202401120302 105 1/12/2024
4.1.0-nightly.202401110302 104 1/11/2024
4.1.0-nightly.202401100302 124 1/10/2024
4.1.0-nightly.202401090301 106 1/9/2024
4.1.0-nightly.202401070607 123 1/7/2024
4.1.0-nightly.202401060301 111 1/6/2024
4.1.0-nightly.202401050302 99 1/5/2024
4.1.0-nightly.202401040302 106 1/4/2024
4.1.0-nightly.202401030302 117 1/3/2024
4.1.0-nightly.202401010301 128 1/1/2024
4.1.0-nightly.202312300301 129 12/30/2023
4.1.0-nightly.202312291139 107 12/29/2023
4.1.0-nightly.202312290301 77 12/29/2023
4.1.0-nightly.202312280302 70 12/28/2023
4.1.0-nightly.202312250302 78 12/25/2023
4.1.0-nightly.202312230301 71 12/23/2023
4.1.0-nightly.202312210302 61 12/21/2023
4.1.0-nightly.202312200302 62 12/20/2023
4.1.0-nightly.202312150302 78 12/15/2023
4.1.0-nightly.202312141220 70 12/14/2023
4.1.0-nightly.202312141135 64 12/14/2023
4.1.0-nightly.202312140703 66 12/14/2023
4.1.0-nightly.202312140302 74 12/14/2023
4.1.0-nightly.202312131634 66 12/13/2023
4.1.0-nightly.202312130302 61 12/13/2023
4.1.0-nightly.202312110301 71 12/11/2023
4.1.0-nightly.202312100301 71 12/10/2023
4.1.0-nightly.202312090301 71 12/9/2023
4.1.0-nightly.202312080302 73 12/8/2023