Skip to content

Commit 50412a7

Browse files
authored
December 2022 Merge (#10)
* bg added * Language documentation update * Updated media * Can't apply parameters to PDF files... * Faster Home loading * Styling * Support for field translation * Changes log * Remove unnecessary row * Icon change * fix size to 16x16 * Performance + Cover image fix * Misc. fixes * Fix issue with translation in corner case * Storage names moved to Storage config * PII Detection only suppored few languages for now. * data elt is mandatory field in warning response. * Move client acquisition into the req body * Move support ext & lang to Constants * Clean null mapping * Change default to list. * colspan attr * Many improvements * Get-SearchFailedItems new cmdlet * Automatic tagging of errors * Default Access Restriction on Web Apps * New Array of Storage containers urls * Add default Deny in WebApp Access Restriction * Improved translation content isolation * SAS tokens for attachments & translation support * Added storage size and md5 to the index * Issue with facet accordion tag id * Blob tagging feature * Styling fix * Styling the search filter box * Thumbnail in details enhancement * Starting Graph support (Neo4J) * /browser path * Dec2022 release notes Co-authored-by: Nicolas Uthurriague <nicolasu@microsoft.com>
1 parent 58f1763 commit 50412a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1183
-414
lines changed

CHANGES.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
# Changes log
22

3-
## November 2022
3+
## December 2022 - V1.2
4+
5+
- UI & API improvements
6+
- Graph support preparation
7+
- Documentation
8+
- Bugs fixing
9+
10+
## November 2022 - v1.1
411

512
- UI & API improvements
613
- Simple Document Translation support
714
- Form Recognizer
815
- Not relying on direct content url anymore
916
- Projection of the outputs to metadata storage for later use (UI)
1017
- PII Detection simple integration
11-
- VNET enhancements
18+
- VNET integration enhancements
1219
- Auto-creation of storage file-shares
1320
- Bugs fixing
1421

15-
## October 2022
22+
## October 2022 - v1.0
1623

1724
- Support for full VNET integration
1825
- Support for Emails and Attachments
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"Parameters" : {
3+
"Neo4jBrowser": "http://{{config.name}}neo4j.westeurope.azurecontainer.io:7474/browser",
4+
"Neo4jConnectionString": "bolt://{{config.name}}neo4j.westeurope.azurecontainer.io:7687",
5+
"Neo4jUsername": "neo4j",
6+
"Neo4jPassword": "Password123!"
7+
},
8+
"Items": [
9+
{
10+
"Name": "{{config.name}}neo4j",
11+
"ResourceGroup": "{{config.resourceGroupName}}",
12+
"YAMLPath":"config/yaml/graph/neo4j.yaml",
13+
"EnablePrivateAccess":true,
14+
"AccessSubnetRestriction":true,
15+
"IPAddressToAdd":[]
16+
}
17+
]
18+
}

configuration/config/search/indexers/attachments.json

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,33 +51,27 @@
5151
},
5252
{
5353
"sourceFieldName": "metadata_storage_name",
54-
"targetFieldName": "metadata_storage_name",
55-
"mappingFunction": null
54+
"targetFieldName": "metadata_storage_name"
5655
},
5756
{
5857
"sourceFieldName": "metadata_storage_name",
59-
"targetFieldName": "document_filename",
60-
"mappingFunction": null
58+
"targetFieldName": "document_filename"
6159
},
6260
{
6361
"sourceFieldName": "metadata_storage_last_modified",
64-
"targetFieldName": "source_last_modified",
65-
"mappingFunction": null
62+
"targetFieldName": "source_last_modified"
6663
},
6764
{
6865
"sourceFieldName": "metadata_description",
69-
"targetFieldName": "description",
70-
"mappingFunction": null
66+
"targetFieldName": "description"
7167
},
7268
{
7369
"sourceFieldName": "metadata_storage_content_type",
74-
"targetFieldName": "content_type",
75-
"mappingFunction": null
70+
"targetFieldName": "content_type"
7671
},
7772
{
7873
"sourceFieldName": "metadata_slide_count",
79-
"targetFieldName": "slide_count",
80-
"mappingFunction": null
74+
"targetFieldName": "slide_count"
8175
}
8276
],
8377
"outputFieldMappings": [

configuration/config/search/indexes/index.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,34 @@
4343
"analyzer": null,
4444
"synonymMaps": []
4545
},
46+
{
47+
"name": "metadata_storage_size",
48+
"type": "Edm.Int64",
49+
"searchable": false,
50+
"filterable": true,
51+
"retrievable": true,
52+
"sortable": true,
53+
"facetable": false,
54+
"key": false,
55+
"indexAnalyzer": null,
56+
"searchAnalyzer": null,
57+
"analyzer": null,
58+
"synonymMaps": []
59+
},
60+
{
61+
"name": "metadata_storage_content_md5",
62+
"type": "Edm.String",
63+
"searchable": false,
64+
"filterable": false,
65+
"retrievable": true,
66+
"sortable": false,
67+
"facetable": false,
68+
"key": false,
69+
"indexAnalyzer": null,
70+
"searchAnalyzer": null,
71+
"analyzer": null,
72+
"synonymMaps": []
73+
},
4674
{
4775
"name": "content_source",
4876
"type": "Edm.String",

configuration/config/search/skillsets/documents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@
900900
"source": "/document/language"
901901
},
902902
{
903-
"name": "translated",
903+
"name": "translated_document",
904904
"source": "/document/skilldocumenttranslated"
905905
}
906906
],

configuration/config/storage/config.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
"Apptype": "Storage",
55
"PrivateDNSZone":"privatelink.blob.core.windows.net",
66
"Parameters": {
7+
"dataStorageAccountName": "{{config.name}}data",
8+
"techStorageAccountName": "{{config.name}}tech",
79
"storageContainers": [
810
"documents",
911
"images",

configuration/config/webapps/webappui.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,5 +448,20 @@
448448
"name": "AzureAd:ClientId",
449449
"value": "{{config.clientId}}",
450450
"slotSetting": false
451+
},
452+
{
453+
"name": "Neo4jConfig:ConnectionString",
454+
"value": "{{param.Neo4jConnectionString}}",
455+
"slotSetting": false
456+
},
457+
{
458+
"name": "Neo4jConfig:Username",
459+
"value": "{{param.Neo4jUsername}}",
460+
"slotSetting": false
461+
},
462+
{
463+
"name": "Neo4jConfig:Password",
464+
"value": "{{param.Neo4jPassword}}",
465+
"slotSetting": false
451466
}
452467
]

configuration/services.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"appInsightsService": "{{config.name}}insights",
33
"logAnalyticsService": "{{config.name}}analytics",
4-
"techStorageAccountName": "{{config.name}}tech",
5-
"dataStorageAccountName": "{{config.name}}data",
64
"adf": "{{config.name}}adf",
75
"aks": "{{config.name}}aks",
86
"TikaContainerUrl":"https://{{config.name}}tikaserver.azurewebsites.net",
-3.37 MB
Binary file not shown.

0 commit comments

Comments
 (0)