@avstantso/core-toolkit 1.2.7 → 1.2.8

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +1 -0
  3. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## [1.2.8] - 2026-07-05
5
+
6
+ ### Changed
7
+
8
+ - Updated `@avstantso/core` dependency (Add DeepOps)
9
+
10
+
4
11
  ## [1.2.7] - 2026-06-19
5
12
 
6
13
  ### Changed
package/README.md CHANGED
@@ -105,6 +105,7 @@ When you import `@avstantso/core-toolkit`, the following extensions are automati
105
105
  |--------|-------------|
106
106
  | `Object.definePropertyOnce(o, p, attrs)` | Adds a property only if it doesn't exist |
107
107
  | `Object.definePropertiesOnce(o, props)` | Adds multiple properties, skipping existing ones |
108
+ | `Object.isPlainObject(o)` | Returns `true` if the object is a plain data object (prototype is `Object.prototype` or `null`) |
108
109
 
109
110
  ### Symbol Extensions (from `@avstantso/std-ext`)
110
111
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@avstantso/core-toolkit",
3
3
  "license": "MIT",
4
4
  "author": "avstantso",
5
- "version": "1.2.7",
5
+ "version": "1.2.8",
6
6
  "description": "Complete toolkit combining core utilities, TS/JS helpers, and utility modules",
7
7
  "keywords": [
8
8
  "toolkit",
@@ -33,19 +33,19 @@
33
33
  "test": "NODE_ENV=test jest --coverage"
34
34
  },
35
35
  "dependencies": {
36
- "@avstantso/concepts": "1.2.5",
37
- "@avstantso/core": "1.2.3",
38
- "@avstantso/errors": "1.2.3",
39
- "@avstantso/js": "1.2.5",
40
- "@avstantso/std-ext": "1.2.2",
41
- "@avstantso/ts": "1.3.4",
42
- "@avstantso/utils-dialog": "1.2.5",
43
- "@avstantso/utils-enum-class": "1.2.5",
44
- "@avstantso/utils-enum-simple": "1.2.5",
45
- "@avstantso/utils-flags-decorator": "1.2.5",
46
- "@avstantso/utils-languages": "1.2.5",
47
- "@avstantso/utils-locker": "1.2.5",
48
- "@avstantso/utils-misc": "1.2.6",
49
- "@avstantso/utils-names-tree": "1.3.4"
36
+ "@avstantso/concepts": "1.3.0",
37
+ "@avstantso/core": "1.3.0",
38
+ "@avstantso/errors": "1.2.4",
39
+ "@avstantso/js": "1.2.6",
40
+ "@avstantso/std-ext": "1.2.3",
41
+ "@avstantso/ts": "1.3.5",
42
+ "@avstantso/utils-dialog": "1.2.6",
43
+ "@avstantso/utils-enum-class": "1.2.6",
44
+ "@avstantso/utils-enum-simple": "1.2.6",
45
+ "@avstantso/utils-flags-decorator": "1.2.6",
46
+ "@avstantso/utils-languages": "1.2.6",
47
+ "@avstantso/utils-locker": "1.2.6",
48
+ "@avstantso/utils-misc": "1.2.7",
49
+ "@avstantso/utils-names-tree": "1.3.5"
50
50
  }
51
51
  }