Skip to content

Commit 686a94a

Browse files
Mark contrib value connectors as obsolete
1 parent 8dccb6e commit 686a94a

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/Umbraco.Deploy.Contrib/ValueConnectors/BlockEditorValueConnector.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ namespace Umbraco.Deploy.Contrib.Connectors.ValueConnectors
1919
/// <summary>
2020
/// A Deploy connector for BlockEditor based property editors (ie. BlockList)
2121
/// </summary>
22+
[Obsolete("Use Umbraco.Deploy.Connectors.ValueConnectors.BlockValueConnectorBase instead to support recursive migrators. This class will be removed in a future version.")]
2223
public abstract class BlockEditorValueConnector : ValueConnectorBase
2324
{
2425
private readonly IContentTypeService _contentTypeService;

src/Umbraco.Deploy.Contrib/ValueConnectors/BlockListValueConnector.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ namespace Umbraco.Deploy.Contrib.Connectors.ValueConnectors
99
/// <summary>
1010
/// A Deploy connector for the BlockList property editor
1111
/// </summary>
12+
[Obsolete("Deploy 4.9.0 adds an explicit binding to use Umbraco.Deploy.Connectors.ValueConnectors.BlockEditorValueConnector instead to support recursive migrators. This class will be removed in a future version.")]
1213
public class BlockListValueConnector : BlockEditorValueConnector
1314
{
1415
public override IEnumerable<string> PropertyEditorAliases { get; } = new[]

src/Umbraco.Deploy.Contrib/ValueConnectors/MultiUrlPickerValueConnector.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
namespace Umbraco.Deploy.Contrib.Connectors.ValueConnectors
1515
{
16+
[Obsolete("Deploy 4.9.0 adds an explicit binding to use Umbraco.Deploy.Connectors.ValueConnectors.MultiUrlPickerValueConnector instead to support recursive migrators. This class will be removed in a future version.")]
1617
public class MultiUrlPickerValueConnector : ValueConnectorBase
1718
{
1819
private readonly IEntityService _entityService;

src/Umbraco.Deploy.Contrib/ValueConnectors/NestedContentValueConnector.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ namespace Umbraco.Deploy.Contrib.Connectors.ValueConnectors
1919
/// <summary>
2020
/// A Deploy connector for the NestedContent property editor
2121
/// </summary>
22+
[Obsolete("Deploy 4.9.0 adds an explicit binding to use Umbraco.Deploy.Connectors.ValueConnectors.NestedContentValueConnector instead to support recursive migrators. This class will be removed in a future version.")]
2223
public class NestedContentValueConnector : ValueConnectorBase
2324
{
2425
private readonly IContentTypeService _contentTypeService;

0 commit comments

Comments
 (0)