company-library / company-library

MIT License
1 stars 3 forks source link

build(deps): bump the minor-and-patch group across 1 directory with 14 updates #245

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the minor-and-patch group with 14 updates in the / directory:

Package From To
@prisma/client 5.15.1 5.16.1
graphql 16.8.1 16.9.0
luxon 3.2.1 3.4.4
@types/luxon 3.0.1 3.4.2
next-auth 4.24.5 4.24.7
prisma 5.15.1 5.16.1
autoprefixer 10.4.16 10.4.19
daisyui 4.6.0 4.12.10
dotenv-cli 7.2.1 7.4.2
jest-mock-extended 3.0.4 3.0.7
postcss 8.4.31 8.4.38
tailwindcss 3.4.1 3.4.4
ts-node 10.9.1 10.9.2
typescript 5.1.6 5.5.2

Updates @prisma/client from 5.15.1 to 5.16.1

Release notes

Sourced from @​prisma/client's releases.

5.16.1

Today, we are issuing the 5.16.1 patch release to fix an issue in Prisma client.

Fix in Prisma Client

5.16.0

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

</tr></table> 

... (truncated)

Commits
  • c26bbfe fix(client): restore loading .env files in @prisma/client (#24649)
  • 1d34b5b chore(deps): update engines to 5.16.0-24.34ace0eb2704183d2c05b60b52fba5c43c13...
  • d433bb7 feat(client): provide a workaround for Vitest's struggles with "getQueryEngin...
  • 65e17a0 chore(deps): update engines to 5.16.0-23.d56fe2ee624826f693e591a3035694073d17...
  • c64e77f chore(deps): update engines to 5.16.0-21.9f3337c21c619aa48465f3766f6466c74ec7...
  • 6a6646c fix(cli): Always resolve output relatively to a file it defined in (#24598)
  • 617042d chore(deps): update engines to 5.16.0-20.bd07760d57443d11e2a958fd18bf524bbac1...
  • a1121f1 chore(deps): update dependency @​swc/core to v1.6.3 (#24546)
  • dbad2af chore(deps): update dependency wrangler to v3.61.0 (#24578)
  • 8808e17 feat(client): Implement global omit configuration (#24513)
  • Additional commits viewable in compare view


Updates graphql from 16.8.1 to 16.9.0

Release notes

Sourced from graphql's releases.

v16.9.0 (2024-06-21)

New Feature 🚀

  • #4119 backport[v16]: Introduce "recommended" validation rules (@​benjie)
  • #4122 backport[v16]: Enable passing values configuration to GraphQLEnumType as a thunk (@​benjie)
  • #4124 backport[v16]: Implement OneOf Input Objects via @oneOf directive (@​benjie)

Committers: 1

v16.8.2 (2024-06-12)

Bug Fix 🐞

Internal 🏠

Committers: 2

Commits
  • 556a01e 16.9.0
  • 6a1614c backport[v16]: Enable passing values configuration to GraphQLEnumType as a th...
  • 29144f7 backport[v16]: Implement OneOf Input Objects via @oneOf directive (#4124)
  • c35130e Revert error extension symbol (#4123)
  • 29c1bff feat: allow defining symbol error extensions (#3730)
  • c985c27 backport[v16]: Introduce "recommended" validation rules (#4119)
  • 08779a0 16.8.2
  • c82609e Fix publish scripts (#4104)
  • 0d12b06 fix: remove globalThis check and align with what bundlers can accept (#4022)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by benjie, a new releaser for graphql since your current version.


Updates luxon from 3.2.1 to 3.4.4

Changelog

Sourced from luxon's changelog.

3.4.4 (2023-11-12)

  • Localized week support (#1454)
  • Added custom inspect for Node (#1526)
  • Fix sorting in Interval.splitAt (#1524)

3.4.3 (2023-09-05)

  • Fixes another regression from 3.4.0 (#1496)

3.4.2 (2023-08-26)

  • Fixes regression from 3.4.1 (#1493)

3.4.1 (2023-08-23)

  • Fixes for regressions from 3.4.0 (#1482 and #1488)

3.4.0 (2023-08-08)

  • Fix type checking on input zones
  • Fix Islamic months listing
  • Fix normalize() for negative inputs

3.3.0 (2023-03-03)

  • Fix off-by-one in Interval#count (#1308)
  • Support formatting for custom zones (#1377)
  • Fix parsing for narrow spaces (#1369)
  • Handle leap year issue with AD 100 (#1390)
  • Allow parsing of just an offset
Commits


Updates @types/luxon from 3.0.1 to 3.4.2

Commits


Updates next-auth from 4.24.5 to 4.24.7

Commits
  • e67a1eb chore(release): bump version [skip ci]
  • 4882624 chore(deps): bump jose (#10240)
  • 7d96ca4 chore(release): bump version [skip ci]
  • 2072750 chore: update v4 branch with latest clerk sponsorship (#9828)
  • 9296222 docs: update github.md app permissions (#7778)
  • 851704e docs: update errors.md - add JWEDecryptionError (#7855)
  • 3681b7a docs: fix the link to Yandex provider options in yandex.md (#9677)
  • cf94d5f docs: improve color contrast
  • c8edf2d docs: added callout re getServerSession nextjs.md (#8964)
  • 9676afb docs: typo in initialization.md (#9449)
  • Additional commits viewable in compare view


Updates prisma from 5.15.1 to 5.16.1

Release notes

Sourced from prisma's releases.

5.16.1

Today, we are issuing the 5.16.1 patch release to fix an issue in Prisma client.

Fix in Prisma Client

5.16.0

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

</tr></table> 

... (truncated)

Commits
  • 61c901b feat(cli): use new login endpoint for optimize (#24570)
  • 13172c2 feat(prismaSchemaFolder): Resolve paths in datasource blocks relative to the ...
  • 6a6646c fix(cli): Always resolve output relatively to a file it defined in (#24598)
  • a1121f1 chore(deps): update dependency @​swc/core to v1.6.3 (#24546)
  • 336555d chore(deps): update dependency ts-pattern to v5.2.0 (#24518)
  • 59a7419 chore(deps): update studio to v0.502.0 (#24534)
  • 9b7c5cc chore(deps): update dependency esbuild to v0.21.5 (#24502)
  • f0a3fa1 chore(deps): update devdependencies patch (non-major) (#24504)
  • a59dc6f feat(cli): generate, add --no-hint argument (#24274)
  • 317dd04 fix(cli): Generate should not fail on postinstall, even with no schema (#24...
  • Additional commits viewable in compare view


Updates @types/luxon from 3.0.1 to 3.4.2

Commits


Updates autoprefixer from 10.4.16 to 10.4.19

Release notes

Sourced from autoprefixer's releases.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.
Changelog

Sourced from autoprefixer's changelog.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.
Commits


Updates daisyui from 4.6.0 to 4.12.10

Release notes

Sourced from daisyui's releases.

v4.12.10

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.10

💚 Thank you for using daisyUI!

v4.12.9

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.9

💚 Thank you for using daisyUI!

v4.12.8

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.8

💚 Thank you for using daisyUI!

v4.12.7

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.7

💚 Thank you for using daisyUI!

v4.12.6

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.6

💚 Thank you for using daisyUI!

... (truncated)

Changelog

Sourced from daisyui's changelog.

4.12.10 (2024-06-26)

Bug Fixes

  • join spacing adapting to button border width (da94f2c), closes #3028

4.12.9 (2024-06-26)

Bug Fixes

4.12.8 (2024-06-24)

Bug Fixes

  • decrease default scrollbar color contrast using color-mix (92d98ed)

4.12.7 (2024-06-23)

Bug Fixes

4.12.6 (2024-06-23)

4.12.5 (2024-06-23)

Bug Fixes

4.12.4 (2024-06-23)

Bug Fixes

4.12.3 (2024-06-23)

4.12.2 (2024-06-05)

4.12.1 (2024-06-05)

... (truncated)

Commits
  • aaccf58 chore(release): 4.12.10
  • da94f2c fix: join spacing adapting to button border width
  • 62c642a Update src/docs/.env
  • 5755214 chore(release): 4.12.9
  • fade326 fix: missing type for themeRoot config
  • c05d796 docs: improve theme generator
  • e50918d Update src/docs/.env
  • 7160e6c chore(release): 4.12.8
  • 92d98ed fix: decrease default scrollbar color contrast using color-mix
  • 1c2fbe2 Update src/docs/.env
  • Additional commits viewable in compare view


Updates dotenv-cli from 7.2.1 to 7.4.2

Release notes

Sourced from dotenv-cli's releases.

Fix bug with -p in 7.4.0

Fixes entropitor/dotenv-cli#106 through https://github.com/entropitor/dotenv-cli/commit/e794d3eefab7bd14e842a872db0a103a38090e93

Release better variable usage (-v)

Releases entropitor/dotenv-cli#105

v7.3.0

Commits


Updates jest-mock-extended from 3.0.4 to 3.0.7

Release notes

Sourced from jest-mock-extended's releases.

3.0.7

Bumped ts-essentials

3.0.5

Fixed Deep Mock perf issue with marchaos/jest-mock-extended#123

Commits
  • 434ab4d bump version - remove console.
  • 253eb68 Merge pull request #133 from Beraliv/build/ts-essentials-10
  • 1db4b0b build: 📦 use ts-essentials@10
  • 77a64ae Merge pull request #131 from timdavish/fix/ts-essentials-version
  • 3725c37 fix: ts-essentials version
  • cc9a485 bump version
  • 23279af Merge pull request #123 from millsp/perf/types/deep-mock
  • 7cb9815 make it work with private properties
  • f08bf16 perf(types): prevent immediate deep and circular resolution for deep mock
  • 1860950 bump version
  • See full diff in compare view


Updates postcss from 8.4.31 to 8.4.38

Release notes

Sourced from postcss's releases.

8.4.38

8.4.37

  • Fixed original.column are not numbers error in another case.

8.4.36

  • Fixed original.column are not numbers error on broken previous source map.

8.4.35

  • Avoid ! in node.parent.nodes type.
  • Allow to pass undefined to node adding method to simplify types.

8.4.34

8.4.33

8.4.32

Changelog

Sourced from postcss's changelog.

8.4.38

8.4.37

  • Fixed original.column are not numbers error in another case.

8.4.36

  • Fixed original.column are not numbers error on broken previous source map.

8.4.35

  • Avoid ! in node.parent.nodes type.
  • Allow to pass undefined to node adding method to simplify types.

8.4.34

  • Fixed AtRule#nodes type (by Tim Weißenfels).
  • Cleaned up code (by Dmitry Kirillov).

8.4.33

  • Fixed NoWorkResult behavior difference with normal mode (by Romain Menke).
  • Fixed NoWorkResult usage conditions (by @​ahmdammarr).

8.4.32

  • Fixed postcss().process() types (by Andrew Ferreira).
Commits
  • a69d45e Release 8.4.38 version
  • 64e35d9 Update dependencies
  • c1ad8fb Merge pull request #1932 from romainmenke/fix-warning-end-index--inventive-nu...
  • b45e7e9 fix endIndex
  • 1bea246 failing test: for endIndex 0 in rangeBy
  • 0fd1d86 Add changelog auto release on Github
  • 49c906e Release 8.4.37 version
  • b5bd92c Fix another broken prev source map issue
  • 2882039 Update dependencies
  • e5ad939 Release 8.4.36 version
  • Additional commits viewable in compare view


Updates tailwindcss from 3.4.1 to 3.4.4

Release notes

Sourced from tailwindcss's releases.

v3.4.4

Fixed

  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#13770)
  • Support negative values for {col,row}-{start,end} utilities (#13781)
  • Update embedded browserslist database (#13792)

v3.4.3

Fixed

  • Revert changes to glob handling (#13384)

v3.4.2

Fixed

  • Ensure max specificity of 0,0,1 for button and input Preflight rules (#12735)
  • Improve glob handling for folders with (, ), [ or ] in the file path (#12715)
  • Split :has rules when using experimental.optimizeUniversalDefaults (#12736)
  • Sort arbitrary properties alphabetically across multiple class lists (#12911)
  • Add mix-blend-plus-darker utility (#12923)
  • Ensure dashes are allowed in variant modifiers (#13303)
  • Fix crash showing completions in Intellisense when using a custom separator (#13306)
  • Transpile import.meta.url in config files (#13322)
  • Reset letter spacing for form elements (#13150)
  • Fix missing xx-large and remove double x-large absolute size (#13324)
  • Don't error when encountering nested CSS unless trying to @apply a class that uses nesting (#13325)
  • Ensure that arbitrary properties respect important configuration (#13353)
  • Change dark mode selector so @apply works correctly with pseudo elements (#13379)
Changelog

Sourced from tailwindcss's changelog.

[3.4.4] - 2024-06-05

Fixed

  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#13770)
  • Support negative values for {col,row}-{start,end} utilities (#13781)
  • Update embedded browserslist database (#13792)

[3.4.3] - 2024-03-27

Fixed

  • Revert changes to glob handling (#13384)

[3.4.2] - 2024-03-27

Fixed

  • Ensure max specificity of 0,0,1 for button and input Preflight rules (#12735)
  • Improve glob handling for folders with (, ), [ or ] in the file path (#12715)
  • Split :has rules when using experimental.optimizeUniversalDefaults (#12736)
  • Sort arbitrary properties alphabetically across multiple class lists (#12911)
  • Add mix-blend-plus-darker utility (#12923)
  • Ensure dashes are allowed in variant modifiers (#13303)
  • Fix crash showing completions in Intellisense when using a custom separator (#13306)
  • Transpile import.meta.url in config files (#13322)
  • Reset letter spacing for form elements (#13150)
  • Fix missing xx-large and remove double x-large absolute size (#13324)
  • Don't error when encountering nested CSS unless trying to @apply a class that uses nesting (#13325)
  • Ensure that arbitrary properties respect important configuration (#13353)
  • Change dark mode selector so @apply works correctly with pseudo elements (#13379)
Commits


Updates ts-node from 10.9.1 to 10.9.2

Release notes

Sourced from ts-node's releases.

Fix tsconfig.json file not found

Fixed

Commits


Updates typescript from 5.1.6 to 5.5.2

Release notes

Sourced from typescript's releases.

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • ce2e60e Update LKG
  • f3b21a2 🤖 Pick PR #58931 (Defer creation of barebonesLibSourc...) into release-5.5 (#...
  • 7b1620b 🤖 Pick PR #58811 (fix(58801): "Move to file" on globa...) into release-5.5 (#...
  • 5367ae1 Bump version to 5.5.2 and LKG
  • 02132e5 🤖 Pick PR #58895 (Fix global when typescript.js loade...) into release-5.5 (#...
  • 45b1e3c 🤖 Pick PR #58872 (Fix declaration emit crash) into release-5.5 (#58874)
  • 17933ee 🤖 Pick PR #58810 (Fixed declaration emit issue relate...) into release-5.5 (#...
  • 552b07e 🤖 Pick PR #58786 (Fixed declaration emit crash relate...) into release-5.5 (#...
  • 39c9eeb Pick #58857 to release-5.5 (#58858)
  • 2b0009c 🤖 Pick PR #58846 (Ensure the updates with crashes rev...) into release-5.5 (#...
  • 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