-
-
Notifications
You must be signed in to change notification settings - Fork 569
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
[READY] Merge master into v2.x (please don't squash commits!) #710
Closed
johnnyshields
wants to merge
13
commits into
SAML-Toolkits:v2.x
from
johnnyshields:merge-master-20240711
Closed
[READY] Merge master into v2.x (please don't squash commits!) #710
johnnyshields
wants to merge
13
commits into
SAML-Toolkits:v2.x
from
johnnyshields:merge-master-20240711
Conversation
This file contains 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
I have a use-case for being able to cache the intermediate fetch of metadata in case of temporary failures, so rather than: parser.parse_remote(url) I'd like to begin metadata = parser.get_idp_metadata(url, true) do_my_caching(metadata) parser.parse(metadata) rescue HttpError load_cache end There's a fair amount of logic in the get_idp_metadata method that I'd rather not need to re-implement. Right now I have this implemented with `parser.send(:get_idp_metadata, url, true)` which is obviously not great if the internals of this class change in the future. Can we move this method to the public API?
…tadata-public Make IdpMetadataParser#get_idp_metadata public
…sts-windows Master: Fix tests on Windows, add Ruby 3.3, and cleanup CI
14 tasks
johnnyshields
changed the title
Merge master into v2.x (please don't squash commits!)
[READY] Merge master into v2.x (please don't squash commits!)
Jul 13, 2024
* Use correct XPaths and resolve to correct elements * Update xml_security.rb * Block references that resolve to multiple nodes to prevent signature wrapping attacks
This test warns warning: ambiguity between regexp and two divisions: wrap regexp in parentheses or add a space after `/' operator We can fix this warning by using the %r regex syntax instead
…e-master-20240711
Replaced by #725 |
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.
Please merge this PR without squashing commits so the diff between v2.x and master will be fully caught-up. (This was previously merged here but it was done via squash)
v2.x...master