Skip to content

Releases: PSModule/GoogleFonts

v1.0.109

11 Feb 05:43
1fb4aba

Choose a tag to compare

Auto-Update 20260211-002918 (#157)

This PR updates FontsData.json with the latest metadata.

v1.0.108

10 Feb 11:43
a6e04ab

Choose a tag to compare

Auto-Update 20260210-113135 (#156)

This PR updates FontsData.json with the latest metadata.

v1.0.107

08 Feb 10:46
e6bcbf7

Choose a tag to compare

Bump PSModule/GitHub-Script from 1.7.8 to 1.7.10 (#140)

Bumps PSModule/GitHub-Script from 1.7.8 to 1.7.10.

Release notes

Sourced from PSModule/GitHub-Script's releases.

v1.7.10

🩹 [Patch]: Standardize project structure and rename release workflow (#81)

This PR standardizes the project structure and updates workflows to align with PSModule conventions.

Changed

  • Rename Auto-Release.yml workflow to Release.yml for consistency
  • Update release action from PSModule/Auto-Release@v1.9.5 to PSModule/Release-GHRepository@v2
  • Rename scripts/ folder to src/ to follow standard project layout
  • Update action.yml to reference scripts from new src/ location
  • Add linter workflow configuration

Removed

  • Remove unused .jscpd.json linter configuration file

Summary

This PR brings the GitHub-Script action in line with PSModule's standardized project structure. The scripts/ folder is renamed to src/ for consistency across all actions, and the release workflow is updated to use the renamed Release-GHRepository action.

v1.7.9

🩹[Patch]: Update workflow configurations (#79)

Updates workflow configurations to use the latest pinned action versions for improved security and reproducibility.

  • Related to PSModule workflow standardization

Action pinning

Pinned all GitHub Actions to specific commit SHAs:

  • actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd (v6.0.2) - Updated from v6.0.1
Commits
  • 0097f3b 🩹 [Patch]: Standardize project structure and rename release workflow (#81)
  • e827bea 🩹[Patch]: Update workflow configurations (#79)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

v1.0.106

30 Jan 06:08
dd97484

Choose a tag to compare

Auto-Update 20260130-002248 (#139)

This pull request updates the URLs for all variants of the Kedebideri font in the FontsData.json file to use a newer version (v6 instead of v2). This ensures that the application will reference the latest available font files.

  • Updated the URL fields for all Kedebideri font variants (regular, 500, 600, 700, 800, 900) to point to version v6 of the font files.

v1.0.105

29 Jan 09:13
ce3b42e

Choose a tag to compare

Auto-Update 20260129-002251 (#138)

This pull request updates the src/FontsData.json file to add new fonts and variants, as well as update existing font URLs to newer versions. The main changes include adding the "SN Pro" and "Playwrite NZ Basic" font families (with multiple variants), updating several font URLs to their latest versions, and adding new variants for existing fonts.

New font additions:

  • Added the "SN Pro" font family with a full range of weights and both regular and italic variants.
  • Added the "Playwrite NZ Basic" and "Playwrite NZ Basic Guides" font families, including multiple weights for "Playwrite NZ Basic".

Font version updates:

  • Updated all "Noto Naskh Arabic" font variants from version 43 to 44.
  • Updated all "Noto Sans Bengali" font variants from version 32 to 33.
  • Updated all "Playwrite NZ" font variants from version 11 to 12, and updated "Playwrite NZ Guides" from version 1 to 2.

v1.0.104

23 Jan 11:27
a18a910

Choose a tag to compare

🩹 [Patch]: Update FontsData.json with LINE Seed JP font (#135)

Updates the FontsData.json with the latest font metadata from Google Fonts, adding the LINE Seed JP font family.

Changes

  • Added LINE Seed JP font with 4 weight variants (100, regular, 700, 800)

Impact

The GoogleFonts module now includes the LINE Seed JP font family in its data file.

v1.0.103

23 Jan 11:07
e74fb5d

Choose a tag to compare

🩹 [Patch]: Replace secrets inheritance with explicit secret passing (#137)

Improves workflow security by replacing unconditional secrets: inherit with explicit secret passing in the Process-PSModule workflow. This follows the principle of least privilege by only passing the required APIKey secret instead of exposing all repository secrets to the reusable workflow.

Changes

  1. Updated .github/workflows/Process-PSModule.yml: Changed from secrets: inherit to explicitly passing only the required APIKey secret using APIKey: ${{ secrets.APIKey }}.

Benefits

  • Reduces risk of unintended secret exposure to reusable workflows
  • Follows GitHub Actions security best practices
  • Addresses zizmor security linting warnings
  • No functional changes - the workflow continues to operate identically

v1.0.102

22 Jan 17:50
208c533

Choose a tag to compare

🩹 [Patch]: Remove release.yml configuration file (#134)

The repository no longer uses the GitHub release.yml configuration for automatically generated release notes. This file has been removed to simplify repository maintenance and align with the updated release process.

Changes

The .github/release.yml file has been deleted. This file previously configured:

  • Changelog exclusion labels (NoRelease)
  • Category groupings for release notes (Breaking Changes, New Features, Other Changes)

No action is required from users as this is an internal configuration change that does not affect the module's functionality.

v1.0.101

22 Jan 17:42
aeba1e2

Choose a tag to compare

🩹 [Patch]: Enable GitHub Actions Zizmor validation (#132)

Enables Zizmor security scanning for GitHub Actions workflows by removing the disabled configuration. This helps identify potential security issues in workflow files.

Configuration change

The VALIDATE_GITHUB_ACTIONS_ZIZMOR: false setting has been removed from .github/PSModule.yml. This enables the Zizmor linter, which scans GitHub Actions workflows for security vulnerabilities and best practice violations.

No action required from users - this is an internal repository configuration change that improves workflow security scanning.

v1.0.100

22 Jan 17:20
c3589fc

Choose a tag to compare

Bump actions/checkout from 6.0.1 to 6.0.2 (#130)

Bumps actions/checkout from 6.0.1 to 6.0.2.

Release notes

Sourced from actions/checkout's releases.

v6.0.2

What's Changed

Full Changelog: actions/checkout@v6.0.1...v6.0.2

Changelog

Sourced from actions/checkout's changelog.

Changelog

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

... (truncated)

Commits
  • de0fac2 Fix tag handling: preserve annotations and explicit fetch-tags (#2356)
  • 064fe7f Add orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set (...
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)