diff --git a/Directory.Packages.props b/Directory.Packages.props index 48826be216..9de1e3dba1 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -9,46 +9,46 @@ - - - - - - - + + + + + + + - + - - + + - - - - + + + + - + - - + + - + - - + + - - + + - + - + @@ -89,28 +89,28 @@ - - + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + @@ -118,29 +118,29 @@ - + - + - + - + - - + + - + @@ -149,15 +149,15 @@ - - - - - - + + + + + + - + diff --git a/NuGet.config b/NuGet.config index 6d66afe4db..b97c62d589 100644 --- a/NuGet.config +++ b/NuGet.config @@ -17,7 +17,6 @@ - @@ -37,9 +36,6 @@ - - - diff --git a/eng/Versions.props b/eng/Versions.props index 0c12da9a5e..191a9008bb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -3,9 +3,9 @@ 8 0 - 1 - 8.0.1 - preview.8 + 2 + 8.0.2 + preview.1 true true @@ -25,8 +25,8 @@ 8.0.0-beta.24266.3 8.0.0-beta.24266.3 8.0.0-beta.24266.3 - 8.3.0 - 8.2.0 + 8.6.0 + 8.6.0 8.0.0 8.0.1 8.0.1 @@ -36,20 +36,20 @@ 8.0.1 8.0.2 8.0.0 - 8.0.4 - 8.0.4 - 8.0.4 - 8.0.4 - 8.0.4 - 8.0.4 - 8.0.4 - 8.0.4 - 8.4.0 + 8.0.6 + 8.0.6 + 8.0.6 + 8.0.6 + 8.0.6 + 8.0.6 + 8.0.6 + 8.0.6 + 8.6.0 - 8.0.4 - 8.0.4 - 8.0.4 - 8.0.4 + 8.0.6 + 8.0.6 + 8.0.6 + 8.0.6 9.0.0-preview.4.24208.7 diff --git a/src/Components/Aspire.Azure.Storage.Blobs/ConfigurationSchema.json b/src/Components/Aspire.Azure.Storage.Blobs/ConfigurationSchema.json index d24cbc2b76..09aca7b9a0 100644 --- a/src/Components/Aspire.Azure.Storage.Blobs/ConfigurationSchema.json +++ b/src/Components/Aspire.Azure.Storage.Blobs/ConfigurationSchema.json @@ -77,6 +77,29 @@ "format": "uri", "description": "Gets or sets the secondary storage 'System.Uri' that can be read from for the storage account if the\naccount is enabled for RA-GRS.\n\nIf this property is set, the secondary Uri will be used for GET or HEAD requests during retries.\nIf the status of the response from the secondary Uri is a 404, then subsequent retries for\nthe request will not use the secondary Uri again, as this indicates that the resource\nmay not have propagated there yet. Otherwise, subsequent retries will alternate back and forth\nbetween primary and secondary Uri." }, + "Request100ContinueOptions": { + "type": "object", + "properties": { + "AutoInterval": { + "type": "string", + "pattern": "^-?(\\d{1,7}|((\\d{1,7}[\\.:])?(([01]?\\d|2[0-3]):[0-5]?\\d|([01]?\\d|2[0-3]):[0-5]?\\d:[0-5]?\\d)(\\.\\d{1,7})?))$", + "description": "In mode 'Azure.Storage.Request100ContinueMode.Auto' , the time interval to apply the header\nafter recieving a triggering error. The default time is one minute." + }, + "ContentLengthThreshold": { + "type": "integer", + "description": "The minimum value of HTTP request Content-Length for applying expect-continue." + }, + "Mode": { + "enum": [ + "Auto", + "Always", + "Never" + ], + "description": "Mode for these options." + } + }, + "description": "Behavior options for setting HTTP header Expect: 100-continue on requests." + }, "Retry": { "type": "object", "properties": {