Piral.Blazor.Utils 8.0.11

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Piral.Blazor.Utils --version 8.0.11
NuGet\Install-Package Piral.Blazor.Utils -Version 8.0.11
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Piral.Blazor.Utils" Version="8.0.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Piral.Blazor.Utils --version 8.0.11
#r "nuget: Piral.Blazor.Utils, 8.0.11"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Piral.Blazor.Utils as a Cake Addin
#addin nuget:?package=Piral.Blazor.Utils&version=8.0.11

// Install Piral.Blazor.Utils as a Cake Tool
#tool nuget:?package=Piral.Blazor.Utils&version=8.0.11

Piral Logo

Piral.Blazor · GitHub License Build Status GitHub Tag GitHub Issues Gitter Chat Feed Status

All .NET things to make <a href="https://blazor.net" rel="nofollow"><img src="https://devblogs.microsoft.com/aspnet/wp-content/uploads/sites/16/2019/04/BrandBlazor_nohalo_1000x.png" height="10"> Blazor</a> work seamlessly in microfrontends using <a href="https://piral.io" rel="nofollow"> <img src="https://piral.io/logo-simple.f8667084.png" height="10">  Piral</a>.

This is the branch for Blazor 8.0 with .NET 8.0. If you want to switch to Blazor with the older .NET Core 3.2, please refer to the blazor-3.2, blazor-5.0, blazor-6.0, orblazor-7.0 branch.

Getting Started

You'll also find some information in the piral-blazor package.

Creating a Blazor Pilet

We recommend that you watch the video on scaffolding from the standard VS template before you go over the details below.

In general, to create a Blazor pilet using Piral.Blazor, two approaches can be used:

1. From Scratch

In this case, it is highly recommended to use our template. More information and installation instructions can be found in Piral.Blazor.Template.

2. Transforming an Existing Application

In this case, follow these steps:

  1. Add a PiralInstance property to your .csproj file (The Piral instance name should be the name of the Piral instance you want to use, as it is published on npm.)

    <PropertyGroup>
        <TargetFramework>net8.0</TargetFramework>
        <PiralInstance>my-piral-instance</PiralInstance>
    </PropertyGroup>
    

    (You can optionally also specify an NpmRegistry property. The default for this is set to https://registry.npmjs.org/)

  2. Install the Piral.Blazor.Tools and Piral.Blazor.Utils packages, make sure they both have a version number of format 8.0.x

  3. Remove the Microsoft.AspNetCore.Components.WebAssembly.DevServer package and install the Piral.Blazor.DevServer package (using the same version as the packages from (2))

  4. Rename Program.cs to Module.cs, and make sure to make the Main method an empty method.

  5. Build the project. The first time you do this, this can take some time as it will fully scaffold the pilet.

If you run the solution using F5 the Piral.Blazor.DevServer will start the Piral CLI under the hood. This allows you to not only use .NET Hot-Reload, but also replace the pilets on demand.

Usage

Build Configuration

The *.csproj file of your pilet offers you some configuration steps to actually tailor the build to your needs.

Here is a minimal example configuration:

<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <PiralInstance>../../app-shell/dist/emulator/app-shell-1.0.0.tgz</PiralInstance>
  </PropertyGroup>

  
</Project>

This one gets the app shell from a local directory. Realistically, you'd have your app shell on a registry. In case of the default registry it could look like

<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <PiralInstance>@mycompany/app-shell</PiralInstance>
  </PropertyGroup>

  
</Project>

but realistically you'd publish the app shell to a private registry on a different URL. In such scenarios you'd also make use of the NpmRegistry setting:

<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <PiralInstance>@mycompany/app-shell</PiralInstance>
    <NpmRegistry>https://registry.mycompany.com/</NpmRegistry>
  </PropertyGroup>

  
</Project>

Besides these two options (required PiralInstance and optional NpmRegistry) the following settings exist:

  • Version: Sets the version of the pilet. This is a/the standard project property.
  • PiralInstance: Sets the name (or local path) of the app shell.
  • NpmRegistry: Sets the URL of the npm registry to use. Will be used for getting npm dependencies of the app shell (and the app shell itself).
  • Bundler: Sets the name of the bundler to use. By default this is esbuild. The list of all available bundlers can be found in the Piral documentation.
  • ProjectsWithStaticFiles: Sets the names of the projects that contain static files, which require to be copied to the output directory. Separate the names of these projects by semicolons.
  • Monorepo: Sets the behavior of the scaffolding to a monorepo mode. The value must be enable to switch this on.
  • PiralCliVersion: Determines the version of the piral-cli tooling to use. By default this is latest.
  • PiralBundlerVersion: Determines the version of the piral-cli-<bundler> to use. By default, this is the same as the value of the PiralCliVersion.
  • OutputFolder: Sets the temporary output folder for the generated pilet (default: ..\piral~).
  • ConfigFolder: Sets the folder where the config files are stored (default: empty, i.e., current project folder).
  • MocksFolder: Sets the folder where the Kras mock files are stored (default: .\mocks).
  • PiletKind: Sets the pilet kind (values: global, local; default: local).
  • PiletPriority: Sets the optional priority of the pilet when loading (any representable positive number). DLLs of Blazor pilets with higher numbers will always be loaded before the current DLLs (default: none).
  • PublishFeedUrl: Sets the URL to be used for publishing the pilet. If this is left free then using "Publish" in Visual Studio will not trigger a publish of the pilet.
  • PublishFeedApiKey: Sets the API Key to be used when publishing the pilet. If this is left free then the interactive upload is used, which will open a web browser for logging into the feed service.

A more extensive example:

<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <Version>1.2.3</Version>
    <PiralInstance>@mycompany/app-shell</PiralInstance>
    <PiralCliVersion>next</PiralCliVersion>
    <PiralBundlerVersion>1.1.0</PiralBundlerVersion>
    <NpmRegistry>https://registry.mycompany.com/</NpmRegistry>
    <Bundler>esbuild</Bundler>
    <Monorepo>disable</Monorepo>
    <ProjectsWithStaticFiles>
      designsystem;
      someotherproject;
      thirdproj
    </ProjectsWithStaticFiles>
    <PiletPriority>999</PiletPriority>
  </PropertyGroup>

  
</Project>

While pilets that define PiletKind to be global only have shared dependencies, the default for local pilets is to have integrated dependencies. If certain dependencies of local pilets should also be loaded into the global context (effectively sharing the dependency between all pilets - independent of the version) then you need to put those dependencies into a dedicated ItemGroup using the Label shared:

<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

  

  <ItemGroup Label="shared">
    <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="8.0.0" />
  </ItemGroup>

  <ItemGroup>
    
    <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
    <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" />
  </ItemGroup>

</Project>

Pages

A standard page in Blazor, using the @page directive, will work as expected, and will be automatically registered on the pilet API.

Extensions

To register an extension, the PiralExtension attribute can be used. You will also have to provide the extension slot name that defines where the extension should be rendered. The component can even be registered into multiple slots using multiple attributes.

//counter.razor

@attribute [PiralExtension("my-counter-slot")]
@attribute [PiralExtension("another-extension-slot")]

<h1>Counter</h1>

<p>Current count: @currentCount</p>

<button @onclick="IncrementCount">Click me</button>

@code {
    int currentCount = 0;

    void IncrementCount()
    {
        currentCount++;
    }
}

To use an extension within a Blazor component, the <Extension> component can be used.

<Extension Name="my-counter-slot"></Extension>

Components, Tiles, Menu Items, and Others

To register a Blazor component for use in the pilet API, the PiralComponent attribute can be used in two ways:

  1. [PiralComponent], this will register the component using the fully qualified name.
  2. [PiralComponent(<name>)] will register the component using the custom name provided.

To register these components onto the pilet API, a setup.tsx file should be created at the root of your Blazor project.

This file may then, for example to register a tile, look like this:

import { PiletApi } from '../piral~/<project_name>/node_modules/<piral_instance>';

type AddScript = (path: string, attrs?: Record<string, string>) => void;
type AddStyles = (path: string, pos?: 'first' | 'last' | 'before' | ' after') => void;

export default (app: PiletApi, addScript: AddScript, addStyles: AddStyles) => {
	//for a component marked with[PiralComponent("my-tile")]
	app.registerTile(app.fromBlazor('my-tile'));
};

The addScript function can be used to actually add more scripts, e.g.:

export default (app: PiletApi, addScript: AddScript, addStyles: AddStyles) => {
	addScript("_content/Microsoft.Authentication.WebAssembly.Msal/AuthenticationService.js");
};

The first argument is the (relative) path to the RCL script, while the optional second argument provides additional attributes for the script to be added to the DOM.

The addStyles function can be used to add more style sheets, e.g.:

export default (app: PiletApi, addScript: AddScript, addStyles: AddStyles) => {
  addStyles("_content/MudBlazor/MudBlazor.min.css");
};

Important: Non-abstract / exposed components with PiralComponent cannot have a type parameter. As these are directly instantiated from JavaScript there is no way to define the type to be used. As such, you cannot mark components as @[PiralComponent] and @typeparam. If you want to use a generic component, then wrap it (i.e., use a second component declared as a PiralComponent, which only mounts / renders the first component with the desired generic type).

Using Parameters

Parameters (or "props") are properly forwarded. Usually, it should be sufficient to declare [Parameter] properties in the Blazor components. Besides, there are more advanced ways.

Generic Approach

For instance, to access the params prop of an extension you can use the PiralParameter attribute. This way, you can "forward" props from JS to the .NET name of your choice (in this case "params" is renamed to "Parameters").

@attribute [PiralExtension("sample-extension")]

<div>@Parameters.Test</div>

@code {
    public class MyParams
    {
        public string Test { get; set; }
    }

    [Parameter]
    [PiralParameter("params")]
    public MyParams Parameters { get; set; }
}

For the serialization you'll need to use either a JsonElement or something that can be serialized into. In this case, we used a class called MyParams.

Important: Make sure that your classes here are serializable, i.e., that they have a default / empty constructor (no parameters) and are public. Best case: These should be POCOs.

With the PiralParameter you can also access / forward children to improve object access:

@attribute [PiralExtension("sample-extension")]

<div>@Message</div>

@code {
    [Parameter]
    [PiralParameter("params.Test")]
    public string Message { get; set; }
}

That way, we only have a property Message which reflects the params.Test. So if the extension is called like that:

<app.Extension
    name="sample-extension"
    params={
        {
            Test: "Hello world",
        }
    }
/>

It would just work.

Routes

If you want to match the route parameter you can use the generic approach, too:

@page "/foo/{id}"

<div>@Id</div>

@code {
    [Parameter]
    [PiralParameter("match.params.id")]
    public string Id { get; set; }
}

However, since using match.params is quite verbose and easy to get wrong you can also use the special PiralRouteParameter attribute.

@page "/foo/{id}"

<div>@Id</div>

@code {
    [Parameter]
    [PiralRouteParameter("id")]
    public string Id { get; set; }
}

Note that there is another convenience deriving from the use of PiralRouteParameter. If your route parameter name matches the name of the property then you can also omit the argument:

@page "/foo/{Id}"

<div>@Id</div>

@code {
    [Parameter]
    [PiralRouteParameter]
    public string Id { get; set; }
}

In addition to route parameters you can also match the query parameters using the PiralQueryParameter attribute:

@page "/foo"

<div>@Id</div>

@code {
    [Parameter]
    [PiralQueryParameter]  
    public string Id { get; set; } 
}

The previous example would match /foo?id=bar with Id being set to bar. You could also change the name of the used query parameter:

@page "/foo"

<div>@SearchQuery</div>

@code {
    [Parameter]
    [PiralQueryParameter("q")]  
    public string SearchQuery { get; set; } 
}

This would print hello for /foo?q=hello.

Dependency Injection

You can define services for dependency injection in a Module class. The name of the class is arbitrary, but it shows the difference to the standard Program class, which should not be available, as mentioned before.

To be able to compile successfully, a Main method should be declared, which should remain empty.

public class Module
{
    public static void Main()
    {
        // this entrypoint should remain empty
    }

    public static void ConfigureServices(IServiceCollection services)
    {
        // configure dependency injection for the components in the pilet here
    }
}

The ConfigureServices method is optional. If you want to configure dependency injection in your pilet then use this.

If a third-party library requires globally shared dependencies (or global injected DI) then add it to a global pilet (setting the PiletKind to global in the csproj / build configuration).

Additionally, the ConfigureServices method supports another argument providing the configuration of the pilet, i.e., the IConfiguration object. So, the example above could be rewritten to be:

public class Module
{
    public static void Main()
    {
        // this entrypoint should remain empty
    }

    public static void ConfigureServices(IServiceCollection services, IConfiguration configuration)
    {
    }
}

The configuration uses the meta.config of the Pilet API provided by the pilet.

Important: There is no support for the appsettings...json file as the configuration is assumed to be distributed. Use the meta.config approach described below for local development and a proper feed service with configuration support for production purposes.

Standard Pilet Service

Every pilet gets automatically a service called IPiletService injected.

Asset URLs

The IPiletService service can be used to compute the URL of a resource.

@inject IPiletService Pilet

The relevant helper method is GetUrl. You can use it like:

@page "/example"
@inject IPiletService Pilet

<img src=@Pilet.GetUrl("images/something.png") alt="Some image" />

In the example above the resource images/something.png would be placed in the wwwroot folder (i.e., wwwroot/images/something). As the content of the wwwroot folder is copied, the image will also be copied. However, the old local URL is not valid in a pilet, which needs to prefix its resources with its base URL. The function above does that. In that case, the URL would maybe be something like http://localhost:1234/$pilet-api/0/images/something.png while debugging, and another fully qualified URL later in production.

Events

You can use the IPiletService service to emit and receive events via the standard Pilet API event bus. This is great for doing loosely-coupled pilet-to-pilet communication.

Example:

@attribute [PiralComponent]
@inject IPiletService ps
@implements IDisposable

<aside class=@_sidebarClass>
  <a @onclick=@CloseSidebar style="display: inline-block; padding: 0 10px; cursor: pointer;">x</a>
</aside> 

@code {
    [Parameter]
    public bool IsOpen { get; set; } = false;

    [Parameter]
    public EventCallback<bool> IsOpenChanged { get; set; }

    string _sidebarClass { get => IsOpen ? "sidebar open" : "sidebar"; }

    public void Dispose()
    {
        ps.RemoveEventListener<bool>("toggle-sidebar", ToggleSidebar);
    }

    protected override void OnInitialized()
    {
        ps.AddEventListener<bool>("toggle-sidebar", ToggleSidebar);
    }

    public void ToggleSidebar(bool value) => IsOpenChanged.InvokeAsync(value);

    public void CloseSidebar() => ToggleSidebar(false);
}

Another component can now trigger this by using ps.DispatchEvent("toggle-sidebar", false); with an injected @inject IPiletService ps.

Pilet Data and API Access

You can use the IPiletService service to call methods living on the pilet API. This makes mostly sense for APIs that are quite primitive, e.g., accepting and returning only strings, booleans, and integers.

In general this is working via the Call API. An example would be:

@attribute [PiralComponent]
@inject IPiletService ps

<button @onclick=@LogValue>Log current value</button>

@code {
    public async void LogValue()
    {
      var value = await ps.Call<string>("getData", "myValue");
      Console.WriteLine("Currently stored value is: {0}", value);
    }
}

For some more common pilet API functions extension methods exist. The call beforehand to the getData function could be simplified with the GetDataValue extension:

@attribute [PiralComponent]
@inject IPiletService ps

<button @onclick=@LogValue>Log current value</button>

@code {
    public async void LogValue()
    {
      var value = await ps.GetDataValue<string>("myValue");
      Console.WriteLine("Currently stored value is: {0}", value);
    }
}

Localization

Localization works almost exactly as with standard Blazor, except that the language can be changed at runtime directly rather then requiring a full reload of the page.

The other difference is that the initial language is no longer decided by the server's response headers, but rather by the app shell. The initial configuration options of the piral-blazor plugin allow setting the initialLanguage. These options also allow setting up a callback to decide when to change the language (and to what language). If not explicitly stated Blazor will just listen to the select-language event of Piral, providing a key currentLanguage in the event arguments.

To dynamically change / refresh your components when the language change you'll need to listen to the LanguageChanged event emitted by the injected IPiletService instance:

@inject IStringLocalizer<MyComponent> loc
@inject IPiletService pilet

<h2>@loc["greeting"]</h2>

@code {
    protected override void OnInitialized()
    {
        pilet.LanguageChanged += (s, e) => this.StateHasChanged();
        base.OnInitialized();
    }
}

This way, your components will always remain up-to-date and render the right translations.

Root Component

By default, the Blazor pilets run in a dedicated Blazor application with no root component. If you need a root component, e.g., to provide some common values from a CascadingValue component such as CascadingAuthenticationState from the Microsoft.AspNetCore.Components.Authorization package, you can actually override the default root component:

@attribute [PiralAppRoot]

<CascadingAuthenticationState>
    @ChildContent
</CascadingAuthenticationState>

@code {
    [Parameter]
    public RenderFragment ChildContent { get; set; }
}

You can also provide your own providers here (or nest them as you want):

@attribute [PiralAppRoot]

<CascadingValue Value="@theme">
    <div>
        @ChildContent
    </div>
</CascadingValue>

@code {
    [Parameter]
    public RenderFragment ChildContent { get; set; }
    
    private string theme = "dark";
}

Note: There is always just one PiralAppRoot component. If you did not supply one then the default PiralAppRoot will be used. If you already provided one, no other PiralAppRoot can be used.

It is critical to understand that each attached pilet component starts its own Blazor rendering tree. Therefore, while there is just a single PiralAppRoot component there might be multiple instances active at a given point in time.

Running and Debugging the Pilet 🚀

From your Blazor project folder, run your pilet via the Piral CLI:

cd ../piral~/<project-name>
npm start

In addition to this, if you want to debug your Blazor pilet using for example Visual Studio, these requirements should be considered:

  • keep the Piral CLI running
  • debug your Blazor pilet using IISExpress

⚠️ if you want to run your pilet and directly visit it in the browser without debugging via IISExpress, you will have to disable a kras script injector before visiting the pilet. To do this, go to http://localhost:1234/manage-mock-server/#/injectors, disable the debug.js script, and save your changes. Afterwards, you can visit http://localhost:1234.

Special Files

There are some special files that you can add in your project (adjacent to the .csproj file):

  • setup.tsx
  • teardown.tsx
  • package-overwrites.json
  • meta-overwrites.json
  • kras-overwrites.json
  • js-imports.json

Note: The location of these files can also be changed through the ConfigFolder option. By default, this one is empty, i.e., all files have to be placed adjacent to the .csproj file as mentioned above. However, if you set the value to, e.g., .piletconfig then the files will be retrieved from this subdirectory. For instance, the setup file would then be read from .piletconfig/setup.tsx.

Let's see what these files do and how they can be used.

Extending the Pilet's Setup

The setup.tsx file can be used to define more things that should be done in a pilet's setup function. By default, the content of the setup function is auto generated. Things such as @page /path-to-use components or components with @attribute [PiralExtension("name-of-slot")] would be automatically registered. However, already in case of @attribute [PiralComponent] we have a problem. What should this component do? Where is it used?

The solution is to use the setup.tsx file. An example:

export default (app) => {
  app.registerMenu(app.fromBlazor('counter-menu'));

  app.registerExtension("ListToggle", app.fromBlazor('counter-preview'));
};

This example registers a pilet's component named "counter-menu" as a menu entry. Furthermore, it also adds the "counter-preview" component as an extension to the "ListToggle" slot.

Anything that is available on the Pilet API provided via the app argument is available in the function. The only import part of setup.tsx is that has a default export - which is actually a function.

Overwriting the Package Manifest

The generated / used pilet is a standard npm package. Therefore, it will have a package.json. The content of this package.json is mostly pre-determined. Things such as piral-cli or the pilet's app shell package are in there. In some cases, additional JS dependencies for runtime or development aspects are necessary or useful. In such cases the package-overwrites.json comes in handy.

For instance, to actually extend the devDependencies you could write:

{
  "devDependencies": {
    "axios": "^0.20.0"
  }
}

This would add a development dependency to the axios package. Likewise, other details, such as a publish config or a description could also be added / overwritten:

{
  "description": "This is my pilet description.",
  "publishConfig": {
    "access": "public"
  }
}

The rules for the merge follow the Json.NET approach.

Overwriting the Debug Meta Data

The generated / used pilet is served from the local file system instead of a feed service. Therefore, it will not have things like a configuration store. However, you might want to use one - or at least test against one. For this, usually a meta.json file can be used. The content of this meta.json is then merged into the metadata of a served pilet. For Piral.Blazor this file is premade, however, its content can still be overwritten using a meta-overwrites.json file.

For instance, to include a custom config field (with one config called backendUrl) in the pilet's metadata you can use the following content:

{
  "config": {
    "backendUrl": "http://localhost:7345"
  }
}

The rules for the merge follow the Json.NET approach.

Extending the Pilet's Teardown

The teardown.tsx file can be used to define more things that should be done in a pilet's teardown function. By default, the content of the teardown function is auto generated. Things such as pages and extensions would be automatically unregistered. However, in some cases you will need to unregister things manually. You can do this here.

Defining Additional JavaScript Imports

Some Blazor dependencies require additional JavaScript packages in order to work correctly. The js-imports.json file can be to declare all these. The files will then be added via a generated import statement in the pilet's root module.

The content of the js-imports.json file is a JSON array. For example:

[
  "axios",
  "global-date-functions"
]

Includes the two dependencies via the respective import statements.

DevServer Settings

The Piral.Blazor.DevServer can be configured, too. Much like the standard / official Blazor DevServer you can introduce a blazor-devserversettings.json file that describes more options. Most of the contained options are the same as the one for the official Blazor DevServer.

Current options found in the Piral section:

  • forwardedPaths - is an array of strings describing the path segments that should be forwarded to the Piral CLI dev server (using kras)

    Example:

    {
      "Piral": {
        "forwardedPaths": [ "/foo" ]
      }
    }
    
  • feedUrl - is a string defining an URL for including an external / remote feed of pilets into the debug process

    Example:

    {
      "Piral": {
        "feedUrl": "https://feed.piral.cloud/api/v1/pilet/sample"
      }
    }
    

In addition, the options for the DevServer also touch the configured options for the Piral.Blazor.Tools, such as OutputFolder which is used to define where the scaffolded pilet is stored.

Setting the Logging Level

The log level can be set either within your Blazor pilets using the ILoggingConfiguration service or from JavaScript:

DotNet.invokeMethodAsync('Piral.Blazor.Core', 'SetLogLevel', logLevel);

Here, the value for logLevel should be between 0-6, where 0 logs everything (even traces) and 6 logs nothing. Alternatively, you can also set a log level when initializing piral-blazor.

License

Piral.Blazor is released using the MIT license. For more information see the license file.

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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Piral.Blazor.Utils:

Package Downloads
Piral.Blazor.Core

The shared orchestration layer for Blazor pilets.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.13-pre.20240326.1 38 3/25/2024
8.0.13-pre.20240308.2 47 3/8/2024
8.0.13-pre.20240214.2 64 2/13/2024
8.0.12-pre.20240213.4 43 2/13/2024
8.0.12-pre.20240126.6 65 1/26/2024
8.0.11 142 1/26/2024
8.0.11-pre.20240125.3 43 1/25/2024
8.0.10 154 12/26/2023
8.0.10-pre.20231226.1 59 12/26/2023
8.0.10-pre.20231223.4 66 12/23/2023
8.0.10-pre.20231128.3 107 11/28/2023
7.0.13 122 3/14/2024
7.0.13-pre.20240314.1 43 3/13/2024
7.0.13-pre.20240313.1 44 3/13/2024
7.0.13-pre.20240308.1 47 3/8/2024
7.0.13-pre.20240214.1 56 2/13/2024
7.0.12 316 1/26/2024
7.0.12-pre.20240213.2 38 2/13/2024
7.0.12-pre.20240126.5 51 1/26/2024
7.0.11 85 1/25/2024
7.0.11-pre.20240125.1 42 1/25/2024
7.0.11-pre.20240112.2 78 1/12/2024
7.0.11-pre.20240112.1 45 1/12/2024
7.0.10 147 12/23/2023
7.0.10-pre.20231223.2 63 12/23/2023
7.0.10-pre.20231223.1 55 12/22/2023
7.0.10-pre.20231222.1 58 12/22/2023
7.0.10-pre.20231221.1 51 12/21/2023
7.0.10-pre.20231128.2 68 11/28/2023
7.0.10-pre.20231110.1 83 11/10/2023
7.0.9 249 10/24/2023
7.0.9-pre.20231020.3 61 10/20/2023
7.0.9-pre.20231020.2 59 10/20/2023
7.0.9-pre.20231020.1 61 10/20/2023
7.0.9-pre.20231016.1 198 10/15/2023
7.0.9-pre.20230930.2 73 9/30/2023
7.0.9-pre.20230930.1 63 9/30/2023
7.0.9-pre.20230929.1 60 9/29/2023
7.0.9-pre.20230928.1 56 9/28/2023
7.0.9-pre.20230925.1 62 9/25/2023
7.0.9-pre.20230921.1 58 9/21/2023
7.0.9-pre.20230920.1 61 9/20/2023
7.0.9-pre.20230919.1 56 9/19/2023
7.0.9-pre.20230918.3 60 9/18/2023
7.0.9-pre.20230906.1 78 9/6/2023
7.0.9-pre.20230904.2 77 9/4/2023
7.0.9-pre.20230904.1 65 9/3/2023
7.0.9-pre.20230828.1 81 8/28/2023
7.0.9-pre.20230823.1 79 8/23/2023
7.0.9-pre.20230822.1 60 8/22/2023
7.0.9-pre.20230821.2 99 8/21/2023
7.0.9-pre.20230624.4 97 6/24/2023
7.0.9-pre.20230624.2 63 6/24/2023
7.0.9-pre.20230624.1 67 6/24/2023
7.0.9-pre.20230601.2 147 6/1/2023
7.0.8 354 5/31/2023
7.0.8-pre.20230531.7 73 5/31/2023
7.0.8-pre.20230531.6 65 5/31/2023
7.0.8-pre.20230531.5 67 5/31/2023
7.0.8-pre.20230531.4 69 5/31/2023
7.0.8-pre.20230531.3 65 5/31/2023
7.0.8-pre.20230531.2 69 5/31/2023
7.0.8-pre.20230531.1 67 5/31/2023
7.0.8-pre.20230529.2 73 5/29/2023
7.0.8-pre.20230329.1 137 3/29/2023
7.0.7 394 3/7/2023
7.0.7-pre.20230307.1 91 3/7/2023
7.0.7-pre.20230306.1 102 3/6/2023
7.0.7-pre.20230302.3 95 3/2/2023
7.0.7-pre.20230302.2 96 3/2/2023
7.0.6 439 2/1/2023
7.0.6-pre.20230201.2 94 2/1/2023
7.0.5 347 1/23/2023
7.0.5-pre.20230123.4 98 1/23/2023
7.0.4 305 12/23/2022
7.0.4-pre.20221223.1 97 12/23/2022
7.0.4-pre.20221222.1 94 12/22/2022
7.0.4-pre.20221217.1 92 12/17/2022
7.0.4-pre.20221215.2 88 12/15/2022
7.0.4-pre.20221215.1 87 12/15/2022
7.0.4-pre.20221214.6 88 12/14/2022
6.0.7 1,549 3/7/2023
6.0.7-pre.20230307.3 86 3/7/2023
6.0.7-pre.20230306.2 83 3/6/2023
6.0.6 1,917 2/1/2023
6.0.6-pre.20230131.1 98 1/31/2023
6.0.6-pre.20230127.1 98 1/27/2023
6.0.5 309 1/23/2023
6.0.5-pre.20230123.2 93 1/23/2023
6.0.5-pre.20230123.1 91 1/23/2023
6.0.5-pre.20230122.1 102 1/22/2023
6.0.5-pre.20230121.1 102 1/21/2023
6.0.5-pre.20230120.2 97 1/20/2023
6.0.5-pre.20230120.1 95 1/19/2023
6.0.5-pre.20230119.1 96 1/19/2023
6.0.5-pre.20230117.2 94 1/17/2023
6.0.5-pre.20230117.1 88 1/17/2023
6.0.4 446 12/14/2022
6.0.4-pre.20221214.3 90 12/14/2022
6.0.4-pre.20221214.2 93 12/14/2022
6.0.4-pre.20221214.1 92 12/13/2022
6.0.4-pre.20221213.4 92 12/13/2022
6.0.4-pre.20221213.3 79 12/13/2022
6.0.4-pre.20221213.2 101 12/13/2022
6.0.4-pre.20221212.3 86 12/12/2022
6.0.4-pre.20221212.2 96 12/12/2022
6.0.4-pre.20221204.1 95 12/3/2022
6.0.4-pre.20221202.1 91 12/2/2022
6.0.4-pre.20221201.1 86 12/1/2022
6.0.4-pre.20221027.1 95 10/27/2022
6.0.4-pre.20220926.6 154 9/26/2022
6.0.3 459 9/26/2022
6.0.3-pre.20220926.1 118 9/25/2022
6.0.3-pre.20220925.3 115 9/25/2022
6.0.3-pre.20220925.2 107 9/25/2022
6.0.3-pre.20220808.3 123 8/8/2022
6.0.3-pre.20220704.2 135 7/4/2022
6.0.3-pre.20220701.4 113 7/1/2022
6.0.3-pre.20220629.7 117 6/29/2022
6.0.3-pre.20220629.6 143 6/29/2022
6.0.3-pre.20220629.4 108 6/29/2022
6.0.3-pre.20220629.2 121 6/29/2022
6.0.3-pre.20220629.1 118 6/29/2022
6.0.3-pre.20220628.5 105 6/28/2022
6.0.3-pre.20220628.4 111 6/28/2022
6.0.3-pre.20220628.3 104 6/28/2022
6.0.3-pre.20220628.2 107 6/28/2022
6.0.3-pre.20220628.1 113 6/28/2022
6.0.3-pre.20220627.2 115 6/27/2022
6.0.3-pre.20220627.1 117 6/26/2022
6.0.3-pre.20220624.1 116 6/24/2022
6.0.3-pre.20220623.4 167 6/23/2022
6.0.3-pre.20220623.2 130 6/23/2022
6.0.3-pre.20220615.4 121 6/15/2022
6.0.3-pre.20220615.3 117 6/15/2022
6.0.3-pre.20220614.2 107 6/14/2022
6.0.3-pre.20220613.7 105 6/13/2022
6.0.3-pre.20220613.3 105 6/13/2022
6.0.2 474 6/8/2022
6.0.2-pre.20220613.2 102 6/13/2022
6.0.2-pre.20220608.7 112 6/8/2022
6.0.2-pre.20220608.3 108 6/8/2022
6.0.2-pre.20220608.2 109 6/8/2022
6.0.2-pre.20220607.1 117 6/7/2022
6.0.1 460 3/14/2022
6.0.1-pre.20220604.1 113 6/4/2022
6.0.1-pre.20220603.3 109 6/3/2022
6.0.1-pre.20220603.1 115 6/2/2022
6.0.1-pre.20220505.2 176 5/5/2022
6.0.1-pre.20220505.1 113 5/5/2022
6.0.1-pre.20220504.4 112 5/4/2022
6.0.1-pre.20220504.2 113 5/4/2022
6.0.1-pre.20220314.8 105 3/14/2022
6.0.1-pre.20220314.4 114 3/14/2022
6.0.1-pre.20220314.2 107 3/13/2022
6.0.1-pre.20220313.10 113 3/13/2022
6.0.1-pre.20220313.9 144 3/13/2022
6.0.1-pre.20220313.8 145 3/13/2022
6.0.1-pre.20220313.6 133 3/13/2022
6.0.1-pre.20220313.5 139 3/13/2022
6.0.1-pre.20220313.4 138 3/13/2022
6.0.1-pre.20220313.3 144 3/13/2022
6.0.1-pre.20220313.2 141 3/13/2022
6.0.0 626 1/10/2022
6.0.0-pre.20220313.1 139 3/13/2022
6.0.0-pre.20220312.3 142 3/12/2022
6.0.0-pre.20220312.2 141 3/12/2022
6.0.0-pre.20220312.1 144 3/12/2022
6.0.0-pre.20220311.3 142 3/11/2022
6.0.0-pre.20220311.2 143 3/11/2022
6.0.0-pre.20220309.1 142 3/9/2022
6.0.0-pre.20220304.2 147 3/4/2022
6.0.0-pre.20220303.2 144 3/3/2022
6.0.0-pre.20220218.1 138 2/18/2022
6.0.0-pre.20220217.1 147 2/17/2022
6.0.0-pre.20220211.3 139 2/11/2022
6.0.0-pre.20220126.2 164 1/26/2022
6.0.0-pre.20220111.4 175 1/11/2022
6.0.0-pre.20220110.8 165 1/10/2022
6.0.0-pre.20211222.5 169 12/22/2021
5.0.3 418 9/26/2022
5.0.3-pre.20220926.5 103 9/26/2022
5.0.3-pre.20220926.4 112 9/26/2022
5.0.3-pre.20220926.2 125 9/26/2022
5.0.3-pre.20220613.4 105 6/13/2022
5.0.2 407 6/8/2022
5.0.2-pre.20220608.6 111 6/8/2022
5.0.2-pre.20220608.4 109 6/8/2022
5.0.1 415 3/14/2022
5.0.1-pre.20220314.9 112 3/14/2022
5.0.1-pre.20220314.5 106 3/14/2022
5.0.1-pre.20220314.3 107 3/14/2022
5.0.1-pre.20220314.1 111 3/13/2022
5.0.0 649 1/10/2022
5.0.0-pre.20220127.4 152 1/27/2022
5.0.0-pre.20220111.2 158 1/11/2022
5.0.0-pre.20220110.6 155 1/10/2022
5.0.0-pre.20220110.5 159 1/10/2022
5.0.0-pre.20211222.3 170 12/22/2021
5.0.0-pre.20210622.1 266 6/22/2021
5.0.0-pre.20210521.9 193 5/21/2021
5.0.0-pre.20210521.5 197 5/21/2021
5.0.0-pre.20210521.2 198 5/21/2021
5.0.0-pre.20210519.6 191 5/19/2021
5.0.0-pre.20210519.2 198 5/19/2021
5.0.0-pre.20210512.12 198 5/12/2021
5.0.0-pre.20210512.8 204 5/12/2021
5.0.0-pre.20210512.4 183 5/12/2021
5.0.0-pre.20210504.2 176 5/4/2021
5.0.0-pre.20210430.2 228 4/30/2021
5.0.0-pre.20210428.4 192 4/28/2021
5.0.0-pre.20210428.2 197 4/27/2021
5.0.0-pre.20210428.1 202 4/28/2021
3.2.4 439 6/8/2022
3.2.4-pre.20220608.11 118 6/8/2022
3.2.4-pre.20220608.5 105 6/8/2022
3.2.3 422 3/14/2022
3.2.3-pre.20220314.10 111 3/14/2022
3.2.3-pre.20220314.7 106 3/14/2022
3.2.3-pre.20220314.6 111 3/14/2022
3.2.2 410 1/10/2022
3.2.2-pre.20220127.3 150 1/27/2022
3.2.2-pre.20220110.3 160 1/10/2022
3.2.2-pre.20220110.2 155 1/10/2022
3.2.2-pre.20220110.1 166 1/10/2022
3.2.2-pre.20220109.1 164 1/9/2022
3.2.1 591 3/1/2021
3.2.1-pre.20210521.6 201 5/21/2021
3.2.1-pre.20210521.4 192 5/21/2021
3.2.1-pre.20210519.4 188 5/19/2021
3.2.1-pre.20210512.10 201 5/12/2021
3.2.1-pre.20210512.6 175 5/12/2021
3.2.1-pre.20210504.4 172 5/4/2021
3.2.1-pre.20210430.4 193 4/30/2021
3.2.1-pre.20210429.1 173 4/29/2021
3.2.1-pre.20210428.1 192 4/27/2021
3.2.1-pre.20210422.6 196 4/22/2021
3.2.1-pre.20210422.4 169 4/22/2021
3.2.1-pre.20210422.2 167 4/22/2021
3.2.1-pre.20210415.8 176 4/15/2021
3.2.1-pre.20210415.6 185 4/15/2021
3.2.1-pre.20210415.4 182 4/15/2021
3.2.1-pre.20210415.2 165 4/15/2021
3.2.1-pre.20210413.5 187 4/13/2021
3.2.1-pre.20210413.3 174 4/13/2021
3.2.1-pre.20210413.2 176 4/13/2021
3.2.1-pre.20210413.1 160 4/13/2021
3.2.1-pre.20210331.1 168 3/31/2021
3.2.1-pre.20210330.1 169 3/30/2021
3.2.1-pre.20210326.3 179 3/26/2021
3.2.1-pre.20210301.4 176 3/1/2021
0.1.2 567 4/23/2020
0.1.1 505 4/22/2020
0.1.0 511 4/16/2020