Intent.SoftwareFactory.CLI.Nightly 4.2.999-nightly.2024-04-16-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-04-16-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-04-16-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-04-16-0102&prerelease                
nuke :add-package Intent.SoftwareFactory.CLI.Nightly --version 4.2.999-nightly.2024-04-16-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. 
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.3.999-nightly.2024-09-26-... 0 9/26/2024
4.3.999-nightly.2024-09-25-... 25 9/25/2024
4.3.999-nightly.2024-09-24-... 35 9/24/2024
4.3.999-nightly.2024-09-23-... 31 9/23/2024
4.3.999-nightly.2024-09-21-... 34 9/21/2024
4.3.999-nightly.2024-09-20-... 33 9/20/2024
4.3.999-nightly.2024-09-20-... 38 9/20/2024
4.3.999-nightly.2024-09-19-... 43 9/19/2024
4.3.999-nightly.2024-09-17-... 47 9/17/2024
4.3.999-nightly.2024-09-15-... 45 9/15/2024
4.3.999-nightly.2024-09-14-... 43 9/14/2024
4.3.999-nightly.2024-09-13-... 44 9/13/2024
4.3.999-nightly.2024-09-12-... 40 9/12/2024
4.3.999-nightly.2024-09-11-... 41 9/11/2024
4.3.999-nightly.2024-09-10-... 37 9/10/2024
4.3.999-nightly.2024-09-09-... 35 9/9/2024
4.3.999-nightly.2024-09-08-... 37 9/8/2024
4.3.999-nightly.2024-09-07-... 43 9/7/2024
4.3.999-nightly.2024-09-06-... 46 9/6/2024
4.3.999-nightly.2024-09-05-... 46 9/5/2024
4.3.999-nightly.2024-09-04-... 40 9/4/2024
4.3.999-nightly.2024-09-03-... 38 9/3/2024
4.3.999-nightly.2024-09-02-... 42 9/2/2024
4.3.999-nightly.2024-08-31-... 46 8/31/2024
4.3.999-nightly.2024-08-30-... 44 8/30/2024
4.3.999-nightly.2024-08-29-... 42 8/29/2024
4.3.999-nightly.2024-08-28-... 47 8/28/2024
4.3.999-nightly.2024-08-27-... 42 8/27/2024
4.3.999-nightly.2024-08-26-... 58 8/26/2024
4.3.999-nightly.2024-08-25-... 65 8/25/2024
4.3.999-nightly.2024-08-24-... 63 8/24/2024
4.3.999-nightly.2024-08-22-... 74 8/22/2024
4.3.999-nightly.2024-08-21-... 56 8/21/2024
4.3.999-nightly.2024-08-20-... 67 8/20/2024
4.3.999-nightly.2024-08-17-... 72 8/17/2024
4.3.999-nightly.2024-08-16-... 62 8/16/2024
4.3.999-nightly.2024-08-15-... 69 8/15/2024
4.3.999-nightly.2024-08-13-... 69 8/13/2024
4.3.999-nightly.2024-08-12-... 64 8/12/2024
4.3.999-nightly.2024-08-10-... 59 8/10/2024
4.3.999-nightly.2024-08-09-... 56 8/9/2024
4.3.999-nightly.2024-08-08-... 43 8/8/2024
4.3.999-nightly.2024-08-07-... 41 8/7/2024
4.3.999-nightly.2024-08-06-... 55 8/6/2024
4.3.999-nightly.2024-08-05-... 32 8/5/2024
4.3.999-nightly.2024-08-04-... 38 8/4/2024
4.3.999-nightly.2024-08-03-... 32 8/3/2024
4.3.999-nightly.2024-08-02-... 34 8/2/2024
4.3.999-nightly.2024-08-01-... 46 8/1/2024
4.3.999-nightly.2024-07-31-... 34 7/31/2024
4.3.999-nightly.2024-07-30-... 32 7/30/2024
4.3.999-nightly.2024-07-26-... 51 7/26/2024
4.3.999-nightly.2024-07-24-... 38 7/24/2024
4.3.999-nightly.2024-07-23-... 47 7/23/2024
4.3.999-nightly.2024-07-22-... 66 7/22/2024
4.3.999-nightly.2024-07-20-... 51 7/20/2024
4.3.999-nightly.2024-07-18-... 47 7/18/2024
4.3.999-nightly.2024-07-15-... 46 7/15/2024
4.3.999-nightly.2024-07-10-... 51 7/10/2024
4.3.999-nightly.2024-07-07-... 53 7/7/2024
4.3.999-nightly.2024-07-06-... 51 7/6/2024
4.3.999-nightly.2024-07-05-... 46 7/5/2024
4.3.999-nightly.2024-07-03-... 51 7/3/2024
4.3.999-nightly.2024-07-01-... 47 7/1/2024
4.3.999-nightly.2024-06-30-... 47 6/30/2024
4.3.999-nightly.2024-06-29-... 52 6/29/2024
4.3.999-nightly.2024-06-25-... 50 6/25/2024
4.3.999-nightly.2024-06-24-... 51 6/24/2024
4.3.999-nightly.2024-06-23-... 57 6/23/2024
4.3.999-nightly.2024-06-22-... 51 6/22/2024
4.3.999-nightly.2024-06-21-... 62 6/21/2024
4.3.999-nightly.2024-06-19-... 54 6/19/2024
4.3.999-nightly.2024-06-18-... 40 6/18/2024
4.3.999-nightly.2024-06-17-... 51 6/17/2024
4.3.999-nightly.2024-06-16-... 51 6/16/2024
4.3.999-nightly.2024-06-15-... 49 6/15/2024
4.3.999-nightly.2024-06-14-... 42 6/14/2024
4.3.999-nightly.2024-06-13-... 53 6/13/2024
4.3.999-nightly.2024-06-13-... 44 6/13/2024
4.3.999-nightly.2024-06-12-... 49 6/12/2024
4.3.999-nightly.2024-06-03-... 50 6/3/2024
4.3.999-nightly.2024-06-02-... 60 6/2/2024
4.3.999-nightly.2024-05-30-... 51 5/30/2024
4.3.999-nightly.2024-05-25-... 60 5/25/2024
4.3.999-nightly.2024-05-24-... 61 5/24/2024
4.3.999-nightly.2024-05-23-... 55 5/23/2024
4.3.999-nightly.2024-05-22-... 53 5/22/2024
4.3.999-nightly.2024-05-20-... 62 5/20/2024
4.3.999-nightly.2024-05-19-... 50 5/19/2024
4.3.999-nightly.2024-05-14-... 49 5/14/2024
4.3.999-nightly.2024-05-12-... 46 5/12/2024
4.3.999-nightly.2024-05-05-... 67 5/5/2024
4.3.999-nightly.2024-05-02-... 34 5/2/2024
4.3.999-nightly.2024-04-23-... 68 4/23/2024
4.3.999-nightly.2024-04-21-... 54 4/21/2024
4.3.999-nightly.2024-04-20-... 60 4/20/2024
4.3.999-nightly.2024-04-19-... 53 4/19/2024
4.3.999-nightly.2024-04-18-... 49 4/18/2024
4.3.999-nightly.2024-04-12-... 53 4/12/2024
4.3.999-nightly.2024-04-10-... 55 4/10/2024
4.3.999-nightly.2024-04-09-... 61 4/9/2024
4.3.999-nightly.2024-04-06-... 59 4/6/2024
4.3.999-nightly.2024-04-05-... 55 4/5/2024
4.3.999-nightly.2024-04-03-... 57 4/3/2024
4.3.999-nightly.2024-04-02-... 61 4/2/2024
4.3.999-nightly.2024-04-01-... 63 4/1/2024
4.3.999-nightly.2024-03-30-... 56 3/30/2024
4.3.999-nightly.2024-03-29-... 57 3/29/2024
4.3.999-nightly.2024-03-28-... 63 3/28/2024
4.3.0-nightly.2024-03-23-0102 60 3/23/2024
4.3.0-nightly.2024-03-21-0102 65 3/21/2024
4.2.999-nightly.2024-09-10-... 33 9/10/2024
4.2.999-nightly.2024-09-07-... 40 9/7/2024
4.2.999-nightly.2024-09-06-... 40 9/6/2024
4.2.999-nightly.2024-09-04-... 39 9/4/2024
4.2.999-nightly.2024-08-27-... 45 8/27/2024
4.2.999-nightly.2024-08-24-... 55 8/24/2024
4.2.999-nightly.2024-08-22-... 62 8/22/2024
4.2.999-nightly.2024-08-20-... 68 8/20/2024
4.2.999-nightly.2024-08-14-... 59 8/14/2024
4.2.999-nightly.2024-07-30-... 33 7/30/2024
4.2.999-nightly.2024-07-23-... 42 7/23/2024
4.2.999-nightly.2024-07-17-... 46 7/17/2024
4.2.999-nightly.2024-07-16-... 46 7/16/2024
4.2.999-nightly.2024-07-10-... 45 7/10/2024
4.2.999-nightly.2024-07-09-... 46 7/9/2024
4.2.999-nightly.2024-07-06-... 54 7/6/2024
4.2.999-nightly.2024-07-05-... 40 7/5/2024
4.2.999-nightly.2024-07-03-... 51 7/3/2024
4.2.999-nightly.2024-06-28-... 46 6/28/2024
4.2.999-nightly.2024-06-27-... 49 6/27/2024
4.2.999-nightly.2024-06-25-... 49 6/25/2024
4.2.999-nightly.2024-06-22-... 50 6/22/2024
4.2.999-nightly.2024-06-20-... 48 6/20/2024
4.2.999-nightly.2024-06-19-... 50 6/19/2024
4.2.999-nightly.2024-06-18-... 44 6/18/2024
4.2.999-nightly.2024-06-14-... 47 6/14/2024
4.2.999-nightly.2024-06-13-... 44 6/13/2024
4.2.999-nightly.2024-06-12-... 43 6/12/2024
4.2.999-nightly.2024-05-28-... 44 5/28/2024
4.2.999-nightly.2024-05-23-... 57 5/23/2024
4.2.999-nightly.2024-05-22-... 48 5/22/2024
4.2.999-nightly.2024-05-21-... 61 5/21/2024
4.2.999-nightly.2024-05-16-... 53 5/16/2024
4.2.999-nightly.2024-05-15-... 50 5/15/2024
4.2.999-nightly.2024-05-14-... 49 5/14/2024
4.2.999-nightly.2024-05-13-... 49 5/13/2024
4.2.999-nightly.2024-05-12-... 45 5/12/2024
4.2.999-nightly.2024-05-09-... 56 5/9/2024
4.2.999-nightly.2024-05-08-... 57 5/8/2024
4.2.999-nightly.2024-05-07-... 66 5/7/2024
4.2.999-nightly.2024-05-03-... 22 5/3/2024
4.2.999-nightly.2024-05-02-... 36 5/2/2024
4.2.999-nightly.2024-04-30-... 51 4/30/2024
4.2.999-nightly.2024-04-26-... 45 4/26/2024
4.2.999-nightly.2024-04-25-... 56 4/25/2024
4.2.999-nightly.2024-04-23-... 58 4/23/2024
4.2.999-nightly.2024-04-20-... 53 4/20/2024
4.2.999-nightly.2024-04-18-... 49 4/18/2024
4.2.999-nightly.2024-04-16-... 57 4/16/2024
4.2.999-nightly.2024-04-13-... 56 4/13/2024
4.2.999-nightly.2024-04-12-... 58 4/12/2024
4.2.999-nightly.2024-04-10-... 49 4/10/2024
4.2.999-nightly.2024-04-09-... 60 4/9/2024
4.2.999-nightly.2024-04-06-... 61 4/6/2024
4.2.999-nightly.2024-04-05-... 68 4/5/2024
4.2.999-nightly.2024-04-03-... 61 4/3/2024
4.2.999-nightly.2024-04-02-... 57 4/2/2024
4.2.999-nightly.2024-03-31-... 61 3/31/2024
4.2.999-nightly.2024-03-30-... 55 3/30/2024
4.2.999-nightly.2024-03-29-... 55 3/29/2024
4.2.999-nightly.2024-03-27-... 56 3/27/2024
4.2.0-nightly.202401090430 123 1/9/2024
4.2.0-nightly.202401060302 140 1/6/2024
4.2.0-nightly.202401050829 82 1/5/2024
4.2.0-nightly.202401050302 72 1/5/2024
4.2.0-nightly.2024-03-26-0102 58 3/26/2024
4.2.0-nightly.2024-03-25-0101 64 3/25/2024
4.2.0-nightly.2024-03-24-0101 66 3/24/2024
4.2.0-nightly.2024-03-21-0102 60 3/21/2024
4.2.0-nightly.2024-03-20-0102 57 3/20/2024
4.2.0-nightly.2024-03-19-0102 59 3/19/2024
4.2.0-nightly.2024-03-18-0102 58 3/18/2024
4.2.0-nightly.2024-03-17-0101 64 3/17/2024
4.2.0-nightly.2024-03-15-0102 60 3/15/2024
4.2.0-nightly.2024-03-14-0102 59 3/14/2024
4.2.0-nightly.2024-03-13-0102 55 3/13/2024
4.2.0-nightly.2024-03-12-0102 60 3/12/2024
4.2.0-nightly.2024-03-10-0101 62 3/10/2024
4.2.0-nightly.2024-03-09-0101 60 3/9/2024
4.2.0-nightly.2024-03-07-0102 55 3/7/2024
4.2.0-nightly.2024-03-06-0102 69 3/6/2024
4.2.0-nightly.2024-03-05-0102 66 3/5/2024
4.2.0-nightly.2024-03-04-0102 67 3/4/2024
4.2.0-nightly.2024-03-03-0101 77 3/3/2024
4.2.0-nightly.2024-03-02-0101 65 3/2/2024
4.2.0-nightly.2024-03-01-0102 68 3/1/2024
4.2.0-nightly.2024-02-29-0102 67 2/29/2024
4.2.0-nightly.2024-02-28-0102 56 2/28/2024
4.2.0-nightly.2024-02-27-0102 65 2/27/2024
4.2.0-nightly.2024-02-26-0102 60 2/26/2024
4.2.0-nightly.2024-02-25-0101 59 2/25/2024
4.2.0-nightly.2024-02-24-0101 65 2/24/2024
4.2.0-nightly.2024-02-22-0102 63 2/22/2024
4.2.0-nightly.2024-02-21-0102 64 2/21/2024
4.2.0-nightly.2024-02-19-0102 61 2/19/2024
4.2.0-nightly.2024-02-17-0101 63 2/17/2024
4.2.0-nightly.2024-02-16-0102 61 2/16/2024
4.2.0-nightly.2024-02-15-0102 71 2/15/2024
4.2.0-nightly.2024-02-14-0102 76 2/14/2024
4.2.0-nightly.2024-02-13-0102 71 2/13/2024
4.2.0-nightly.2024-02-12-0102 67 2/12/2024
4.2.0-nightly.2024-02-10-0101 67 2/10/2024
4.2.0-nightly.2024-02-09-0102 69 2/9/2024
4.2.0-nightly.2024-02-08-0102 67 2/8/2024
4.2.0-nightly.2024-02-07-0102 68 2/7/2024
4.2.0-nightly.2024-02-06-0102 66 2/6/2024
4.2.0-nightly.2024-02-05-0101 73 2/5/2024
4.2.0-nightly.2024-02-03-0101 71 2/3/2024
4.2.0-nightly.2024-02-02-0102 66 2/2/2024
4.2.0-nightly.2024-02-01-0102 65 2/1/2024
4.2.0-nightly.2024-01-31-0639 63 1/31/2024
4.2.0-nightly.2024-01-30-0102 62 1/30/2024
4.2.0-nightly.2024-01-27-0102 67 1/27/2024
4.2.0-nightly.2024-01-26-0632 64 1/26/2024
4.2.0-nightly.2024-01-25-0102 67 1/25/2024
4.2.0-nightly.2024-01-24-0855 63 1/24/2024
4.2.0-nightly.2024-01-24-0102 64 1/24/2024
4.2.0-nightly.2024-01-23-0102 66 1/23/2024
4.2.0-nightly.2024-01-22-1314 68 1/22/2024
4.2.0-nightly.2024-01-22-0125 69 1/22/2024
4.2.0-nightly.2024-01-18-0102 70 1/18/2024
4.2.0-nightly.2024-01-16-0102 65 1/16/2024
4.2.0-nightly.2024-01-15-0837 70 1/15/2024
4.2.0-nightly.2024-01-15-0102 80 1/15/2024
4.2.0-nightly.2024-01-13-0101 67 1/13/2024
4.2.0-nightly.2024-01-12-0102 78 1/12/2024
4.2.0-nightly.2024-01-11-0838 87 1/11/2024
4.2.0-nightly.2024-01-11-0102 84 1/11/2024
4.2.0-nightly.2024-01-10-0102 87 1/10/2024
4.1.0-nightly.202405240302 56 5/24/2024
4.1.0-nightly.202404230302 55 4/23/2024
4.1.0-nightly.202403230301 61 3/23/2024
4.1.0-nightly.202402210302 78 2/21/2024
4.1.0-nightly.202402200302 61 2/20/2024
4.1.0-nightly.202402190302 69 2/19/2024
4.1.0-nightly.202402150302 71 2/15/2024
4.1.0-nightly.202402140302 70 2/14/2024
4.1.0-nightly.202402130302 86 2/13/2024
4.1.0-nightly.202402120302 67 2/12/2024
4.1.0-nightly.202402100302 71 2/10/2024
4.1.0-nightly.202402060302 79 2/6/2024
4.1.0-nightly.202401300302 71 1/30/2024
4.1.0-nightly.202401290302 77 1/29/2024
4.1.0-nightly.202401240302 71 1/24/2024
4.1.0-nightly.202401230302 70 1/23/2024
4.1.0-nightly.202401220302 78 1/22/2024
4.1.0-nightly.202401210301 73 1/21/2024
4.1.0-nightly.202401200301 67 1/20/2024
4.1.0-nightly.202401170302 79 1/17/2024
4.1.0-nightly.202401160302 78 1/16/2024
4.1.0-nightly.202401150301 82 1/15/2024
4.1.0-nightly.202401140301 85 1/14/2024
4.1.0-nightly.202401130302 72 1/13/2024
4.1.0-nightly.202401120302 82 1/12/2024
4.1.0-nightly.202401110302 78 1/11/2024
4.1.0-nightly.202401100302 97 1/10/2024
4.1.0-nightly.202401090301 78 1/9/2024
4.1.0-nightly.202401070607 97 1/7/2024
4.1.0-nightly.202401060301 88 1/6/2024
4.1.0-nightly.202401050302 73 1/5/2024
4.1.0-nightly.202401040302 81 1/4/2024
4.1.0-nightly.202401030302 89 1/3/2024
4.1.0-nightly.202401010301 102 1/1/2024
4.1.0-nightly.202312300301 105 12/30/2023
4.1.0-nightly.202312291139 85 12/29/2023
4.1.0-nightly.202312290301 62 12/29/2023
4.1.0-nightly.202312280302 57 12/28/2023
4.1.0-nightly.202312250302 66 12/25/2023
4.1.0-nightly.202312230301 56 12/23/2023
4.1.0-nightly.202312210302 46 12/21/2023
4.1.0-nightly.202312200302 49 12/20/2023
4.1.0-nightly.202312150302 65 12/15/2023
4.1.0-nightly.202312141220 57 12/14/2023
4.1.0-nightly.202312141135 51 12/14/2023
4.1.0-nightly.202312140703 53 12/14/2023
4.1.0-nightly.202312140302 59 12/14/2023
4.1.0-nightly.202312131634 53 12/13/2023
4.1.0-nightly.202312130302 48 12/13/2023
4.1.0-nightly.202312110301 57 12/11/2023
4.1.0-nightly.202312100301 58 12/10/2023
4.1.0-nightly.202312090301 57 12/9/2023
4.1.0-nightly.202312080302 60 12/8/2023