bajo 2.6.1 → 2.6.2

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/class/bajo.js CHANGED
@@ -548,7 +548,7 @@ class Bajo extends Plugin {
548
548
  * @returns {function} Class method
549
549
  */
550
550
  getMethod = (name = '', thrown = true) => {
551
- const { ns, path } = this.breakNsPath(name)
551
+ const { ns, path } = this.breakNsPath(name, thrown)
552
552
  const method = get(this.app, `${ns}.${path}`)
553
553
  if (method && isFunction(method)) return method
554
554
  if (thrown) throw this.error('cantFindMethod%s', name)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bajo",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "The ultimate framework for whipping up massive apps in no time",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changes
2
2
 
3
+ ## 2026-02-26
4
+
5
+ - [2.6.2] Bug fix on ```getMethod()```
6
+
3
7
  ## 2026-02-23
4
8
 
5
9
  - [2.6.1] Bug fix on ```readConfig()```