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-production group across 1 directory with 7 updates #2285

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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

Package From To
@hookform/resolvers 3.7.0 3.9.0
@tanstack/react-query 5.49.2 5.51.1
@tanstack/react-table 8.19.2 8.19.3
@tanstack/react-virtual 3.8.1 3.8.3
next 14.2.4 14.2.5
posthog-js 1.143.0 1.147.0
tailwind-merge 2.3.0 2.4.0

Updates @hookform/resolvers from 3.7.0 to 3.9.0

Release notes

Sourced from @​hookform/resolvers's releases.

v3.9.0

3.9.0 (2024-07-05)

Features

  • fluentvalidation-ts: add fluentvalidation-ts resolver (#702) (5fc1e63)
import { useForm } from 'react-hook-form';
import { fluentValidationResolver } from '@hookform/resolvers/fluentvalidation-ts';
import { Validator } from 'fluentvalidation-ts';

class FormDataValidator extends Validator<FormData> {
constructor() {
super();

this.ruleFor('username')
  .notEmpty()
  .withMessage('username is a required field');
this.ruleFor('password')
  .notEmpty()
  .withMessage('password is a required field');

}
}

const App = () => {
const { register, handleSubmit } = useForm({
resolver: fluentValidationResolver(new FormDataValidator()),
});

return (
<form onSubmit={handleSubmit((d) => console.log(d))}>
<input {...register('username')} />
{errors.username && <span role="alert">{errors.username.message}</span>}
<input {...register('password')} />
{errors.password && <span role="alert">{errors.password.message}</span>}
<button type="submit">submit</button>
</form>
);
};

v3.8.0

3.8.0 (2024-07-05)

... (truncated)

Commits


Updates @tanstack/react-query from 5.49.2 to 5.51.1

Release notes

Sourced from @​tanstack/react-query's releases.

v5.51.1

Version 5.51.1 - 7/11/24, 4:56 AM (Manual Release)

Changes

Ci

  • enable npm provenance (#7716) (c6d68d8) by Lachlan Collins
  • Improve Nx inputs (#7702) (362f8e6) by Lachlan Collins

Docs

  • examples: Modernise Next.js examples (#7706) (b58da75) by Lachlan Collins
  • eslint-plugin-query: Fix rules links (#7705) (8d0ba7e) by twiddler
  • examples: Modernise React examples (#7704) (7fc9472) by Lachlan Collins
  • add Query Rewind to vue community projects (#7688) (14d9c49) by John Dunn

Packages

  • @​tanstack/eslint-plugin-query@​5.51.1
  • @​tanstack/query-async-storage-persister@​5.51.1
  • @​tanstack/query-broadcast-client-experimental@​5.51.1
  • @​tanstack/query-core@​5.51.1
  • @​tanstack/query-devtools@​5.51.1
  • @​tanstack/query-persist-client-core@​5.51.1
  • @​tanstack/query-sync-storage-persister@​5.51.1
  • @​tanstack/react-query@​5.51.1
  • @​tanstack/react-query-devtools@​5.51.1
  • @​tanstack/react-query-persist-client@​5.51.1
  • @​tanstack/react-query-next-experimental@​5.51.1
  • @​tanstack/solid-query@​5.51.1
  • @​tanstack/solid-query-devtools@​5.51.1
  • @​tanstack/solid-query-persist-client@​5.51.1
  • @​tanstack/svelte-query@​5.51.1
  • @​tanstack/svelte-query-devtools@​5.51.1
  • @​tanstack/svelte-query-persist-client@​5.51.1
  • @​tanstack/vue-query@​5.51.1
  • @​tanstack/vue-query-devtools@​5.51.1
  • @​tanstack/angular-query-devtools-experimental@​5.51.1
  • @​tanstack/angular-query-experimental@​5.51.1

v5.51.0

Version 5.51.0 - 7/8/24, 8:05 AM

Changes

Feat

  • vue-query: add support for getters in query keys (#7608) (41009c9) by Suneet Tipirneni

... (truncated)

Commits


Updates @tanstack/react-table from 8.19.2 to 8.19.3

Release notes

Sourced from @​tanstack/react-table's releases.

v8.19.3

Version 8.19.3 - 7/14/24, 8:44 AM

Changes

Fix

  • table-core: assign unassign parentId in grouped row model (#5657) (a71ce10) by PiR

Ci

  • enable npm provenance (#5654) (0054eb3) by Lachlan Collins
  • Add pkg-pr-new previews (#5648) (241f26f) by Lachlan Collins

Docs

  • use @​tanstack/lit-virtual for the virtualized table example (#5655) (bb0a536) by @​kadoshms
  • Fix typo in docs/guide/data.md (#5642) (6a4a10d) by Joseph Markus
  • vue: vue filters example (#5644) (e749f31) by Radu Suciu
  • fix rowpinningstate (7548860) by Kevin Vandy

Packages

  • @​tanstack/table-core@​8.19.3
  • @​tanstack/angular-table@​8.19.3
  • @​tanstack/lit-table@​8.19.3
  • @​tanstack/qwik-table@​8.19.3
  • @​tanstack/react-table@​8.19.3
  • @​tanstack/solid-table@​8.19.3
  • @​tanstack/svelte-table@​8.19.3
  • @​tanstack/vue-table@​8.19.3
  • @​tanstack/react-table-devtools@​8.19.3
Commits


Updates @tanstack/react-virtual from 3.8.1 to 3.8.3

Release notes

Sourced from @​tanstack/react-virtual's releases.

v3.8.3

Version 3.8.3 - 7/11/24, 4:12 AM (Manual Release)

Changes

Chore

  • deps: update dependency sherif to ^0.10.0 (#758) (b572dcd) by renovate[bot]
  • deps: update dependency @​faker-js/faker to v8 (#756) (42c9234) by renovate[bot]

Ci

  • enable npm provenance (#759) (50ab53b) by Lachlan Collins
  • Improve Nx inputs (#757) (d403e19) by Lachlan Collins

Packages

  • @​tanstack/lit-virtual@​3.8.3
  • @​tanstack/react-virtual@​3.8.3
  • @​tanstack/solid-virtual@​3.8.3
  • @​tanstack/svelte-virtual@​3.8.3
  • @​tanstack/virtual-core@​3.8.3
  • @​tanstack/vue-virtual@​3.8.3

v3.8.2

Version 3.8.2 - 7/9/24, 5:40 AM (Manual Release)

Changes

Chore

  • deps: update dependency @​tanstack/config to ^0.9.2 (#755) (a4d2d41) by renovate[bot]
  • deps: update all non-major dependencies (#754) (1fe8a10) by renovate[bot]
  • deps: update all non-major dependencies (#753) (557791a) by renovate[bot]

Ci

  • renovate: Add ignorePresets (455c99b) by Lachlan Collins
  • Add PR previews with pkg-pr-new (#751) (9c3ee80) by Lachlan Collins
  • Optimise GitHub Actions workflow (#746) (36faca8) by Lachlan Collins

Docs

Packages

  • @​tanstack/lit-virtual@​3.8.2
  • @​tanstack/react-virtual@​3.8.2
  • @​tanstack/solid-virtual@​3.8.2

... (truncated)

Commits


Updates next from 14.2.4 to 14.2.5

Release notes

Sourced from 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 posthog-js from 1.143.0 to 1.147.0

Release notes

Sourced from posthog-js's releases.

1.147.0 - 2024-07-12

  • feat: add url_ignorelist for autocapture config (#1302)

1.146.3 - 2024-07-12

  • feat: add new google crawler (#1300)
  • chore: add a test (#1299)

1.146.2 - 2024-07-11

  • fix: warn when on xhr error used (#1298)

1.146.1 - 2024-07-11

  • fix: add web vitals to array full (#1297)
  • feat(Surveys): Activate surveys based on actions (#1295)
  • feat(Surveys): Add ActionMatcher to match CaptureResult to any known actions (#1294)

1.146.0 - 2024-07-10

  • feat: move heatmaps to their own event (#1287)

1.145.1 - 2024-07-10

  • fix: capture network recording type (#1296)
  • feat(surveys): added close button text customization feature (#1288)
  • chore: fix error tests listener registration (#1291)

1.145.0 - 2024-07-08

  • feat: send errors one way (#1289)
  • chore: missing changelog entry (#1290)

1.144.2 - 2024-07-05

  • fix(surveys): polishing the popup survey UI (#1279)
  • add rdt_cid as a campaign parameter (#1286)

1.144.1 - 2024-07-04

  • fix: only take scheduled full snapshots (#1285)

1.144.0 - 2024-07-03

  • feat: add payload host denylist (#1282)
Changelog

Sourced from posthog-js's changelog.

1.147.0 - 2024-07-12

  • feat: add url_ignorelist for autocapture config (#1302)

1.146.3 - 2024-07-12

  • feat: add new google crawler (#1300)
  • chore: add a test (#1299)

1.146.2 - 2024-07-11

  • fix: warn when on xhr error used (#1298)

1.146.1 - 2024-07-11

  • fix: add web vitals to array full (#1297)
  • feat(Surveys): Activate surveys based on actions (#1295)
  • feat(Surveys): Add ActionMatcher to match CaptureResult to any known actions (#1294)

1.146.0 - 2024-07-10

  • feat: move heatmaps to their own event (#1287)

1.145.1 - 2024-07-10

  • fix: capture network recording type (#1296)
  • feat(surveys): added close button text customization feature (#1288)
  • chore: fix error tests listener registration (#1291)

1.145.0 - 2024-07-08

  • feat: send errors one way (#1289)
  • chore: missing changelog entry (#1290)

1.144.2 - 2024-07-05

  • fix(surveys): polishing the popup survey UI (#1279)
  • add rdt_cid as a campaign parameter (#1286)

1.144.1 - 2024-07-04

  • fix: only take scheduled full snapshots (#1285)

1.144.0 - 2024-07-03

  • feat: add payload host denylist (#1282)
Commits


Updates tailwind-merge from 2.3.0 to 2.4.0

Release notes

Sourced from tailwind-merge's releases.

v2.4.0

New Features

  • Allow hooking into class parsing logic (experimental) by @​dcastil in dcastil/tailwind-merge#444
    • There is no info to this in the docs because this is experimental, but there is a new experimentalParseClassName property in the config that allows you to customize how tailwind-merge recognizes classes. If you're interested, you can read how to use it in the inline JSDocs and subscribe to dcastil/tailwind-merge#385 for upcoming more powerful low-level functionality.
  • Create security policy by @​dcastil in dcastil/tailwind-merge#439
    • Added documentation on how to report potential vulnerabilities
  • Avoid @babel/runtime dependency by @​dcastil in dcastil/tailwind-merge#431
    • Now no dependencies in tailwind-merge anymore. This dependency was only used in the tailwind-merge/es5 bundle anyway which I don't optimize for.

Documentation

Other

Full Changelog: https://github.com/dcastil/tailwind-merge/compare/v2.3.0...v2.4.0

Thanks to @​brandonmcconnell, @​manavm1990, @​langy, @​jamesreaco and @​microsoft for sponsoring tailwind-merge! ❤️

Commits
  • f745ace v2.4.0
  • 3847cc0 Merge pull request #444 from dcastil/feature/440/allow-hooking-into-class-par...
  • 9aa1c8e add tests for experimentalParseClassName
  • 6812bf7 fix outdated import path in class-map test
  • 922bfda fix experimentalParseClassName config property not being overriden in mergeCo...
  • f6c7b19 update versioning docs
  • 91eb1b6 add inline documentation for experimentalParseClassName
  • e28c73a add experimentalParseClassName feature to tailwind-merge
  • f39111d rename splitModifiers to parseClassName
  • 6fdf5ef rename class utils to class group utils
  • 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/AE5sPTtgruaCwEKHuJWVTSUXSvxM)) | [Visit Preview](https://neosync-docs-git-dependabot-npmandyarnfrontendnp-d7bc30-neosync.vercel.app) | | Jul 15, 2024 5:19pm |