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.
PR Description
Summary:
This PR updates the dependency of
jekyll-seo-tag
in theno-style-please
gem to be compatible with GitHub Pages >= 228 and Liquid 4.0.4. The update resolves the version conflict betweenjekyll-seo-tag
2.7.1 (required byno-style-please
) andjekyll-seo-tag
2.8.0 (required by GitHub Pages >= 228).This change ensures compatibility with Liquid 4.0.4 and fixes a critical bug preventing the site from running correctly when using Liquid 4.0.3.
Changes:
jekyll-seo-tag
dependency in theno-style-please
gemspec file from~> 2.7.1
to~> 2.8.0
.no-style-please
gem with the newerjekyll-seo-tag
version, which is required for compatibility with Liquid 4.0.4 and GitHub Pages >= 228.Reasoning:
no-style-please
to work with the latest versions of the necessary dependencies.GitHub Pages >= 228
is required for compatibility with Liquid 4.0.4, which is necessary to fix the mentioned bug.However,
no-style-please
depends on an older version ofjekyll-seo-tag
, which was incompatible with the newer version of GitHub Pages.Impact:
no-style-please
works seamlessly with GitHub Pages >= 228 and Liquid 4.0.4.