Skip to content

Commit

Permalink
build(sln): v29.7.0.4 - markdown component
Browse files Browse the repository at this point in the history
  • Loading branch information
seangwright committed Nov 25, 2024
1 parent 1592d00 commit d760aaa
Show file tree
Hide file tree
Showing 1,077 changed files with 6,828 additions and 2,638 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
- "**.json"
- "**.css"
- "**.scss"
- "**.ts"
- "**.tsx"
- "**.js"

jobs:
build_and_test:
Expand Down Expand Up @@ -117,9 +120,10 @@ jobs:
run: |
./test/Kentico.Community.Portal.Web.E2E.Tests/bin/Release/net8.0/playwright.ps1 install
- name: Install Azurite
id: azuright
uses: potatoqualitee/azuright@e56d2754eb15218d507961493bc83ca037216887 # set as a commit hash for security - v1.1
- name: Install Azurite from npm
run: npm install -g [email protected]
- name: Run Azurite in Background
run: azurite -s -l ./.azurite &

- name: Run Application and E2E Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
<PropertyGroup>
<VersionPrefix>29.7.0.1</VersionPrefix>
<VersionPrefix>29.7.0.4</VersionPrefix>
</PropertyGroup>

<PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ItemGroup>
<PackageVersion Include="AngleSharp" Version="1.1.2" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
<PackageVersion Include="CSharpFunctionalExtensions" Version="3.1.0" />
<PackageVersion Include="CSharpFunctionalExtensions" Version="3.2.0" />
<PackageVersion Include="CsvHelper" Version="33.0.1" />
<PackageVersion Include="Enums.NET" Version="5.0.0" />
<PackageVersion Include="FluentAssertions" Version="6.12.2" />
Expand All @@ -30,8 +30,8 @@
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.11" />
<PackageVersion Include="Microsoft.Data.SqlClient" Version="5.2.2" />
<PackageVersion Include="Microsoft.Identity.Web" Version="3.4.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageVersion Include="Microsoft.Playwright.NUnit" Version="1.48.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="Microsoft.Playwright.NUnit" Version="1.49.0" />
<PackageVersion Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.7" />
<PackageVersion Include="NSubstitute" Version="5.3.0" />
<PackageVersion Include="NUnit" Version="4.2.2" />
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion database/backups.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Kentico.Community-29.7.0-2024-11-20.bak
Kentico.Community-29.7.0-2024-11-24.bak
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"version": "9.0.100",
"rollForward": "latestMajor",
"version": "8.0.404",
"rollForward": "latestMinor",
"allowPrerelease": false
}
}
18 changes: 15 additions & 3 deletions scripts/Restore-LicenseKey.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
<#
.Synopsis
Updates the local database with all the objects in the CI repository
Updates the local database with all the objects in the CI repository.
You can provide the $LicenseKey or the $LicenseFilePath
#>
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[string]$LicenseKey = ""
[Parameter()]
[string]$LicenseKey = "",
[Parameter()]
[string]$LicenseFilePath = ""
)

Import-Module (Resolve-Path Utilities) `
Expand All @@ -17,6 +20,15 @@ Import-Module (Resolve-Path Utilities) `
Write-Error `
-Force

if (![string]::IsNullOrWhiteSpace($LicenseFilePath)) {
$LicenseKey = Get-Content -Path $LicenseFilePath -Raw
}

if ([string]::IsNullOrWhiteSpace($LicenseKey)) {
Write-Error "No license key provide by path or key"
exit 1
}

$restoreKeyQuery = "UPDATE CMS_SettingsKey SET KeyValue = '$LicenseKey' WHERE KeyName = 'CMSLicenseKey'"
Invoke-SQLQuery -query $restoreKeyQuery

Expand Down
Loading

0 comments on commit d760aaa

Please sign in to comment.