-
Notifications
You must be signed in to change notification settings - Fork 80
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
[Connector API] Add missing 8.14 changes #2527
Conversation
From the other PR: FilteringConfig -> |
@l-trotta I'm not sure if they should become optional, they are always required in the Filtering config representation in the server implementation
Yes, If I remove this from the FilteringConfig could it impact e.g. the get connector response from clients? (as I'm unsure how to handle that case correctly in clients |
Sorry for the confusion, I didn't understand how the |
Thank you for catching this! 👍 I addressed your feedback |
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.
LGTM!
Following you can find the validation results for the APIs you have changed.
You can validate these APIs yourself by using the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-8.14 8.14
# Navigate to the new working tree
cd .worktrees/backport-8.14
# Create a new branch
git switch --create backport-2527-to-8.14
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 6420945e1f3b0cdbd13d6031ee50fea046f6a908
# Push it to GitHub
git push --set-upstream origin backport-2527-to-8.14
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-8.14 Then, create a pull request where the |
(cherry picked from commit 6420945)
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
Changes
Adding missing Connector API features that were shipped in 8.14 after #2367 was merged.
2 new endpoints:
2 endpoint changes
rules
andadvanced_snippet
as optional params,filtering
is now optional (still present for backward compatibility)delete_sync_jobs
url paramfiltering-related timestamps (rules and advanced_snippet) were made optional in ES backend in
8.14