Closed dependabot[bot] closed 9 months ago
Bumps the dev-dependencies group with 17 updates:
2.0.0
2.1.0
6.0.0
6.0.1
14.0.3
14.0.4
20.10.4
20.10.7
18.2.42
18.2.47
18.2.17
18.2.18
6.13.2
6.18.0
4.0.1
4.1.0
8.55.0
8.56.0
8.44.8
8.56.1
8.4.32
8.4.33
3.1.0
3.1.1
0.5.9
0.5.11
3.3.6
3.4.1
10.9.1
10.9.2
Updates clsx from 2.0.0 to 2.1.0
clsx
Sourced from clsx's releases.
v2.1.0 Features Add new clsx/lite submodule for string-only usage: 1a49142 This is a 140b version of clsx that is ideal for Tailwind and/or React contexts, which typically follow this clsx 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 for clsx 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 Adds 5 bytes (+2%) for ~3% avg performance gain Thank you @jalalazimi Chores Update module size: bf64e71 Update benchmark results: 855eec2, 6e3b2b9, Replace nyc with c8 in CI: 6e2468e Update Node CI matrix: 308a238 Fix readme typos (#76, #82): 42354d3, 4c9a55d Thank you @andipaetzold and @acusti Full Changelog: https://github.com/lukeed/clsx/compare/v2.0.0...v2.0.1
Add new clsx/lite submodule for string-only usage: 1a49142
clsx/lite
string
This is a 140b version of clsx that is ideal for Tailwind and/or React contexts, which typically follow this clsx 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 for clsx 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"
// 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
arguments.length
array.length
@jalalazimi
nyc
c8
@andipaetzold
@acusti
Full Changelog: https://github.com/lukeed/clsx/compare/v2.0.0...v2.0.1
a60db12
1a49142
5cac14c
855eec2
bf64e71
6e3b2b9
554ad31
deff09b
6e2468e
308a238
Updates ical-generator from 6.0.0 to 6.0.1
ical-generator
Sourced from ical-generator's releases.
v6.0.1 6.0.1 (2024-01-07) Bug Fixes Calendar: Remove prodId() string validation (a5caeaa), closes /www.rfc-editor.org/rfc/rfc5545#section-3 #555 v6.0.1-develop.10 6.0.1-develop.10 (2024-01-06) Bug Fixes Calendar: Remove prodId() string validation (a5caeaa), closes /www.rfc-editor.org/rfc/rfc5545#section-3 #555 v6.0.1-develop.9 6.0.1-develop.9 (2024-01-06) v6.0.1-develop.8 6.0.1-develop.8 (2024-01-06) v6.0.1-develop.7 6.0.1-develop.7 (2024-01-02) v6.0.1-develop.6 6.0.1-develop.6 (2023-12-26) v6.0.1-develop.5 6.0.1-develop.5 (2023-12-19) v6.0.1-develop.4 6.0.1-develop.4 (2023-12-13) v6.0.1-develop.3 6.0.1-develop.3 (2023-12-03) v6.0.1-develop.2 6.0.1-develop.2 (2023-11-08) v6.0.1-develop.1 6.0.1-develop.1 (2023-10-29)
prodId()
Sourced from ical-generator's changelog.
6.0.1 (2024-01-07) Bug Fixes Calendar: Remove prodId() string validation (a5caeaa), closes /www.rfc-editor.org/rfc/rfc5545#section-3 #555
1d96fc1
0a56bd1
4d7ad8c
a5caeaa
c7776f2
1da1724
3784be9
6429800
521ab89
ab04e98
Updates next from 14.0.3 to 14.0.4
next
Sourced from next's releases.
v14.0.4 Core Changes Remove early return that is duplicated in useSearchParams: #58545 Support passing a relative string to pushState/replaceState: #58438 [.next/trace] Record start-dev-server trace span: #58469 Update React from 593ecee66 to 2c338b16f.: #58553 turbopack: Fix pageExtensions with dots: #58504 fix: revalidation with file-system-cache: #58508 fix: fetch() behavior when "dynamic" is "force-dynamic: #58484 Add cacheNodeSeedData to RSC payload: #58566 Lift subtree data out of React tree: #58569 fix(next-core): allow runtime segment option in pages/api: #58409 Update rust-toolchain to 2023-11-16: #58558 refactor: Add lightningcss mode for turbopack-css: #58471 fix: avoid race condition when download swc wasm: #58536 Removed unused route resolver code: #58702 Add experimental.windowHistorySupport to Turbopack supported options: #58717 Improve Server Actions compiler: #58391 Seed CacheNodes immediately after receiving response: #58669 Turbopack: improve error display: #58734 fix node externals resolving: #58129 disable static prefetching behavior for dynamic segments: #58609 fix: ensure DynamicUsageErrors caught during render bubble up: #58747 fix image.domains deprecation warning: #58656 fix waitUntil handling in pipeToNodeResponse: #58744 Use consistent resolve extensions alias for compiler: #58725 Turbopack: Use styled issue titles and details: #58743 route handlers: make req.cookies opt you into dynamic: #58769 OpenTelemetry: a more reliable way to establish a root context: #58662 Revert "fix: fetch() behavior when "dynamic" is "force-dynamic": #58735 [Instrumentation] Don't treat instrumentation hook as pages: #58775 Fix turboFlag set to false: #58795 [.next/trace] Track server requests and memory usage: #58690 place virtual module inside the project directory: #58798 fix rewrites to edge routes: #58797 Polish unsupported metadata warning with doc link: #58750 Enable .mjs extension config in Turbopack: #58825 Turbopack: align automatic externals code with webpack: #58851 Upgrade Turbopack: #58859 OpenTelemetry: propagate context to sandbox: #58791 fix uniqueness of layers: #58872 disable flushToDisk during generateStaticParams: #58871 Turbopack: enable some node.js builtin in edge runtime: #58850 add NEXT_TRIGGER_URL env var to show request triggering a compilation: #58762 Update swc_core to v0.86.81: #58517 Trace server updates: #58694 remove duplicate util file for redirect status: #58878 fix(windows): workaround for intermittent locks on windows when renaming files: #58835 unify server action detection logic: #58879
turbopack-css
generateStaticParams
NEXT_TRIGGER_URL
swc_core
v0.86.81
... (truncated)
c9f859e
eaa0e7c
77dc763
aa08c49
37c6a10
d07a370
e1fe0c9
a578cc8
2874bc0
42ec6c8
Updates @types/node from 20.10.4 to 20.10.7
@types/node
Updates @types/react from 18.2.42 to 18.2.47
@types/react
Updates @types/react-dom from 18.2.17 to 18.2.18
@types/react-dom
Updates @typescript-eslint/eslint-plugin from 6.13.2 to 6.18.0
@typescript-eslint/eslint-plugin
Sourced from @typescript-eslint/eslint-plugin's releases.
@typescript-eslint/eslint-plugin
v6.18.0 6.18.0 (2024-01-06) 🚀 Features eslint-plugin: [no-var-requires, no-require-imports] allow option (#7710) typescript-estree: throw on invalid update expressions (#7202) typescript-estree: throw error when CatchClause param contains initializer (#8183) ❤️ Thank You auvred @auvred Joshua Chen You can read about our versioning strategy and releases on our website. v6.17.0 6.17.0 (2024-01-01) Bug Fixes eslint-plugin: [no-restricted-imports] prevent crash when patterns or paths in options are empty (#8108) (675e987) Features eslint-plugin: [no-floating-promises] flag result of .map(async) (#7897) (5857356) eslint-plugin: [switch-exhaustiveness-check] add an option to warn against a default case on an already exhaustive switch (#7539) (6a219bd) You can read about our versioning strategy and releases on our website. v6.16.0 6.16.0 (2023-12-25) Bug Fixes eslint-plugin: [unbound-method] exempt all non-Promise built-in statics (#8096) (3182959) Features eslint-plugin: deprecate formatting rules (#8073) (04dea84) typescript-estree: add allowDefaultProjectForFiles project service allowlist option (#7752) (7ddadda) You can read about our versioning strategy and releases on our website.
@auvred
You can read about our versioning strategy and releases on our website.
patterns
paths
default
switch
Sourced from @typescript-eslint/eslint-plugin's changelog.
6.18.0 (2024-01-06) 🚀 Features typescript-estree: throw on invalid update expressions eslint-plugin: [no-var-requires, no-require-imports] allow option ❤️ Thank You auvred Joshua Chen You can read about our versioning strategy and releases on our website. 6.17.0 (2024-01-01) Bug Fixes eslint-plugin: [no-restricted-imports] prevent crash when patterns or paths in options are empty (#8108) (675e987) Features eslint-plugin: [no-floating-promises] flag result of .map(async) (#7897) (5857356) eslint-plugin: [switch-exhaustiveness-check] add an option to warn against a default case on an already exhaustive switch (#7539) (6a219bd) You can read about our versioning strategy and releases on our website. 6.16.0 (2023-12-25) Bug Fixes eslint-plugin: [unbound-method] exempt all non-Promise built-in statics (#8096) (3182959) Features eslint-plugin: deprecate formatting (meta.type: layout) rules (#8073) (04dea84) eslint-plugin: deprecate no-extra-semi in favor of ESLint Stylistic equivalent (#8123) (9368bf3) You can read about our versioning strategy and releases on our website.
typescript-estree: throw on invalid update expressions
eslint-plugin: [no-var-requires, no-require-imports] allow option
21460ef
d0977ab
684d626
f7b5ca8
1a8e0dc
e566a5d
675e987
5857356
6a219bd
5ad1b76
Updates @typescript-eslint/parser from 6.13.2 to 6.18.0
@typescript-eslint/parser
Sourced from @typescript-eslint/parser's releases.
@typescript-eslint/parser
Sourced from @typescript-eslint/parser's changelog.
6.18.0 (2024-01-06) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our versioning strategy and releases on our website. 6.17.0 (2024-01-01) Note: Version bump only for package @typescript-eslint/parser You can read about our versioning strategy and releases on our website. 6.16.0 (2023-12-25) Note: Version bump only for package @typescript-eslint/parser You can read about our versioning strategy and releases on our website. 6.15.0 (2023-12-18) Note: Version bump only for package @typescript-eslint/parser You can read about our versioning strategy and releases on our website. 6.14.0 (2023-12-11) Note: Version bump only for package @typescript-eslint/parser You can read about our versioning strategy and releases on our website.
This was a version bump only for parser to align it with other projects, there were no code changes.
Note: Version bump only for package @typescript-eslint/parser
7246e56
6128a02
c7d702f
Updates dotenv-flow from 4.0.1 to 4.1.0
dotenv-flow
Sourced from dotenv-flow's releases.
v4.1.0 ✨ New Features options.files is a new configuration option that allows explicitly specifying a list (and the order) of .env* files to load (PR: kerimdzhanov/dotenv-flow#87). 📃 Full Changelog › https://github.com/kerimdzhanov/dotenv-flow/compare/v4.0.1...v4.1.0
options.files
› https://github.com/kerimdzhanov/dotenv-flow/compare/v4.0.1...v4.1.0
Sourced from dotenv-flow's changelog.
4.1.0 (2023-12-26) Features dotenv-flow: implement options.files, closes #83 (#87) (6a47b2c)
7f07cf3
6a47b2c
Updates eslint from 8.55.0 to 8.56.0
eslint
Sourced from eslint's releases.
v8.56.0 Features 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212) (Bryan Mishkin) 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818) (Arka Pratim Chaudhuri) Bug Fixes 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846) (Francesco Trotta) 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812) (Bryan Mishkin) Documentation 9007719 docs: update link in ways-to-extend.md (#17839) (Amel SELMANE) 3a22236 docs: Update README (GitHub Actions Bot) 54c3ca6 docs: fix migration-guide example (#17829) (Tanuj Kanti) 4391b71 docs: check config comments in rule examples (#17815) (Francesco Trotta) fd28363 docs: remove mention about ESLint stylistic rules in readme (#17810) (Zwyx) 48ed5a6 docs: Update README (GitHub Actions Bot) Chores ba6af85 chore: upgrade @eslint/js@8.56.0 (#17864) (Milos Djermanovic) 60a531a chore: package.json update for @eslint/js release (Jenkins) ba87a06 chore: update dependency markdownlint to ^0.32.0 (#17783) (renovate[bot]) 9271d10 chore: add GitHub issue template for docs issues (#17845) (Josh Goldberg ✨) 70a686b chore: Convert rule tests to FlatRuleTester (#17819) (Nicholas C. Zakas) f3a599d chore: upgrade eslint-plugin-unicorn to v49.0.0 (#17837) (唯然) 905d4b7 chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (#17838) (唯然) 4d7c3ce chore: update eslint-plugin-n v16.4.0 (#17836) (唯然) fd0c60c ci: unpin Node.js 21.2.0 (#17821) (Francesco Trotta)
0dd9704
31a7e3f
7d5e5f6
TypeError: fs.exists is not a function
74739c8
9007719
3a22236
54c3ca6
4391b71
fd28363
48ed5a6
ba6af85
@eslint/js
@8
60a531a
ba87a06
9271d10
70a686b
f3a599d
905d4b7
4d7c3ce
fd0c60c
Sourced from eslint's changelog.
v8.56.0 - December 15, 2023 ba6af85 chore: upgrade @eslint/js@8.56.0 (#17864) (Milos Djermanovic) 60a531a chore: package.json update for @eslint/js release (Jenkins) 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212) (Bryan Mishkin) 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818) (Arka Pratim Chaudhuri) ba87a06 chore: update dependency markdownlint to ^0.32.0 (#17783) (renovate[bot]) 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846) (Francesco Trotta) 9271d10 chore: add GitHub issue template for docs issues (#17845) (Josh Goldberg ✨) 70a686b chore: Convert rule tests to FlatRuleTester (#17819) (Nicholas C. Zakas) 9007719 docs: update link in ways-to-extend.md (#17839) (Amel SELMANE) f3a599d chore: upgrade eslint-plugin-unicorn to v49.0.0 (#17837) (唯然) 905d4b7 chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (#17838) (唯然) 4d7c3ce chore: update eslint-plugin-n v16.4.0 (#17836) (唯然) 3a22236 docs: Update README (GitHub Actions Bot) 54c3ca6 docs: fix migration-guide example (#17829) (Tanuj Kanti) 4391b71 docs: check config comments in rule examples (#17815) (Francesco Trotta) fd28363 docs: remove mention about ESLint stylistic rules in readme (#17810) (Zwyx) fd0c60c ci: unpin Node.js 21.2.0 (#17821) (Francesco Trotta) 48ed5a6 docs: Update README (GitHub Actions Bot) 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812) (Bryan Mishkin)
v8.56.0 - December 15, 2023
8e8e9f8
085978b
Updates @types/eslint from 8.44.8 to 8.56.1
@types/eslint
Updates eslint-config-next from 14.0.3 to 14.0.4
eslint-config-next
Sourced from eslint-config-next's releases.
d4d9dc4
1f6defd
f6ebc2b
50d4578
6387c9c
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Stále čekáme na opravu regrese v Nextu 💩
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.
Bumps the dev-dependencies group with 17 updates:
2.0.0
2.1.0
6.0.0
6.0.1
14.0.3
14.0.4
20.10.4
20.10.7
18.2.42
18.2.47
18.2.17
18.2.18
6.13.2
6.18.0
6.13.2
6.18.0
4.0.1
4.1.0
8.55.0
8.56.0
8.44.8
8.56.1
14.0.3
14.0.4
8.4.32
8.4.33
3.1.0
3.1.1
0.5.9
0.5.11
3.3.6
3.4.1
10.9.1
10.9.2
Updates
clsx
from 2.0.0 to 2.1.0Release notes
Sourced from clsx's releases.
Commits
a60db12
2.1.01a49142
feat: addclsx/lite
module5cac14c
2.0.1855eec2
chore(bench): include ≠ symbolbf64e71
chore: update module size6e3b2b9
chore: update benchmarks;554ad31
chore: dedicated string vs number var usage;deff09b
chore: cache arguments/array lengths (#26)6e2468e
fix(ci): replace nyc -> c8308a238
chore(ci): update node matrixUpdates
ical-generator
from 6.0.0 to 6.0.1Release notes
Sourced from ical-generator's releases.
Changelog
Sourced from ical-generator's changelog.
Commits
1d96fc1
chore(release): :bookmark: 6.0.1 [skip ci]0a56bd1
Merge pull request #556 from sebbo2002/develop4d7ad8c
test(Calendar): Remove prodId format validation testa5caeaa
fix(Calendar): RemoveprodId()
string validationc7776f2
Merge pull request #553 from xehpuk/patch-11da1724
Merge pull request #554 from xehpuk/patch-23784be9
docs(ICalEvent): Fix JSDoc6429800
docs(ICalEvent): Fix JSDoc521ab89
docs(README): fix quick start example codeab04e98
chore(release): :bookmark: 6.0.1-develop.7 [skip ci]Updates
next
from 14.0.3 to 14.0.4Release notes
Sourced from next's releases.
... (truncated)
Commits
c9f859e
v14.0.4eaa0e7c
Skip latest commit check for stable release (#59383)77dc763
v14.0.4-canary.49aa08c49
rm console.log (#59381)37c6a10
v14.0.4-canary.48d07a370
fixes the logging by showing full URLs only on demand (#58088)e1fe0c9
test: ability to use node debugger (#56277)a578cc8
fix inconsistent scroll restoration behavior (#59366)2874bc0
Fix server output bundling packages module resolving (#59369)42ec6c8
Update Turbopack test manifest (#59356)Updates
@types/node
from 20.10.4 to 20.10.7Commits
Updates
@types/react
from 18.2.42 to 18.2.47Commits
Updates
@types/react-dom
from 18.2.17 to 18.2.18Commits
Updates
@typescript-eslint/eslint-plugin
from 6.13.2 to 6.18.0Release notes
Sourced from
@typescript-eslint/eslint-plugin
's releases.... (truncated)
Changelog
Sourced from
@typescript-eslint/eslint-plugin
's changelog.... (truncated)
Commits
21460ef
chore(release): publish 6.18.0d0977ab
chore: use nx release (#8194)684d626
docs(eslint-plugin): [switch-exhaustiveness-check] remove extra quotes in rul...f7b5ca8
feat(eslint-plugin): [no-var-requires, no-require-imports] allow option (#7710)1a8e0dc
feat(typescript-estree): throw on invalid update expressions (#7202)e566a5d
chore: publish v6.17.0675e987
fix(eslint-plugin): [no-restricted-imports] prevent crash whenpatterns
or ...5857356
feat(eslint-plugin): [no-floating-promises] flag result of .map(async) (#7897)6a219bd
feat(eslint-plugin): [switch-exhaustiveness-check] add an option to warn agai...5ad1b76
docs: modify examples for explicit-module-boundary-types (#7404)Updates
@typescript-eslint/parser
from 6.13.2 to 6.18.0Release notes
Sourced from
@typescript-eslint/parser
's releases.... (truncated)
Changelog
Sourced from
@typescript-eslint/parser
's changelog.Commits
21460ef
chore(release): publish 6.18.0d0977ab
chore: use nx release (#8194)e566a5d
chore: publish v6.17.07246e56
chore: publish v6.16.06128a02
chore: publish v6.15.0c7d702f
chore: publish v6.14.0Updates
dotenv-flow
from 4.0.1 to 4.1.0Release notes
Sourced from dotenv-flow's releases.
Changelog
Sourced from dotenv-flow's changelog.
Commits
7f07cf3
chore(release): v4.1.06a47b2c
feat(dotenv-flow): implementoptions.files
, closes #83 (#87)Updates
eslint
from 8.55.0 to 8.56.0Release notes
Sourced from eslint's releases.
Changelog
Sourced from eslint's changelog.
Commits
8e8e9f8
8.56.0085978b
Build: changelog update for 8.56.0ba6af85
chore: upgrade@eslint/js
@8
.56.0 (#17864)60a531a
chore: package.json update for@eslint/js
release0dd9704
feat: Support custom severity when reporting unused disable directives (#17212)31a7e3f
feat: fix no-restricted-properties false negatives with unknown objects (#17818)ba87a06
chore: update dependency markdownlint to ^0.32.0 (#17783)7d5e5f6
fix:TypeError: fs.exists is not a function
on read-only file system (#17846)9271d10
chore: add GitHub issue template for docs issues (#17845)70a686b
chore: Convert rule tests to FlatRuleTester (#17819)Updates
@types/eslint
from 8.44.8 to 8.56.1Commits
Updates
eslint-config-next
from 14.0.3 to 14.0.4Release notes
Sourced from eslint-config-next's releases.
... (truncated)
Commits
c9f859e
v14.0.477dc763
v14.0.4-canary.4937c6a10
v14.0.4-canary.48d4d9dc4
v14.0.4-canary.471f6defd
v14.0.4-canary.46f6ebc2b
v14.0.4-canary.4550d4578
v14.0.4-canary.446387c9c
v14.0.4-canary.43The latest updates on your projects. Learn more about Vercel for Git ↗︎
Stále čekáme na opravu regrese v Nextu 💩
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.