Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allowing developers to optionally disable MD5 content validation. #203

Open
wants to merge 32 commits into
base: develop-version-3
Choose a base branch
from
Open
Changes from 4 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b9e4bd6
Merge commit '0a10d642167b49670d1fcb2bb12365aed9bbcecc'
Jeavon Nov 26, 2018
f825fa9
Merge commit 'dfb3959ef8844eacb8580b87463e3b1dfca4528d'
Jeavon Nov 26, 2018
319533f
Updating symbol server to use MyGet
Jeavon Oct 2, 2018
d994a5a
Update README.md
Jeavon Apr 8, 2019
eced146
Setting blob hostnames to use HTTPS by default
callumbwhyte Jul 16, 2019
3d570dc
Merge pull request #145 from callumbwhyte/blob-hostname-https
Jeavon Jul 17, 2019
365db14
Stream blob back to client rather than read into memory.
darrenferguson Jan 16, 2020
0cd5632
Merge pull request #156 from darrenferguson/feature/stream-blob
Jeavon Jan 28, 2020
d4ba8ca
Updating deployment keys
Jeavon Jan 28, 2020
8aca139
Update Myget key
Jeavon Jan 28, 2020
c60bb20
Remove old v1 MyGet
Jeavon Jan 28, 2020
efbc391
Update readme
Jeavon Jan 28, 2020
ae93f38
Bump to v1.1.0
Jeavon Feb 10, 2020
44ce92a
Version bump
Jeavon Feb 19, 2020
d4f1468
Revert "Stream blob back to client rather than read into memory."
Jeavon Mar 3, 2020
6a6e12a
Added ServicePointManager.SecurityProtocol to constructor to allow Um…
marshallcomp Mar 23, 2021
d5a81b7
Put it back to how it was
marshallcomp Mar 23, 2021
fd02074
Added ServicePointManager.SecurityProtocol to AzureFileSystem constru…
marshallcomp Mar 23, 2021
dc725be
Added support for Azure Key Vault in Umbraco 7, based on #182
Apr 5, 2021
24ec96e
Merge pull request #190 from RachBreeze/feature/tmpAzureKeyVaultv7
Jeavon Jul 9, 2021
5d993ea
Update appveyor.yml
Jeavon Jul 9, 2021
1109ca6
Merge pull request #187 from binraider/tls_1.2_fix
Jeavon Jul 14, 2021
77e1f3c
Update TLS setting to only add 1.2 if it doesn't exist already
Jeavon Jul 14, 2021
ee7f3aa
Bump
Jeavon Jul 14, 2021
10af7cf
Update for branch renames
Jeavon Sep 15, 2021
b288d6e
Update v1 build tools
Jeavon Sep 15, 2021
a06e5ae
Update AssemblyInfo
Jeavon Sep 15, 2021
b672a1e
Swap assembly patching
Jeavon Sep 15, 2021
8dd36a1
Remove release checking from proj
Jeavon Sep 15, 2021
d31051f
Gone
Jeavon Sep 15, 2021
d7f0f05
Set NuGet to have Umbraco dependancy <8 for v1
Jeavon Sep 15, 2021
97134b5
Allowed developers to optionally disable MD5 validation
Oct 14, 2021
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: 4 additions & 0 deletions src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ namespace Our.Umbraco.FileSystemProviders.Azure
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net;
using System.Text.RegularExpressions;
using System.Web;
using global::Umbraco.Core.Configuration;
@@ -91,6 +92,9 @@ internal class AzureFileSystem : IFileSystem
/// </exception>
internal AzureFileSystem(string containerName, string rootUrl, string connectionString, int maxDays, bool useDefaultRoute, BlobContainerPublicAccessType accessType)
{

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

if (string.IsNullOrWhiteSpace(containerName))
{
throw new ArgumentNullException(nameof(containerName));