Skip to content

Commit

Permalink
Bumped SDK version (#1542)
Browse files Browse the repository at this point in the history
Co-authored-by: Tracy Boehrer <trboehre@microsoft.com>
  • Loading branch information
tracyboehrer and Tracy Boehrer authored Oct 30, 2023
1 parent 7ad2636 commit 645b7f8
Show file tree
Hide file tree
Showing 38 changed files with 300 additions and 300 deletions.
2 changes: 1 addition & 1 deletion generators/generator-bot-adaptive/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-adaptive",
"version": "1.4.3",
"version": "1.4.4",
"description": "Yeoman generator for creating a base bot built on the Azure Bot Framework and the Adaptive stack.",
"keywords": [
"microsoft",
Expand Down
4 changes: 2 additions & 2 deletions generators/generator-bot-adaptive/platforms.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

const dotnet = {
name: 'dotnet',
defaultSdkVersion: '4.19.3',
defaultSdkVersion: '4.21.1',
};

const js = {
name: 'js',
defaultSdkVersion: '4.19.3-preview',
defaultSdkVersion: '4.21.0-preview',
};

module.exports = { dotnet, js };
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ describe(`generator-bot-adaptive --platform ${platform} --integration ${integrat
{
botName,
packageReferences: '',
sdkVersion: '4.19.3',
sdkVersion: '4.21.1',
}
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ describe(`generator-bot-adaptive --platform ${platform} --integration ${integrat
{
botName,
packageReferences: '',
sdkVersion: '4.19.3',
sdkVersion: '4.21.1',
}
);

Expand Down
6 changes: 3 additions & 3 deletions generators/generator-bot-adaptive/test/js-functions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ describe(`generator-bot-adaptive --platform ${platform} --integration ${integrat
},
dependencies: {
'cross-env': 'latest',
'botbuilder-ai-luis': '4.19.3-preview',
'botbuilder-ai-qna': '4.19.3-preview',
'botbuilder-ai-luis': '4.21.0-preview',
'botbuilder-ai-qna': '4.21.0-preview',
'botbuilder-dialogs-adaptive-runtime-integration-azure-functions':
'4.19.3-preview',
'4.21.0-preview',
},
};

Expand Down
6 changes: 3 additions & 3 deletions generators/generator-bot-adaptive/test/js-webapp.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ describe(`generator-bot-adaptive --platform ${platform} --integration ${integrat
},
dependencies: {
'cross-env': 'latest',
'botbuilder-ai-luis': '4.19.3-preview',
'botbuilder-ai-qna': '4.19.3-preview',
'botbuilder-ai-luis': '4.21.0-preview',
'botbuilder-ai-qna': '4.21.0-preview',
'botbuilder-dialogs-adaptive-runtime-integration-express':
'4.19.3-preview',
'4.21.0-preview',
},
};

Expand Down
4 changes: 2 additions & 2 deletions generators/generator-bot-core-assistant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-core-assistant",
"version": "1.4.3",
"version": "1.4.4",
"description": "Yeoman generator for creating an assistant-style bot with NLP built on the Azure Bot Framework.",
"keywords": [
"microsoft",
Expand All @@ -24,7 +24,7 @@
"lint": "eslint -c ../../.eslintrc.json ."
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.4.3",
"@microsoft/generator-bot-adaptive": "workspace:^1.4.4",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
4 changes: 2 additions & 2 deletions generators/generator-bot-core-language/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-core-language",
"version": "1.4.3",
"version": "1.4.4",
"description": "Yeoman generator for creating a simple conversational bot with NLP built on the Azure Bot Framework.",
"keywords": [
"microsoft",
Expand All @@ -26,7 +26,7 @@
"lint": "eslint -c ../../.eslintrc.json ."
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.4.3",
"@microsoft/generator-bot-adaptive": "workspace:^1.4.4",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
4 changes: 2 additions & 2 deletions generators/generator-bot-empty/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-empty",
"version": "1.4.3",
"version": "1.4.4",
"description": "Yeoman generator for creating an empty bot built on the Azure Bot Framework.",
"keywords": [
"microsoft",
Expand All @@ -26,7 +26,7 @@
"lint": "eslint -c ../../.eslintrc.json ."
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.4.3",
"@microsoft/generator-bot-adaptive": "workspace:^1.4.4",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = class extends BaseGenerator {
{
isPlugin: true,
name: 'Microsoft.Bot.Builder.AI.Orchestrator',
version: '4.19.3',
version: '4.21.1',
},
],
modifyApplicationSettings: (appSettings) => {
Expand Down
6 changes: 3 additions & 3 deletions generators/generator-bot-enterprise-assistant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-enterprise-assistant",
"version": "1.4.3",
"version": "1.4.4",
"description": "Yeoman generator for creating an enterprise assistant, with a root bot and two skills built on the Azure Bot Framework.",
"keywords": [
"microsoft",
Expand All @@ -26,8 +26,8 @@
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.4.3",
"@microsoft/generator-bot-enterprise-calendar": "workspace:^1.4.3",
"@microsoft/generator-bot-enterprise-people": "workspace:^1.4.3",
"@microsoft/generator-bot-enterprise-calendar": "workspace:^1.4.4",
"@microsoft/generator-bot-enterprise-people": "workspace:^1.4.4",
"uuid": "^8.3.2",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
Expand Down
4 changes: 2 additions & 2 deletions generators/generator-bot-enterprise-calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-enterprise-calendar",
"version": "1.4.3",
"version": "1.4.4",
"description": "Yeoman generator for creating an Adaptive bot built on the Azure Bot Framework using the Calendar template.",
"keywords": [
"microsoft",
Expand All @@ -24,7 +24,7 @@
"lint": "eslint ."
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.4.3",
"@microsoft/generator-bot-adaptive": "workspace:^1.4.4",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
4 changes: 2 additions & 2 deletions generators/generator-bot-enterprise-people/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-enterprise-people",
"version": "1.4.3",
"version": "1.4.4",
"description": "Yeoman generator for creating an Adaptive bot built on the Azure Bot Framework using the People template.",
"keywords": [
"microsoft",
Expand All @@ -24,7 +24,7 @@
"lint": "eslint -c ../../.eslintrc.json ."
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.4.3",
"@microsoft/generator-bot-adaptive": "workspace:^1.4.4",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PropertyGroup>
<PackageId>Microsoft.Bot.Components.AdaptiveCards</PackageId>
<PackageProjectUrl>https://github.com/microsoft/botframework-components/tree/main/packages/AdaptiveCards</PackageProjectUrl>
<VersionPrefix>1.4.1</VersionPrefix>
<VersionPrefix>1.4.2</VersionPrefix>
<Description>Composer triggers and actions for working with Adaptive Cards.</Description>
<Summary>Composer triggers and actions for working with Adaptive Cards.</Summary>
<SignAssembly>true</SignAssembly>
Expand All @@ -20,7 +20,7 @@

<ItemGroup>
<PackageReference Include="AdaptiveCards.Templating" Version="1.3.1" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.19.3" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.21.1" />
<PackageReference Include="NewtonSoft.Json" Version="13.0.1" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions packages/Graph/Microsoft.Bot.Components.Graph.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>Microsoft.Bot.Components.Graph</PackageId>
<VersionPrefix>1.4.1</VersionPrefix>
<VersionPrefix>1.4.2</VersionPrefix>
<Description>Custom actions for the MS Graph API for Bot Framework bots.</Description>
<Summary>A set of custom actions for working with the Microsoft Graph API from Bot Framework Composer.</Summary>
<PackageProjectUrl>https://github.com/Microsoft/botframework-components/tree/main/packages/Graph</PackageProjectUrl>
Expand All @@ -20,7 +20,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Graph.Beta" Version="0.39.0-preview" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.19.3" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.21.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Microsoft.Bot.Components.HelpAndCancel</id>
<version>1.4.0</version>
<version>1.4.1</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
Expand All @@ -13,7 +13,7 @@
<description>Contains Adaptive Dialog assets to support Help and Cancel conversational flows in a bot built on the Azure Bot Framework.</description>
<tags>msbot-component msbot-content conversationalcore helpintent cancelintent preview</tags>
<dependencies>
<dependency id="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" version="4.19.3" />
<dependency id="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" version="4.21.1" />
</dependencies>
</metadata>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<PropertyGroup>
<PackageId>Microsoft.Bot.Components.Recognizers.CLURecognizer</PackageId>
<VersionPrefix>1.0.1</VersionPrefix>
<VersionPrefix>1.0.2</VersionPrefix>
<PackageTags>msbot-component;msbot-recognizer;composer;botframework;botbuilder</PackageTags>
<Title>Conversation Language Understanding Recognizer</Title>
<Description>This library implements .NET support for Composer with Conversation Language Understanding.</Description>
Expand All @@ -25,7 +25,7 @@
<Content Include="**/*.uischema" />
<None Include="exported/**/*.*" Pack="true" PackagePath="exported" />
<None Include="README.md" Condition="Exists('README.md')" Pack="true" PackagePath="" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.19.3" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.21.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "clu-recognizer",
"author": "Microsoft Corp.",
"description": "This library implements node.js support for Composer with Conversation Language Understanding.",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"keywords": [
"msbot-component",
Expand Down Expand Up @@ -34,12 +34,12 @@
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"adaptive-expressions": "4.19.3",
"botbuilder": "4.19.3",
"botbuilder-dialogs": "4.19.3",
"botbuilder-dialogs-adaptive-runtime-core": "4.19.3-preview",
"botbuilder-dialogs-declarative": "4.19.3-preview",
"botframework-connector": "4.19.3",
"adaptive-expressions": "4.21.0",
"botbuilder": "4.21.0",
"botbuilder-dialogs": "4.21.0",
"botbuilder-dialogs-adaptive-runtime-core": "4.21.0-preview",
"botbuilder-dialogs-declarative": "4.21.0-preview",
"botframework-connector": "4.21.0",
"eslint": "^7.30.0",
"eslint-plugin-prettier": "latest",
"rimraf": "^3.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<PropertyGroup>
<PackageId>Microsoft.Bot.Components.Recognizers.CustomQuestionAnsweringRecognizer</PackageId>
<VersionPrefix>1.0.1</VersionPrefix>
<VersionPrefix>1.0.2</VersionPrefix>
<PackageTags>msbot-component;msbot-recognizer;composer;botframework;botbuilder</PackageTags>
<Title>Question Answering Recognizer</Title>
<Description>This library implements .NET support for Composer with Custom Question Answering.</Description>
Expand All @@ -25,6 +25,6 @@
<Content Include="**/*.uischema" />
<None Include="exported/**/*.*" Pack="true" PackagePath="exported" />
<None Include="README.md" Condition="Exists('README.md')" Pack="true" PackagePath="" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.19.3" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.21.1" />
</ItemGroup>
</Project>
30 changes: 15 additions & 15 deletions packages/Recognizers/CustomQuestionAnswering/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "custom-question-answering-recognizer",
"version": "1.0.0",
"version": "1.0.1",
"author": "Microsoft Corp.",
"description": "This library implements node.js support for Composer with Custom Question Answering.",
"license": "MIT",
Expand Down Expand Up @@ -29,26 +29,26 @@
],
"main": "lib/index.js",
"dependencies": {
"adaptive-expressions": "~4.19.3",
"botbuilder": "~4.19.3",
"botbuilder-ai": "~4.19.3",
"botbuilder-dialogs": "~4.19.3",
"botbuilder-dialogs-adaptive-runtime": "~4.19.3-preview",
"botbuilder-dialogs-adaptive-runtime-core": "~4.19.3-preview",
"botbuilder-dialogs-adaptive-runtime-integration-express": "~4.19.3-preview"
"adaptive-expressions": "~4.21.0",
"botbuilder": "~4.21.0",
"botbuilder-ai": "~4.21.0",
"botbuilder-dialogs": "~4.21.03",
"botbuilder-dialogs-adaptive-runtime": "~4.21.0-preview",
"botbuilder-dialogs-adaptive-runtime-core": "~4.21.0-preview",
"botbuilder-dialogs-adaptive-runtime-integration-express": "~4.21.0-preview"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"adaptive-expressions": "4.19.3",
"botbuilder": "4.19.3",
"botbuilder-dialogs": "4.19.3",
"botbuilder-dialogs-adaptive": "4.19.3-preview",
"botbuilder-dialogs-adaptive-runtime-core": "4.19.3-preview",
"botbuilder-dialogs-declarative": "4.19.3-preview",
"botframework-connector": "4.19.3",
"adaptive-expressions": "4.21.0",
"botbuilder": "4.21.0",
"botbuilder-dialogs": "4.21.0",
"botbuilder-dialogs-adaptive": "4.21.0-preview",
"botbuilder-dialogs-adaptive-runtime-core": "4.21.0-preview",
"botbuilder-dialogs-declarative": "4.21.0-preview",
"botframework-connector": "4.21.0",
"eslint": "^7.30.0",
"eslint-plugin-prettier": "latest",
"lodash": "^4.17.21",
Expand Down
4 changes: 2 additions & 2 deletions packages/Teams/dotnet/Microsoft.Bot.Components.Teams.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Microsoft.Bot.Components.Teams</PackageId>
<VersionPrefix>1.4.1</VersionPrefix>
<VersionPrefix>1.4.2</VersionPrefix>
<Description>This library implements .NET support for adaptive dialogs with Microsoft Teams</Description>
<Summary>This library implements .NET support for adaptive dialogs with Microsoft Teams</Summary>
<PackageProjectUrl>https://github.com/Microsoft/botframework-components/tree/main/packages/Teams/dotnet</PackageProjectUrl>
Expand Down Expand Up @@ -35,7 +35,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive" Version="4.19.3" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive" Version="4.21.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

Expand Down
Loading

0 comments on commit 645b7f8

Please sign in to comment.