Bump Asp.Versioning.Mvc and 4 others - #74
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
Bumps Asp.Versioning.Mvc from 8.1.1 to 10.0.0 Bumps Umbraco.Cms.Core from 17.5.3 to 18.0.0 Bumps Umbraco.Cms.Web.Common from 17.5.3 to 18.0.0 Bumps Umbraco.Cms.Web.Website from 17.5.3 to 18.0.0 Bumps Umbraco.Community.Contentment from 6.2.1 to 7.0.1 --- updated-dependencies: - dependency-name: Asp.Versioning.Mvc dependency-version: 10.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Umbraco.Cms.Core dependency-version: 18.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Umbraco.Cms.Web.Common dependency-version: 18.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Umbraco.Cms.Web.Website dependency-version: 18.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Umbraco.Community.Contentment dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
|
Looks like these dependencies are no longer being updated by Dependabot, so this is no longer needed. |
dependabot
Bot
deleted the
dependabot/nuget/project-templates/content/umbraco-headless-bff/UmbracoHeadlessBFF.Cms/multi-df6947773e
branch
August 1, 2026 16:57
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Updated Asp.Versioning.Mvc from 8.1.1 to 10.0.0.
Release notes
Sourced from Asp.Versioning.Mvc's releases.
10.0.0
The official release for
10.0is here! In addition to the changes in the preview releases, there are a few additional changes.Features
All Platforms
ApiVersionAttribute,MapToVersionAttribute, andAdvertiseApiVersionsAttributeall now have a constructor which can support the date format without being a string; for example,[ApiVersion(2026, 04, 01)]ASP.NET Core OpenAPI
XmlCommentsTransformeris now resolved via DI, which allows it to be re-registered with a user-defined file pathvirtualfor developer extensibilityFixes
ASP.NET Core OpenAPI
IKeyedServiceProviderwhen injectingApiVersion(#1178)Breaking Changes
ASP.NET Core OpenAPI
"enum": ["1.0"]instead of"default": "1.0"Release Notes
rc.1because Microsoft.AspNetCore.OData is only atpreview.2rc.1pending the outcome of dotnet/aspnetcore#66408Feedback
Thanks to the contributors on this release whether it was code contributions or test driving the previews. Special thanks to @sander1095 for being a strong advocate and helping to bring even more visibility to the project.
10.0.0-preview.2
This release is a quick iteration which contains minor fixes based on feedback from Preview 1.
Trying out previews is always a big ask. The OpenAPI extensions are net new, so I really am looking for some community support to flush out any edge cases I may have been missed before releasing officially. All other libraries are stable.
Aside from whatever the community may report, there are only two final things I'm considering for the final release:
If these are not able to be completed within the next few weeks, then I will officially release the stable libraries. The gRPC support will then come in a future, likely minor version, release. The OpenAPI extensions may stay in preview as AOT will likely be broken.
Features
All Platforms
_prefix character when extracting API versions from a .NET namespace (#1172)Fixes
ASP.NET Core with OpenAPI
<example>tags (#1170)Breaking Changes
The OpenAPI extensions for API Versioning (e.g.
x-api-versioning) will now use a nestedlinksproperty rather than a simple array. This allows the schema to be open for possible future enhancements.Preview 1
{ "x-api-versioning": [ { "title": "Version Policy", "type": "text/html", "rel": "info", "url": "http://my.api.com/policies/versioning.html" } ] }Preview 2+
{ ... (truncated) ## 10.0.0-preview.1 This is a major release that includes new, publicly visible API changes as well as a rollup of bug fixes. This is an initial preview release that is primarily focused on improving OpenAPI integration. Additional features will come in the next preview. The wiki has not be fully updated - yet, but that will also occur in the near future. These are preview features and changes. Please report issues if you find them. Feel free to start a [discussion](../../discussions) about the changes in the forthcoming official release. # Features ## All Platforms - Support for the `deprecation` response header as defined by [RFC 9745](https://www.rfc-editor.org/rfc/rfc9745.html) (#1128) ## ASP.NET Core - Integration with the [Microsoft.AspNetCore.OpenApi](https://www.nuget.org/packages/Microsoft.AspNetCore.OpenApi) library - These features in the new [Asp.Versioning.OpenApi](https://www.nuget.org/packages/Asp.Versioning.OpenApi) library - OpenAPI documents are now generated per API version - Sunset and deprecation policies are automatically included with standard (English) text, but can be customized - Sunset and deprecation policies links are included in OpenAPI documents via the `x-api-versioning` extension - The versioned `HttpClient` can now read and report on sunset and deprecation policies - All [example projects](../../tree/main/examples/AspNetCore) have been updated to use [Scalar](https://scalar.com/) ### Example The following provides an example of a bare minimum setup: ```c# var builder = WebApplication.CreateBuilder( args ); var services = builder.Services; services.AddApiVersioning() .AddApiExplorer() .AddOpenApi(); var app = builder.Build(); var hello = app.NewVersionedApi( "HelloWorld" ); var v1 = hello.MapGroup( "/hello-world" ).HasApiVersion( 1.0 ); var v2 = hello.MapGroup( "/hello-world" ).HasApiVersion( 2.0 ); v1.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" ); v2.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" ); if ( app.Environment.IsDevelopment() ) { app.MapOpenApi().WithDocumentPerVersion(); } app.Run();The key differences from what you may be currently doing:
... (truncated)
Commits viewable in compare view.
Updated Umbraco.Cms.Core from 17.5.3 to 18.0.0.
Release notes
Sourced from Umbraco.Cms.Core's releases.
18.0.0
What's Changed Since The Last Release Candidate (18.0.0-rc3)
📦 Dependencies
Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc3...release-18.0.0
What's Changed For 18.0
See the prior release notes for each pre-release version:
Release overview: https://releases.umbraco.com/release/umbraco/Umbraco-CMS/18.0.0
Full Changelog: umbraco/Umbraco-CMS@release-17.5.0...release-18.0.0
18.0.0-rc3
What's Changed Since 18.0.0-rc2
🎨 Design
🐛 Bug Fixes
ITagServiceto handle Elements by @kjac in Tags: ExpandITagServiceto handle Elements umbraco/Umbraco-CMS#23117🧪 Testing
Umbraco.Cms.Testspackage by @ronaldbarendse in Tests: Remove AutoFixture from the shipped Umbraco.Cms.Tests package umbraco/Umbraco-CMS#23141Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc2...release-18.0.0-rc3
What's Changed Since 18.0.0-rc1
📦 Dependencies
@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 by @iOvergaard in Dependencies: Bumps@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 umbraco/Umbraco-CMS#23052🐛 Bug Fixes
multipart/form-dataon the Create Temporary File endpoint (closes #23017) by @AndyButland in Management API: Declaremultipart/form-dataon the Create Temporary File endpoint (closes #23017) umbraco/Umbraco-CMS#23025by @AndyButland in Elements: Hide element actions from the document notifications dialog (closes #23053) umbraco/Umbraco-CMS#23059
{}schema for unconstrained property types (closes #23034) by @lauraneto in Delivery API - Open API: return inline{}schema for unconstrained property types (closes #23034) umbraco/Umbraco-CMS#23066Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc1...release-18.0.0-rc2
18.0.0-rc2
What's Changed since 18.0.0-rc1
📦 Dependencies
@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 by @iOvergaard in Dependencies: Bumps@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 umbraco/Umbraco-CMS#23052🐛 Bug Fixes
multipart/form-dataon the Create Temporary File endpoint (closes #23017) by @AndyButland in Management API: Declaremultipart/form-dataon the Create Temporary File endpoint (closes #23017) umbraco/Umbraco-CMS#23025by @AndyButland in Elements: Hide element actions from the document notifications dialog (closes #23053) umbraco/Umbraco-CMS#23059
{}schema for unconstrained property types (closes #23034) by @lauraneto in Delivery API - Open API: return inline{}schema for unconstrained property types (closes #23034) umbraco/Umbraco-CMS#23066Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc1...release-18.0.0-rc2
18.0.0-rc1
What's Changed since 18.0.0-beta2
🙌 Notable Changes
🚀 New Features
🏠 Internal
🐛 Bug Fixes
'Unique is missing'warning umbraco/Umbraco-CMS#22935RecurringHostedServiceBasewithSemaphoreSlimand add signalling support umbraco/Umbraco-CMS#22331Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-beta2...release-18.0.0-rc1
18.0.0-beta2
What's Changed Since 18.0.0-beta1
🐛 Bug Fixes
Backoffice: Preserve prerelease tag when hoisting peer dependencies by @iOvergaard in umbraco/Umbraco-CMS#22841
SignalR: Mark ServerEventSender as a distributed cache notification handler by @ronaldbarendse in umbraco/Umbraco-CMS#22818
Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-beta1...release-18.0.0-beta2
What's Changed in Umbraco 18
🙌 Notable Changes - Testing encouraged and appreciated!
Microsoft.AspNetCore.OpenApifor Open API document generation by @lauraneto in Open API: UseMicrosoft.AspNetCore.OpenApifor Open API document generation umbraco/Umbraco-CMS#21058💥 Breaking Changes
GetDictionaryValuenullability with behaviour by @AndyButland in Umbraco Helper: AlignGetDictionaryValuenullability with behaviour (closes #21145) umbraco/Umbraco-CMS#21372TODOcomments by @NguyenThuyLan in Code Clean-up (18): Remove obsoleted code flagged for removal and addressTODOcomments umbraco/Umbraco-CMS#21980IHostingEnvironment.ApplicationMainUrlnullable by @AndyButland in Hosting: MakeIHostingEnvironment.ApplicationMainUrlnullable umbraco/Umbraco-CMS#22558IEmailSender,MemberConfigurationResponseModel,MediaPermissions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IEmailSender,MemberConfigurationResponseModel,MediaPermissions) umbraco/Umbraco-CMS#22642IMemberGroupService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IMemberGroupService) umbraco/Umbraco-CMS#22632LogFiles, legacy permissions tables,LoggerConfigExtensions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (LogFiles, legacy permissions tables,LoggerConfigExtensions) umbraco/Umbraco-CMS#22679UrlSegmentextension method) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UrlSegmentextension method) umbraco/Umbraco-CMS#22682UmbracoApiControllerand front-end API auto-routing) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UmbracoApiControllerand front-end API auto-routing) umbraco/Umbraco-CMS#22692IMemberService.GetMembersByPropertyValue) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IMemberService.GetMembersByPropertyValue) umbraco/Umbraco-CMS#22678MigrationBaseand all migrations between old and current LTS (13-17) by @Migaroez in Migrations: Removed obsoletedMigrationBaseand all migrations between old and current LTS (13-17) umbraco/Umbraco-CMS#22618IDataTypeService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDataTypeService) umbraco/Umbraco-CMS#22634IDomainService,IContentTypeBaseService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDomainService,IContentTypeBaseService) umbraco/Umbraco-CMS#22629ILocalizationService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (ILocalizationService) umbraco/Umbraco-CMS#22677InstalledPackagemapping by @Migaroez in Code Tidy: Remove unused obsoletedInstalledPackagemapping umbraco/Umbraco-CMS#22713IFileService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IFileService) umbraco/Umbraco-CMS#22675... (truncated)
18.0.0-beta1
What's Changed
🙌 Notable Changes - Testing encouraged and appreciated!
Microsoft.AspNetCore.OpenApifor Open API document generation by @lauraneto in Open API: UseMicrosoft.AspNetCore.OpenApifor Open API document generation umbraco/Umbraco-CMS#21058💥 Breaking Changes
GetDictionaryValuenullability with behaviour by @AndyButland in Umbraco Helper: AlignGetDictionaryValuenullability with behaviour (closes #21145) umbraco/Umbraco-CMS#21372TODOcomments by @NguyenThuyLan in Code Clean-up (18): Remove obsoleted code flagged for removal and addressTODOcomments umbraco/Umbraco-CMS#21980IHostingEnvironment.ApplicationMainUrlnullable by @AndyButland in Hosting: MakeIHostingEnvironment.ApplicationMainUrlnullable umbraco/Umbraco-CMS#22558IEmailSender,MemberConfigurationResponseModel,MediaPermissions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IEmailSender,MemberConfigurationResponseModel,MediaPermissions) umbraco/Umbraco-CMS#22642IMemberGroupService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IMemberGroupService) umbraco/Umbraco-CMS#22632LogFiles, legacy permissions tables,LoggerConfigExtensions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (LogFiles, legacy permissions tables,LoggerConfigExtensions) umbraco/Umbraco-CMS#22679UrlSegmentextension method) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UrlSegmentextension method) umbraco/Umbraco-CMS#22682UmbracoApiControllerand front-end API auto-routing) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UmbracoApiControllerand front-end API auto-routing) umbraco/Umbraco-CMS#22692IMemberService.GetMembersByPropertyValue) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IMemberService.GetMembersByPropertyValue) umbraco/Umbraco-CMS#22678MigrationBaseand all migrations between old and current LTS (13-17) by @Migaroez in Migrations: Removed obsoletedMigrationBaseand all migrations between old and current LTS (13-17) umbraco/Umbraco-CMS#22618IDataTypeService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDataTypeService) umbraco/Umbraco-CMS#22634IDomainService,IContentTypeBaseService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDomainService,IContentTypeBaseService) umbraco/Umbraco-CMS#22629ILocalizationService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (ILocalizationService) umbraco/Umbraco-CMS#22677InstalledPackagemapping by @Migaroez in Code Tidy: Remove unused obsoletedInstalledPackagemapping umbraco/Umbraco-CMS#22713IFileService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IFileService) umbraco/Umbraco-CMS#22675MoveEventInfo.NewParentby @Migaroez in Code Tidy: Remove obsoleteMoveEventInfo.NewParentumbraco/Umbraco-CMS#22728🏠 Internal
... (truncated)
17.6.0-rc
What's Changed
📦 Dependencies
🚀 New Features
umb-entity-framecomponent + Storybook stories by @leekelleher in feat(components): addsumb-entity-framecomponent + Storybook stories umbraco/Umbraco-CMS#22844umbMemberNamecomponent (closes #22147) by @leekelleher in UFM: AddumbMemberNamecomponent (closes #22147) umbraco/Umbraco-CMS#23165🚤 Performance
umbracoContent.contentTypeIdby @AndyButland in Performance: Add index onumbracoContent.contentTypeIdumbraco/Umbraco-CMS#23328🌈 Accessibility Improvements
🐛 Bug Fixes
DocumentVariantStateModelAPI model for backoffice client by @leekelleher in Documents: AliasDocumentVariantStateModelAPI model for backoffice client umbraco/Umbraco-CMS#22716ServerEventSenderas a distributed cache notification handler by @ronaldbarendse in SignalR: MarkServerEventSenderas a distributed cache notification handler umbraco/Umbraco-CMS#22818... (truncated)
Commits viewable in compare view.
Updated Umbraco.Cms.Web.Common from 17.5.3 to 18.0.0.
Release notes
Sourced from Umbraco.Cms.Web.Common's releases.
18.0.0
What's Changed Since The Last Release Candidate (18.0.0-rc3)
📦 Dependencies
Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc3...release-18.0.0
What's Changed For 18.0
See the prior release notes for each pre-release version:
Release overview: https://releases.umbraco.com/release/umbraco/Umbraco-CMS/18.0.0
Full Changelog: umbraco/Umbraco-CMS@release-17.5.0...release-18.0.0
18.0.0-rc3
What's Changed Since 18.0.0-rc2
🎨 Design
🐛 Bug Fixes
ITagServiceto handle Elements by @kjac in Tags: ExpandITagServiceto handle Elements umbraco/Umbraco-CMS#23117🧪 Testing
Umbraco.Cms.Testspackage by @ronaldbarendse in Tests: Remove AutoFixture from the shipped Umbraco.Cms.Tests package umbraco/Umbraco-CMS#23141Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc2...release-18.0.0-rc3
What's Changed Since 18.0.0-rc1
📦 Dependencies
@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 by @iOvergaard in Dependencies: Bumps@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 umbraco/Umbraco-CMS#23052🐛 Bug Fixes
multipart/form-dataon the Create Temporary File endpoint (closes #23017) by @AndyButland in Management API: Declaremultipart/form-dataon the Create Temporary File endpoint (closes #23017) umbraco/Umbraco-CMS#23025by @AndyButland in Elements: Hide element actions from the document notifications dialog (closes #23053) umbraco/Umbraco-CMS#23059
{}schema for unconstrained property types (closes #23034) by @lauraneto in Delivery API - Open API: return inline{}schema for unconstrained property types (closes #23034) umbraco/Umbraco-CMS#23066Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc1...release-18.0.0-rc2
18.0.0-rc2
What's Changed since 18.0.0-rc1
📦 Dependencies
@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 by @iOvergaard in Dependencies: Bumps@umbraco-ui/uuifrom 2.0.0-rc.1 to 2.0.0-rc.2 umbraco/Umbraco-CMS#23052🐛 Bug Fixes
multipart/form-dataon the Create Temporary File endpoint (closes #23017) by @AndyButland in Management API: Declaremultipart/form-dataon the Create Temporary File endpoint (closes #23017) umbraco/Umbraco-CMS#23025by @AndyButland in Elements: Hide element actions from the document notifications dialog (closes #23053) umbraco/Umbraco-CMS#23059
{}schema for unconstrained property types (closes #23034) by @lauraneto in Delivery API - Open API: return inline{}schema for unconstrained property types (closes #23034) umbraco/Umbraco-CMS#23066Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-rc1...release-18.0.0-rc2
18.0.0-rc1
What's Changed since 18.0.0-beta2
🙌 Notable Changes
🚀 New Features
🏠 Internal
🐛 Bug Fixes
'Unique is missing'warning umbraco/Umbraco-CMS#22935RecurringHostedServiceBasewithSemaphoreSlimand add signalling support umbraco/Umbraco-CMS#22331Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-beta2...release-18.0.0-rc1
18.0.0-beta2
What's Changed Since 18.0.0-beta1
🐛 Bug Fixes
Backoffice: Preserve prerelease tag when hoisting peer dependencies by @iOvergaard in umbraco/Umbraco-CMS#22841
SignalR: Mark ServerEventSender as a distributed cache notification handler by @ronaldbarendse in umbraco/Umbraco-CMS#22818
Full Changelog: umbraco/Umbraco-CMS@release-18.0.0-beta1...release-18.0.0-beta2
What's Changed in Umbraco 18
🙌 Notable Changes - Testing encouraged and appreciated!
Microsoft.AspNetCore.OpenApifor Open API document generation by @lauraneto in Open API: UseMicrosoft.AspNetCore.OpenApifor Open API document generation umbraco/Umbraco-CMS#21058💥 Breaking Changes
GetDictionaryValuenullability with behaviour by @AndyButland in Umbraco Helper: AlignGetDictionaryValuenullability with behaviour (closes #21145) umbraco/Umbraco-CMS#21372TODOcomments by @NguyenThuyLan in Code Clean-up (18): Remove obsoleted code flagged for removal and addressTODOcomments umbraco/Umbraco-CMS#21980IHostingEnvironment.ApplicationMainUrlnullable by @AndyButland in Hosting: MakeIHostingEnvironment.ApplicationMainUrlnullable umbraco/Umbraco-CMS#22558IEmailSender,MemberConfigurationResponseModel,MediaPermissions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IEmailSender,MemberConfigurationResponseModel,MediaPermissions) umbraco/Umbraco-CMS#22642IMemberGroupService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IMemberGroupService) umbraco/Umbraco-CMS#22632LogFiles, legacy permissions tables,LoggerConfigExtensions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (LogFiles, legacy permissions tables,LoggerConfigExtensions) umbraco/Umbraco-CMS#22679UrlSegmentextension method) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UrlSegmentextension method) umbraco/Umbraco-CMS#22682UmbracoApiControllerand front-end API auto-routing) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UmbracoApiControllerand front-end API auto-routing) umbraco/Umbraco-CMS#22692IMemberService.GetMembersByPropertyValue) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IMemberService.GetMembersByPropertyValue) umbraco/Umbraco-CMS#22678MigrationBaseand all migrations between old and current LTS (13-17) by @Migaroez in Migrations: Removed obsoletedMigrationBaseand all migrations between old and current LTS (13-17) umbraco/Umbraco-CMS#22618IDataTypeService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDataTypeService) umbraco/Umbraco-CMS#22634IDomainService,IContentTypeBaseService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDomainService,IContentTypeBaseService) umbraco/Umbraco-CMS#22629ILocalizationService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (ILocalizationService) umbraco/Umbraco-CMS#22677InstalledPackagemapping by @Migaroez in Code Tidy: Remove unused obsoletedInstalledPackagemapping umbraco/Umbraco-CMS#22713IFileService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IFileService) umbraco/Umbraco-CMS#22675... (truncated)
18.0.0-beta1
What's Changed
🙌 Notable Changes - Testing encouraged and appreciated!
Microsoft.AspNetCore.OpenApifor Open API document generation by @lauraneto in Open API: UseMicrosoft.AspNetCore.OpenApifor Open API document generation umbraco/Umbraco-CMS#21058💥 Breaking Changes
GetDictionaryValuenullability with behaviour by @AndyButland in Umbraco Helper: AlignGetDictionaryValuenullability with behaviour (closes #21145) umbraco/Umbraco-CMS#21372TODOcomments by @NguyenThuyLan in Code Clean-up (18): Remove obsoleted code flagged for removal and addressTODOcomments umbraco/Umbraco-CMS#21980IHostingEnvironment.ApplicationMainUrlnullable by @AndyButland in Hosting: MakeIHostingEnvironment.ApplicationMainUrlnullable umbraco/Umbraco-CMS#22558IEmailSender,MemberConfigurationResponseModel,MediaPermissions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IEmailSender,MemberConfigurationResponseModel,MediaPermissions) umbraco/Umbraco-CMS#22642IMemberGroupService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IMemberGroupService) umbraco/Umbraco-CMS#22632LogFiles, legacy permissions tables,LoggerConfigExtensions) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (LogFiles, legacy permissions tables,LoggerConfigExtensions) umbraco/Umbraco-CMS#22679UrlSegmentextension method) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UrlSegmentextension method) umbraco/Umbraco-CMS#22682UmbracoApiControllerand front-end API auto-routing) by @AndyButland in Code Tidy: Remove obsolete code scheduled for removal in Umbraco 18 (UmbracoApiControllerand front-end API auto-routing) umbraco/Umbraco-CMS#22692IMemberService.GetMembersByPropertyValue) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IMemberService.GetMembersByPropertyValue) umbraco/Umbraco-CMS#22678MigrationBaseand all migrations between old and current LTS (13-17) by @Migaroez in Migrations: Removed obsoletedMigrationBaseand all migrations between old and current LTS (13-17) umbraco/Umbraco-CMS#22618IDataTypeService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDataTypeService) umbraco/Umbraco-CMS#22634IDomainService,IContentTypeBaseService) by @AndyButland in Code Tidy: Clean up obsoleted code scheduled for removal in Umbraco 18 (IDomainService,IContentTypeBaseService) umbraco/Umbraco-CMS#22629ILocalizationService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (ILocalizationService) umbraco/Umbraco-CMS#22677InstalledPackagemapping by @Migaroez in Code Tidy: Remove unused obsoletedInstalledPackagemapping umbraco/Umbraco-CMS#22713IFileService) by @AndyButland in Code Tidy: Clean up further obsoleted code scheduled for removal in Umbraco 18 (IFileService) umbraco/Umbraco-CMS#22675MoveEventInfo.NewParentby @Migaroez in Code Tidy: Remove obsoleteMoveEventInfo.NewParentumbraco/Umbraco-CMS#22728🏠 Internal
... (truncated)
17.6.0-rc
What's Changed
📦 Dependencies
🚀 New Features
umb-entity-framecomponent + Storybook stories by @leekelleher in feat(components): addsumb-entity-framecomponent + Storybook stories umbraco/Umbraco-CMS#22844umbMemberNamecomponent (closes #22147) by @leekelleher in UFM: AddumbMemberNamecomponent (closes #22147) umbraco/Umbraco-CMS#23165🚤 Performance
umbracoContent.contentTypeIdby @AndyButland in Performance: Add index onumbracoContent.contentTypeIdumbraco/Umbraco-CMS#23328🌈 Accessibility Improvements
Description has been truncated
Depend...
Description has been truncated