Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the npm-development group in /frontend with 4 updates #3189

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 27, 2025

Bumps the npm-development group in /frontend with 4 updates: knip, turbo, postcss and tsup.

Updates knip from 5.42.0 to 5.43.5

Release notes

Sourced from knip's releases.

Release 5.43.5

  • Allow nsTypes to always consider all enums (the actual fix for #927) (881de38e24f95508e198db8369df14e4b4136147)

Release 5.43.4

  • Add missing test & widen scope for implicit enumerations (resolves #927) (d02db682d83890c65c6332c0dc7a8f763f5e818a)

Release 5.43.3

  • Improve enum/member handling (fc5982e9a90edb5f966391069a19b778d37dfe0e)
  • More concise naming (f93a410f1319fd49661cafd73ddec8d10b546b6f)
  • feat(jest): add mocks to entry files (#925) (895434b8ce3adf02b11b3fe3835d658ade05f348) - thanks @​TkDodo!
  • Move mock (0259b8752b6f8c6b2bd780270b09e63ff227a10d)

Release 5.43.2

  • Add a bit of error handling for failed contributors fetch (b70958a58ea255ee7a7831e404786da807ca93d7)
  • Always use production entries by default in expo plugin (resolves #918) (9b8cb699dfbfe7bb9422ac2834dd229ebb93eb06)
  • knipignore → lintignore (47460d28c8723dfca4f85fb81be3037c2c52c8f1)
  • Fix scoping of namespace import refs (c8ce64d71dc841745cef6d059f43841d0f2d2419)
  • Bun started exposing serialize and deserialize directly from node:v8 (cbfc56e98bdab15d708c16413dcff4ecf2916e8d)
  • Update docs (b7b627398930b9aaf64e1a1bf56f6aea0ff9f35d)
  • Update dependencies (9b4f695c6c1b8ed9cc4b503e51888f40e1fc1a88)

Release 5.43.1

  • Add ignoreUnresolved to json schema (ec1cca705d0dbae53927938ae3d09cb1b5d1da1b)
  • Update docs (d1f05c1e2df592cbee7b40b76f6657d8c07d43cb)

Release 5.43.0

  • Add ignoreUnresolved feature (resolves #920) (081a776adc106221b0e7c0a0c14bcb594e7f651d)
  • Edit metro plugin doc (a418b57eda0fb31cf54f8d148da2ecbd4294988d)

Release 5.42.3

  • Do not crash when running npm init @​knip/config on a repository not using git (#916) (10575b8afbc0d6cc7a1442d9c28d6fa144b656ea) - thanks @​guillaumebrunerie!
  • feat: add support for storybook framework option as a string (#923) (030ac406877d3c61005eee4f0067b555942c9a2f) - thanks @​filipw01!
  • Fix vitest reporters with options (#922) (02a300c1f01dc9d1dc1c312404e25d88c97a125f) - thanks @​dakro!
  • Improve containingFilePath for inputs + debug output for failed script parser (8ccee8178e1087791b563a47018e220db386ed9e)

Release 5.42.2

  • Accept function that returns config in expo plugin (96b67835ebc07abea5c899154978b6f09ca39bff)
  • Improve pm binary/package handling (4b78b614d8dace82c6c8c168c7909f4f4f025f7b)
  • Make github-action inputs optional in production mode (resolves #914) (c510a3500e946153db798d912d8d9c8dc399bb0d)
  • Minor housekeeping (4011b233dcef91ea8c48e971c018bbc16141cef4)
  • Track Angular polyfills (#913) (e5688024e618ad066a85ef995c8a2f292fe3c43d) - thanks @​davidlj95!

Release 5.42.1

  • Exclude semantic-release packages (resolves #899) (a28cc021)* Edit docs + gen (d850cbeb)
  • Improve reported line sorting (7ff0b70b)
  • Rename tests touching fs for easier exclusion (be5ba912)
  • Add test:watch script to watch only failing test (86b2123f)
  • Add default formatter for jsx (4a212ad9)
  • Avoid overwrites in issue collector storage key (0530465c)
  • Rename file to match test/fixture consistency (959b64cf)

... (truncated)

Commits

Updates turbo from 2.3.3 to 2.3.4

Release notes

Sourced from turbo's releases.

Turborepo v2.3.4

What's Changed

Docs

create-turbo

@​turbo/codemod

eslint

@​turbo/repository

Examples

... (truncated)

Commits
  • c24d99d publish 2.3.4 to registry
  • 8f87dea chore: dependabot.yml weekly, not daily (#9775)
  • f577739 fix(watch): correctly derive opts from watch mode args (#9761)
  • a3c3cad chore(deps): bump the non-monorepo group across 1 directory with 8 updates (#...
  • 41e965f ci: remove dependabot automation that doesn't work (#9763)
  • 44c9d56 chore(deps): bump the with-tailwind group across 1 directory with 14 updates ...
  • 31ddee8 chore(packages): update picocolors import (#9753)
  • 94febba docs: update CONTRIBUTING.md (#9759)
  • 7828e2c feat: boundaries (#9634)
  • 8a09c59 chore(deps-dev): bump turbo from 2.0.3 to 2.3.3 in /examples/with-shell-comma...
  • Additional commits viewable in compare view

Updates postcss from 8.4.49 to 8.5.1

Release notes

Sourced from postcss's releases.

8.5.1

8.5 “Duke Alloces”

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

Changelog

Sourced from postcss's changelog.

8.5.1

8.5 “Duke Alloces”

  • Added Input#document for sources like CSS-in-JS or HTML (by @​romainmenke).
Commits

Updates tsup from 8.3.5 to 8.3.6

Release notes

Sourced from tsup's releases.

v8.3.6

   🐞 Bug Fixes

    View changes on GitHub
Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-development group in /frontend with 4 updates: [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip), [turbo](https://github.com/vercel/turborepo), [postcss](https://github.com/postcss/postcss) and [tsup](https://github.com/egoist/tsup).


Updates `knip` from 5.42.0 to 5.43.5
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json)
- [Commits](https://github.com/webpro-nl/knip/commits/5.43.5/packages/knip)

Updates `turbo` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.3.3...v2.3.4)

Updates `postcss` from 8.4.49 to 8.5.1
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.49...8.5.1)

Updates `tsup` from 8.3.5 to 8.3.6
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.3.5...v8.3.6)

---
updated-dependencies:
- dependency-name: knip
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: turbo
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 27, 2025
@dependabot dependabot bot requested a review from nickzelei January 27, 2025 17:26
Copy link

vercel bot commented Jan 27, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
neosync-docs ⬜️ Ignored (Inspect) Visit Preview Jan 27, 2025 5:26pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants