Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"devDependencies": {
"@thebuilder/umbraco-docs": "^1.0.4",
"@types/node": "24.10.1",
"blume": "1.4.3",
"sharp": "0.34.5"
"blume": "1.6.4",
"sharp": "0.35.4"
}
}
10 changes: 0 additions & 10 deletions apps/docs/tsconfig.json

This file was deleted.

6,161 changes: 2,832 additions & 3,329 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ packages:
- apps/*
- src/TheBuilder.WebAnalytics/Client
allowBuilds:
'@scarf/scarf': false
esbuild: true
sharp: true
minimumReleaseAgeExclude:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CompressionEnabled>false</CompressionEnabled> <!-- Disable compression. E.g. for umbraco backoffice files. These files should be precompressed by node and not let dotnet handle it -->
<UmbracoVersion Condition="'$(UmbracoVersion)' == ''">17.4.0</UmbracoVersion>
<UmbracoVersion Condition="'$(UmbracoVersion)' == ''">17.6.2</UmbracoVersion>
<DefineConstants Condition="$(UmbracoVersion.StartsWith('18.'))">$(DefineConstants);UMBRACO_18_OR_LATER</DefineConstants>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms" Version="$(UmbracoVersion)" />
<PackageReference Include="Umbraco.Cms.DevelopmentMode.Backoffice" Version="$(UmbracoVersion)" />
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" Version="2.1.12" />
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" Version="3.53.3" />
</ItemGroup>

<ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions src/TheBuilder.WebAnalytics/Client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.99.0",
"@umbraco-cms/backoffice": "^17.1.0",
"chalk": "^5.6.2",
"@umbraco-cms/backoffice": "^17.6.2",
"chalk": "^6.0.0",
"cross-env": "^10.1.0",
"fallow": "3.9.1",
"jsdom": "^27.4.0",
"fallow": "3.24.1",
"jsdom": "^30.0.1",
"node-fetch": "^3.3.2",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vitest": "^4.1.0"
"vite": "^8.2.2",
"vitest": "^5.0.0"
}
}
6 changes: 4 additions & 2 deletions src/TheBuilder.WebAnalytics/TheBuilder.WebAnalytics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@
<PackageReference Include="Umbraco.Cms.Api.Common" Version="$(UmbracoVersion)" />
<PackageReference Include="Umbraco.Cms.Api.Management" Version="$(UmbracoVersion)" />
<!-- Keep these at or above the versions Umbraco's transitive graph requires
(Umbraco 18.1.0 pulls MessagePack 3.1.8 and Microsoft.OpenApi 2.11.0),
so restore does not report an NU1605 downgrade under TreatWarningsAsErrors. -->
so restore does not report vulnerable or downgraded transitive packages. -->
<PackageReference Include="MailKit" Version="4.17.0" />
<PackageReference Include="MessagePack" Version="3.1.8" />
<PackageReference Include="Microsoft.OpenApi" Version="2.11.0" />
<PackageReference Include="MimeKit" Version="4.17.0" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.12" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="coverlet.collector" Version="10.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.10.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
<PackageReference Include="xunit.runner.visualstudio" Version="4.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading