Skip to content
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
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
### Version: 3.0.0
#### Date: Jun-15-2026

##### Feat:
- Migrated all internal JSON handling to `System.Text.Json`
- Added `ApiErrorBodyParser` for consistent API error envelope parsing
- Added `JsonNodeConversion` and `JsonObjectMerge` utilities to replace Newtonsoft equivalents
- Added `ContentstackJsonDefaults` — shared `JsonSerializerOptions` used across all custom converters

##### Enh:
- Replaced `Console.WriteLine` with `Debug.WriteLine` in `ContentstackConvert` to suppress parse warnings from application stdout

##### Chore:
- Updated .NET version in SCA scan CI from `7.0.x` to `10.0.x`

---

### Version: 3.0.0-beta.1
#### Date: May-04-2026

##### Breaking Changes:
- Removed `Newtonsoft.Json` dependency; all JSON serialisation now uses `System.Text.Json` (BCL)
- `AssetJsonConverter` and `EntryJsonConverter` now implement `System.Text.Json.Serialization.JsonConverter<T>`
- `ContentstackCollection<T>` no longer carries `[JsonObject]`; direct `JsonSerializer` usage on this type is not supported
- Updated `contentstack.utils` from `1.0.6` to `2.0.0-beta.1` (major version bump)

##### Feat:
- Migrated all internal JSON handling to `System.Text.Json`
- Added `ApiErrorBodyParser` for consistent API error envelope parsing
- Added `JsonNodeConversion` and `JsonObjectMerge` utilities to replace Newtonsoft equivalents
- Added `ContentstackJsonDefaults` — shared `JsonSerializerOptions` used across all custom converters

##### Enh:
- Replaced `Console.WriteLine` with `Debug.WriteLine` in `ContentstackConvert` to suppress parse warnings from application stdout

##### Chore:
- Updated .NET version in SCA scan CI from `7.0.x` to `10.0.x`

---

### Version: 2.26.0
#### Date: Feb-10-2026

Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>3.0.0-beta.1</Version>
<Version>3.0.0</Version>
</PropertyGroup>
</Project>
Loading