Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
49893b6
Bumping DotNet version
Jun 28, 2021
b655f26
Update js sdk to 4.14rc0 as well
Jun 28, 2021
0a8cceb
update tests
Jun 28, 2021
20b0fdf
Update JS tests
Jun 28, 2021
e37c9a3
Update JS test expectation
Jun 28, 2021
b22f9f2
chore: Cherry pick 1171 and 1164 into 4.14 (#1172)
thomas-chung Jun 29, 2021
527aa16
feat: Update bot framework package deps (#1168)
thomas-chung Jun 29, 2021
d6627ba
fix: Send message to teams channel support both adapters (#1174)
EricDahlvang Jun 30, 2021
d3fe361
feat: Update package versions (#1182)
thomas-chung Jun 30, 2021
5f8ad91
Update generator package version (#1183)
thomas-chung Jun 30, 2021
307d89c
Update .NET SDK to 4.14 final (#1187)
thomas-chung Jul 1, 2021
18217cb
Allow previews to generate version as well (#1189)
thomas-chung Jul 6, 2021
b6fa120
fix: nuget package version override to allow "preview" ring (#1191)
thomas-chung Jul 7, 2021
02cd57c
feat: Use preview version for RC/preview releases (#1194)
thomas-chung Jul 7, 2021
0a7f14a
chore: fix netcore install steps for various deployment stages (#1196)
ryanisgrig Jul 7, 2021
2c047d6
feat: Update everything with JS to GA (#1195)
thomas-chung Jul 8, 2021
c4cc38b
chore: update deprecated nuget package licenseurl properties (#1197)
ryanisgrig Jul 8, 2021
378d286
Update dummy test script in node packages with clearer message and to…
ryanisgrig Jul 8, 2021
d5d5d89
port: GetMeetingInfo, meeting start/end events [JS] (#1175)
mdrichardson Jul 9, 2021
7374c3f
port: JS Teams Tests and CloudAdapter support (#1200)
mdrichardson Jul 9, 2021
911fe37
port: GetMeetingInfo, meeting start/end events [.NET] (#1178)
mdrichardson Jul 9, 2021
fad69da
chore: Moving branch to RC0 + bump C# SDK to 4.14.1 (#1205)
thomas-chung Jul 9, 2021
e37c434
chore: build workspace prior to testing (#1206)
mdrichardson Jul 9, 2021
e2b2570
Empty out sdk schema and uischema to force regen (#1208)
thomas-chung Jul 9, 2021
782eb6e
fix: typo in OnMEBotMessagePreviewSend (#1212)
mdrichardson Jul 12, 2021
84ea20e
Update packages and tempalte reference to 1.1.0 GA (#1213)
thomas-chung Jul 12, 2021
e01bdd0
fix: fully remove unnecessary onTeamsMEConfigurationSetting (#1215)
mdrichardson Jul 12, 2021
c4c5af5
Bump version to 1.1.1 and correct references (#1216)
thomas-chung Jul 12, 2021
0df4c8b
feat: Update JS SDK in Components repo to 4.14.1 + Bump Branch Versio…
thomas-chung Jul 16, 2021
91a9116
Merge branch '4.14' into thchung/Merge4_14ToMain
thomas-chung Jul 22, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,9 @@ experimental/generator-dotnet-yeoman/node_modules
# Allow the packages directory under tests
!/tests/unit/[Pp]ackages/*

# Allow the packages directory under tests
!/tests/unit/[Pp]ackages/*

# Ignore correct yarn files (no zero install support)
.yarn/*
!.yarn/patches
Expand Down
13 changes: 11 additions & 2 deletions build/yaml/templates/nuget-versioning-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,17 @@ steps:
$componentType = "$env:COMPONENTTYPE";
"Component Type = $componentType";

if ($deploymentRingOverride) {
$deploymentRing = $deploymentRingOverride;
if ($deploymentRingOverride) {
$deploymentRing = $deploymentRingOverride;
}

if (($deploymentRing.ToLowerInvariant() -eq "rc") -or ($deploymentRing.ToLowerInvariant() -eq "preview")) {
$releaseCandidateNumber = "$env:RELEASECANDIDATENUMBER";
"Release Candidate Number = $releaseCandidateNumber";

if (-not $releaseCandidateNumber) {
Write-Host "Release Candidate Number not defined"
exit 1
}

if (($deploymentRing.ToLowerInvariant() -eq "rc") -or ($deploymentRing.ToLowerInvariant() -eq "preview")) {
Expand Down
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.1.1",
"version": "1.1.2",
"description": "Yeoman generator for creating a base bot built on the Azure Bot Framework and the Adaptive stack.",
"keywords": [
"microsoft",
Expand Down
2 changes: 1 addition & 1 deletion generators/generator-bot-adaptive/platforms.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const dotnet = {

const js = {
name: 'js',
defaultSdkVersion: '4.14.0-preview',
defaultSdkVersion: '4.14.1-preview',
};

module.exports = { dotnet, js };
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.14.0-preview',
'botbuilder-ai-qna': '4.14.0-preview',
'botbuilder-ai-luis': '4.14.1-preview',
'botbuilder-ai-qna': '4.14.1-preview',
'botbuilder-dialogs-adaptive-runtime-integration-azure-functions':
'4.14.0-preview',
'4.14.1-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.14.0-preview',
'botbuilder-ai-qna': '4.14.0-preview',
'botbuilder-ai-luis': '4.14.1-preview',
'botbuilder-ai-qna': '4.14.1-preview',
'botbuilder-dialogs-adaptive-runtime-integration-express':
'4.14.0-preview',
'4.14.1-preview',
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const packageReferences = {
[platforms.dotnet.name]: [
{
name: 'Microsoft.Bot.Components.HelpAndCancel',
version: '1.1.1',
version: '1.1.2',
},
],
[platforms.js.name]: [
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.1.1",
"version": "1.1.2",
"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.1.1",
"@microsoft/generator-bot-adaptive": "workspace:^1.1.2",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ const packageReferences = {
[platforms.dotnet.name]: [
{
name: 'Microsoft.Bot.Components.HelpAndCancel',
version: '1.1.1',
version: '1.1.2',
},
{
name: 'Microsoft.Bot.Components.Welcome',
version: '1.1.1',
version: '1.1.2',
},
],
[platforms.js.name]: [
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.1.1",
"version": "1.1.2",
"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.1.1",
"@microsoft/generator-bot-adaptive": "workspace:^1.1.2",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
4 changes: 2 additions & 2 deletions generators/generator-bot-core-qna/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/generator-bot-core-qna",
"version": "1.1.1",
"version": "1.1.2",
"description": "Yeoman generator for creating a bot and connecting to a QnA Maker knowledge base.",
"keywords": [
"microsoft",
Expand All @@ -23,7 +23,7 @@
"lint": "eslint -c ../../.eslintrc.json ."
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.1.1",
"@microsoft/generator-bot-adaptive": "workspace:^1.1.2",
"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.1.1",
"version": "1.1.2",
"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.1.1",
"@microsoft/generator-bot-adaptive": "workspace:^1.1.2",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
8 changes: 4 additions & 4 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.1.1",
"version": "1.1.2",
"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 @@ -25,9 +25,9 @@
"lint": "eslint -c ../../.eslintrc.json ."
},
"dependencies": {
"@microsoft/generator-bot-adaptive": "workspace:^1.1.1",
"@microsoft/generator-bot-enterprise-calendar": "workspace:^1.1.1",
"@microsoft/generator-bot-enterprise-people": "workspace:^1.1.1",
"@microsoft/generator-bot-adaptive": "workspace:^1.1.2",
"@microsoft/generator-bot-enterprise-calendar": "workspace:^1.1.2",
"@microsoft/generator-bot-enterprise-people": "workspace:^1.1.2",
"uuid": "^8.3.2",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = class extends BaseGenerator {
{
isPlugin: true,
name: 'Microsoft.Bot.Components.Graph',
version: '1.1.1',
version: '1.1.2',
},
],
modifyApplicationSettings: (appSettings) => {
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.1.1",
"version": "1.1.2",
"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.1.1",
"@microsoft/generator-bot-adaptive": "workspace:^1.1.2",
"yeoman-generator": "^2.0.5",
"yeoman-test": "^1.9.1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = class extends BaseGenerator {
{
isPlugin: true,
name: 'Microsoft.Bot.Components.Graph',
version: '1.1.1',
version: '1.1.2',
},
],
modifyApplicationSettings: (appSettings) => {
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.1.1",
"version": "1.1.2",
"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.1.1",
"@microsoft/generator-bot-adaptive": "workspace:^1.1.2",
"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.1.1</VersionPrefix>
<VersionPrefix>1.1.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 Down
1 change: 1 addition & 0 deletions packages/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<RepositoryType />
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryUrl>https://github.com/Microsoft/botframework-components</RepositoryUrl>
<NoWarn>$(NoWarn);NU5048</NoWarn>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
2 changes: 1 addition & 1 deletion 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.1.1</VersionPrefix>
<VersionPrefix>1.1.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 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.1.1</version>
<version>1.1.2</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion packages/HelpAndCancel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/bot-components-helpandcancel",
"version": "1.1.1",
"version": "1.1.2",
"description": "Contains Adaptive Dialog assets to support Help and Cancel conversational flows in a bot built on the Azure Bot Framework.",
"keywords": [
"microsoft",
Expand Down
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.1.1</VersionPrefix>
<VersionPrefix>1.1.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
34 changes: 17 additions & 17 deletions packages/Teams/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@microsoft/bot-components-teams",
"author": "Microsoft Corp.",
"description": "Rule system for the Microsoft BotBuilder adaptive dialog system, with integration specific to Microsoft Teams.",
"version": "1.1.1",
"version": "1.1.2",
"license": "MIT",
"keywords": [
"msbot-component",
Expand All @@ -29,29 +29,29 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"peerDependencies": {
"adaptive-expressions": "~4.14.0",
"botbuilder": "~4.14.0",
"botbuilder-dialogs": "~4.14.0",
"botbuilder-dialogs-adaptive": "~4.14.0-preview",
"botbuilder-dialogs-adaptive-runtime-core": "~4.14.0-preview",
"botbuilder-dialogs-declarative": "~4.14.0-preview",
"botbuilder-stdlib": "~4.14.0-internal",
"botframework-connector": "~4.14.0",
"adaptive-expressions": "~4.14.1",
"botbuilder": "~4.14.1",
"botbuilder-dialogs": "~4.14.1",
"botbuilder-dialogs-adaptive": "~4.14.1-preview",
"botbuilder-dialogs-adaptive-runtime-core": "~4.14.1-preview",
"botbuilder-dialogs-declarative": "~4.14.1-preview",
"botbuilder-stdlib": "~4.14.1-internal",
"botframework-connector": "~4.14.1",
"lodash": "^4.17.21"
},
"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.14.0",
"botbuilder": "4.14.0",
"botbuilder-dialogs": "4.14.0",
"botbuilder-dialogs-adaptive": "4.14.0-preview",
"botbuilder-dialogs-adaptive-runtime-core": "4.14.0-preview",
"botbuilder-dialogs-declarative": "4.14.0-preview",
"botbuilder-stdlib": "4.14.0-internal",
"botframework-connector": "4.14.0",
"adaptive-expressions": "4.14.1",
"botbuilder": "4.14.1",
"botbuilder-dialogs": "4.14.1",
"botbuilder-dialogs-adaptive": "4.14.1-preview",
"botbuilder-dialogs-adaptive-runtime-core": "4.14.1-preview",
"botbuilder-dialogs-declarative": "4.14.1-preview",
"botbuilder-stdlib": "4.14.1-internal",
"botframework-connector": "4.14.1",
"eslint": "^7.30.0",
"eslint-plugin-prettier": "latest",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion packages/Welcome/Microsoft.Bot.Components.Welcome.nuspec
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.Welcome</id>
<version>1.1.1</version>
<version>1.1.2</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion packages/Welcome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/bot-components-welcome",
"version": "1.1.1",
"version": "1.1.2",
"description": "An Adaptive Dialog for greeting new and returning users on first interaction with your bot built on the Azure Bot Framework.",
"keywords": [
"microsoft",
Expand Down
8 changes: 4 additions & 4 deletions tests/unit/packages/Teams/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"dependencies": {
"@microsoft/bot-components-teams": "workspace:packages/Teams/js",
"@types/mocha": "^8.2.2",
"botbuilder": "4.14.0",
"botbuilder-dialogs-adaptive": "4.14.0-preview",
"botbuilder-dialogs-adaptive-testing": "4.14.0-preview",
"botframework-connector": "4.14.0",
"botbuilder": "4.14.1",
"botbuilder-dialogs-adaptive": "4.14.1-preview",
"botbuilder-dialogs-adaptive-testing": "4.14.1-preview",
"botframework-connector": "4.14.1",
"mocha": "^9.0.2",
"nock": "^13.1.1",
"ts-node": "^10.0.0"
Expand Down
Loading