Skip to content

Commit abccf76

Browse files
Bump the dotnet group with 5 updates (#104)
* Bump the dotnet group with 5 updates Bumps Sentry.AspNetCore from 6.4.1 to 6.5.0 Bumps System.Security.Cryptography.Xml from 8.0.3 to 10.0.8 Bumps Umbraco.Cms from 17.3.5 to 17.4.0 Bumps Umbraco.Cms.DevelopmentMode.Backoffice from 17.3.5 to 17.4.0 Bumps uSync from 17.3.1 to 17.3.2 --- updated-dependencies: - dependency-name: Sentry.AspNetCore dependency-version: 6.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet - dependency-name: System.Security.Cryptography.Xml dependency-version: 10.0.8 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet - dependency-name: Umbraco.Cms dependency-version: 17.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet - dependency-name: Umbraco.Cms.DevelopmentMode.Backoffice dependency-version: 17.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet - dependency-name: uSync dependency-version: 17.3.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet ... Signed-off-by: dependabot[bot] <support@github.com> * chore: regenerate schema json files * chore: update umbraco to 17.4.1 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Levi Zitting <me@levizitting.com>
1 parent 7104a02 commit abccf76

6 files changed

Lines changed: 1594 additions & 974 deletions

SgfDevs.Tests/appsettings-schema.Umbraco.Cms.json

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@
110110
},
111111
"DistributedJobSettings": {
112112
"$ref": "#/definitions/DistributedJobSettings"
113+
},
114+
"Website": {
115+
"$ref": "#/definitions/WebsiteSettings"
113116
}
114117
}
115118
},
@@ -363,6 +366,12 @@
363366
"description": "Gets or sets the number of days where the latest historical content version for that day are kept.\n ",
364367
"format": "int32",
365368
"default": 90
369+
},
370+
"MaxVersionsToDeletePerRun": {
371+
"type": "integer",
372+
"description": "Gets or sets the maximum number of content versions to process per cleanup run.\nWhen more versions are eligible, they will be processed in subsequent runs.\nA value of 0 means no limit (process all eligible versions).\n ",
373+
"format": "int32",
374+
"default": 50000
366375
}
367376
}
368377
},
@@ -1732,6 +1741,15 @@
17321741
"type": "string",
17331742
"description": "Gets or sets a value for the Umbraco application URL.\n "
17341743
},
1744+
"ApplicationUrlDetection": {
1745+
"description": "Gets or sets a value controlling how the application main URL is auto-detected\nfrom incoming HTTP requests (ApplicationUrlDetection).\n ",
1746+
"default": "None",
1747+
"oneOf": [
1748+
{
1749+
"$ref": "#/definitions/ApplicationUrlDetection"
1750+
}
1751+
]
1752+
},
17351753
"UseStrictDomainMatching": {
17361754
"type": "boolean",
17371755
"description": "Gets or sets a value indicating whether strict domain matching is used when finding content to match the request.\n ",
@@ -1755,6 +1773,20 @@
17551773
"Auto"
17561774
]
17571775
},
1776+
"ApplicationUrlDetection": {
1777+
"type": "string",
1778+
"description": "Specifies how the application main URL is detected from incoming HTTP requests.\n ",
1779+
"x-enumNames": [
1780+
"None",
1781+
"FirstRequest",
1782+
"EveryRequest"
1783+
],
1784+
"enum": [
1785+
"None",
1786+
"FirstRequest",
1787+
"EveryRequest"
1788+
]
1789+
},
17581790
"UmbracoPluginSettings": {
17591791
"type": "object",
17601792
"description": "Typed configuration options for the plugins.\n ",
@@ -1860,6 +1892,16 @@
18601892
"RedirectToLoginPage": {
18611893
"type": "boolean",
18621894
"description": "Gets or sets a value indicating whether to redirect to the login page instead of showing basic auth prompt.\n "
1895+
},
1896+
"LoginViewPath": {
1897+
"type": "string",
1898+
"description": "Gets or sets a value for the path to the login view.\n ",
1899+
"default": "/umbraco/BasicAuthLogin/Login.cshtml"
1900+
},
1901+
"TwoFactorViewPath": {
1902+
"type": "string",
1903+
"description": "Gets or sets a value for the path to the two-factor view.\n ",
1904+
"default": "/umbraco/BasicAuthLogin/TwoFactor.cshtml"
18631905
}
18641906
}
18651907
},
@@ -2113,6 +2155,15 @@
21132155
"format": "int32",
21142156
"default": 100
21152157
},
2158+
"ContentTypeRebuildMode": {
2159+
"description": "Gets or sets the mode for rebuilding the database cache when content type structural changes occur.\n ",
2160+
"default": "Immediate",
2161+
"oneOf": [
2162+
{
2163+
"$ref": "#/definitions/ContentTypeRebuildMode"
2164+
}
2165+
]
2166+
},
21162167
"Entry": {
21172168
"description": "Gets or sets the cache entry settings for documents and media.\n ",
21182169
"oneOf": [
@@ -2123,6 +2174,18 @@
21232174
}
21242175
}
21252176
},
2177+
"ContentTypeRebuildMode": {
2178+
"type": "string",
2179+
"description": "Controls how content type structural changes trigger cache rebuilds.\n ",
2180+
"x-enumNames": [
2181+
"Immediate",
2182+
"Deferred"
2183+
],
2184+
"enum": [
2185+
"Immediate",
2186+
"Deferred"
2187+
]
2188+
},
21262189
"CacheEntry": {
21272190
"type": "object",
21282191
"description": "Represents cache entry settings for documents and media items.\n ",
@@ -2192,6 +2255,37 @@
21922255
"default": "00:05:00"
21932256
}
21942257
}
2258+
},
2259+
"WebsiteSettings": {
2260+
"type": "object",
2261+
"description": "Typed configuration options for website rendering settings.\n ",
2262+
"properties": {
2263+
"OutputCache": {
2264+
"description": "Gets or sets the output cache settings for website rendering.\n ",
2265+
"oneOf": [
2266+
{
2267+
"$ref": "#/definitions/OutputCacheSettings2"
2268+
}
2269+
]
2270+
}
2271+
}
2272+
},
2273+
"OutputCacheSettings2": {
2274+
"type": "object",
2275+
"description": "Typed configuration options for output caching of website rendering.\n ",
2276+
"properties": {
2277+
"Enabled": {
2278+
"type": "boolean",
2279+
"description": "Gets or sets a value indicating whether website output caching is enabled.\n ",
2280+
"default": false
2281+
},
2282+
"ContentDuration": {
2283+
"type": "string",
2284+
"description": "Gets or sets the duration for which rendered content pages are cached.\n ",
2285+
"format": "duration",
2286+
"default": "00:00:10"
2287+
}
2288+
}
21952289
}
21962290
}
21972291
}

0 commit comments

Comments
 (0)