Skip to content

build(deps): bump the production-dependencies group across 1 directory with 4 updates#80

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-bad3316eb9
Closed

build(deps): bump the production-dependencies group across 1 directory with 4 updates#80
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-bad3316eb9

Conversation

@dependabot
Copy link
Contributor

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

Bumps the production-dependencies group with 4 updates in the / directory: bits-ui, pocketbase, tailwind-variants and three.

Updates bits-ui from 0.21.16 to 0.22.0

Release notes

Sourced from bits-ui's releases.

bits-ui@0.22.0

Minor Changes

  • Resolves peer dependency issues for Svelte 5 projects (#868)
Commits

Updates pocketbase from 0.21.5 to 0.25.0

Release notes

Sourced from pocketbase's releases.

v0.25.0 Release

  • Added pb.crons service to interact with the cron Web APIs (available with PocketBase v0.24+).

v0.24.0 Release

  • Added support for assigning FormData as body to individual batch requests (pocketbase#6145).

v0.23.0 Release

  • Added optional pb.realtime.onDisconnect hook function. Note that the realtime client autoreconnect on its own and this hook is useful only for the cases where you want to apply a special behavior on server error or after closing the realtime connection.

v0.22.1 Release

  • Fixed old pb.authStore.isAdmin/pb.authStore.isAuthRecord getters and marked them as deprecated in favour of pb.authStore.isSuperuser (#323). Note that with PocketBase v0.23.0 superusers are converted to a system auth collection so you can always simply check the value of pb.authStore.record?.collectionName.

v0.22.0 Release

⚠️ This release introduces some breaking changes and works only with PocketBase v0.23.0+.

  • Added support for sending batch/transactional create/updated/delete/upsert requests with the new batch Web APIs.

    const batch = pb.createBatch();
    batch.collection("example1").create({ ... });
    batch.collection("example2").update("RECORD_ID", { ... });
    batch.collection("example3").delete("RECORD_ID");
    batch.collection("example4").upsert({ ... });
    const result = await batch.send();

  • Added support for authenticating with OTP (email code):

    const result = await pb.collection("users").requestOTP("test@example.com");
    // ... show a modal for users to check their email and to enter the received code ...
    await pb.collection("users").authWithOTP(result.otpId, "EMAIL_CODE");

    Note that PocketBase v0.23.0 comes also with Multi-factor authentication (MFA) support. When enabled from the dashboard, the first auth attempt will result in 401 response and a mfaId response, that will have to be submitted with the second auth request. For example:

    try {
      await pb.collection("users").authWithPassword("test@example.com", "1234567890");
    } catch (err) {
      const mfaId = err.response?.mfaId;
      if (!mfaId) {
        throw err; // not mfa -> rethrow
      }

... (truncated)

Changelog

Sourced from pocketbase's changelog.

0.25.0

  • Added pb.crons service to interact with the cron Web APIs.

0.24.0

  • Added support for assigning FormData as body to individual batch requests (pocketbase#6145).

0.23.0

  • Added optional pb.realtime.onDisconnect hook function. Note that the realtime client autoreconnect on its own and this hook is useful only for the cases where you want to apply a special behavior on server error or after closing the realtime connection.

0.22.1

  • Fixed old pb.authStore.isAdmin/pb.authStore.isAuthRecord and marked them as deprecated in favour of pb.authStore.isSuperuser (#323). Note that with PocketBase v0.23.0 superusers are converted to a system auth collection so you can always simply check the value of pb.authStore.record?.collectionName.

0.22.0

⚠️ This release introduces some breaking changes and works only with PocketBase v0.23.0+.

  • Added support for sending batch/transactional create/updated/delete/upsert requests with the new batch Web APIs.

    const batch = pb.createBatch();
    batch.collection("example1").create({ ... });
    batch.collection("example2").update("RECORD_ID", { ... });
    batch.collection("example3").delete("RECORD_ID");
    batch.collection("example4").upsert({ ... });
    const result = await batch.send();

  • Added support for authenticating with OTP (email code):

    const result = await pb.collection("users").requestOTP("test@example.com");
    // ... show a modal for users to check their email and to enter the received code ...
    await pb.collection("users").authWithOTP(result.otpId, "EMAIL_CODE");

    Note that PocketBase v0.23.0 comes also with Multi-factor authentication (MFA) support. When enabled from the dashboard, the first auth attempt will result in 401 response and a mfaId response, that will have to be submitted with the second auth request. For example:

... (truncated)

Commits

Updates tailwind-variants from 0.2.1 to 0.3.0

Release notes

Sourced from tailwind-variants's releases.

v0.3.0

What's Changed

New Contributors

Full Changelog: heroui-inc/tailwind-variants@v0.2.1...v0.3.0

Commits
  • 21367ec feat: v0.3.0
  • 50f0fac fix: lint & tm updated
  • 4263acc Merge branch 'main' of github.com:nextui-org/tailwind-variants
  • bfb5d70 fix: treat undefined value for compoundVariants as false (#210)
  • 1fdbc7c Merge branch 'main' of github.com:nextui-org/tailwind-variants
  • 02eb717 (fix): responsive variants for base when slots are present (#202)
  • e4811f6 docs: add cva to benchmarks (#178)
  • 9effc2a Merge pull request #177 from jonathassardinha/fix/transformer-aliases-missing...
  • 12bfda4 fix: add transformer config type to withTV function
  • 3a78e3c Merge pull request #173 from nextui-org/fix-jest-lint
  • Additional commits viewable in compare view

Updates three from 0.167.1 to 0.172.0

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

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 14, 2025
@vercel
Copy link

vercel bot commented Jan 14, 2025

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

Name Status Preview Comments Updated (UTC)
shapez-vortex ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 17, 2025 3:19am

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-dependencies-bad3316eb9 branch from 92f7f07 to ceb0c3d Compare January 15, 2025 10:15
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-dependencies-bad3316eb9 branch from ceb0c3d to 9bb9b77 Compare January 17, 2025 03:16
…y with 4 updates

Bumps the production-dependencies group with 4 updates in the / directory: [bits-ui](https://github.com/huntabyte/bits-ui), [pocketbase](https://github.com/pocketbase/js-sdk), [tailwind-variants](https://github.com/nextui-org/tailwind-variants) and [three](https://github.com/mrdoob/three.js).


Updates `bits-ui` from 0.21.16 to 0.22.0
- [Release notes](https://github.com/huntabyte/bits-ui/releases)
- [Commits](https://github.com/huntabyte/bits-ui/compare/bits-ui@0.21.16...bits-ui@0.22.0)

Updates `pocketbase` from 0.21.5 to 0.25.0
- [Release notes](https://github.com/pocketbase/js-sdk/releases)
- [Changelog](https://github.com/pocketbase/js-sdk/blob/master/CHANGELOG.md)
- [Commits](pocketbase/js-sdk@v0.21.5...v0.25.0)

Updates `tailwind-variants` from 0.2.1 to 0.3.0
- [Release notes](https://github.com/nextui-org/tailwind-variants/releases)
- [Commits](heroui-inc/tailwind-variants@v0.2.1...v0.3.0)

Updates `three` from 0.167.1 to 0.172.0
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

---
updated-dependencies:
- dependency-name: bits-ui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pocketbase
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tailwind-variants
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: three
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-dependencies-bad3316eb9 branch from 9bb9b77 to 54088db Compare January 17, 2025 03:17
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 1, 2025

Superseded by #101.

@dependabot dependabot bot closed this Feb 1, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-bad3316eb9 branch February 1, 2025 07:53
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