-
Notifications
You must be signed in to change notification settings - Fork 2
Build v2.3 - Multiple Enhancements including mailMessage processing #231
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
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
25b3c36
mailMessage entity handling
briandelmsft f2f2dd5
updates for 3.12 python version
briandelmsft 7756e8f
mail message entity support
briandelmsft 3c9bd1e
Funciton bundle update, #199
briandelmsft 50d4866
mail messages for KQL module
briandelmsft ce89515
5xx series error retry logic
briandelmsft 27d3ecd
base module comment updates, including mail msg
briandelmsft f297449
Merge branch 'mail_message' into mail_message_backup
briandelmsft b832963
Merge pull request #200 from briandelmsft/mail_message_backup
briandelmsft 830a8fe
update readme
briandelmsft ec961d6
Merge pull request #201 from briandelmsft/mail_message
briandelmsft 5960e0a
message role check
briandelmsft 2ec4264
comment enrichment update
briandelmsft 2bb9808
pass error code
briandelmsft b2db0f1
token check handling, #206
briandelmsft b7f79e8
add logging messages
briandelmsft 5a87b5f
additional error hanlding, build and comment updates
briandelmsft 8dcd5a8
Merge pull request #208 from briandelmsft/error_handling
briandelmsft f2c0bfc
Removing Z suffix from ISO time stamp string
briandelmsft e45ed74
Merge branch 'build_v2_2_update1' of https://github.com/briandelmsft/…
briandelmsft f9de9bc
time formatting issue from ISO in 3.10
briandelmsft 48d9db9
time formatting issue
briandelmsft 29daffc
update start and end time formatting
briandelmsft 293bd69
Comment logging and debug update, #210, #214
briandelmsft f9ed34a
Additional logging refinements, #211, #212
briandelmsft f237d83
Handle ModuleBody string parsing, #219
briandelmsft c97015e
tag and task debug, #215, #216
briandelmsft aaf02bb
Fixes typing issue for scheduled oof, #220
briandelmsft 1334f4f
replacing accidental removal
briandelmsft 68533ef
Parse paths when included in the file name, #221
briandelmsft fba94ea
Improve mailMessage start end time, #217
briandelmsft a51de03
Pytest for mail message enrichment, #218
briandelmsft d9edb4c
Add warning when app role is missing for mail messages
briandelmsft f4e54bf
version update
briandelmsft 6c76519
Removing test automations on Python 3.10
briandelmsft 3a8a94c
Update classes/__init__.py
briandelmsft 333015d
Update shared/data.py
briandelmsft d3fabc9
Update shared/data.py
briandelmsft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,33 @@ | ||
| { | ||
| "version": "2.0.0", | ||
| "tasks": [ | ||
| { | ||
| "type": "func", | ||
| "label": "func: host start", | ||
| "command": "host start", | ||
| "problemMatcher": "$func-python-watch", | ||
| "isBackground": true, | ||
| "dependsOn": "pip install (functions)" | ||
| }, | ||
| { | ||
| "label": "pip install (functions)", | ||
| "type": "shell", | ||
| "osx": { | ||
| "command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt" | ||
| }, | ||
| "windows": { | ||
| "command": "${config:azureFunctions.pythonVenv}\\Scripts\\python -m pip install -r requirements.txt" | ||
| }, | ||
| "linux": { | ||
| "command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt" | ||
| }, | ||
| "problemMatcher": [] | ||
| } | ||
| ] | ||
| "version": "2.0.0", | ||
| "tasks": [ | ||
| { | ||
| "type": "func", | ||
| "label": "func: host start", | ||
| "command": "host start", | ||
| "problemMatcher": "$func-python-watch", | ||
| "isBackground": true, | ||
| "dependsOn": "pip install (functions)" | ||
| }, | ||
| { | ||
| "label": "pip install (functions)", | ||
| "type": "shell", | ||
| "osx": { | ||
| "command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt" | ||
| }, | ||
| "windows": { | ||
| "command": "${config:azureFunctions.pythonVenv}\\Scripts\\python -m pip install -r requirements.txt" | ||
| }, | ||
| "linux": { | ||
| "command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt" | ||
| }, | ||
| "problemMatcher": [] | ||
| }, | ||
| { | ||
| "label": "Release Blocked Port", | ||
| "type": "shell", | ||
| "command": "powershell.exe -ExecutionPolicy Bypass -Command \"Stop-Process -Id (Get-NetTCPConnection -LocalPort 7071).OwningProcess -Force\"", | ||
| "problemMatcher": [] | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.