Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 7270fc1

Browse files
authored
update luis authoring package version in lu package (#649)
* update luis authoring package version to support new lu features * fix json property issue when switching to new luis API version
1 parent a2b30b5 commit 7270fc1

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

common/config/rush/pnpm-lock.yaml

Lines changed: 5 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/lu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
]
3535
},
3636
"dependencies": {
37-
"@azure/cognitiveservices-luis-authoring": "3.0.1",
37+
"@azure/cognitiveservices-luis-authoring": "4.0.0-preview.1",
3838
"@azure/ms-rest-azure-js": "2.0.1",
3939
"antlr4": "^4.7.2",
4040
"chalk": "2.4.1",

packages/lu/src/parser/lubuild/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export class LuBuildCore {
172172
equal = equal && this.isArrayEqual(appA.closedLists, appB.closedLists)
173173
equal = equal && this.isArrayEqual(appA.composites, appB.composites)
174174
equal = equal && this.isArrayEqual(appA.entities, appB.entities)
175-
equal = equal && this.isArrayEqual(appA.model_features, appB.modelFeatures)
175+
equal = equal && this.isArrayEqual(appA.model_features, appB.model_features)
176176
equal = equal && this.isArrayEqual(appA.patternAnyEntities, appB.patternAnyEntities)
177177
equal = equal && this.isArrayEqual(appA.patterns, appB.patterns)
178178
equal = equal && this.isArrayEqual(appA.prebuiltEntities, appB.prebuiltEntities)

0 commit comments

Comments
 (0)