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

[READY] Merge master into v2.x (please don't squash commits!) #710

Closed

Commits on Jul 8, 2024

  1. Make IdpMetadataParser#get_idp_metadata public

    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?
    calebhearth committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    43b0bb6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request SAML-Toolkits#691 from calebhearth/make-get_idp_me…

    …tadata-public
    
    Make IdpMetadataParser#get_idp_metadata public
    pitbulk authored Jul 8, 2024
    Configuration menu
    Copy the full SHA
    e827926 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Configuration menu
    Copy the full SHA
    0f8da70 View commit details
    Browse the repository at this point in the history
  2. Merge pull request SAML-Toolkits#687 from johnnyshields/master-fix-te…

    …sts-windows
    
    Master: Fix tests on Windows, add Ruby 3.3, and cleanup CI
    pitbulk authored Jul 9, 2024
    Configuration menu
    Copy the full SHA
    6e33ed3 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Configuration menu
    Copy the full SHA
    4c0a790 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Merge commit from fork

    * Use correct XPaths and resolve to correct elements
    
    * Update xml_security.rb
    
    * Block references that resolve to multiple nodes to prevent signature wrapping attacks
    ahacker1-securesaml authored Sep 10, 2024
    Configuration menu
    Copy the full SHA
    4865d03 View commit details
    Browse the repository at this point in the history
  2. Release 1.17.0

    pitbulk committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    1bc447f View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. fix ambiguous regex warnings (SAML-Toolkits#720)

    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
    HParker authored Sep 30, 2024
    Configuration menu
    Copy the full SHA
    ef997f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f4cd947 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7f887b4 View commit details
    Browse the repository at this point in the history
  4. Update CHANGELOG

    pitbulk committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    791fc2c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9ee5238 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    dc4c8d5 View commit details
    Browse the repository at this point in the history