-
Notifications
You must be signed in to change notification settings - Fork 21
feat: Add support for multiple context event summaries. #821
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
Closed
Closed
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
7979d98
feat: Add support for multiple context event summaries.
kinyoklion c7b78af
Remove some console.logs.
kinyoklion 2bc5b49
Some cleanup.
kinyoklion 0dfd0b0
Extra blank line for multi summarizer tests.
kinyoklion 30d03b8
More blank lines.
kinyoklion a990ee0
Lint
kinyoklion 99f290d
Tweaks
kinyoklion 79ea083
Don't mutate.
kinyoklion da3bcab
Merge branch 'main' into rlamb/prototype-multi-summary
kinyoklion 83e3651
Revert browser-telemetry changes.
kinyoklion 5dd8636
Re-organization.
kinyoklion 142299c
Missed import
kinyoklion 0daf2f8
Lint
kinyoklion f7fae6f
Remove optionality for context kinds.
kinyoklion 1922be1
Add contract test capability for per-context summary events.
kinyoklion 8c871b6
Lint
kinyoklion 0dc4419
Lint
kinyoklion 260692f
Remove double hashing of kind.
kinyoklion c28f996
Remove await from sync method.
kinyoklion 8ba61a4
Async consistency.
kinyoklion 995d976
Merge branch 'wtf/prototype-multi-summary' into rlamb/prototype-multi…
kinyoklion 5a4d62f
Attempt to pin parse5.
kinyoklion df6fb05
Move resolutions to top level.
kinyoklion 8f0569b
Merge branch 'main' into rlamb/prototype-multi-summary
kinyoklion 5d75446
Extended test, fixed missing keys.
kinyoklion 6c3f468
Additional tests.
kinyoklion 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,7 @@ | |
"packageManager": "[email protected]", | ||
"//": "Pin jsonc-parser because v3.3.0 breaks rollup-plugin-esbuild", | ||
"resolutions": { | ||
"jsonc-parser": "3.2.0" | ||
"jsonc-parser": "3.2.0", | ||
"parse5": "7.2.1" | ||
} | ||
} |
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pin parse5 because it currently has a typescript problem.