@ygracs/xobj-lib-js 0.1.2 → 0.2.1

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,3 +1,27 @@
1
+ #### *v0.2.1*
2
+
3
+ Release version.
4
+
5
+ > - update `xObj.md`;
6
+ > - update dependency on `@ygracs/bsfoc-lib-js` module to v0.2.2;
7
+ > - change behavior for function: `readXObjParamEx`, `readXObjAttrEx`, `writeXObjParamEx`, `writeXObjAttrEx` (*check the package docs*).
8
+
9
+ #### *v0.2.0*
10
+
11
+ Release version.
12
+
13
+ > - `xObj.md` updated;
14
+ > - change behavior for function: `deleteXObjElement`, `insertXObjElement`, `renameXObjElement` (*check the package docs*);
15
+ > - change behavior for function: `insertXObjEList`, `insertXObjEChain` (*check the package docs*);
16
+ > - change behavior for function: `writeXObjParamAsBool`, `writeXObjParamAsNum`, `writeXObjAttrAsBool`, `writeXObjAttrAsNum` (*check the package docs*);
17
+ > - added `insertXObjElementEx` function;
18
+ > - added `insertXObjEListEx` function;
19
+ > - added `readXObjParamEx` function;
20
+ > - added `readXObjAttrEx` function;
21
+ > - added `renameXObjAttribute` function;
22
+ > - deprecated `readXObjParamAsStr` function;
23
+ > - deprecated `readXObjAttrAsStr` function.
24
+
1
25
  #### *v0.1.2*
2
26
 
3
27
  Release version.
@@ -20,70 +44,6 @@ Release version.
20
44
  > - change behavior for function: `insertXObjElement`, `insertXObjElements`, `insertXObjEChain`, `insertXObjEList` (***remove deprecated options parameters**. check the package docs*)
21
45
  > - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.1.4.
22
46
 
23
- #### *v0.0.14rc4*
24
-
25
- Pre-release version.
26
-
27
- > - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.1.3.
28
-
29
- #### *v0.0.14rc3*
30
-
31
- Pre-release version.
32
-
33
- > - `xObj-lib.md` updated;
34
- > - some fixes in 'xObj-lib.js' module;
35
- > - added `genXObjENameDescr` function.
36
-
37
- #### *v0.0.14rc2*
38
-
39
- Pre-release version.
40
-
41
- > - some fixes in 'xObj-lib.js' module;
42
- > - added some error codes (see details in docs);
43
- > - added evalXObjEName function;
44
- > - added deleteXObjAttribute function.
45
-
46
- #### *v0.0.14rc1*
47
-
48
- Pre-release version.
49
-
50
- > - `xObj-lib.md` updated;
51
- > - some fixes in 'xObj-lib.js' module;
52
- > - changed behavior for `getXObjAttributes` (*see details in docs*);
53
- > - changed behavior for `readXObjParamRaw` and its siblings (*see details in docs*);
54
- > - changed behavior for `writeXObjParamRaw` and its siblings (*see details in docs*);
55
- > - changed behavior for `readXObjAttrRaw` and its siblings (*see details in docs*);
56
- > - changed behavior for `writeXObjAttrRaw` and its siblings (*see details in docs*);
57
- > - changed `options` parameter for `insertXObjElement` (*see details in docs*);
58
- > - changed `options` parameter for `insertXObjEList` (*see details in docs*);
59
- > - added `checkXObjAttribute` function.
60
-
61
- #### *v0.0.13*
62
-
63
- Pre-release version.
64
-
65
- > - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.1.2.
66
-
67
- #### *v0.0.12*
68
-
69
- Pre-release version.
70
-
71
- > - some fixes in 'xObj-lib.js' module;
72
- > - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.1.1.
73
-
74
- #### *v0.0.11*
75
-
76
- Pre-release version.
77
-
78
- > - remove dependency on `@ygracs/xml-js6` module;
79
- > - fixed exports in `$module/index.js`.
80
-
81
- #### *v0.0.10*
82
-
83
- Pre-release version.
84
-
85
- > - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.1.0.
86
-
87
- #### *v0.0.1-v0.0.9*
47
+ #### *v0.0.1-v0.0.14rc4*
88
48
 
89
49
  Pre-release version.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019-2024 Yuri Grachev
3
+ Copyright (c) 2019-2025 Yuri Grachev
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
6
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- |***rev.*:**|0.1.1|
1
+ |***rev.*:**|0.1.2|
2
2
  |:---|---:|
3
- |***date***:|2023-07-09|
3
+ |***date***:|2024-09-15|
4
4
 
5
5
  ## Introduction
6
6
 
@@ -8,6 +8,9 @@ This module provide a helper functions for object manipulation. It was primarily
8
8
 
9
9
  > Note: for more see `xObj.md` in the project `doc` directory.
10
10
 
11
+ > Notes on upgrade to `v0.2.0`
12
+ > > The `v0.2.0` is not fully compatible with a previous one due to some breaking changes. For more details read the docs for a functions used in your project.
13
+
11
14
  ## Use cases
12
15
 
13
16
  ### Installation