nucleuscloud / neosync

Open source data anonymization and synthetic data orchestration for developers. Create high fidelity synthetic data and sync it across your environments.
https://www.neosync.dev
MIT License
2.93k stars 102 forks source link

Bump the npm-development group across 1 directory with 7 updates #2305

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the npm-development group with 7 updates in the /frontend directory:

Package From To
knip 5.23.3 5.26.0
prettier 3.3.2 3.3.3
turbo 2.0.6 2.0.7
@types/node 20.14.9 20.14.11
eslint-config-next 14.2.4 14.2.5
tailwindcss 3.4.4 3.4.6
tsup 8.1.0 8.1.2

Updates knip from 5.23.3 to 5.26.0

Release notes

Sourced from knip's releases.

Release 5.26.0

  • Regenerate lockfile (3a7fcc9a)
  • (plugin/GraphQL Codegen): Support full name for plugin and preset (#730) (1562b3d4)
  • Support subpath import with arbitrary extensions (#723) (c35bad7a)
  • Update issue templates + issue reproduction doc (d4121d98)

Release 5.25.2

  • Include additional workspaces when loading manifests (resolves #722) (ca03fd83)
  • Move & refactor setRefs → findInternalReferences (deeb2acc)
  • Minor refactors (09fc5363)
  • Always pre-set moduleResolution: bundler if tsconfig.json (3c131184)
  • No need to publish twice here (34be850f)
  • Minor refactors (c1db1ec2)
  • Update docs re. shared/isolated workspaces (699fd28b)
  • Set moduleResolution: bundler if not set and don't share it (resolves #719) (2c246784)
  • fix: Use parseFragment instead of text node which breaks formatting (#720) (3201c076)

Release 5.25.1

  • Publish vendor dir (fdac7ba8)

Release 5.25.0

  • Update dependencies docs (b42c85b4)
  • Sync @​nodelib/fs.walk version w/ fast-glob (e77ce774)
  • Vendor bash-parser (78e7b28d)
  • Add pkg.pr.new workflow (2679f202)

Release 5.25.0-slim.0

  • Sync @​nodelib/fs.walk version w/ fast-glob (3c2ce764)
  • Vendor bash-parser (ae7a4aa2)
  • Add pkg.pr.new workflow (fd3d374b)
  • Add wonderful tweets (bb333ede)

Release 5.24.4

  • Start using central resolveEntry from plugin helpers (#716) (65d80981)

Release 5.24.3

  • Improve Angular plugin a bit + add fixture/test (#717) (641b5fcf)
  • Fix Cannot read properties of undefined (reading 'name') (#718) (f0f9f5ab)

Release 5.24.2

  • Fix entry patterns in jest plugin (resolves #716) (1cd4bd84)
  • Support multiple --loaders etc. for NODE_OPTIONS prefix (resolves #715) (66f48c0f)
  • Update pnpm/action-setup to v4 (9754973e)
  • Add missing rule keys to JSON Schema (#713) (1f61f776)
  • Add note to rules re. dependencies warning (#713) (71e89a28)
  • Update styling (3d03cdef)
  • Add wonderful tweets (bb333ede)

Release 5.24.1

  • Fix up rules in issue collector and reporter (resolves #713) (77752130)

... (truncated)

Commits
  • d7285c1 Release 5.26.0
  • 1562b3d (plugin/GraphQL Codegen): Support full name for plugin and preset (#730)
  • c35bad7 Support subpath import with arbitrary extensions (#723)
  • 349a497 Release 5.25.2
  • ca03fd8 Include additional workspaces when loading manifests (resolves #722)
  • deeb2ac Move & refactor setRefs → findInternalReferences
  • 09fc536 Minor refactors
  • 3c13118 Always pre-set moduleResolution: bundler if tsconfig.json
  • c1db1ec Minor refactors
  • 2c24678 Set moduleResolution: bundler if not set and don't share it (resolves #719)
  • Additional commits viewable in compare view


Updates prettier from 3.3.2 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​footagged template
class X {}

// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits


Updates turbo from 2.0.6 to 2.0.7

Release notes

Sourced from turbo's releases.

Turborepo v2.0.7

What's Changed

Examples

Changelog

New Contributors

Full Changelog: https://github.com/vercel/turbo/compare/v2.0.6...v2.0.7

Turborepo v2.0.7-canary.1

What's Changed

Examples

Changelog

... (truncated)

Commits


Updates @types/node from 20.14.9 to 20.14.11

Commits


Updates eslint-config-next from 14.2.4 to 14.2.5

Release notes

Sourced from eslint-config-next's releases.

v14.2.5

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • avoid merging global css in a way that leaks into other chunk groups (#67373)
  • Fix server action edge redirect with middleware rewrite (#67148)
  • fix(next): reject protocol-relative URLs in image optimization (#65752)
  • fix(next-swc): correct path interop to filepath for wasm (#65633)
  • Use addDependency to track metadata route file changes (#66714)
  • Fix noindex is missing on static not-found page (#67135)
  • perf: improve retrieving versionInfo on Turbo HMR (#67309)
  • fix(next/image): handle invalid url (#67465)
  • fix(next): initial prefetch cache not set properly with different search params (#65977)
  • fix: Backport class properties fix (#67377)
  • Upgrade acorn (#67592)

Misc

  • Log stdio for pull-turbo-cache script (#66759)
  • Ensure turbo is setup when building in docker (#66804)

Credits

Huge thanks to @​devjiwonchoi, @​ijjk, @​emmerich, @​huozhi, @​kdy1, @​kwonoj, @​styfle, and @​sokra for helping!

Commits


Updates tailwindcss from 3.4.4 to 3.4.6

Release notes

Sourced from tailwindcss's releases.

v3.4.6

Fixed

  • Fix detection of some utilities in Slim/Pug templates (#14006)

Changed

  • Loosen :is() wrapping rules when using an important selector (#13900)

v3.4.5

Fixed

  • Disable automatic var() injection for anchor properties (#13826)
  • Use no value instead of blur(0px) for backdrop-blur-none and blur-none utilities (#13830)
  • Add .mts and .cts config file detection (#13940)
  • Don't generate utilities like px-1 unnecessarily when using utilities like px-1.5 (#13959)
  • Always generate -webkit-backdrop-filter for backdrop-* utilities (#13997)
Changelog

Sourced from tailwindcss's changelog.

[3.4.6] - 2024-07-16

Fixed

  • Fix detection of some utilities in Slim/Pug templates (#14006)

Changed

  • Loosen :is() wrapping rules when using an important selector (#13900)

[3.4.5] - 2024-07-15

Fixed

  • Disable automatic var() injection for anchor properties (#13826)
  • Use no value instead of blur(0px) for backdrop-blur-none and blur-none utilities (#13830)
  • Add .mts and .cts config file detection (#13940)
  • Don't generate utilities like px-1 unnecessarily when using utilities like px-1.5 (#13959)
  • Always generate -webkit-backdrop-filter for backdrop-* utilities (#13997)
Commits


Updates tsup from 8.1.0 to 8.1.2

Release notes

Sourced from tsup's releases.

v8.1.2

8.1.2 (2024-07-17)

Bug Fixes

v8.1.1

8.1.1 (2024-07-16)

  • Upgrade bunch of dependencies.
Commits
  • 6ca0cb0 fix: correct sourcemap with treeshake (#1069)
  • 43cf9f6 fix: only import type statement
  • 26e1bb7 chore: prefer property shorthand [skip ci] (#1144)
  • 46a1f9d refactor: move consola to production dep
  • 5d199b0 refactor: upgrade major deps
  • f2408ed chore: update lockfile
  • 93033a1 refactor: upgrade bundle-require to v5
  • 57654f6 chore: remove unused dep
  • 648d016 test: upgrade all deps
  • 3002711 refactor: upgrade esbuild to v0.23
  • Additional commits viewable in compare view


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
vercel[bot] commented 1 month ago

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](https://vercel.com/neosync/neosync-docs/HCbdyPVwSoe4W6gZMUwdg3W8CvJq)) | [Visit Preview](https://neosync-docs-git-dependabot-npmandyarnfrontendnp-50be3f-neosync.vercel.app) | | Jul 17, 2024 6:19pm |