@tspro/ts-utils-lib 1.19.0 → 1.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.20.0] - 2025-10-29
4
+ ### Added
5
+ - Guard.isNotThrowing(), Assert.isNotThrowing().
6
+ - UniMap, BiMap, TriMap, ValueSet.
7
+ - UniMap.createDeep() for deep equality single key map.
8
+ - ValueSet.createDeep() for deep equality set.
9
+ - Utils.Str.stringify() for stringifying any object or type.
10
+
11
+ ### Deprecated
12
+ - Map1 (-> UniMap), Map2 (-> BiMap), Map3 (-> TriMap).
13
+ - Set1 (-> ValueSet), BaseSet, DeepSet.
14
+
15
+ ## [1.19.1] - 2025-10-27
16
+ ## Fixed
17
+ - Forgot to export `DefaultArray`, `SetBase`, `Set1` and `DeepSet`.
18
+
3
19
  ## [1.19.0] - 2025-10-27
4
20
  ### Added
5
21
  - SignedIndexArray.toArray(), IndexArray.toArray(), IndexArray.length;