[SPARK-58722][CORE] Bump OIDC credential propagation version annotations from 4.3.0 to 4.4.0 - #57947
Closed
sarutak wants to merge 1 commit into
Closed
[SPARK-58722][CORE] Bump OIDC credential propagation version annotations from 4.3.0 to 4.4.0#57947sarutak wants to merge 1 commit into
4.3.0 to 4.4.0#57947sarutak wants to merge 1 commit into
Conversation
…ons from 4.3.0 to 4.4.0 Update @SInCE and .version() annotations for all OIDC credential propagation APIs and configuration keys to reflect the actual release version (4.4.0) instead of the originally planned 4.3.0. Affected files: - TokenIngestor.java, CredentialProvider.java, FileTokenIngestor.java, CredentialProviderLoader.java, CredentialResolutionException.java, UserCredentials.java, ServiceCredential.java, UserContext.java - config/package.scala (spark.security.oidc.* keys)
Member
Author
|
NOTE: For |
uros-b
approved these changes
Aug 12, 2026
Member
|
LGTM, thank you @sarutak! |
HyukjinKwon
approved these changes
Aug 12, 2026
sarutak
added a commit
that referenced
this pull request
Aug 13, 2026
…ons from `4.3.0` to `4.4.0` ### What changes were proposed in this pull request? This PR updates `since` and `.version()` annotations for all OIDC credential propagation APIs and configuration keys from `4.3.0` to `4.4.0` to reflect the actual release version. The OIDC credential propagation feature was originally developed targeting `4.3.0` but will ship in `4.4.0`. This PR corrects the version annotations accordingly. **Affected files:** - `TokenIngestor.java` - `CredentialProvider.java` - `FileTokenIngestor.java` - `CredentialProviderLoader.java` - `CredentialResolutionException.java` - `UserCredentials.java` - `ServiceCredential.java` - `UserContext.java` - `config/package.scala` (`spark.security.oidc.*` keys) **Note:** `AwsStsCredentialProvider.java` (`connector/credential-aws`) also contains `since 4.3.0` but is excluded from this PR because it will be corrected to `4.4.0` as part of #57655 ### Why are the changes needed? Version annotations should reflect the actual release in which APIs and configurations become available, not the originally planned version during development. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? GA. ### Was this patch authored or co-authored using generative AI tooling? Kiro CLI / Claude Closes #57947 from sarutak/oidc-propagation/version-bump-4.4.0. Authored-by: Kousuke Saruta <sarutak@apache.org> Signed-off-by: Kousuke Saruta <sarutak@apache.org> (cherry picked from commit 0b5896b) Signed-off-by: Kousuke Saruta <sarutak@apache.org>
Member
Author
Member
Author
|
Merged. Thank you @HyukjinKwon and @uros-b for reviewing. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changes were proposed in this pull request?
This PR updates
@sinceand.version()annotations for all OIDC credential propagation APIs and configuration keys from4.3.0to4.4.0to reflect the actual release version.The OIDC credential propagation feature was originally developed targeting
4.3.0but will ship in4.4.0. This PR corrects the version annotations accordingly.Affected files:
TokenIngestor.javaCredentialProvider.javaFileTokenIngestor.javaCredentialProviderLoader.javaCredentialResolutionException.javaUserCredentials.javaServiceCredential.javaUserContext.javaconfig/package.scala(spark.security.oidc.*keys)Note:
AwsStsCredentialProvider.java(connector/credential-aws) also contains@since 4.3.0but is excluded from this PR because it will be corrected to4.4.0as part of #57655Why are the changes needed?
Version annotations should reflect the actual release in which APIs and configurations become available, not the originally planned version during development.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
GA.
Was this patch authored or co-authored using generative AI tooling?
Kiro CLI / Claude