github-community-projects / org-metrics-dashboard

An actions-powered dashboard to get an overview of your organization's open source repository health
https://github-community-projects.github.io/org-metrics-dashboard/
MIT License
56 stars 17 forks source link

chore(deps): bump the dependencies group across 1 directory with 24 updates #151

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the dependencies group with 23 updates in the / directory:

Package From To
@dotenvx/dotenvx 0.26.0 0.44.1
prettier 3.2.5 3.3.1
yaml 2.4.1 2.4.5
@primer/react 36.12.0 36.20.0
@tailwindcss/typography 0.5.10 0.5.13
marked 12.0.1 12.0.2
react 18.2.0 18.3.1
@types/react 18.2.67 18.3.3
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.22 18.3.0
tailwindcss 3.4.1 3.4.4
typescript 5.4.3 5.4.5
usehooks-ts 3.0.1 3.1.0
@types/node 20.11.30 20.14.2
@typescript-eslint/eslint-plugin 7.3.1 7.13.0
eslint-plugin-react 7.34.1 7.34.2
glob 10.3.10 10.4.1
@octokit/rest 20.0.2 20.1.1
bumpp 9.4.0 9.4.1
lint-staged 15.2.2 15.2.5
rimraf 5.0.5 5.0.7
vite 5.2.2 5.2.13
vitest 1.4.0 1.6.0

Updates @dotenvx/dotenvx from 0.26.0 to 0.44.1

Release notes

Sourced from @​dotenvx/dotenvx's releases.

v0.44.1

see CHANGELOG

v0.44.0

see CHANGELOG

v0.43.2

see CHANGELOG

v0.43.1

see CHANGELOG

v0.43.0

see CHANGELOG

v0.42.0

see CHANGELOG

v0.41.0

see CHANGELOG

v0.40.0

see CHANGELOG

v0.39.0

see CHANGELOG

v0.38.0

see CHANGELOG

v0.37.1

see CHANGELOG

v0.37.0

see CHANGELOG

v0.36.1

see CHANGELOG

v0.36.0

see CHANGELOG

v0.35.1

see CHANGELOG

v0.35.0

see CHANGELOG

v0.34.0

see CHANGELOG

... (truncated)

Changelog

Sourced from @​dotenvx/dotenvx's changelog.

0.44.1

Changed

  • Respect decryption of zero length strings - dotenvx set HELLO '' --encrypt (#236)

0.44.0

Added

  • Added options.debug, options.verbose, options.quiet, and options.logLevel to .config() (#233)

0.43.2

Changed

  • Patch replace when replacing double, single, or backticked quoted at anywhere in the .env file. (#232)

0.43.1

Changed

  • Improved replace function regex - to handle more edge case scenarios with replacing KEY/values (#227)

0.43.0

Added

  • Support require('@dotenvx/dotenvx').config() for DOTENV_PRIVATE_KEY decryption (#225)

0.42.0

Added

  • Added .env.vault deprecated warning when using DOTENV_KEY. Provide instructions to convert to encrypted .env files. (#224)

0.41.0

Added

  • Added vault convert command to list convert instructions for converting .env.vault to encrypted .env files (#222)
To convert your .env.vault file to encrypted .env file(s):
  1. Run [dotenvx vault decrypt]
  2. Run [ls -a .env*]

Lastly, convert each .env(.environment) file:

</tr></table>

... (truncated)

Commits
  • 94eabe4 0.44.1
  • 355b532 Merge pull request #236 from dotenvx/zero-length
  • 6cc0245 add current version to README
  • b4ea960 changelog 🪵
  • be97ffe respect zero-length strings
  • 3554cad 0.44.0
  • 7812984 changelog 🪵
  • d30c38c Merge pull request #233 from EKarpinsky/feature/enable-quiet-mode-in-config-f...
  • 25a2d1c Refactor setLogLevel for readability, update tests
  • 8464dec Add condition check before setting log level
  • Additional commits viewable in compare view


Updates prettier from 3.2.5 to 3.3.1

Release notes

Sourced from prettier's releases.

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.3.1

diff

Preserve empty lines in front matter (#16347 by @​fisker)

<!-- Input -->
---
foo:
  - bar1
  • bar2

  • bar3


Markdown

<!-- Prettier 3.3.0 -->


foo:

  • bar1
  • bar2
  • bar3

Markdown

<!-- Prettier 3.3.1 -->

foo:

  • bar1

  • bar2

  • bar3


Markdown

Preserve explicit language in front matter (#16348 by @​fisker)

<!-- Input -->
---yaml
</tr></table> 

... (truncated)

Commits


Updates yaml from 2.4.1 to 2.4.5

Release notes

Sourced from yaml's releases.

v2.4.5

  • Improve tab handling (#553, yaml-test-suite tests DK95 & Y79Y)

v2.4.4

With special thanks to @​RedCMD for finding and reporting all of the following:

  • Allow comment after top-level block scalar with explicit indent indicator (#547)
  • Allow tab as indent for line comments before nodes (#548)
  • Do not allow tab before block collection (#549)
  • In flow collections, allow []{} immediately after : with plain key (#550)
  • Require indentation for ? explicit-key contents (#551)
  • Require indentation from block scalar header & flow collections in mapping values (#553)

v2.4.3

  • Improve error when parsing a non-string value (#459)
  • Do not parse -.NaN or +.nan as NaN (#546)
  • Support # within %TAG prefixes with trailing #comments
  • Check for non-node complex keys when stringifying with simpleKeys (#541)

v2.4.2

  • Restrict YAML 1.1 boolean strings to their explicit capitalization (#530)
  • Add sponsorship by Scipress (#536)
Commits
  • 1b8fde6 2.4.5
  • f3c7d03 test: Obey yaml-test-suite skip instructions
  • 4e66d72 fix: Improve tab handling (tests DK95 & Y79Y, #553)
  • d06f386 2.4.4
  • 39053e8 chore: Satisfy strict TS
  • 8baee44 test: Use source files for yaml-test-suite tests
  • 280a861 fix: Allow comment after top-level block scalar with explicit indent indicato...
  • 767bc47 fix: Require indentation from block scalar header & flow collections in mappi...
  • 5096f83 fix: Require indentation for ? explicit-key contents (fixes #551)
  • 22f2c6f fix: In flow collections, allow []{} immediately after : with plain key (fixe...
  • Additional commits viewable in compare view


Updates @primer/react from 36.12.0 to 36.20.0

Release notes

Sourced from @​primer/react's releases.

@​primer/react@​36.20.0

Permalink to documentation

Minor Changes

@​primer/react@​36.19.1

Permalink to documentation

Patch Changes

@​primer/react@​36.19.0

Permalink to documentation

Minor Changes

Patch Changes

@​primer/react@​36.18.0

Permalink to documentation

Minor Changes

... (truncated)

Commits
  • afe8d7a Release tracking (#4632)
  • c5166cd docs: add example with NavList.Group (#4629)
  • e34e4b2 PageHeader: Address dom order issues (screen reader experience feedback from ...
  • b1fef5c Remove release event tracking branch check (#4631)
  • 42ba5dc TreeView: Add custom aria label to TreeView.Item (#4617)
  • 2b22017 Work on implementing code connect to allow for realistic code preview in figm...
  • dde7cef chore(deps-dev): bump eslint-plugin-ssr-friendly from 1.2.0 to 1.3.0 (#4625)
  • 4ac81ea Version Packages (#4616)
  • 4c4e98a docs(Banner): add story for dismissing banner (#4619)
  • e47445d Allows asterisk in FormControl.Label to be adjustable (#4543)
  • Additional commits viewable in compare view


Updates @tailwindcss/typography from 0.5.10 to 0.5.13

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.13

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)

v0.5.12

Added

  • Use logical properties for better RTL support (#323)

v0.5.11

Added

  • Add prose-kbd modifier (#340)

Fixed

  • Fix space between <figcaption> and <video> (#339)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.13] - 2024-04-26

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)

[0.5.12] - 2024-03-27

Added

  • Use logical properties for better RTL support (#323)

[0.5.11] - 2024-03-26

Added

  • Add prose-kbd modifier (#340)

Fixed

  • Fix space between <figcaption> and <video> (#339)
Commits


Updates marked from 12.0.1 to 12.0.2

Release notes

Sourced from marked's releases.

v12.0.2

12.0.2 (2024-04-19)

Bug Fixes

Commits
  • c6a98ea chore(release): 12.0.2 [skip ci]
  • e9f0eed fix: fix Setext continuation in blockquote (#3257)
  • a90223b chore(deps-dev): Bump @​typescript-eslint/eslint-plugin from 7.4.0 to 7.6.0 (#...
  • 7757f96 chore(deps-dev): Bump typescript from 5.4.4 to 5.4.5 (#3261)
  • 609b65c chore(deps-dev): Bump @​arethetypeswrong/cli from 0.15.2 to 0.15.3 (#3258)
  • dfa835e chore(deps-dev): Bump rollup from 4.14.1 to 4.14.3 (#3259)
  • f0fb744 chore(deps-dev): Bump semantic-release from 23.0.6 to 23.0.7 (#3255)
  • 924130d chore(deps-dev): Bump @​semantic-release/github from 10.0.2 to 10.0.3 (#3254)
  • 8cdb7ca chore(deps-dev): Bump rollup from 4.13.2 to 4.14.1 (#3253)
  • 1cc9eb2 chore(deps-dev): Bump typescript from 5.4.3 to 5.4.4 (#3252)
  • Additional commits viewable in compare view


Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.2.67 to 18.3.3

Commits


Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
  • d6c42f7 Bump to 18.3.1
  • 8a015b6 Add deprecation warning for unmountComponentAtNode
  • c3b2839 Add deprecation warning for findDOMNode
  • d4ea75d ReactDOMTestUtils deprecation warnings
  • 7548c01 Deprecate renderToStaticNodeStream (#28872) (#28874)
  • 5894232 Enable warning for defaultProps on function components for everyone (#25699)
  • c2a246e Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)
  • 2cfb474 Bump version from 18.2 to 18.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.


Updates @types/react-dom from 18.2.22 to 18.3.0

Commits


Updates tailwindcss from 3.4.1 to 3.4.4

Release notes

Sourced from tailwindcss's releases.

v3.4.4

Fixed

  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#13770)
  • Support negative values for {col,row}-{start,end} utilities (#13781)
  • Update embedded browserslist database (#13792)

v3.4.3

Fixed

  • Revert changes to glob handling (#13384)

v3.4.2

Fixed

  • Ensure max specificity of 0,0,1 for button and input Preflight rules (#12735)
  • Improve glob handling for folders with (, ), [ or ] in the file path (#12715)
  • Split :has rules when using experimental.optimizeUniversalDefaults (#12736)
  • Sort arbitrary properties alphabetically across multiple class lists (#12911)
  • Add mix-blend-plus-darker utility (#12923)
  • Ensure dashes are allowed in variant modifiers (#13303)
  • Fix crash showing completions in Intellisense when using a custom separator (#13306)
  • Transpile import.meta.url in config files (#13322)
  • Reset letter spacing for form elements (#13150)
  • Fix missing xx-large and remove double x-large absolute size (#13324)
  • Don't error when encountering nested CSS unless trying to @apply a class that uses nesting (#13325)
  • Ensure that arbitrary properties respect important configuration (#13353)
  • Change dark mode selector so @apply works correctly with pseudo elements (#13379)
Changelog

Sourced from tailwindcss's changelog.

[3.4.4] - 2024-06-05

Fixed

  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#13770)
  • Support negative values for {col,row}-{start,end} utilities (#13781)
  • Update embedded browserslist database (#13792)

[3.4.3] - 2024-03-27

Fixed

  • Revert changes to glob handling (#13384)

[3.4.2] - 2024-03-27

Fixed

  • Ensure max specificity of 0,0,1 for button and input Preflight rules (#12735)
  • Improve glob handling for folders with (, ), [ or ] in the file path (#12715)
  • Split :has rules when using experimental.optimizeUniversalDefaults (#12736)
  • Sort arbitrary properties alphabetically across multiple class lists (#12911)
  • Add mix-blend-plus-darker utility (#12923)
  • Ensure dashes are allowed in variant modifiers (#13303)
  • Fix crash showing completions in Intellisense when using a custom separator (#13306)
  • Transpile import.meta.url in config files (#13322)
  • Reset letter spacing for form elements (#13150)
  • Fix missing xx-large and remove double x-large absolute size (#13324)
  • Don't error when encountering nested CSS unless trying to @apply a class that uses nesting (#13325)
  • Ensure that arbitrary properties respect important configuration (#13353)
  • Change dark mode selector so @apply works correctly with pseudo elements (#13379)
Commits


Updates typescript from 5.4.3 to 5.4.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • 8eb3367 Bump version to 5.4.4 and LKG
  • de9096b 🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...
  • 06aae98 🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...
  • 6d8134e 🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...
  • Additional commits viewable in compare view


Updates usehooks-ts from 3.0.1 to 3.1.0

Release notes

Sourced from usehooks-ts's releases.

usehooks-ts@3.1.0

Minor Changes

Patch Changes

usehooks-ts@3.0.2

Patch Changes

  • b14db5b: Add support for focus event to useOnClickOutside (Fixes: #522)
  • 59c0b93: Add SVG element support to useEventListener (#546 by @​LumaKernel)
  • b14db5b: Expose AddEventListenerOptions in useOnClickOutside (Fixes #554 from @​metav-drimz)
  • b14db5b: Support missing refs in useOnClickOutside (Fixes: #531)
  • 09341a3: feat(useEventCallback): allow optional callback (#550 by @​Newbie012)
Commits
dependabot[bot] commented 3 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.