Skip to content

Commit da94b52

Browse files
committed
Also update Umbraco.Cms in sample
1 parent 85997f2 commit da94b52

File tree

3 files changed

+125
-7
lines changed

3 files changed

+125
-7
lines changed

samples/Elmah.Io.Umbraco.Umbraco10Example/Elmah.Io.Umbraco.Umbraco10Example.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Umbraco.Cms" Version="10.8.7" />
9+
<PackageReference Include="Umbraco.Cms" Version="10.8.11" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

src/Elmah.Io.Umbraco/appsettings-schema.json

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@
338338
}
339339
},
340340
"LogToStandardErrorThreshold": {
341-
"description": "The minimum level of messages are written to Console.Error.",
342-
"$ref": "#/definitions/logLevelThreshold"
341+
"$ref": "#/definitions/logLevelThreshold",
342+
"description": "The minimum level of messages are written to Console.Error."
343343
}
344344
}
345345
},
@@ -977,7 +977,8 @@
977977
"MethodCallReferenceItem": {
978978
"type": [
979979
"string",
980-
"object"
980+
"object",
981+
"null"
981982
],
982983
"oneOf": [
983984
{
@@ -2360,6 +2361,18 @@
23602361
"description": "Gets or sets a value for how long (in minutes) a user is locked out when a lockout occurs.\n ",
23612362
"format": "int32",
23622363
"default": 43200
2364+
},
2365+
"UserDefaultFailedLoginDurationInMilliseconds": {
2366+
"type": "integer",
2367+
"description": "Gets or sets the default duration (in milliseconds) of failed login attempts.",
2368+
"format": "int64",
2369+
"default": 1000
2370+
},
2371+
"UserMinimumFailedLoginDurationInMilliseconds": {
2372+
"type": "integer",
2373+
"description": "Gets or sets the minimum duration (in milliseconds) of failed login attempts.",
2374+
"format": "int64",
2375+
"default": 250
23632376
}
23642377
}
23652378
},
@@ -3253,6 +3266,9 @@
32533266
"TransferDictionaryAsContent": {
32543267
"type": "boolean"
32553268
},
3269+
"SetEmptyDictionaryItemsOnTransfer": {
3270+
"type": "boolean"
3271+
},
32563272
"IgnoreMissingLanguagesForDictionaryItems": {
32573273
"type": "boolean"
32583274
},
@@ -3271,6 +3287,12 @@
32713287
"AllowDomainsDeploymentOperations": {
32723288
"$ref": "#/definitions/UmbracoDeployCoreConfigurationDeployConfigurationDomainsDeploymentOperations"
32733289
},
3290+
"AllowPublicAccessDeploymentOperations": {
3291+
"$ref": "#/definitions/UmbracoDeployCoreConfigurationDeployConfigurationPublicAccessEntryDeploymentOperations"
3292+
},
3293+
"TrashedContentDeploymentOperations": {
3294+
"$ref": "#/definitions/UmbracoDeployCoreConfigurationDeployConfigurationTrashedContentDeploymentOperations"
3295+
},
32743296
"ReloadMemoryCacheFollowingDiskReadOperation": {
32753297
"type": "boolean"
32763298
},
@@ -3306,6 +3328,9 @@
33063328
},
33073329
"SuppressCacheRefresherNotifications": {
33083330
"type": "boolean"
3331+
},
3332+
"ResolveUserInTargetEnvironment": {
3333+
"type": "boolean"
33093334
}
33103335
}
33113336
},
@@ -3410,6 +3435,40 @@
34103435
"All"
34113436
]
34123437
},
3438+
"UmbracoDeployCoreConfigurationDeployConfigurationPublicAccessEntryDeploymentOperations": {
3439+
"type": "string",
3440+
"description": "",
3441+
"x-enumFlags": true,
3442+
"x-enumNames": [
3443+
"None",
3444+
"AddOrUpdate",
3445+
"Remove",
3446+
"All"
3447+
],
3448+
"enum": [
3449+
"None",
3450+
"AddOrUpdate",
3451+
"Remove",
3452+
"All"
3453+
]
3454+
},
3455+
"UmbracoDeployCoreConfigurationDeployConfigurationTrashedContentDeploymentOperations": {
3456+
"type": "string",
3457+
"description": "",
3458+
"x-enumFlags": true,
3459+
"x-enumNames": [
3460+
"None",
3461+
"Export",
3462+
"Import",
3463+
"All"
3464+
],
3465+
"enum": [
3466+
"None",
3467+
"Export",
3468+
"Import",
3469+
"All"
3470+
]
3471+
},
34133472
"UmbracoDeployCoreConfigurationDeployConfigurationMediaFileChecksumCalculationMethod": {
34143473
"type": "string",
34153474
"description": "",

test/Elmah.Io.Umbraco.Test/appsettings-schema.json

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@
338338
}
339339
},
340340
"LogToStandardErrorThreshold": {
341-
"description": "The minimum level of messages are written to Console.Error.",
342-
"$ref": "#/definitions/logLevelThreshold"
341+
"$ref": "#/definitions/logLevelThreshold",
342+
"description": "The minimum level of messages are written to Console.Error."
343343
}
344344
}
345345
},
@@ -977,7 +977,8 @@
977977
"MethodCallReferenceItem": {
978978
"type": [
979979
"string",
980-
"object"
980+
"object",
981+
"null"
981982
],
982983
"oneOf": [
983984
{
@@ -2360,6 +2361,18 @@
23602361
"description": "Gets or sets a value for how long (in minutes) a user is locked out when a lockout occurs.\n ",
23612362
"format": "int32",
23622363
"default": 43200
2364+
},
2365+
"UserDefaultFailedLoginDurationInMilliseconds": {
2366+
"type": "integer",
2367+
"description": "Gets or sets the default duration (in milliseconds) of failed login attempts.",
2368+
"format": "int64",
2369+
"default": 1000
2370+
},
2371+
"UserMinimumFailedLoginDurationInMilliseconds": {
2372+
"type": "integer",
2373+
"description": "Gets or sets the minimum duration (in milliseconds) of failed login attempts.",
2374+
"format": "int64",
2375+
"default": 250
23632376
}
23642377
}
23652378
},
@@ -3253,6 +3266,9 @@
32533266
"TransferDictionaryAsContent": {
32543267
"type": "boolean"
32553268
},
3269+
"SetEmptyDictionaryItemsOnTransfer": {
3270+
"type": "boolean"
3271+
},
32563272
"IgnoreMissingLanguagesForDictionaryItems": {
32573273
"type": "boolean"
32583274
},
@@ -3271,6 +3287,12 @@
32713287
"AllowDomainsDeploymentOperations": {
32723288
"$ref": "#/definitions/UmbracoDeployCoreConfigurationDeployConfigurationDomainsDeploymentOperations"
32733289
},
3290+
"AllowPublicAccessDeploymentOperations": {
3291+
"$ref": "#/definitions/UmbracoDeployCoreConfigurationDeployConfigurationPublicAccessEntryDeploymentOperations"
3292+
},
3293+
"TrashedContentDeploymentOperations": {
3294+
"$ref": "#/definitions/UmbracoDeployCoreConfigurationDeployConfigurationTrashedContentDeploymentOperations"
3295+
},
32743296
"ReloadMemoryCacheFollowingDiskReadOperation": {
32753297
"type": "boolean"
32763298
},
@@ -3306,6 +3328,9 @@
33063328
},
33073329
"SuppressCacheRefresherNotifications": {
33083330
"type": "boolean"
3331+
},
3332+
"ResolveUserInTargetEnvironment": {
3333+
"type": "boolean"
33093334
}
33103335
}
33113336
},
@@ -3410,6 +3435,40 @@
34103435
"All"
34113436
]
34123437
},
3438+
"UmbracoDeployCoreConfigurationDeployConfigurationPublicAccessEntryDeploymentOperations": {
3439+
"type": "string",
3440+
"description": "",
3441+
"x-enumFlags": true,
3442+
"x-enumNames": [
3443+
"None",
3444+
"AddOrUpdate",
3445+
"Remove",
3446+
"All"
3447+
],
3448+
"enum": [
3449+
"None",
3450+
"AddOrUpdate",
3451+
"Remove",
3452+
"All"
3453+
]
3454+
},
3455+
"UmbracoDeployCoreConfigurationDeployConfigurationTrashedContentDeploymentOperations": {
3456+
"type": "string",
3457+
"description": "",
3458+
"x-enumFlags": true,
3459+
"x-enumNames": [
3460+
"None",
3461+
"Export",
3462+
"Import",
3463+
"All"
3464+
],
3465+
"enum": [
3466+
"None",
3467+
"Export",
3468+
"Import",
3469+
"All"
3470+
]
3471+
},
34133472
"UmbracoDeployCoreConfigurationDeployConfigurationMediaFileChecksumCalculationMethod": {
34143473
"type": "string",
34153474
"description": "",

0 commit comments

Comments
 (0)