-
Notifications
You must be signed in to change notification settings - Fork 20
Implement IFileProviderFactory, move shared infrastructure to Umbraco.StorageProviders and support Umbraco 10 #36
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
Merged
Merged
Changes from 13 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
b3990e5
Add IFileProvider implementation
ronaldbarendse 21211b0
Implement IFileProviderFactory and remove custom middleware
ronaldbarendse d34039a
Remove AzureBlobFileSystemImageProvider
ronaldbarendse bcead5e
Fix IAzureBlobFileSystem instance creation
ronaldbarendse 8a42b64
Code/documentation cleanup
ronaldbarendse d6778b8
Move provider-independent code to Umbraco.StorageProviders project
ronaldbarendse 7b96a0f
Update CDN config section path and documentation
ronaldbarendse 2303f8b
Simplify build and versioning
ronaldbarendse 8786c90
Simplify build and versioning for v2
ronaldbarendse 7ca48b5
Fix caching of NuGet packages caching (use explicit path, add restore…
ronaldbarendse a1018db
Add additional constructor to allow configuration using managed ident…
ronaldbarendse 9c141d0
Also add additional constructor on image cache
ronaldbarendse 2d4a058
Update icon.png include
ronaldbarendse f5e2e40
Update to latest Umbraco v10 preview
ronaldbarendse 87cca72
Add comment about CLSCompliantAttribute
ronaldbarendse 77e2dc0
Remove redundant code and calls in DI extension methods
ronaldbarendse 01bb12f
Ensure RemoveMediaFromPath also removes customized media path
ronaldbarendse 016f849
Code cleanup (seal classes, parameter null checking, expression bodies)
ronaldbarendse 2be5ee6
Change AnalysisMode to .NET 6 value for all
ronaldbarendse dc2b1e2
Install PublicApiAnalyzers and update editorconfig
ronaldbarendse ce61fbf
Install StyleCop.Analyzers and update code styling/documentation
ronaldbarendse fd349a4
Update dependency versions and fix nullability issues
ronaldbarendse 22bf9a4
Re-add updated Nerdbank.GitVersioning dependency
ronaldbarendse 6c1e7bf
Remove nightly MyGet feed
ronaldbarendse 80f4d14
Revert GitVersioning and PublicApiAnalyzers
ronaldbarendse e2b8943
Remove version.json from solution items
ronaldbarendse 8f19fff
Fix typos in README.md
ronaldbarendse File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Prepare release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: 'The prerelease tag to apply on the release branch (if any). If not specified, any existing prerelease tag will be removed.' | ||
required: false | ||
default: '' | ||
type: choice | ||
options: | ||
- '' | ||
- 'beta' | ||
- 'rc' | ||
versionIncrement: | ||
description: 'Specifies which part of the version on the current branch is incremented.' | ||
required: true | ||
default: 'minor' | ||
type: choice | ||
options: | ||
- 'major' | ||
- 'minor' | ||
- 'build' | ||
|
||
env: | ||
DOTNET_NOLOGO: true | ||
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
|
||
jobs: | ||
prepare-release: | ||
name: Prepare release | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure git | ||
run: | | ||
git config user.name 'github-actions[bot]' | ||
git config user.email '41898282+github-actions[bot]@users.noreply.github.com' | ||
|
||
- name: Setup Nerdbank.GitVersioning | ||
run: dotnet tool install --tool-path . nbgv | ||
|
||
- name: Prepare release | ||
run: ./nbgv prepare-release ${{ github.event.inputs.tag }} -p src --versionIncrement ${{ github.event.inputs.versionIncrement }} | ||
|
||
- name: Push commit (and new branch) | ||
run: git push --all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Publish release | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
DOTNET_NOLOGO: true | ||
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
|
||
jobs: | ||
publish-release: | ||
name: Publish release | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure git | ||
run: | | ||
git config user.name 'github-actions[bot]' | ||
git config user.email '41898282+github-actions[bot]@users.noreply.github.com' | ||
|
||
- name: Setup Nerdbank.GitVersioning | ||
run: dotnet tool install --tool-path . nbgv | ||
|
||
- name: Tag release | ||
run: ./nbgv tag -p src | ||
|
||
- name: Push git tags | ||
run: git push --tags |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.