Skip to content

Commit 8fbfe58

Browse files
authored
Apr2023 - monthly release merge (#15)
* Issue with $.find() * Structured dataset for demo * Tiak upgrade to 2.7.0 * Disable FTP and SCM Basic Authentication * 429 Too many request for Translation * Apache Tika pulled from puthurr/tika2 (docker.io) * Support updating the retry tag * April changes log * More sample documents
1 parent 473d919 commit 8fbfe58

29 files changed

+732
-244
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changes log
22

3+
## April 2023 - v1.6
4+
5+
- Apache Tika 2.7.0 upgrade - Tika now taken from my own docker repository https://hub.docker.com/repository/docker/puthurr/tika2/general
6+
- Documentation
7+
- Bugs fixing
8+
39
## March 2023 - v1.5
410

511
- Open AI scenarios (documentation)

configuration/README.md

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ The built images will be build and published to the solution designated Azure Co
9494
{
9595
"Images": [
9696
{
97-
"Id":1,
98-
"Name": "microsoft/tikaserver",
99-
"Path": "..\\src\\CognitiveSearch.Skills\\Java\\ApacheTika"
97+
"Id":2,
98+
"Name": "microsoft/vision",
99+
"Path": "..\\src\\CognitiveSearch.Skills\\Python\\Vision"
100100
}
101101
]
102102
}
@@ -274,20 +274,26 @@ The **config.json** holds the list of Web Applications to build for the solution
274274

275275
```json
276276
{
277+
"enable": true,
278+
"GroupId": "WebApps",
279+
"Apptype": "WebApp",
280+
"PrivateDNSZone": "privatelink.azurewebsites.net",
281+
"Parameters" : [],
277282
"AppPlans": [
278283
{
279284
"Name": "{{config.name}}uiplan",
280285
"Sku": "{{param.pricing.premium}}",
281-
"ResourceGroup":"{{config.ResourceGroupName}}",
282-
"IsLinux":false,
283-
"WebApps": [
286+
"ResourceGroup": "{{config.ResourceGroupName}}",
287+
"IsLinux": false,
288+
"Services": [
284289
{
285-
"Id":"webappui",
290+
"Id": "webappui",
286291
"Name": "{{config.name}}ui",
287292
"Path": "src\\CognitiveSearch.UI\\CognitiveSearch.UI",
288-
"vnetPrivateEndpoint":false,
289-
"vnetIntegration":true,
290-
"slots":[
293+
"AccessIPRestriction": false,
294+
"AccessSubnetRestriction": false,
295+
"EnablePrivateAccess": false,
296+
"slots": [
291297
"staging"
292298
]
293299
}
@@ -296,15 +302,16 @@ The **config.json** holds the list of Web Applications to build for the solution
296302
{
297303
"Name": "{{config.name}}tikaplan",
298304
"Sku": "{{param.pricing.premium}}",
299-
"ResourceGroup":"{{config.ResourceGroupName}}",
300-
"IsLinux":true,
301-
"WebApps": [
305+
"ResourceGroup": "{{config.ResourceGroupName}}",
306+
"IsLinux": true,
307+
"Services": [
302308
{
303-
"Id":"tikaserver",
309+
"Id": "tikaserver",
304310
"Name": "{{config.name}}tikaserver",
305-
"Image": "microsoft/tikaserver:latest",
306-
"vnetPrivateEndpoint":true,
307-
"vnetIntegration":true
311+
"Image": "docker.io/puthurr/tika2:latest",
312+
"AccessIPRestriction": true,
313+
"AccessSubnetRestriction": true,
314+
"EnablePrivateAccess": true
308315
}
309316
]
310317
}

configuration/config/docker/config.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
{
22
"enable": true,
33
"Images": [
4-
{
5-
"Id":1,
6-
"Name": "microsoft/tikaserver",
7-
"Path": "..\\src\\CognitiveSearch.Skills\\Java\\ApacheTika",
8-
"webapp": true
9-
},
104
{
115
"Id":2,
126
"Name": "microsoft/vision",

configuration/config/webapps/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{
3434
"Id": "tikaserver",
3535
"Name": "{{config.name}}tikaserver",
36-
"Image": "microsoft/tikaserver:latest",
36+
"Image": "docker.io/puthurr/tika2:latest",
3737
"AccessIPRestriction": true,
3838
"AccessSubnetRestriction": true,
3939
"EnablePrivateAccess": true

data/documents/Licenses/MIT.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Microsoft Corporation.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE

0 commit comments

Comments
 (0)