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

Sidecar debugging - Milestone 0.9 #1400

Merged
merged 35 commits into from
Apr 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c63e1b5
Middleware and Emulator config for auto-connecting bot
justinwilaby Mar 6, 2019
da5b17c
Changed Connector API to use X headers for bot related info
justinwilaby Mar 20, 2019
aba7597
1. Completed 'sidecard' debug mode\n2. Added renderers for trace acti…
justinwilaby Mar 28, 2019
eaea35b
Added the new 'Bot State Visualizer' extension and wired it up
justinwilaby Mar 28, 2019
d405426
Completed diffing for bot state objects
justinwilaby Apr 3, 2019
1c0b5ca
Updated unit tests
justinwilaby Apr 4, 2019
e41ffea
Added unit tests - lint fixes
justinwilaby Apr 4, 2019
5ded694
Rebase adjustments
justinwilaby Apr 5, 2019
0d70baa
Integrated 'deep-diff' library
justinwilaby Apr 8, 2019
fbafc34
Added switching between Graph and Json views
justinwilaby Apr 8, 2019
e35629f
Corrected errant inport
justinwilaby Apr 9, 2019
68a7889
Moved the valueType for the bot state to a const
justinwilaby Apr 9, 2019
f414f4e
Simplified the chat panel. Fixed #1387
justinwilaby Apr 10, 2019
8aaef46
Updated selection of messages in WebChat when trace activities are re…
justinwilaby Apr 11, 2019
c113833
Cured divergent schemas and aligned with the botbuilder-schema package
justinwilaby Apr 11, 2019
5880ea4
Updated errant import from rebase
justinwilaby Apr 11, 2019
3319ebe
Added inspecable log items for the nested activities that come with t…
justinwilaby Apr 11, 2019
b178b2d
Mapped highlighing in the log to either traces or nested activities w…
justinwilaby Apr 12, 2019
2ab1ffe
Lint fixes
justinwilaby Apr 12, 2019
7d3e56e
Build fix
justinwilaby Apr 12, 2019
87dd891
Applied color treatment to json viewer for bot state diffing
justinwilaby Apr 12, 2019
6fdd2cf
Update packages/emulator/core/src/facility/conversationSet.ts
a-b-r-o-w-n Apr 12, 2019
e83da02
fixed #1285. Fixed #825. Added collapsed service pane when in debug mode
justinwilaby Apr 15, 2019
40b59c0
Unit test remediation
justinwilaby Apr 15, 2019
a62e51a
Unit test fixes
justinwilaby Apr 15, 2019
829b145
Unit test corection
justinwilaby Apr 15, 2019
db222e9
Updated code to fix breaking changes when moving to electron 4
justinwilaby Apr 17, 2019
020e096
Attempt to fix unit tests run on the build server
justinwilaby Apr 17, 2019
d5f1dac
Fixed issue where conversation restart was using a new port every tim…
tonyanziano Apr 19, 2019
3e5bbb5
Fixed issue where conversation update was not being sent when opening…
tonyanziano Apr 19, 2019
3daedb7
Remove showInInspector from the JSON object before sending it to the …
cwhitten Apr 19, 2019
a3b3a34
Drill livechat mode (#1438)
cwhitten Apr 22, 2019
ebd7330
Save transcript fix (#1440)
cwhitten Apr 22, 2019
e33f0a7
Disabled the restart conversation button when in sidecard debug mode
justinwilaby Apr 22, 2019
468b94c
Merge branch 'jwilaby/auto-connect-emulator' of github.com:Microsoft/…
justinwilaby Apr 22, 2019
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
8 changes: 7 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-react-jsx",
"@babel/plugin-transform-runtime"
"@babel/plugin-transform-runtime",
[
"@babel/proposal-decorators",
{
"decoratorsBeforeExport": true
}
]
]
}
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"packages/extensions/debug/main",
"packages/extensions/luis",
"packages/extensions/luis/client",
"packages/extensions/json"
"packages/extensions/json",
"packages/extensions/botState"
],
"version": "independent"
}
Loading