-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .NET 8 target and migrate to System.Text.Json
New features: * Now multi-targets both .NET 8 and .NET Standard 2.0 * Trimming and AOT are now supported on .NET 8 * Switched to using System.Text.Json instead of Newtonsoft.Json * Added support for RecyclableMemoryStream 3.x * Dropped 2 dependencies: Microsoft.CSharp and Newtonsoft.Json Breaking changes: Check your code for usage of deprecated methods and fix them. The next release will involve cleanup of all deprecated methods (both the ones deprecated for years and the ones deprecated in this release). Removed the following APIs (not frequently used) ``` public static dynamic? DeserializeDynamic(this IJsonResponseProvider p) public static T? Deserialize<T>(this IJsonResponseProvider p) where T : class ``` Deprecated lots of APIs, including the following: ``` * All ToImageflowDynamic() methods on objects. Use ToJsonNode() instead. * JobContext.Execute<T> * JobContext.SendMessage<T> ```
- Loading branch information
Showing
43 changed files
with
1,740 additions
and
587 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## Changelog | ||
|
||
## v0.11 (2024-01-29) | ||
|
||
New features: | ||
* Now multi-targets both .NET 8 and .NET Standard 2.0 | ||
* Trimming and AOT are now supported on .NET 8 | ||
* Switched to using System.Text.Json instead of Newtonsoft.Json | ||
* Added support for RecyclableMemoryStream 3.x | ||
* Dropped 2 dependencies: Microsoft.CSharp and Newtonsoft.Json | ||
|
||
Breaking changes: | ||
|
||
Check your code for usage of deprecated methods and fix them. | ||
The next release will involve cleanup of all deprecated methods (both the ones deprecated for years and the ones deprecated in this release). | ||
|
||
Removed the following APIs (not frequently used) | ||
``` | ||
public static dynamic? DeserializeDynamic(this IJsonResponseProvider p) | ||
public static T? Deserialize<T>(this IJsonResponseProvider p) where T : class | ||
``` | ||
|
||
Deprecated lots of APIs, including the following: | ||
``` | ||
* All ToImageflowDynamic() methods on objects. Use ToJsonNode() instead. | ||
* JobContext.Execute<T> | ||
* JobContext.SendMessage<T> | ||
``` |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=framewise/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=imageflow/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary> |
This file contains 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
This file contains 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
Oops, something went wrong.