Skip to content

Commit 1c4cb57

Browse files
committed
Merge branch 'release/V4.0.2.1'
2 parents 2fdfca5 + c4be1b9 commit 1c4cb57

File tree

18 files changed

+80
-84
lines changed

18 files changed

+80
-84
lines changed

docs/50-BestPractices/BestPractices.md

-9
This file was deleted.

docs/50-BestPractices/_category_.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Best practices",
3+
"position": 50,
4+
"link": {
5+
"type": "generated-index"
6+
}
7+
}

docs/60-Migration/80-UpdateTheDependency/UpdateDependencies.md

-3
This file was deleted.

docs/60-Migration/90-PackageTheFramework/PackageTheFramework.md renamed to docs/60-Migration/90-Only for BIATeam/10-PackageTheFramework.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
sidebar_position: 1
33
---
4-
# Package a new version of the Framework (Only for BIATeam):
4+
# Package a new version of the Framework
55

66
## Refine the BIADemo project
77
- In the .Net Part: put comments "// BIADemo only" at the beginning of each file which must not appear in the template

docs/60-Migration/90-PackageTheFramework/10-PrepareMigration.md renamed to docs/60-Migration/90-Only for BIATeam/20-PrepareMigration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
sidebar_position: 1
2+
sidebar_position: 2
33
---
44

55
# Prepare Migration
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
sidebar_position: 1
2+
sidebar_position: 3
33
---
44

55
This upgrade in to apply only on **BIADemo project**.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"label": "Only for BIATeam",
3+
"position": 90
4+
}

docs/60-Migration/MIGRATION.md

-27
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Troubleshooting V4.1.0
3+
---
4+
5+
# Troubleshooting on the known issues in the Framework V4.1.0
6+
7+
## For the moment no know issue:
8+
9+

versioned_docs/version-4.0.0/50-BestPractices/BestPractices.md

-9
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Best practices",
3+
"position": 50,
4+
"link": {
5+
"type": "generated-index"
6+
}
7+
}

versioned_docs/version-4.0.0/60-Migration/80-UpdateTheDependency/UpdateDependencies.md

-3
This file was deleted.

versioned_docs/version-4.0.0/60-Migration/90-PackageTheFramework/PackageTheFramework.md renamed to versioned_docs/version-4.0.0/60-Migration/90-Only for BIATeam/10-PackageTheFramework.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
sidebar_position: 1
33
---
4-
# Package a new version of the Framework (Only for BIATeam):
4+
# Package a new version of the Framework
55

66
## Refine the BIADemo project
77
- In the .Net Part: put comments "// BIADemo only" at the beginning of each file which must not appear in the template

versioned_docs/version-4.0.0/60-Migration/90-PackageTheFramework/10-PrepareMigration.md renamed to versioned_docs/version-4.0.0/60-Migration/90-Only for BIATeam/20-PrepareMigration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
sidebar_position: 1
2+
sidebar_position: 2
33
---
44

55
# Prepare Migration

docs/60-Migration/80-UpdateTheDependency/10-UpdateFront.md renamed to versioned_docs/version-4.0.0/60-Migration/90-Only for BIATeam/30-UpdateFront.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
sidebar_position: 1
2+
sidebar_position: 3
33
---
44

55
This upgrade in to apply only on **BIADemo project**.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"label": "Only for BIATeam",
3+
"position": 90
4+
}

versioned_docs/version-4.0.0/60-Migration/MIGRATION.md

-27
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: Troubleshooting V4.0.2
3+
---
4+
# Troubleshooting on the known issues in the Framework V4.0.2
5+
6+
## Issues to correct manually:
7+
8+
### DTO + CRUD generation :
9+
If you generate a DTO and after a CRUD on the same entity the permission Option disappear from
10+
11+
### Front navigation after CRUD generation (BIAToolKit V1.8.0.0)
12+
If the link generated in the menu redirect you to the root pages it is probably because the path in navigation is in camelCase but it should be in kebab-case. Example:
13+
```json
14+
path: ['/db-engine-types'],
15+
```
16+
17+
### Connector
18+
If you generate an application without Front feature you should add this variable in AuthAppService
19+
```csharp
20+
/// <summary>
21+
/// The ldap repository service.
22+
/// </summary>
23+
private readonly ILdapRepositoryHelper ldapRepositoryHelper;
24+
```
25+
26+
## Issues in V4.0.0 corrected in V4.0.2 :
27+
* Fix on List and Item service when form model doesn't extend view model
28+
* Fix design button notifications
29+
* Import/Export - fix Duplicate Id
30+
* Double scroll on Hangfire board when small screen
31+
* Fix BiaAuthorizationPolicyProvider
32+
* Bad translation in team advanced filter
33+
* Lost row focus when leaving multiselect in calcmode
34+
* Scrolling issue on the configuration menu in the sidebar
35+
* Height calculation problem in horizontal mode on small screens
36+
* Create CleanTask hangfire
37+
* Read Only Mode in BIA Docs incorrect + Example in BIADemo
38+
* The BACK_TO_BACK AUTH force GetUserRolesAsync every time
39+
* The LoginAndTeam is called twice at each startup
40+
41+
42+
43+

0 commit comments

Comments
 (0)