vevcom / projectNext

Project Next is Omegas new website coming soon
MIT License
7 stars 0 forks source link

chore(deps): bump the minor group across 1 directory with 11 updates #293

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the minor group with 11 updates in the / directory:

Package From To
@fortawesome/fontawesome-svg-core 6.5.2 6.6.0
@fortawesome/free-brands-svg-icons 6.5.2 6.6.0
@fortawesome/free-solid-svg-icons 6.5.2 6.6.0
@prisma/client 5.15.1 5.18.0
eslint-config-next 14.2.4 14.2.5
next 14.2.4 14.2.5
react-intersection-observer 9.10.3 9.13.0
sass 1.77.6 1.77.8
winston 3.13.0 3.14.1
prisma 5.15.1 5.18.0
typescript 5.5.2 5.5.4

Updates @fortawesome/fontawesome-svg-core from 6.5.2 to 6.6.0

Release notes

Sourced from @​fortawesome/fontawesome-svg-core's releases.

Release 6.6.0

Change log available at https://fontawesome.com/docs/changelog/

Commits


Updates @fortawesome/free-brands-svg-icons from 6.5.2 to 6.6.0

Release notes

Sourced from @​fortawesome/free-brands-svg-icons's releases.

Release 6.6.0

Change log available at https://fontawesome.com/docs/changelog/

Commits


Updates @fortawesome/free-solid-svg-icons from 6.5.2 to 6.6.0

Release notes

Sourced from @​fortawesome/free-solid-svg-icons's releases.

Release 6.6.0

Change log available at https://fontawesome.com/docs/changelog/

Commits


Updates @prisma/client from 5.15.1 to 5.18.0

Release notes

Sourced from @​prisma/client's releases.

5.18.0

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

Highlights

Native support for UUIDv7

Previous to this release, the Prisma Schema function uuid() did not accept any arguments and created a UUIDv4 ID. While sufficient in many cases, UUIDv4 has a few drawbacks, namely that it is not temporally sortable.

UUIDv7 attempts to resolve this issue, making it easy to temporally sort your database rows by ID!

To support this, we’ve updated the uuid() function in Prisma Schema to accept an optional, integer argument. Right now, the only valid values are 4 and 7, with 4 being the default.

model User {
  id   String @id @default(uuid()) // defaults to 4
  name String
}

model User { id String @​id @​default(uuid(4)) // same as above, but explicit name String }

model User { id String @​id @​default(uuid(7)) // will use UUIDv7 instead of UUIDv4 name String }

Bug squashing

We’ve squashed a number of bugs this release, special thanks to everyone who helped us! A few select highlights are:

Fixes and improvements

Prisma

Language tools (e.g. VS Code)

Share your feedback about Prisma ORM

We want to know how you like working with Prisma ORM in your projects! Please take our 2min survey and let us know what you like or where we can improve 🙏

... (truncated)

Commits
  • 836be82 fix(e2e): Fix and update ts-version tests (#24949)
  • 9fb61a6 chore(deps): update engines to 5.18.0-25.4c784e32044a8a016d99474bd02a3b612374...
  • 5903544 fix: Update libsql/client version (#24934)
  • 4d8228f fix: sync queryRaw possible result types with query engine (#24872)
  • ef53f5c test(client): fix invalid error instances when using $connect() or datasour...
  • dfe1c22 chore(deps): update engines to 5.18.0-15.a6977e518975c6a4e6ae77bf7faf8afc08b9...
  • 1f6fee7 chore(deps): update engines to 5.18.0-13.ff166c7d28442f1fd8012dbcb5be304b0e0b...
  • f5fe14b test(e2e): Update typescript@next test to use @types/node@18 (#24852)
  • e2ff16f chore(deps): update engines to 5.18.0-11.f66d88804a33cdad6758bc004b993bccf02c...
  • b58adc8 fix(client): Correctly resolve configDir when prismaSchemaFolder is used ...
  • Additional commits viewable in compare view


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 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 react-intersection-observer from 9.10.3 to 9.13.0

Release notes

Sourced from react-intersection-observer's releases.

v9.13.0

9.13.0 (2024-07-11)

Features

v9.12.0

9.12.0 (2024-07-11)

Features

  • upgrade to Vitest 2 (#690) (054adf4)
    • Upgrade to Vitest 2
    • Add basic browser mode test, that runs with an unmocked IntersectionObserver
    • Types cleanup in test-utils, getting rid of @types/jest (replaced with vitest)
    • Move test mocking setup from beforeEach to beforeAll

v9.11.0

9.11.0 (2024-07-11)

Features

  • remove script to publish dist dir (0980efa)
Commits
  • c9cef8f feat: fix package exports and simplify build (#695)
  • 054adf4 feat: upgrade to Vitest 2 (#690)
  • e3f8129 Merge pull request #693 from thebuilder/fix/semantic-release
  • 1961939 ci: fix semantic release config
  • 6e90b03 Merge pull request #691 from thebuilder/feat/remove-dist-copy
  • 214cf98 ci: run the build task in package new
  • 0980efa feat: remove script to publish dist dir
  • 7feb5b6 chore: upgrade dependencies (#688)
  • 40901ee ci: use pkg-pr-new to publish preview packages (#687)
  • 33efbcb docs: update readme and recipes (#686)
  • Additional commits viewable in compare view


Updates sass from 1.77.6 to 1.77.8

Release notes

Sourced from sass's releases.

Dart Sass 1.77.8

To install Sass 1.77.8, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.77.8

  • No user-visible changes.

1.77.7

  • Declarations that appear after nested rules are deprecated, because the semantics Sass has historically used are different from the semantics specified by CSS. In the future, Sass will adopt the standard CSS semantics.

    See the Sass website for details.

  • Potentially breaking bug fix: // in certain places such as unknown at-rule values was being preserved in the CSS output, leading to potentially invalid CSS. It's now properly parsed as a silent comment and omitted from the CSS output.

Commits


Updates winston from 3.13.0 to 3.14.1

Release notes

Sourced from winston's releases.

v3.14.1

  • Save a reference to console methods in console transport (#2498) e82752f
  • Add forceConsole to ConsoleTransportOptions (#2496) 4ff0538
  • Bump mocha from 10.6.0 to 10.7.0 (#2489) 62acaad
  • Update readme with forceConsole info (#2493) b2b79af

https://github.com/winstonjs/winston/compare/v3.14.0...v3.14.1

v3.14.0

  • Add option forceConsole (#2276) b2098fd
  • Set _rotate false on emit 'rotate' false (#2457) 1719275
  • Bump @​babel/core from 7.24.7 to 7.24.9 (#2485) d2859f3
  • Bump @​babel/preset-env from 7.24.7 to 7.24.8 (#2487) 71e4bb1
  • fix: readme (#2488) 0cb8c7c

https://github.com/winstonjs/winston/compare/v3.13.1...v3.14.0

v3.13.1

  • revert to rimraf 5.0.1, last known version to work with node 18 for now 1b3a500
  • Merge branch 'master' of github.com:winstonjs/winston b56117e
  • Update dependencies a5853b5
  • Bump @​types/node from 20.12.7 to 20.14.10 (#2483) 93b52ac
  • Bump mocha from 10.3.0 to 10.6.0 (#2484) 33611c9
  • Bump @​babel/preset-env from 7.24.0 to 7.24.7 (#2475) 4aa6550
  • Update minimum version logform (#2472) 7f5f014
  • Add Parseable transport (#2466) debf4fa
  • chore(docs): Update w/ MySQL transport (#2456) d567c57
  • fix typo at test/unit/winston/transports/http.test.js (#2453) 1d5d527
  • Bump @​babel/cli from 7.23.9 to 7.24.5 (#2454) d89a34e
  • Bump @​types/node from 20.11.29 to 20.12.7 (#2448) 947fa79
  • Bump @​babel/core from 7.24.0 to 7.24.5 (#2455) 8c58d0a

https://github.com/winstonjs/winston/compare/v3.13.0...v3.13.1

Commits


Updates prisma from 5.15.1 to 5.18.0

Release notes

Sourced from prisma's releases.

5.18.0

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

Highlights

Native support for UUIDv7

Previous to this release, the Prisma Schema function uuid() did not accept any arguments and created a UUIDv4 ID. While sufficient in many cases, UUIDv4 has a few drawbacks, namely that it is not temporally sortable.

UUIDv7 attempts to resolve this issue, making it easy to temporally sort your database rows by ID!

To support this, we’ve updated the uuid() function in Prisma Schema to accept an optional, integer argument. Right now, the only valid values are 4 and 7, with 4 being the default.

model User {
  id   String @id @default(uuid()) // defaults to 4
  name String
}

model User { id String @​id @​default(uuid(4)) // same as above, but explicit name String }

model User { id String @​id @​default(uuid(7)) // will use UUIDv7 instead of UUIDv4 name String }

Bug squashing

We’ve squashed a number of bugs this release, special thanks to everyone who helped us! A few select highlights are:

Fixes and improvements

Prisma

Language tools (e.g. VS Code)

Share your feedback about Prisma ORM

We want to know how you like working with Prisma ORM in your projects! Please take our 2min survey and let us know what you like or where we can improve 🙏

... (truncated)

Commits
  • cebc9c0 feat: Added a tip to remove tips (#24818)
  • b58adc8 fix(client): Correctly resolve configDir when prismaSchemaFolder is used ...
  • a15d3b9 feat(cli, generate command): Added promo array to rotate and make cli messagi...
  • 7308378 feat(cli): Support prisma platform auth show --sensitive (#24745)
  • 190bac1 chore(cli): cleanup import message when running generate (#24739)
  • 1cc5cb0 fix(cli): restored prisma generate --allow-no-models after regression (#24741)
  • 1867b68 chore(deps): update devdependencies patch (non-major) (#24639)
  • f147dbe feat(cli): Add format --check (#24613)
  • 37adb2d chore: set minimum compilation target to ES2021 (>= Node.js 16.4.x) (#24646)
  • e661724 chore(deps): update dependency esbuild to v0.23.0 (#24693)
  • Additional commits viewable in compare view


Updates typescript from 5.5.2 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

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.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) 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
dependabot[bot] commented 1 month ago

Looks like these dependencies are updatable in another way, so this is no longer needed.