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 3 updates #2299

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the npm-development group with 3 updates in the /docs directory: cspell, knip and prettier.

Updates cspell from 8.10.0 to 8.11.0

Release notes

Sourced from cspell's releases.

v8.11.0

Changes

Features

feat: speed up dictionary lookup (#5898)


Fixes

refactor: char index (#5926)

  • add test
  • add perf tests
  • minor clean up.

fix: support emojis in triev3 files (#5923)


fix: Use UTF8 sequence to store characters in the TrieBlob (#5913)

The TrieBlob (binary version of a Trie) was using a character index and storing the offset into the character index in each trie node.

Using utf8 bytes instead make the format easier to understand and process. It also gets the added benefit of being sorted. Sorting was lost when the index was used.


... (truncated)

Changelog

Sourced from cspell's changelog.

8.11.0 (2024-07-16)

8.10.4 (2024-07-05)

8.10.2 (2024-07-05)

8.10.1 (2024-07-05)

Commits


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


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 ↗︎

Name Status Preview Comments Updated (UTC)
neosync-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 17, 2024 1:46pm