Skip to content

Commit b01db9f

Browse files
committed
🔖 release v1.0.4
## 1.0.4 * [FIX] optimize Encoder by caching sequence materialization and reducing allocations * [FIX] improve Encoder performance by reducing allocations and optimizing key extraction for collections and dictionaries * [FIX] optimize dictionary traversal by replacing nested ifs with guard clauses in Utils * [FIX] optimize Decoder by reducing allocations and improving parameter limit handling * [FIX] optimize Utils by reducing allocations and improving collection handling * [FIX] optimize Qs by reducing allocations and improving collection handling * [FIX] optimize Decoder by reducing allocations and improving string handling * [FIX] optimize Encoder by reducing allocations and improving collection handling * [FIX] optimize SideChannelFrame by reducing allocations and improving map handling * [FIX] optimize HexTable by generating percent-encoded strings programmatically to reduce allocations * [FIX] optimize HexTable by using string.Create on supported frameworks to reduce allocations * [FIX] optimize Decoder by delaying StringBuilder allocation in JoinAsCommaSeparatedStrings to reduce memory usage * [FIX] optimize ConvertNestedDictionary by reducing type checks and improving traversal for dictionaries and lists * [CHORE] add documentation to ConvertNestedDictionary and ReferenceEqualityComparer for improved code clarity * [CHORE] reformat conditional and loop blocks for improved readability in Utils * [CHORE] reformat switch statement for improved readability in Utils * [CHORE] add unit test for ToStringKeyDeepNonRecursive to verify conversion of nested lists and dictionaries
1 parent 6637bcf commit b01db9f

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 1.0.4
2+
3+
* [FIX] optimize Encoder by caching sequence materialization and reducing allocations
4+
* [FIX] improve Encoder performance by reducing allocations and optimizing key extraction for collections and dictionaries
5+
* [FIX] optimize dictionary traversal by replacing nested ifs with guard clauses in Utils
6+
* [FIX] optimize Decoder by reducing allocations and improving parameter limit handling
7+
* [FIX] optimize Utils by reducing allocations and improving collection handling
8+
* [FIX] optimize Qs by reducing allocations and improving collection handling
9+
* [FIX] optimize Decoder by reducing allocations and improving string handling
10+
* [FIX] optimize Encoder by reducing allocations and improving collection handling
11+
* [FIX] optimize SideChannelFrame by reducing allocations and improving map handling
12+
* [FIX] optimize HexTable by generating percent-encoded strings programmatically to reduce allocations
13+
* [FIX] optimize HexTable by using string.Create on supported frameworks to reduce allocations
14+
* [FIX] optimize Decoder by delaying StringBuilder allocation in JoinAsCommaSeparatedStrings to reduce memory usage
15+
* [FIX] optimize ConvertNestedDictionary by reducing type checks and improving traversal for dictionaries and lists
16+
* [CHORE] add documentation to ConvertNestedDictionary and ReferenceEqualityComparer for improved code clarity
17+
* [CHORE] reformat conditional and loop blocks for improved readability in Utils
18+
* [CHORE] reformat switch statement for improved readability in Utils
19+
* [CHORE] add unit test for ToStringKeyDeepNonRecursive to verify conversion of nested lists and dictionaries
20+
121
## 1.0.3
222

323
* [CHORE] make package .NET Standard 2.0 compatible

QsNet/QsNet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<LangVersion>latest</LangVersion>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<PackageId>QsNet</PackageId>
8-
<Version>1.0.3</Version>
8+
<Version>1.0.4</Version>
99
<Authors>Klemen Tusar</Authors>
1010
<PackageTags>query-string; parser; encoder; qs</PackageTags>
1111
<Description>A query string encoding and decoding library for C#/.NET. Ported from qs for JavaScript.</Description>

0 commit comments

Comments
 (0)