@flowerforce/flowerbase 1.5.1-beta.4 → 1.6.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,3 +1,21 @@
1
+ ## 1.6.0 (2026-01-28)
2
+
3
+
4
+ ### 🚀 Features
5
+
6
+ - added cli run function ([fb2e418](https://github.com/flowerforce/flowerbase/commit/fb2e418))
7
+
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - trigger db update ([8eed422](https://github.com/flowerforce/flowerbase/commit/8eed422))
12
+
13
+ - trigger test e2e full_document_before_change ([117e89c](https://github.com/flowerforce/flowerbase/commit/117e89c))
14
+
15
+ - trigger fullDocumentBeforeChange ([a659a8d](https://github.com/flowerforce/flowerbase/commit/a659a8d))
16
+
17
+ - revert trigger fullDocumentBeforeChange ([f1736b5](https://github.com/flowerforce/flowerbase/commit/f1736b5))
18
+
1
19
  ## 1.5.0 (2026-01-26)
2
20
 
3
21
 
@@ -40,7 +40,7 @@ const registerPlugins = (_a) => __awaiter(void 0, [_a], void 0, function* ({ reg
40
40
  registersConfig.forEach(({ plugin, options, pluginName }) => {
41
41
  try {
42
42
  register(plugin, options);
43
- console.log('registration COMPLETED --->', pluginName);
43
+ // console.log('registration COMPLETED --->', pluginName)
44
44
  }
45
45
  catch (e) {
46
46
  console.log('Registration FAILED --->', pluginName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowerforce/flowerbase",
3
- "version": "1.5.1-beta.4",
3
+ "version": "1.6.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -53,7 +53,7 @@ export const registerPlugins = async ({
53
53
  registersConfig.forEach(({ plugin, options, pluginName }) => {
54
54
  try {
55
55
  register(plugin, options)
56
- console.log('registration COMPLETED --->', pluginName)
56
+ // console.log('registration COMPLETED --->', pluginName)
57
57
  } catch (e) {
58
58
  console.log('Registration FAILED --->', pluginName)
59
59
  console.log('Error --->', e)