Skip to content
Open
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v0.8.0](https://github.com/contentstack/contentstack-management-dotnet/tree/v0.8.0)
- Feat
- **Entry Variant support**
- `EntryVariant` model for create, fetch, find, update, and delete on entry variant endpoints
- `Entry.Variant(uid)` to access variant operations for a given entry
- Publish with variants: `PublishVariant`, `PublishVariantRules`, and `Variants` / `VariantRules` on `PublishUnpublishDetails`; serialization updated in `PublishUnpublishService`
- Unit tests for `EntryVariant` and publish payload serialization; integration tests (`Contentstack021_EntryVariantTest`) for Product Banner lifecycle and negative cases

## [v0.7.0](https://github.com/contentstack/contentstack-management-dotnet/tree/v0.7.0)
- Feat
- **Bulk publish/unpublish: query parameters (DX-3233)**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1789,6 +1789,9 @@ public class SimpleEntry : IEntry
{
[JsonProperty(propertyName: "title")]
public string Title { get; set; }

[JsonProperty(propertyName: "_variant")]
public object Variant { get; set; }
}

public class EntryInfo
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading
Loading