Skip to content

Commit 965e244

Browse files
authored
chore(deps): update .NET packages (#113)
* chore(deps): update SQLitePCLRaw to 3.0.5 * chore(deps): update application packages
1 parent 80e27c9 commit 965e244

5 files changed

Lines changed: 34599 additions & 13 deletions

File tree

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

Lines changed: 88 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@
111111
"DistributedJobSettings": {
112112
"$ref": "#/definitions/DistributedJobSettings"
113113
},
114+
"ScheduledPublishing": {
115+
"$ref": "#/definitions/ScheduledPublishingSettings"
116+
},
114117
"Website": {
115118
"$ref": "#/definitions/WebsiteSettings"
116119
},
@@ -144,6 +147,11 @@
144147
"description": "Gets or sets a value indicating whether URLs should be resolved from text strings.\n ",
145148
"default": false
146149
},
150+
"SortChildrenByFieldFiresNotifications": {
151+
"type": "boolean",
152+
"description": "Gets or sets a value indicating whether sorting the children of a node by a field fires\nper-item save/sort notifications (and therefore webhooks).\n ",
153+
"default": false
154+
},
147155
"Error404Collection": {
148156
"type": "array",
149157
"description": "Gets or sets a value for the collection of error pages.\n ",
@@ -848,6 +856,12 @@
848856
"description": "Gets or sets a value for the time span to wait before considering a server stale, after it has last been accessed.\n ",
849857
"format": "duration",
850858
"default": "00:02:00"
859+
},
860+
"TouchTimeout": {
861+
"type": "string",
862+
"description": "Gets or sets the maximum time to wait for a single server touch operation to complete before it is\nconsidered stalled (for example, blocked on a hung database connection) and abandoned, so the recurring\njob keeps running rather than stopping permanently. This bounds how long the job waits on a single touch,\nnot how long a stalled connection itself takes to recover (which is governed by the database timeouts).\n ",
863+
"format": "duration",
864+
"default": "00:01:00"
851865
}
852866
}
853867
},
@@ -878,6 +892,12 @@
878892
"description": "Gets or sets a value for the time to wait between each prune operations.\n ",
879893
"format": "duration",
880894
"default": "00:01:00"
895+
},
896+
"SyncTimeout": {
897+
"type": "string",
898+
"description": "Gets or sets the maximum time to wait for a single synchronization operation to complete before it is\nconsidered stalled (for example, blocked on a hung database connection) and abandoned, so the recurring\njob keeps running rather than stopping permanently. This bounds how long the job waits on a single sync,\nnot how long a stalled connection itself takes to recover (which is governed by the database timeouts).\n ",
899+
"format": "duration",
900+
"default": "00:01:00"
881901
}
882902
}
883903
},
@@ -1146,6 +1166,13 @@
11461166
"string"
11471167
],
11481168
"description": "Gets or sets a value specifying the name of the site.\n "
1169+
},
1170+
"MachineIdentifier": {
1171+
"type": [
1172+
"null",
1173+
"string"
1174+
],
1175+
"description": "Gets or sets a stable identifier for this server instance used to track cache synchronization state.\n "
11491176
}
11501177
}
11511178
},
@@ -1281,7 +1308,8 @@
12811308
"BatchSize": {
12821309
"type": "integer",
12831310
"description": "Gets or sets a value for how many items to index at a time.",
1284-
"format": "int32"
1311+
"format": "int32",
1312+
"default": 10000
12851313
}
12861314
}
12871315
},
@@ -1309,9 +1337,32 @@
13091337
"type": "string",
13101338
"description": "Gets or sets the file name format arguments to use for log files.",
13111339
"default": "MachineName"
1340+
},
1341+
"SessionIdLogging": {
1342+
"description": "Gets or sets a value determining how log events are enriched with a session identifier.",
1343+
"default": "SessionId",
1344+
"oneOf": [
1345+
{
1346+
"$ref": "#/definitions/SessionIdLoggingMode"
1347+
}
1348+
]
13121349
}
13131350
}
13141351
},
1352+
"SessionIdLoggingMode": {
1353+
"type": "string",
1354+
"description": "Determines how request logging enriches log events with a session identifier.",
1355+
"x-enumNames": [
1356+
"None",
1357+
"SessionId",
1358+
"CookieHash"
1359+
],
1360+
"enum": [
1361+
"None",
1362+
"SessionId",
1363+
"CookieHash"
1364+
]
1365+
},
13151366
"NuCacheSettings": {
13161367
"type": "object",
13171368
"description": "Typed configuration options for NuCache settings.\n ",
@@ -1335,6 +1386,12 @@
13351386
"type": "boolean",
13361387
"description": "Gets or sets a value indicating whether to use paged SQL queries for nucache.\n ",
13371388
"default": true
1389+
},
1390+
"ContentTypeRebuildDeleteBatchSize": {
1391+
"type": "integer",
1392+
"description": "Gets or sets the number of content items whose stale NuCache rows are deleted per batch during a\ncontent type structural rebuild.\n ",
1393+
"format": "int32",
1394+
"default": 2000
13381395
}
13391396
}
13401397
},
@@ -1818,6 +1875,11 @@
18181875
"type": "object",
18191876
"description": "Typed configuration options for the plugins.\n ",
18201877
"properties": {
1878+
"Cachebuster": {
1879+
"type": "string",
1880+
"description": "Gets or sets an optional host-controlled cache-buster for package /App_Plugins assets. When set (e.g.\nto a build number or deployment id), it is appended as umb__rnd to every package's assets — importmap\nand extensions — forcing a re-fetch regardless of each package's own version. Empty by default (no effect).\n ",
1881+
"default": ""
1882+
},
18211883
"BrowsableFileExtensions": {
18221884
"type": "array",
18231885
"description": "Gets or sets the allowed file extensions (including the period \".\") that should be accessible from the browser.\n ",
@@ -2282,6 +2344,14 @@
22822344
"description": "Gets or sets the duration that items remain in the seed cache.\n ",
22832345
"format": "duration",
22842346
"default": "365.00:00:00"
2347+
},
2348+
"MaximumLocalCacheItems": {
2349+
"type": [
2350+
"integer",
2351+
"null"
2352+
],
2353+
"description": "Gets or sets the maximum number of converted items kept in the in-process (L0) published-content\ncache, or null for no limit.\n ",
2354+
"format": "int32"
22852355
}
22862356
}
22872357
},
@@ -2309,6 +2379,23 @@
23092379
}
23102380
}
23112381
},
2382+
"ScheduledPublishingSettings": {
2383+
"type": "object",
2384+
"description": "Settings for scheduled publishing.",
2385+
"properties": {
2386+
"Period": {
2387+
"type": "string",
2388+
"description": "Gets or sets a value for how often scheduled publishing runs.",
2389+
"format": "duration",
2390+
"default": "00:01:00"
2391+
},
2392+
"AlignToClock": {
2393+
"type": "boolean",
2394+
"description": "Gets or sets a value indicating whether scheduled publishing runs are aligned to clock boundaries\nderived from Period (for example, on the minute, or every N seconds), rather than drifting\nbased on when the previous run completed.",
2395+
"default": false
2396+
}
2397+
}
2398+
},
23122399
"WebsiteSettings": {
23132400
"type": "object",
23142401
"description": "Typed configuration options for website rendering settings.\n ",

0 commit comments

Comments
 (0)