From 1dae7a2f3e2348b1fe6281b78d3dbd4eb581fbe8 Mon Sep 17 00:00:00 2001 From: James Martin <19962890+jmsmtn@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:04:10 -0500 Subject: [PATCH 1/5] spelling updates. --- CHANGELOG.md | 12 ++++++------ DEVELOPERS.md | 2 +- docs/howto/config.rst | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87595fd08..efc87b759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ ## 7.5.1 (2025-02-10) - deps: restrict pyOpenSSL up to v24.2.1 until it is replaced -- deps: update dependncies for the lockfile and examples +- deps: update dependencies for the lockfile and examples ## 7.5.0 (2024-01-30) @@ -46,9 +46,9 @@ ## 7.3.0 (2023-02-14) - During metadata generation, render extensions both for EntityDescriptor and IdPSSODescriptor -- Fix compatibility with certain SAML implementation that inflate messasges on the POST binding +- Fix compatibility with certain SAML implementation that inflate messages on the POST binding - Update the SWAMID entity category requirements -- Fix check for NameID when it originates from an encrypted asssertion +- Fix check for NameID when it originates from an encrypted assertion - Add support for pymongo `>=3.5` and `<5` - Update README with supported specifications - Remove dependency on the six package @@ -131,7 +131,7 @@ - Refactor AuthnResponse::authn_info to consider DeclRef equivalent to ClassRef. - Ensure creation of multiple ePTIDs is handled correctly. - Improve signature checks by ensuring the Object element is absent, enforcing allowed - transform aglorithms, enforcing allowed canonicalization methods and requiring the + transform algorithms, enforcing allowed canonicalization methods and requiring the enveloped-signature transform to be present. - mdstore: Make unknown metadata extensions available through the internal metadata. - mdstore: Fix the exception handler of the InMemoryMetaData object. @@ -228,7 +228,7 @@ part of its metadata. - CI/CD: Use Ubuntu bionic as the host to run the CI/CD process. - CI/CD: Pre-releases are now available on [test.pypi.org][pypi.test.pysaml2]. Each - commit/merge on the master branch autotically creates a new pre-release. To install a + commit/merge on the master branch automatically creates a new pre-release. To install a prelease, run: ```sh @@ -249,7 +249,7 @@ - Fix wrong identifiers for ecdsa algos - Fix automatic inversion of attribute map files - Factor out common codepaths in attribute_converter -- Remove uneeded exception logging +- Remove unneeded exception logging - Docs: Update configuration options documentation - Examples: Support both str and bytes in SAML requests on the example idp - Examples: Update to key generation to 2048 bits diff --git a/DEVELOPERS.md b/DEVELOPERS.md index ed395cb1e..ae2e5a4a1 100644 --- a/DEVELOPERS.md +++ b/DEVELOPERS.md @@ -24,7 +24,7 @@ $ pyenv versions --bare | xargs pyenv local This project uses [`poetry`] to manage dependencies and virtual environments. See `poetry`'s [installation instructions] on how to install `poetry` on your system. -I have opted to use [`pipx`] to install and manage `poerty` itself. +I have opted to use [`pipx`] to install and manage `poetry` itself. I also use `pipx` to manage other python executables that I want readily available on my system. Once `poetry` is available on your system, install the development dependencies: diff --git a/docs/howto/config.rst b/docs/howto/config.rst index b3e3cb5e1..f0118ee0c 100644 --- a/docs/howto/config.rst +++ b/docs/howto/config.rst @@ -404,7 +404,7 @@ file system. When the parameter *check_validity* is set to False metadata that have expired will be accepted as valid. -When the paramenter *disable_ssl_certificate_validation* is set to True the +When the parameter *disable_ssl_certificate_validation* is set to True the validity of ssl certificate will be skipped. When using a remote metadata source, the `node_name` option can be set to From fc4728c323ede3f6fe030d68b697bfe6a5b94611 Mon Sep 17 00:00:00 2001 From: James Martin <19962890+jmsmtn@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:04:22 -0500 Subject: [PATCH 2/5] update link. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bcb1de573..84676160b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -146,4 +146,4 @@ keep these rules in mind as you are working: * All public API methods **must be documented**. * We follow [Black's style guide](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html), and wrap all code at **120 characters**. - Pre-configured tools to automatically lint and format code are available, see [DEVELOPER.md](DEVELOPER.md). + Pre-configured tools to automatically lint and format code are available, see [DEVELOPER.md](DEVELOPERS.md). From dbbee70e7b399c7c5e13c65b597ab88c27f24c81 Mon Sep 17 00:00:00 2001 From: James Martin <19962890+jmsmtn@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:11:37 -0500 Subject: [PATCH 3/5] update link. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 84676160b..891f3749c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -146,4 +146,4 @@ keep these rules in mind as you are working: * All public API methods **must be documented**. * We follow [Black's style guide](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html), and wrap all code at **120 characters**. - Pre-configured tools to automatically lint and format code are available, see [DEVELOPER.md](DEVELOPERS.md). + Pre-configured tools to automatically lint and format code are available, see [DEVELOPERS.md](DEVELOPERS.md). From d5a9a9fb768b0156ecf6833db562e2b248cd7f56 Mon Sep 17 00:00:00 2001 From: James Martin <19962890+jmsmtn@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:21:13 -0500 Subject: [PATCH 4/5] update link. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 891f3749c..86fc875f7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -100,7 +100,7 @@ Before you submit your Pull Request (PR) consider the following guidelines: 5. Create your patch, **including appropriate test cases**. Remember to follow the [Coding Rules](#coding-rules). -6. Run the full test suite, as described in the [developer documentation][dev-doc], +6. Run the full test suite, as described in the [DEVELOPERS.md](DEVELOPERS.md), and ensure that all tests pass. 7. Commit your changes using a descriptive commit message. From cd9ab92b6c5a998858d15d06a0434192649e2f07 Mon Sep 17 00:00:00 2001 From: James Martin <19962890+jmsmtn@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:23:17 -0500 Subject: [PATCH 5/5] spelling updates. --- .github/pull_request_template.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f388ca27c..4172386c2 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -2,8 +2,8 @@ ##### The feature or problem addressed by this PR - - + +