Intent.SoftwareFactory.CLI.nightly 4.4.999-nightly.2024-11-03-0103

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.4.999-nightly.2024-11-03-0103                
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.4.999-nightly.2024-11-03-0103                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Intent.SoftwareFactory.CLI.nightly&version=4.4.999-nightly.2024-11-03-0103&prerelease                
nuke :add-package Intent.SoftwareFactory.CLI.nightly --version 4.4.999-nightly.2024-11-03-0103                

Software Factory CLI

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

Why use this tool?

This tool can easily be configured as part of your CI/CD pipeline to ensure your Intent Architect design and actual solution codebase are in sync. This is analogous to ensuring your codebase compiles and all tests pass when committing code, and is one of the major benefits of a CI/CD pipeline. The intention is to extend the CI/CD pipeline checks and balances to include that all Intent Architect designs are in sync with the underlying codebase. This tool allows developers to apply the same rigor to Intent Architect changes as they do to codebase changes, ensuring a more consistent and reliable codebase. This practice is particularly important when you have a team of developers collaborating on a shared repository.

Pre-requisites

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

Additional considerations when running custom modules

If your Intent Architect applications are running custom modules (i.e. modules which are not available at the https://intentarchitect.com/ repository), you will need to ensure the following:

  • The repository location containing your custom modules will need to be added as a repository with its Context set to Current Solution.
  • The operating system instance running the Software Factory CLI will need access to the location of the .imod files in order for it to be able to restore them during execution.

[!TIP] The can be used for self-hosting custom modules to make them available over HTTP.

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.

Updating

A new version of the Software Factory CLI tool is also built and published as part of the automated build process which builds and publishes the Intent Architect desktop application. The version of the tool will always correspond with the version of the desktop application.

The same command for installation (dotnet tool install Intent.SoftwareFactory.CLI --global) will update the tool if an update is available and if none is available it reinstalls it making it safe to run the command as often as desired to ensure the tool is up to date.

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.
apply-pending-changes <username> <password> <isln-path> Runs the Software Factory and applies any outstanding changes.

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
--check-deviations Whether to also check for unapproved deviations.
--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

apply-pending-changes command

Runs the Software Factory and applies any outstanding changes.

apply-pending-changes usage

intent-cli apply-pending-changes <username> <password> <isln-path> [options]

apply-pending-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.

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