license switch agpl -> busl1, sprints work, new product advisories

This commit is contained in:
master
2026-01-20 15:32:20 +02:00
parent 4903395618
commit c32fff8f86
1835 changed files with 38630 additions and 4359 deletions

View File

@@ -26,7 +26,7 @@ public sealed class HelloWorldPlugin : PluginBase
.WithVersion("1.0.0")
.WithVendor("Stella Ops")
.WithDescription("A sample plugin demonstrating SDK usage patterns")
.WithLicense("AGPL-3.0-or-later")
.WithLicense("BUSL-1.1")
.Build();
/// <inheritdoc />

View File

@@ -36,7 +36,7 @@ public sealed class PluginAttribute : Attribute
/// <summary>
/// SPDX license identifier.
/// Example: "MIT", "Apache-2.0", "AGPL-3.0-or-later"
/// Example: "MIT", "BUSL-1.1", "BSD-3-Clause"
/// </summary>
public string? LicenseId { get; set; }

View File

@@ -13,7 +13,7 @@
<Description>Core plugin abstractions for the Stella Ops platform. Defines IPlugin interface, capability interfaces, and plugin lifecycle contracts.</Description>
<Authors>Stella Ops</Authors>
<Company>Stella Ops</Company>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageLicenseExpression>BUSL-1.1</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

View File

@@ -89,7 +89,7 @@ public sealed class PluginInfoBuilderTests
.WithVersion("1.0.0")
.WithVendor("Test")
.WithDescription("desc")
.WithLicense("Apache-2.0")
.WithLicense("BUSL-1.1")
.WithProjectUrl("https://test.com")
.WithIconUrl("https://test.com/icon")
.Build();