Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 03-09-2020 #2219

Merged
merged 41 commits into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
6ff0da3
chore: merge stable release into master
a-b-r-o-w-n Feb 21, 2020
3424f78
fix: replace animated screenshots with a static screenshot (#2045)
benbrown Feb 24, 2020
1b14a18
feat: support inline LU section editing (#1994)
zhixzhan Feb 25, 2020
d57e478
style: fix hover state nodes ui (#2065)
alanlong9278 Feb 25, 2020
9eeca92
feat: add more help links (#2070)
a-b-r-o-w-n Feb 25, 2020
7b452d3
feat: support multi-line node block in Visual Editor (#2005)
yeze322 Feb 25, 2020
2a5a0fc
docs: update docs to fix LU file format link (#2071)
vishwacsena Feb 25, 2020
1f85367
style change (#2095)
alanlong9278 Feb 26, 2020
73a08fb
fix: no longer show duplicate lg error notifications (#2100)
zhixzhan Feb 26, 2020
1112c86
fix: resolve known bugs in LU LSP. (#2098)
cosmicshuai Feb 27, 2020
482aaf7
feat: display 6 actions as contentless node (#2108)
yeze322 Feb 27, 2020
8b0510b
fix: update lu format link (#2107)
liweitian Feb 27, 2020
7198c7f
feat: update new trigger modal according to design (#1786)
liweitian Mar 1, 2020
998219a
feat: Update package and schema to 200216 (#1997)
luhan2017 Mar 2, 2020
aed7c65
feat: repaint ui for setProperties in visual editor (#2017)
alanlong9278 Mar 3, 2020
a20d2b2
sort casesKey and stepsKey correctly (#2166)
yeze322 Mar 4, 2020
7191c2f
add role, name, posinset for paste in edgeMenu (#2126)
alanlong9278 Mar 4, 2020
4a8a086
ci: add a11y pr title prefix for accessibility prs (#2171)
a-b-r-o-w-n Mar 4, 2020
66986a2
feat: implement new action design to improve readability (#2136)
cwhitten Mar 4, 2020
781f387
feat: Added inline lu to prompts (#2159)
cwhitten Mar 4, 2020
e51dc5a
feat: Add cross train before luis publish (#2069)
cwhitten Mar 5, 2020
8a17c92
a11y: Use header tag for trigger in visual editor (#2128)
cwhitten Mar 5, 2020
1bea213
add name for nodeMenu, arrow and endNode (#2131)
cwhitten Mar 5, 2020
c17b59e
fix: remove edit button in lu all up view (#2146)
cwhitten Mar 6, 2020
ae6111e
feat: Remove input LU when deconstructing prompts (#2180)
tdurnford Mar 6, 2020
964b8d6
Default ActivityProcessed to true (bool) (#2189)
cwhitten Mar 6, 2020
fed2515
fix: lg template display wrong in visual & form editor (#2191)
alanlong9278 Mar 6, 2020
c2d7665
fix: Double scroll bars in dialog's properties pane (#2163)
alanlong9278 Mar 6, 2020
4da36a2
Update HttpRequest sample (#2161)
luhan2017 Mar 6, 2020
a05a5fc
fix: deployment script, decouple debugging and deployment settings (#…
Mar 6, 2020
3d64659
fix: load schema files when loading bot project (#2170)
a-b-r-o-w-n Mar 6, 2020
a982001
fix: Moved value field to user tab and removed inline lu from attachm…
tdurnford Mar 7, 2020
3eea821
fix: use nightly build to replace the private bf-lu package (#2190)
lei9444 Mar 7, 2020
d8f8441
Update setup-yarn.md (#2160)
vkacherov Mar 7, 2020
8cd8859
Update setup-yarn.md (#2145)
DaraOladapo Mar 7, 2020
27a4fdb
fix: lu build bug when training empty intents (#2201)
lei9444 Mar 9, 2020
66e5fb4
fix: trigger creation bug (#2151)
liweitian Mar 9, 2020
79f9040
defense lg copy API failure (#2198)
yeze322 Mar 9, 2020
ceb8186
release: update changelog (#2204)
a-b-r-o-w-n Mar 9, 2020
256fffb
Switch to actions/checkout@v2 (#2221)
cwhitten Mar 10, 2020
d5f1776
fix: regEx trigger creation bug (#2214)
liweitian Mar 10, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .github/actions/conventional-pr/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const validTypes = [
'chore',
'revert',
'release',
'a11y',
];

const typeList = validTypes.map(t => ` - ${t}`).join('\n');
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Set Node Version
uses: actions/setup-node@v1
with:
Expand Down Expand Up @@ -56,17 +56,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Set Dotnet Version
uses: actions/setup-dotnet@v1
with:
dotnet-version: "3.0.100" # SDK Version to use.
dotnet-version: "3.1.102" # SDK Version to use.
- name: dotnet build
run: dotnet build
working-directory: BotProject/CSharp
working-directory: BotProject/Templates/CSharp
- name: dotnet test
run: dotnet test
working-directory: BotProject/CSharp
working-directory: BotProject/Templates/CSharp

docker-build:
name: Docker Build
Expand All @@ -75,7 +75,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: docker-compose build
run: docker-compose build
- name: Health check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Cache Node Modules
uses: actions/cache@preview
with:
Expand Down
2 changes: 0 additions & 2 deletions BotProject/CSharp/.dockerignore

This file was deleted.

9 changes: 0 additions & 9 deletions BotProject/CSharp/.gitignore

This file was deleted.

229 changes: 0 additions & 229 deletions BotProject/CSharp/BotManager.cs

This file was deleted.

46 changes: 0 additions & 46 deletions BotProject/CSharp/BotProject.csproj

This file was deleted.

Loading