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

Set spaces and roles CRUD APIs to public #193534

Merged
merged 32 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6c13264
Explicitly sets spaces and roles HTTP API endpoints access to public
jeramysoucy Sep 20, 2024
930acf4
Merge remote-tracking branch 'upstream/main' into set-serverless-publ…
jeramysoucy Sep 20, 2024
a4a640f
Updates API integration tests
jeramysoucy Sep 20, 2024
27d69d3
Updates roles api tests
jeramysoucy Sep 23, 2024
ecf8197
Uncomments test index files
jeramysoucy Sep 23, 2024
fbd920f
Uncomments management test index
jeramysoucy Sep 23, 2024
6cf4f86
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Sep 23, 2024
f9b1e51
Removes unused constants
jeramysoucy Sep 23, 2024
3d813de
Use versioned router for public endpoints
jeramysoucy Sep 24, 2024
e319dcb
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine Sep 24, 2024
4d348d2
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Sep 25, 2024
fe76a89
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Sep 25, 2024
0aa971e
Adds version header to axios request in ftr roles util
jeramysoucy Sep 25, 2024
031c564
[CI] Auto-commit changed files from 'node scripts/notice'
kibanamachine Sep 25, 2024
34ef027
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Sep 25, 2024
fe2e7eb
Adds version header to spaces FTR service axios config
jeramysoucy Sep 26, 2024
e9f5d63
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Sep 26, 2024
68de9e8
Adds version to http calls from spaces manager
jeramysoucy Sep 27, 2024
15ea4df
Uses common def for api version
jeramysoucy Sep 27, 2024
262673d
Comments version prop of fetch options, removes "experimental"
jeramysoucy Sep 27, 2024
c85715a
Fixes typo
jeramysoucy Sep 27, 2024
5e42731
Adds versionResolution to FTR runTests
jeramysoucy Sep 27, 2024
df5a112
[CI] Auto-commit changed files from 'node scripts/notice'
kibanamachine Sep 27, 2024
2abd2e6
Removes commented code
jeramysoucy Sep 27, 2024
a8217e0
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Sep 30, 2024
7e17054
Adds API version option to requests in the roles client and edit role…
jeramysoucy Sep 30, 2024
a855b6a
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Sep 30, 2024
4de5ea8
Adds OAS tags
jeramysoucy Oct 2, 2024
8b4bf9f
Merge branch 'main' into set-serverless-public-apis
jeramysoucy Oct 3, 2024
9497dbf
Adds roles and spaces API paths to OAS doc script
jeramysoucy Oct 3, 2024
6ae6950
[CI] Auto-commit changed files from 'node scripts/capture_oas_snapsho…
kibanamachine Oct 3, 2024
b44b348
[CI] Auto-commit changed files from 'make api-docs && make api-docs-s…
kibanamachine Oct 3, 2024
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
2 changes: 1 addition & 1 deletion .buildkite/scripts/steps/capture_oas_snapshot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euo pipefail
source .buildkite/scripts/common/util.sh

echo --- Capture OAS snapshot
cmd="node scripts/capture_oas_snapshot --include-path /api/status --include-path /api/alerting/rule/ --include-path /api/alerting/rules --include-path /api/actions"
cmd="node scripts/capture_oas_snapshot --include-path /api/status --include-path /api/alerting/rule/ --include-path /api/alerting/rules --include-path /api/actions --include-path /api/security/role --include-path /api/spaces"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc @elastic/kibana-core for awareness

if is_pr && ! is_auto_commit_disabled; then
cmd="$cmd --update"
fi
Expand Down
Loading