github-action-readme-generator 1.9.1 → 1.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +1 -1
  3. package/dist/bin/index.js +130 -53
  4. package/dist/mjs/Action.d.ts +15 -15
  5. package/dist/mjs/Action.js +11 -4
  6. package/dist/mjs/Action.js.map +1 -1
  7. package/dist/mjs/constants.js.map +1 -1
  8. package/dist/mjs/helpers.d.ts +4 -5
  9. package/dist/mjs/helpers.js +104 -30
  10. package/dist/mjs/helpers.js.map +1 -1
  11. package/dist/mjs/inputs.d.ts +3 -11
  12. package/dist/mjs/inputs.js +14 -14
  13. package/dist/mjs/inputs.js.map +1 -1
  14. package/dist/mjs/logtask/index.js +1 -1
  15. package/dist/mjs/logtask/index.js.map +1 -1
  16. package/dist/mjs/prettier.js +4 -3
  17. package/dist/mjs/prettier.js.map +1 -1
  18. package/dist/mjs/readme-editor.js.map +1 -1
  19. package/dist/mjs/readme-generator.d.ts +3 -3
  20. package/dist/mjs/readme-generator.js.map +1 -1
  21. package/dist/mjs/save.d.ts +2 -2
  22. package/dist/mjs/save.js.map +1 -1
  23. package/dist/mjs/sections/index.d.ts +1 -1
  24. package/dist/mjs/sections/index.js +8 -8
  25. package/dist/mjs/sections/index.js.map +1 -1
  26. package/dist/mjs/sections/update-badges.d.ts +1 -1
  27. package/dist/mjs/sections/update-badges.js.map +1 -1
  28. package/dist/mjs/sections/update-branding.d.ts +1 -1
  29. package/dist/mjs/sections/update-branding.js.map +1 -1
  30. package/dist/mjs/sections/update-contents.d.ts +1 -1
  31. package/dist/mjs/sections/update-contents.js.map +1 -1
  32. package/dist/mjs/sections/update-description.d.ts +1 -1
  33. package/dist/mjs/sections/update-description.js.map +1 -1
  34. package/dist/mjs/sections/update-inputs.d.ts +1 -1
  35. package/dist/mjs/sections/update-inputs.js.map +1 -1
  36. package/dist/mjs/sections/update-outputs.d.ts +1 -1
  37. package/dist/mjs/sections/update-outputs.js.map +1 -1
  38. package/dist/mjs/sections/update-title.d.ts +1 -1
  39. package/dist/mjs/sections/update-title.js.map +1 -1
  40. package/dist/mjs/sections/update-usage.d.ts +1 -1
  41. package/dist/mjs/sections/update-usage.js.map +1 -1
  42. package/dist/mjs/svg-editor.d.mts +2 -2
  43. package/dist/mjs/svg-editor.mjs +3 -3
  44. package/dist/mjs/svg-editor.mjs.map +1 -1
  45. package/dist/types/index.d.ts +109 -129
  46. package/package.json +17 -37
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ ## [1.9.3](https://github.com/bitflight-devops/github-action-readme-generator/compare/v1.9.2...v1.9.3) (2026-02-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * auto-detect owner/repo/version from target repo directory ([c3099a5](https://github.com/bitflight-devops/github-action-readme-generator/commit/c3099a59fb75f14d2444a4978ff31383587cf9bd))
7
+ * detect version from target repo releases/tags ([f20021d](https://github.com/bitflight-devops/github-action-readme-generator/commit/f20021dbb67ab40408e70b079958f0083dac2907))
8
+ * document project's actual rule enforcement, not Biome defaults ([8006731](https://github.com/bitflight-devops/github-action-readme-generator/commit/800673191577a64eb6ad39b6890910380745864e))
9
+ * enable strict Biome linting and fix all violations ([8506785](https://github.com/bitflight-devops/github-action-readme-generator/commit/85067859b45980fe350d2ae0b87e2e01c6e6195f))
10
+ * fail integration tests when validation checks fail ([42898b4](https://github.com/bitflight-devops/github-action-readme-generator/commit/42898b42a2720de38948107a89e6753b5b43d694))
11
+ * fetch tags when checking out test repositories ([c2c61c7](https://github.com/bitflight-devops/github-action-readme-generator/commit/c2c61c77481f29a3967c8bb892eb76ae563777e5))
12
+ * handle .git URLs without suffix in actions/checkout ([e694d09](https://github.com/bitflight-devops/github-action-readme-generator/commit/e694d091439416cb0c535fb38cf25abc096a5be9))
13
+ * pass owner/repo to integration tests ([4e4c3fd](https://github.com/bitflight-devops/github-action-readme-generator/commit/4e4c3fdf998dc794ec8f2d67ceb23acb7febbdd5))
14
+ * prioritize .git/config from target directory over GITHUB_REPOSITORY ([ac2e10e](https://github.com/bitflight-devops/github-action-readme-generator/commit/ac2e10ef62dff20992d146092cb65d94f6bb1c1a))
15
+ * prioritize git tags for version detection (GitHub Actions standard) ([e5c9434](https://github.com/bitflight-devops/github-action-readme-generator/commit/e5c943446c445568a085fa6f673dc4f7c5b61f94))
16
+ * replace forEach exception with proper for...of entries() pattern ([6f5873c](https://github.com/bitflight-devops/github-action-readme-generator/commit/6f5873c44d4a345c712d906155d047d414c2325f))
17
+ * show full diff in integration test output ([acee396](https://github.com/bitflight-devops/github-action-readme-generator/commit/acee39619dc8f1a208aed80ad2d72320d5d8940a))
18
+
19
+ ## [1.9.2](https://github.com/bitflight-devops/github-action-readme-generator/compare/v1.9.1...v1.9.2) (2026-02-01)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * synchronize package.json with package-lock.json for vitest dependencies ([edee36d](https://github.com/bitflight-devops/github-action-readme-generator/commit/edee36d525b509753eff775e4b3f1176ee4600d7))
25
+ * update vitest to 4.0.18 to match package-lock.json ([41657b5](https://github.com/bitflight-devops/github-action-readme-generator/commit/41657b5db31979479d2df1c599a885ed7708dbb5))
26
+
1
27
  ## [1.9.1](https://github.com/bitflight-devops/github-action-readme-generator/compare/v1.9.0...v1.9.1) (2026-01-28)
2
28
 
3
29
 
package/README.md CHANGED
@@ -177,7 +177,7 @@ This configuration will automatically regenerate your README whenever `action.ym
177
177
  <!-- start usage -->
178
178
 
179
179
  ```yaml
180
- - uses: bitflight-devops/github-action-readme-generator@v1.9.0
180
+ - uses: bitflight-devops/github-action-readme-generator@v1
181
181
  with:
182
182
  # Description: The absolute or relative path to the `action.yml` file to read in
183
183
  # from.