Skip to content

Updates documentation and Yarp version #37

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 3 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
working-directory: ./src/EPiServer.ContentDelivery.NodeProxy
run: dotnet pack --no-build --configuration $env:buildConfiguration --version-suffix $env:versionSuffix
- name: Archive packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: packages
path: artifacts/**/*.nupkg
Expand All @@ -65,7 +65,7 @@ jobs:
DOTNET_NOLOGO: 1
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: packages
- name: Publish to Github Packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nuget-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
working-directory: ./src/EPiServer.ContentDelivery.NodeProxy
run: dotnet pack --no-build --configuration $env:buildConfiguration
- name: Archive packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: packages
path: artifacts/**/*.nupkg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Renders a ContentArea by iterating through all the blocks and using the
`BlockComponentSelector` to render the corresponding Vue component.

By setting the `data-epi-block-id` attribute the block becomes editable
By setting the `data-epi-block-id` or `data-epi-content-id` attribute the block becomes editable
during On-Page Edit. It will not be set in View mode to not leak out too
much info about Optimizely to visitors.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<ItemGroup>
<PackageReference Include="EPiServer.CMS.Core" Version="12.18.0" />
<PackageReference Include="Yarp.ReverseProxy" Version="1.1.1" />
<PackageReference Include="Yarp.ReverseProxy" Version="2.2.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>

Expand Down
Loading