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

[Security Solution] [AI Assistant] Replace polynomial regular expression with constant time string manipulation #209314

Merged
merged 21 commits into from
Feb 7, 2025
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8f59b95
Replace polynomial regular expression with constant string manipulation
KDKHD Feb 3, 2025
b03396a
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Feb 3, 2025
23a2503
Merge branch 'main' into bug/content-references-regex-performance
elasticmachine Feb 3, 2025
edcefc1
Include missing strings in prompts
KDKHD Feb 4, 2025
196a01d
Add test to citations
KDKHD Feb 5, 2025
791b965
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Feb 5, 2025
b3fec5d
update content reference parser
KDKHD Feb 5, 2025
3778d7d
lint
KDKHD Feb 5, 2025
af99911
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Feb 5, 2025
647fb00
lint
KDKHD Feb 5, 2025
4e5663e
Merge branch 'bug/content-referencest-regex-performance' of github.co…
KDKHD Feb 5, 2025
a399f4f
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Feb 5, 2025
dd972ff
test
KDKHD Feb 5, 2025
79ea623
Merge branch 'bug/content-references-regex-performance' of github.com…
KDKHD Feb 5, 2025
92f9d52
Merge branch 'main' into bug/content-references-regex-performance
elasticmachine Feb 5, 2025
4ddac67
Merge branch 'main' into bug/content-references-regex-performance
KDKHD Feb 6, 2025
5ffbcdf
content reference parser - eat empty references to better handle erro…
KDKHD Feb 6, 2025
55ef292
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Feb 6, 2025
fcfaccd
content reference parser - parse references on new lines correctly
KDKHD Feb 6, 2025
86e9ef3
Update x-pack/solutions/security/plugins/elastic_assistant/server/lib…
KDKHD Feb 6, 2025
e5482f0
code review
KDKHD Feb 6, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const SecurityAlertsPageReference: React.FC<Props> = ({
contentReferenceNode,
securityAlertsPageContentReference,
}) => {
const openAlertsPageWithFilters = useNavigateToAlertsPageWithFilters()
const openAlertsPageWithFilters = useNavigateToAlertsPageWithFilters();

const onClick = useCallback(
(e: React.MouseEvent) => {
Expand Down