invoys
invoys copied to clipboard
chore(deps): bump the versioning group across 1 directory with 45 updates
Bumps the versioning group with 45 updates in the / directory:
Package | From | To |
---|---|---|
@heroicons/react | 2.0.18 |
2.1.3 |
@prisma/client | 5.3.0 |
5.14.0 |
@tanstack/match-sorter-utils | 8.8.4 |
8.15.1 |
@tanstack/react-table | 8.9.9 |
8.17.3 |
@tanstack/react-virtual | 3.0.0-beta.18 |
3.5.0 |
@tanstack/table-core | 8.9.9 |
8.17.3 |
@trpc/client | 10.38.3 |
10.45.2 |
@trpc/next | 10.38.3 |
10.45.2 |
@trpc/react-query | 10.38.3 |
10.45.2 |
@trpc/server | 10.38.3 |
10.45.2 |
clsx | 2.0.0 |
2.1.1 |
dayjs | 1.11.9 |
1.11.11 |
dotenv-cli | 7.3.0 |
7.4.2 |
jotai | 2.4.2 |
2.8.1 |
next-auth | 4.23.1 |
4.24.7 |
next-seo | 6.1.0 |
6.5.0 |
nodemailer | 6.9.5 |
6.9.13 |
react | 18.2.0 |
18.3.1 |
@types/react | 18.2.21 |
18.3.3 |
react-dom | 18.2.0 |
18.3.1 |
@types/react-dom | 18.2.7 |
18.3.0 |
react-hook-form | 7.46.1 |
7.51.5 |
react-intersection-observer | 9.5.2 |
9.10.2 |
sharp | 0.32.5 |
0.33.4 |
tiny-invariant | 1.3.1 |
1.3.3 |
zod | 3.22.2 |
3.23.8 |
@faker-js/faker | 8.0.2 |
8.4.1 |
@playwright/test | 1.38.0 |
1.44.1 |
@tailwindcss/forms | 0.5.6 |
0.5.7 |
@types/react-csv | 1.1.4 |
1.1.10 |
@types/testing-library__cypress | 5.0.10 |
5.0.13 |
@vitejs/plugin-react | 4.0.4 |
4.3.0 |
autoprefixer | 10.4.15 |
10.4.19 |
cypress | 13.2.0 |
13.10.0 |
eslint-config-prettier | 9.0.0 |
9.1.0 |
eslint-plugin-jsx-a11y | 6.7.1 |
6.8.0 |
postcss | 8.4.29 |
8.4.38 |
prettier | 3.0.3 |
3.2.5 |
prettier-plugin-tailwindcss | 0.5.4 |
0.5.14 |
prisma | 5.3.0 |
5.14.0 |
start-server-and-test | 2.0.0 |
2.0.3 |
tailwindcss | 3.3.3 |
3.4.3 |
ts-node | 10.9.1 |
10.9.2 |
typescript | 5.2.2 |
5.4.5 |
vite-tsconfig-paths | 4.2.1 |
4.3.2 |
Updates @heroicons/react
from 2.0.18 to 2.1.3
Release notes
Sourced from @heroicons/react
's releases.
v2.1.3
- Improve project READMEs (#1152)
v2.1.2
- Include license file with published packages (#1151)
v2.1.1
Fixed
- Fixed chevrons in mini set (#1106)
v2.1.0
We just released Heroicons v2.1 which includes a brand new micro style — a full set of almost three hundred 16×16 icons designed for tighter, higher density UIs.
Learn more about the new set in the announcement post →
Added
- Added full set of 16×16 micro icons
- Added
arrow-left-start-on-rectangle
andarrow-right-end-on-rectangle
icons to all setsChanges
- Minor improvements to the
receipt-percent
,receipt-refund
,speaker-wave
,speaker-x-mark
,tag
,ticket
,window
,video-camera-slash
,plus
, andminus
icons in the mini set- Minor improvements to
chevron-down
,chevron-left
,chevron-right
,chevron-up
, andchevron-up-down
icons in all setsDeprecations
- Renamed
arrow-left-on-rectangle
toarrow-left-end-on-rectangle
- Renamed
arrow-right-on-rectangle
toarrow-right-start-on-rectangle
- All
*-small
icons in the outline and solid sets, use mini set instead- All
*-small
icons in the mini set, use micro set instead
Changelog
Sourced from @heroicons/react
's changelog.
[2.1.3] - 2024-03-22
- Improve project READMEs (#1152)
[2.1.2] - 2024-03-22
- Include license file with published packages (#1151)
[2.1.1] - 2023-12-18
Fixed
- Fixed chevrons in mini set (#1106)
[2.1.0] - 2023-12-18
Added
Commits
01c786b
2.1.31b9fc17
Improve project READMEs (#1152)fb6bdfa
2.1.2d84ffa5
Include license file with published packages (#1151)957ba2f
ci: add provenance to published packages (#1145)f736825
Update package-lock.json filedf1be9e
Fix changelog links88ab3a0
2.1.14397ab4
Fixed 20x20 chevrons (#1106)b2dbc32
Bump vue & react versions- Additional commits viewable in compare view
Updates @prisma/client
from 5.3.0 to 5.14.0
Release notes
Sourced from @prisma/client
's releases.
5.14.0
Today, we are excited to share the
5.14.0
stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release. 🌟
Highlights
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 🙏
createManyAndReturn()
We’re happy to announce the availability of a new, top-level Prisma Client query:
createManyAndReturn()
. It works similarly tocreateMany()
but uses aRETURNING
clause in the SQL query to retrieve the records that were just created.Here’s an example of creating multiple posts and then immediately returning those posts.
const postBodies = req.json()['posts']
const posts = prisma.post.createManyAndReturn({ data: postBodies });
return posts
Additionally,
createManyAndReturn()
supports the same options asfindMany()
, such as the ability to return only specific fields.const postBodies = req.json()['posts']
const postTitles = prisma.post.createManyAndReturn({ data: postBodies, select: { title: true, }, });
return postTitles
Full documentation for this feature can be found in the Prisma Client API Reference.
Note: Because
createManyAndReturn()
uses theRETURNING
clause, it is only supported by PostgreSQL, CockroachDB, and SQLite databases. At this time,relationLoadStrategy: join
is not supported increateManyAndReturn()
queries.MongoDB performance improvements
Previously, Prisma ORM suffered from performance issues when using the
in
operator or when including related models in queries against a MongoDB database. These queries were translated by the Prisma query engine in such a way that indexes were skipped and collection scans were used, leading to slower queries especially on large datasets.
... (truncated)
Commits
e0006b1
chore(deps): update engines to 5.14.0-25.e9771e62de70f79a5e1c604a2d7c8e2a0a87...271d834
chore(deps): update engines to 5.14.0-24.879beb2a005f47f60608de797a554c8a500e...d2701d4
feat: create no models flag for generate command (#24160)51ff5e4
chore(deps): update engines to 5.14.0-23.079da82321947525558fa7146f7737149538...ea28e76
chore(deps): update dependency wrangler to v3.55.0 (#24147)7e66bc6
chore(deps): update engines to 5.14.0-21.6eec1600785bbff7acedfa57bc6826cdac2e...6fcc818
feat(cli): addprismaSchemaFolder
support toprisma generate
via `mergeSc...23aba0b
docs: remove references to Prisma Slack (#24128)52589ae
chore: Remove issue link from "Client did not initialize yet" (#24117)c22724e
feat(cli): ground work for prismaSchemaFolder, implementingvalidate
, `form...- Additional commits viewable in compare view
Updates @tanstack/match-sorter-utils
from 8.8.4 to 8.15.1
Release notes
Sourced from @tanstack/match-sorter-utils
's releases.
v8.15.1
Version 8.15.1 - 3/28/2024, 5:17 PM
Changes
Fix
- export AccessorFnColumnDefBase (#5445) (eb6943ff) by Mingyu Cui
Chore
- split filtering api docs · 3b3b3b3b (#5446) (ac148c74) by Kevin Van Cott
- dev dependencies refactor (#5431) (e6c6f96f) by Kevin Van Cott
Docs
- Update global-filtering.md (366ec1f8) by Kevin Van Cott
- add faker to qwik examples (7a001802) by Kevin Van Cott
- add sorting example link (411213b5) by Kevin Van Cott
- qwik example imports (#5429) (313abc77) by Kevin Van Cott
- more state docs for other frameworks (#5428) (4faa788b) by Kevin Van Cott
Other
- upgrade packages (#5439) (3952c34b) by Kevin Van Cott
- Update table-state.md (3a298b24) by Kevin Van Cott
Packages
@tanstack/table-core
@8
.15.1@tanstack/qwik-table
@8
.15.1@tanstack/react-table
@8
.15.1@tanstack/solid-table
@8
.15.1@tanstack/vue-table
@8
.15.1@tanstack/svelte-table
@8
.15.1@tanstack/react-table-devtools
@8
.15.1@tanstack/match-sorter-utils
@8
.15.1v8.15.0
Version 8.15.0 - 3/22/2024, 1:03 AM
Changes
Feat
- qwik-table adapter (#5420) (f99f5007) by Anxhi Rroshi
Chore
- package upgrades (#5425) (bbf7fca7) by Kevin Van Cott
... (truncated)
Commits
75fb746
release: v8.15.1e6c6f96
chore: dev dependencies refactor (#5431)88545f5
release: v8.11.8764d5db
release: v8.11.756369bc
fix: Update package.json repository and homepage fields (#5292)960513b
release: v8.11.36906b87
chore: Remove Vite aliases and tsconfig composite (#5247)5189d74
chore: Rework publish script (#5240)72c7ed6
chore: Modularise rollup config (#5238)51a6fd7
chore: Migrate to pnpm and modularise Nx tasks (#5234)- See full diff in compare view
Updates @tanstack/react-table
from 8.9.9 to 8.17.3
Release notes
Sourced from @tanstack/react-table
's releases.
v8.17.3
Version 8.17.3 - 5/14/2024, 2:44 PM
Changes
Fix
- Add a missing guard for undefined in the getFilteredRowModel function. (#5555) (5411f1a1) by
@jjh2613
Packages
@tanstack/table-core
@8
.17.3@tanstack/qwik-table
@8
.17.3@tanstack/react-table
@8
.17.3@tanstack/solid-table
@8
.17.3@tanstack/vue-table
@8
.17.3@tanstack/svelte-table
@8
.17.3@tanstack/react-table-devtools
@8
.17.3@tanstack/angular-table
@8
.17.3v8.17.2
Version 8.17.2 - 5/13/2024, 1:36 PM
Changes
Fix
- angular-table: handle null and number values with flex-render (#5550) (f941ea6a) by
@riccardoperra
Packages
@tanstack/angular-table
@8
.17.2v8.17.1
Version 8.17.1 - 5/12/2024, 10:28 PM
Changes
Fix
- angular esm exports (#5549) (8a55517d) by Kevin Van Cott
Docs
- add faker dep to example (e8495089) by Kevin Van Cott
- add missing faker dep to example (0253d527) by Kevin Van Cott
- fix example link (a3d07674) by Kevin Van Cott
Packages
... (truncated)
Commits
85f3f9e
release: v8.17.39668fe1
release: v8.17.08630fee
chore: repo package upgrades (#5513)b9ca88d
release: v8.16.0dad9126
release: v8.15.3298a60b
release: v8.15.275fb746
release: v8.15.13952c34
upgrade packages (#5439)e6c6f96
chore: dev dependencies refactor (#5431)ea14655
release: v8.15.0- Additional commits viewable in compare view
Updates @tanstack/react-virtual
from 3.0.0-beta.18 to 3.5.0
Release notes
Sourced from @tanstack/react-virtual
's releases.
v3.5.0
Version 3.5.0 - 4/29/2024, 9:10 AM
Changes
Feat
Packages
@tanstack/virtual-core
@3
.5.0@tanstack/react-virtual
@3
.5.0@tanstack/solid-virtual
@3
.5.0@tanstack/svelte-virtual
@3
.5.0@tanstack/vue-virtual
@3
.5.0v3.4.2
Version 3.4.2 - 4/29/2024, 7:02 AM
Changes
Fix
- Don"t run state effects in Vue immediately (#717) (109ffd3) by
@markjaniczak
Packages
@tanstack/vue-virtual
@3
.4.2v3.4.1
Version 3.4.1 - 4/26/2024, 12:25 PM
Changes
Fix
- Run watcher post DOM update in Vue adapter (#716) (9871f58) by
@markjaniczak
Packages
@tanstack/vue-virtual
@3
.4.1v3.4.0
Version 3.4.0 - 4/18/2024, 2:55 PM
Changes
Feat
... (truncated)
Commits
072205b
release: v3.5.0ab6ede8
feat: add isScrollingResetDelay option to Virtualizer (#719)ae70aba
release: v3.4.2109ffd3
fix: Don't run state effects in Vue immediately (#717)e204ce0
release: v3.4.19871f58
fix: Run watcher post DOM update in Vue adapter (#716)eae81c1
release: v3.4.05580232
feat: detect scroll was complete with scrollend (#707)b4ad45c
release: v3.3.09715328
feat: add shouldAdjustScrollPositionOnItemSizeChange method (#702)- Additional commits viewable in compare view
Updates @tanstack/table-core
from 8.9.9 to 8.17.3
Release notes
Sourced from @tanstack/table-core
's releases.
v8.17.3
Version 8.17.3 - 5/14/2024, 2:44 PM
Changes
Fix
- Add a missing guard for undefined in the getFilteredRowModel function. (#5555) (5411f1a1) by
@jjh2613
Packages
@tanstack/table-core
@8
.17.3@tanstack/qwik-table
@8
.17.3@tanstack/react-table
@8
.17.3@tanstack/solid-table
@8
.17.3@tanstack/vue-table
@8
.17.3@tanstack/svelte-table
@8
.17.3@tanstack/react-table-devtools
@8
.17.3@tanstack/angular-table
@8
.17.3v8.17.2
Version 8.17.2 - 5/13/2024, 1:36 PM
Changes
Fix
- angular-table: handle null and number values with flex-render (#5550) (f941ea6a) by
@riccardoperra
Packages
@tanstack/angular-table
@8
.17.2v8.17.1
Version 8.17.1 - 5/12/2024, 10:28 PM
Changes
Fix
- angular esm exports (#5549) (8a55517d) by Kevin Van Cott
Docs
- add faker dep to example (e8495089) by Kevin Van Cott
- add missing faker dep to example (0253d527) by Kevin Van Cott
- fix example link (a3d07674) by Kevin Van Cott
Packages
... (truncated)
Commits
85f3f9e
release: v8.17.35411f1a
fix: Add a missing guard for undefined in the getFilteredRowModel function. (...b9ca88d
release: v8.16.0d2ae539
feat: new sortUndefined last and first options (#5486)dad9126
release: v8.15.3fce4725
fix(table-core): column getCanGroup always resolving to true (#4843)298a60b
release: v8.15.284a3513
fix(table-core): narrow types for columns created by ColumnHelper (#5424)75fb746
release: v8.15.1eb6943f
fix: export AccessorFnColumnDefBase (#5445)- Additional commits viewable in compare view
Updates @trpc/client
from 10.38.3 to 10.45.2
Release notes
Sourced from @trpc/client
's releases.
v10.45.2
What's Changed
- patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by
@KATT
in trpc/trpc#5560Full Changelog: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2
v10.45.1
What's Changed
- fix(server): parse url safer in fetch adapter by
@KATT
in trpc/trpc#5410- fix(react-query): no ref in
useHookResult()
by@KATT
in trpc/trpc#5433New Contributors
@cah4a
made their first contribution in trpc/trpc#5250@zacanger
made their first contribution in trpc/trpc#5276Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1
v10.45.0
What's Changed
- chore(next/app-dir): make a union of
nextHttpLink
options by@KATT
in trpc/trpc#5173- chore: bump typescript and fix TS errors by
@KATT
in trpc/trpc#5178- fix(server + client): add
noImplicitOverride
& add explicit overrides inTRPCError
/TRPCClientError
by@me-imfhd
in trpc/trpc#5195- fix(next): rm
react-ssr-prepass
dependency by@KATT
in trpc/trpc#5201- feat(next): exclude non-ssr queries from the hydrated state by
@jonluca
in trpc/trpc#5135- fix(server+client): Incorrect serialization of
IndexSignature
andRecord
by@microdev1
in trpc/trpc#5211- feat(server): deprecate
.createCaller()
in favor oft.createCallerFactory()
by@KATT
in trpc/trpc#5213New Contributors
@kwaimind
made their first contribution in trpc/trpc#5143@me-imfhd
made their first contribution in trpc/trpc#5195@microdev1
made their first contribution in trpc/trpc#5211Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0
v10.44.1
What's Changed
- fix(server): fix fetch adapter with trailing slash by
@KATT
in trpc/trpc#5090New Contributors
@anatolzak
made their first contribution in trpc/trpc#5082Full Changelog: https://github.com/trpc/trpc/compare/v10.44.0...v10.44.1
v10.44.0
... (truncated)
Commits
936db6d
v10.45.28db7f76
v10.45.182f7310
fix: enforce consistent type import/export (#5298)4e101e3
fix: cache artifcats in entrypoints generation script (#5241)06fd40d
v10.45.0c6bf837
fix(server + client): addnoImplicitOverride
& add explicit overrides in `T...34a4941
patch: bump typescript and fix TS errors (#5178)2116145
chore(deps): update dependency undici to v6 (#5128)85f3baa
chore(deps): update dependency@types/node
to v20 (#5162)cd6a8ad
v10.44.1- Additional commits viewable in compare view
Updates @trpc/next
from 10.38.3 to 10.45.2
Release notes
Sourced from @trpc/next
's releases.
v10.45.2
What's Changed
- patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by
@KATT
in trpc/trpc#5560Full Changelog: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2
v10.45.1
What's Changed
- fix(server): parse url safer in fetch adapter by
@KATT
in trpc/trpc#5410- fix(react-query): no ref in
useHookResult()
by@KATT
in trpc/trpc#5433New Contributors
@cah4a
made their first contribution in trpc/trpc#5250@zacanger
made their first contribution in trpc/trpc#5276Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1
v10.45.0
What's Changed
- chore(next/app-dir): make a union of
nextHttpLink
options by@KATT
in trpc/trpc#5173- chore: bump typescript and fix TS errors by
@KATT
in trpc/trpc#5178- fix(server + client): add
noImplicitOverride
& add explicit overrides inTRPCError
/TRPCClientError
by@me-imfhd
in trpc/trpc#5195- fix(next): rm
react-ssr-prepass
dependency by@KATT
in trpc/trpc#5201- feat(next): exclude non-ssr queries from the hydrated state by
@jonluca
in trpc/trpc#5135- fix(server+client): Incorrect serialization of
IndexSignature
andRecord
by@microdev1
in trpc/trpc#5211- feat(server): deprecate
.createCaller()
in favor oft.createCallerFactory()
by@KATT
in trpc/trpc#5213New Contributors
@kwaimind
made their first contribution in trpc/trpc#5143@me-imfhd
made their first contribution in trpc/trpc#5195@microdev1
made their first contribution in trpc/trpc#5211Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0
v10.44.1
What's Changed
- fix(server): fix fetch adapter with trailing slash by
@KATT
in trpc/trpc#5090New Contributors
@anatolzak
made their first contribution in trpc/trpc#5082Full Changelog: https://github.com/trpc/trpc/compare/v10.44.0...v10.44.1
v10.44.0
... (truncated)
Commits
936db6d
v10.45.28db7f76
v10.45.182f7310
fix: enforce consistent type import/export (#5298)9b63baa
docs: update install snippets for@tanstack/react-query
(#5280)4e101e3
fix: cache artifcats in entrypoints generation script (#5241)06fd40d
v10.45.09922c13
feat: exclude non-ssr queries from the hydrated state (#5135)196c934
patch(next
): rmreact-ssr-prepass
dependency (#5201)d106a80
chore(next/app-dir): make a union ofnextHttpLink
options (#5173)85f3baa
chore(deps): update dependency@types/node
to v20 (#5162)- Additional commits viewable in compare view
Updates @trpc/react-query
from 10.38.3 to 10.45.2
Release notes
Sourced from @trpc/react-query
's releases.
v10.45.2
What's Changed
- patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by
@KATT
in trpc/trpc#5560Full Changelog: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2
v10.45.1
What's Changed
- fix(server): parse url safer in fetch adapter by
@KATT
in trpc/trpc#5410- fix(react-query): no ref in
useHookResult()
by@KATT
in trpc/trpc#5433New Contributors
@cah4a
made their first contribution in trpc/trpc#5250@zacanger
made their first contribution in trpc/trpc#5276Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1
v10.45.0
What's Changed
- chore(next/app-dir): make a union of
nextHttpLink
options by@KATT
in trpc/trpc#5173- chore: bump typescript and fix TS errors by
@KATT
in trpc/trpc#5178- fix(server + client): add
noImplicitOverride
& add explicit overrides inTRPCError
/TRPCClientError
by@me-imfhd
in trpc/trpc#5195- fix(next): rm
react-ssr-prepass
dependency by@KATT
in trpc/trpc#5201- feat(next): exclude non-ssr queries from the hydrated state by
@jonluca
in trpc/trpc#5135- fix(server+client): Incorrect serialization of
IndexSignature
andRecord
by@microdev1
in trpc/trpc#5211- feat(server): deprecate
.createCaller()
in favor oft.createCallerFactory()
by@KATT
in trpc/trpc#5213New Contributors
@kwaimind
made their first contribution in trpc/trpc#5143@me-imfhd
made their first contribution in trpc/trpc#5195@microdev1
made their first contribution in trpc/trpc#5211Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0
v10.44.1
What's Changed
- fix(server): fix fetch adapter with trailing slash by
@KATT
in trpc/trpc#5090New Contributors
@anatolzak
made their first contribution in trpc/trpc#5082Full Changelog: https://github.com/trpc/trpc/compare/v10.44.0...v10.44.1
v10.44.0
... (truncated)
Commits
- See full diff in compare view
Updates @trpc/server
from 10.38.3 to 10.45.2
Release notes
Sourced from @trpc/server
's releases.
v10.45.2
What's Changed
- patch(server): upgrade to typescript 5.4 and do fixes due to breaking changes in typescript by
@KATT
in trpc/trpc#5560Full Changelog: https://github.com/trpc/trpc/compare/v10.45.1...v10.45.2
v10.45.1
What's Changed
- fix(server): parse url safer in fetch adapter by
@KATT
in trpc/trpc#5410- fix(react-query): no ref in
useHookResult()
by@KATT
in trpc/trpc#5433New Contributors
@cah4a
made their first contribution in trpc/trpc#5250@zacanger
made their first contribution in trpc/trpc#5276Full Changelog: https://github.com/trpc/trpc/compare/v10.45.0...v10.45.1
v10.45.0
What's Changed
- chore(next/app-dir): make a union of
nextHttpLink
options by@KATT
in trpc/trpc#5173- chore: bump typescript and fix TS errors by
@KATT
in trpc/trpc#5178- fix(server + client): add
noImplicitOverride
& add explicit overrides inTRPCError
/TRPCClientError
by@me-imfhd
in trpc/trpc#5195- fix(next): rm
react-ssr-prepass
dependency by@KATT
in trpc/trpc#5201- feat(next): exclude non-ssr queries from the hydrated state by
@jonluca
in trpc/trpc#5135- fix(server+client): Incorrect serialization of
IndexSignature
andRecord
by@microdev1
in trpc/trpc#5211- feat(server): deprecate
.createCaller()
in favor oft.createCallerFactory()
by@KATT
in trpc/trpc#5213New Contributors
@kwaimind
made their first contribution in trpc/trpc#5143@me-imfhd
made their first contribution in trpc/trpc#5195@microdev1
made their first contribution in trpc/trpc#5211Full Changelog: https://github.com/trpc/trpc/compare/v10.44.1...v10.45.0
v10.44.1
What's Changed
- fix(server): fix fetch adapter with trailing slash by
@KATT
in trpc/trpc#5090New Contributors
@anatolzak
made their first contribution in trpc/trpc#5082Full Changelog: https://github.com/trpc/trpc/compare/v10.44.0...v10.44.1
v10.44.0
... (truncated)
Commits
936db6d
v10.45.2e9e0821
patch(server): upgrade to typescript 5.4 and do fixes (#5560)8db7f76
v10.45.10d93bc9
fix(server): parse url safer in fetch adapter (#5410)82f7310
fix: enforce consistent type import/export (#5298)444b08a
docs: updateerror.cause
comment (#5276)4e101e3
fix: cache artifcats in entrypoints generation script (#5241)353f6c2
chore(deps): update dependency valibot to ^0.25.0 (#5231)06fd40d
v10.45.050cf164
feat(server): deprecate.createCaller()
in favor of `t.createCallerFactory(...- Additional commits viewable in compare view
Updates clsx
from 2.0.0 to 2.1.1
Release notes
Sourced from clsx's releases.
v2.1.1
Patches
- (types) Include
bigint
inClassValue
type: (#96): 3d960ab Accommodates recent@types/react
changes toReactNode
. Thank you@ViliamKopecky
~!Chores
- Add
licenses.dev
badge: 684509c This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table forpolka@next
and a largerastro
example.
Full Changelog: https://github.com/lukeed/clsx/compare/v2.1.0...v2.1.1
v2.1.0
Features
Add new
clsx/lite
submodule forstring
-only usage: 1a49142This is a 140b version of
clsx
that is ideal for Tailwind and/or React contexts, which typically follow thisclsx
usage pattern:clsx('foo bar', props.maybe && 'conditional classes', props.className);
Important: This
clsx/lite
module ignores all non-string arguments and is therefore not a 1:1 replacement forclsx
itself!import { clsx } from 'clsx'; import { clsx as lite } from 'clsx/lite';
// strings-only usage is identical clsx('foo', null, 'bar', true && 'baz'); //=> "foo bar baz" lite('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
// clsx/lite ignores all non-strings clsx('foo', { a: true, b: false, c: true }); //=> "foo a c" lite('foo', { a: true, b: false, c: true }); //=> "foo"
Full Changelog: https://github.com/lukeed/clsx/compare/v2.0.1...v2.1.0
v2.0.1
Patches
- (perf) Cache
arguments.length
&array.length
for 6% performance gain (#26): deff09b
... (truncated)