libmodulor 0.26.0 → 0.27.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,13 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v0.27.0 (2026-02-09)
|
|
4
|
+
|
|
5
|
+
**Highlights**
|
|
6
|
+
|
|
7
|
+
Use triple slash `///` as doc comment in use cases to be more aligned with the standards. Using this comment makes it appear in the sequence diagrams automatically generated for each use case.
|
|
8
|
+
|
|
9
|
+
See all the changes here : https://github.com/c100k/libmodulor/compare/v0.26.0...master
|
|
10
|
+
|
|
3
11
|
## v0.26.0 (2026-01-01)
|
|
4
12
|
|
|
5
13
|
**Highlights**
|
package/README.md
CHANGED
|
@@ -82,19 +82,19 @@ export const PACKAGE_JSON = (name) => `{
|
|
|
82
82
|
"test": "tsc && vitest run --passWithNoTests"
|
|
83
83
|
},
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"inversify": "^7.
|
|
85
|
+
"inversify": "^7.11.0",
|
|
86
86
|
"libmodulor": "latest",
|
|
87
87
|
"reflect-metadata": "^0.2.2"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@biomejs/biome": "^2.3.
|
|
91
|
-
"@types/node": "^25.0
|
|
90
|
+
"@biomejs/biome": "^2.3.14",
|
|
91
|
+
"@types/node": "^25.2.0",
|
|
92
92
|
"@vitest/coverage-v8": "^3.2.4",
|
|
93
93
|
"buffer": "^6.0.3",
|
|
94
94
|
"cookie-parser": "^1.4.7",
|
|
95
95
|
"express": "^5.2.1",
|
|
96
96
|
"express-fileupload": "^1.5.2",
|
|
97
|
-
"fast-check": "^4.5.
|
|
97
|
+
"fast-check": "^4.5.3",
|
|
98
98
|
"helmet": "^8.1.0",
|
|
99
99
|
"jose": "^6.1.3",
|
|
100
100
|
"typescript": "^5.9.3",
|
|
@@ -90,7 +90,7 @@ export class ${name}${UC_MAIN_SERVER_SUFFIX}
|
|
|
90
90
|
> {
|
|
91
91
|
const ${FIELD_NAME} = uc.reqVal0('${FIELD_NAME}');
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
/// Save in data store
|
|
94
94
|
const { aggregateId } = await this.ucManager.persist(uc);
|
|
95
95
|
|
|
96
96
|
return new UCOutputBuilder<${name}${UC_OPI0_SUFFIX}>()
|
package/dist/esm/convention.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare const UC_MAIN_SUFFIX: string;
|
|
|
48
48
|
export declare const UC_MAIN_CLIENT_SUFFIX: string;
|
|
49
49
|
export declare const UC_MAIN_SERVER_SUFFIX: string;
|
|
50
50
|
export declare const UC_MAIN_SERVER_FILE_NAME_SUFFIX: string;
|
|
51
|
-
export declare const UC_MAIN_STEP_PREFIX_REGULAR = "
|
|
51
|
+
export declare const UC_MAIN_STEP_PREFIX_REGULAR = "///";
|
|
52
52
|
export declare const UC_NAME_PLACEHOLDER: UCName;
|
|
53
53
|
export declare const UC_OPI_BASE: string;
|
|
54
54
|
export declare const UC_OPI_SUFFIX: string;
|
package/dist/esm/convention.js
CHANGED
|
@@ -59,7 +59,7 @@ export const UC_MAIN_SUFFIX = 'Main';
|
|
|
59
59
|
export const UC_MAIN_CLIENT_SUFFIX = `Client${UC_MAIN_SUFFIX}`;
|
|
60
60
|
export const UC_MAIN_SERVER_SUFFIX = `Server${UC_MAIN_SUFFIX}`;
|
|
61
61
|
export const UC_MAIN_SERVER_FILE_NAME_SUFFIX = `${UC_MAIN_SERVER_SUFFIX}.ts`;
|
|
62
|
-
export const UC_MAIN_STEP_PREFIX_REGULAR = '
|
|
62
|
+
export const UC_MAIN_STEP_PREFIX_REGULAR = '///';
|
|
63
63
|
export const UC_NAME_PLACEHOLDER = 'CreateX';
|
|
64
64
|
export const UC_OPI_BASE = 'UCOPIBase';
|
|
65
65
|
export const UC_OPI_SUFFIX = 'OPI';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libmodulor",
|
|
3
3
|
"description": "A TypeScript library to create platform-agnostic applications",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.27.0",
|
|
5
5
|
"license": "LGPL-3.0",
|
|
6
6
|
"author": "Chafik H'nini <chafik.hnini@gmail.com>",
|
|
7
7
|
"homepage": "https://libmodulor.c100k.eu",
|
|
@@ -97,36 +97,36 @@
|
|
|
97
97
|
"test": "tsc && vitest run"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@biomejs/biome": "^2.3.
|
|
100
|
+
"@biomejs/biome": "^2.3.14",
|
|
101
101
|
"@react-native-community/slider": "^4.5.7",
|
|
102
|
-
"@types/react": "^19.2.
|
|
102
|
+
"@types/react": "^19.2.11",
|
|
103
103
|
"@types/react-dom": "^19.2.3",
|
|
104
104
|
"babel-plugin-parameter-decorator": "^1.0.16",
|
|
105
105
|
"babel-plugin-transform-typescript-metadata": "^0.3.2",
|
|
106
|
-
"expo": "
|
|
106
|
+
"expo": "55.0.0-preview.9",
|
|
107
107
|
"expo-document-picker": "~14.0.8",
|
|
108
108
|
"expo-image-picker": "^17.0.10",
|
|
109
|
-
"wrangler": "^4.
|
|
109
|
+
"wrangler": "^4.62.0"
|
|
110
110
|
},
|
|
111
111
|
"peerDependencies": {
|
|
112
|
-
"@hono/node-server": "^1.19.
|
|
113
|
-
"@modelcontextprotocol/sdk": "^1.25.
|
|
114
|
-
"@stricli/core": "^1.2.
|
|
112
|
+
"@hono/node-server": "^1.19.9",
|
|
113
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
114
|
+
"@stricli/core": "^1.2.5",
|
|
115
115
|
"buffer": "^6.0.3",
|
|
116
116
|
"cookie-parser": "^1.4.7",
|
|
117
117
|
"express": "^5.2.1",
|
|
118
118
|
"express-fileupload": "^1.5.2",
|
|
119
|
-
"fast-check": "^4.5.
|
|
119
|
+
"fast-check": "^4.5.3",
|
|
120
120
|
"helmet": "^8.1.0",
|
|
121
|
-
"hono": "^4.11.
|
|
122
|
-
"inversify": "^7.
|
|
121
|
+
"hono": "^4.11.7",
|
|
122
|
+
"inversify": "^7.11.0",
|
|
123
123
|
"jose": "^6.1.3",
|
|
124
124
|
"knex": "^3.1.0",
|
|
125
|
-
"next": "^15.5.
|
|
126
|
-
"pg": "^8.
|
|
127
|
-
"react": "^19.2.
|
|
128
|
-
"react-dom": "^19.2.
|
|
129
|
-
"react-native": "^0.
|
|
125
|
+
"next": "^15.5.12",
|
|
126
|
+
"pg": "^8.18.0",
|
|
127
|
+
"react": "^19.2.4",
|
|
128
|
+
"react-dom": "^19.2.4",
|
|
129
|
+
"react-native": "^0.83.1",
|
|
130
130
|
"reflect-metadata": "^0.2.2",
|
|
131
131
|
"sqlite3": "^5.1.7",
|
|
132
132
|
"typescript": "^5.9.3",
|