next-image-s3-imgproxy-loader
next-image-s3-imgproxy-loader copied to clipboard
Bump the development-dependencies group across 1 directory with 7 updates
Bumps the development-dependencies group with 7 updates in the / directory:
Package | From | To |
---|---|---|
next | 14.2.4 |
14.2.5 |
npm-check-updates | 16.14.20 |
17.0.0 |
prettier | 3.3.2 |
3.3.3 |
rimraf | 5.0.7 |
6.0.1 |
rollup | 4.18.0 |
4.19.2 |
typescript | 5.5.3 |
5.5.4 |
eslint | 8.57.0 |
9.8.0 |
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
0bf7f52
v14.2.530d6dfc
fix: metadata route merging conflicts186ec6b
Log stdio for pull-turbo-cache script (#66759)45656d3
Ensure turbo is setup when building in docker (#66804)08e7fd1
Upgrade acorn (#67592)1d08dab
avoid merging global css in a way that leaks into other chunk groups (#67373)21a9d59
Fix server action edge redirect with middleware rewrite (#67148)1b10b13
fix(next): reject protocol-relative URLs in image optimization (#65752)c64c61d
fix(next-swc): correct path interop to filepath for wasm (#65633)6c661d2
Use addDependency to track metadata route file changes (#66714)- Additional commits viewable in compare view
Updates npm-check-updates
from 16.14.20 to 17.0.0
Release notes
Sourced from npm-check-updates's releases.
v17.0.0
Breaking
- Require node >= 18.18.0
- In workspaces mode,
--root
is now set by default (#1353)
- To not check the root package.json, use
--no-root
.- If you have a packageManager field in your package.json, it is now upgraded by default (#1390)
- Use
--dep prod,dev,optional
for the old behavior.v17.0.0-1
This is the first prerelease in preparation for the next major v17. It mainly involves a node engines bump and lot of internal dependency upgrades, so if you notice any regressions, please let me know!
Run
npx [email protected]
to test.There are a two more breaking/high-risk changes I intend to make for the v17 release, which I will also release as prerelease versions for testing.
Thanks for your help and enjoy! 🍰
Breaking
Commits
e67f417
17.0.00e23ffe
bun: Use getEngines, getPeerDependencies, packageAuthorChanged from npm (#1435).a6b0d81
17.0.0-89786536
prettierb3fe815
Bump dependencies.bedf05b
Revert "Use default export (#1410)"4bc3a37
e2e: Fail if CJS or ESM test fails.78eb131
17.0.0-76a6ffed
Use default export (#1410)0202566
Simplify global test.- Additional commits viewable in compare view
Updates prettier
from 3.3.2 to 3.3.3
Changelog
Sourced from prettier's changelog.
3.3.3
Add parentheses for nullish coalescing in ternary (#16391 by
@cdignam-segment
)This change adds clarity to operator precedence.
// Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#16458 by
@y-schneider
)Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.
// Input @(foo`tagged template`) class X {}
// Prettier 3.3.2
@foo
tagged template
class X {}// Prettier 3.3.3
@(footagged template
)
class X {}
Support
@let
declaration syntax (#16474 by@sosukesuzuki
)Adds support for Angular v18
@let
declaration syntax.Please see the following code example. The
@let
declaration allows you to define local variables within the template:
... (truncated)
Commits
5282938
Release 3.3.39102b73
Add parentheses for decorator expressions (#16458)6bbd461
chore(deps): update eslint related dependencies (#16478)04b560f
chore(deps): update dependency browserslist to v4.23.2 (#16475)614f070
chore(deps): update typescript-eslint to v8.0.0-alpha.41 (#16477)d59a15d
chore(deps): update dependency npm-run-all2 to v6.2.2 (#16476)5ca2fc9
Support Angular@let
declaration syntax (#16474)bfcfdcc
chore(deps): update babel to v7.24.8 (#16472)977c161
chore(deps): update dependency acorn to v8.12.1 (#16464)550606e
chore(deps): update babel to v7.24.8 (#16470)- Additional commits viewable in compare view
Updates rimraf
from 5.0.7 to 6.0.1
Changelog
Sourced from rimraf's changelog.
6.0
- Drop support for nodes before v20
- Add
--version
to CLI5.0
- No default export, only named exports
4.4
- Provide Dirent or Stats object as second argument to filter
4.3
- Return boolean indicating whether the path was fully removed
- Add filter option
- bin: add --verbose, -v to print files as they are deleted
- bin: add --no-verbose, -V to not print files as they are deleted
- bin: add -i --interactive to be prompted on each deletion
- bin: add -I --no-interactive to not be prompted on each deletion
- 4.3.1 Fixed inappropriately following symbolic links to directories
v4.2
- Brought back
glob
support, using the new and improved glob v9v4.1
- Improved hybrid module with no need to look at the
.default
dangly bit..default
preserved as a reference torimraf
for compatibility with anyone who came to rely on it in v4.0.- Accept and ignore
-rf
and-fr
arguments to the bin.v4.0
- Remove
glob
dependency entirely. This library now only accepts actual file and folder names to delete.- Accept array of paths or single path.
- Windows performance and reliability improved.
- All strategies separated into explicitly exported methods.
- Drop support for Node.js below version 14
- rewrite in TypeScript
- ship CJS/ESM hybrid module
- Error on unknown arguments to the bin. (Previously they were silently ignored.)
v3.0
... (truncated)
Commits
21560c7
6.0.1d3881ad
load version with package-json-from-dist6de86bf
feat: add --version flag for CLI49e1923
chore: add/.tap
to .gitignore90d1feb
6.0.09b2a2b1
drop dead node versions546c9ec
5.0.9043338a
restore support for dead node versions0d83c12
5.0.888e632b
drop eol node 14- Additional commits viewable in compare view
Updates rollup
from 4.18.0 to 4.19.2
Release notes
Sourced from rollup's releases.
v4.19.2
4.19.2
2024-08-01
Bug Fixes
- Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)
Pull Requests
- #5597: Fix retrieval of literal values for chained namespaces (
@lukastaegert
)v4.19.1
4.19.1
2024-07-27
Bug Fixes
- Do not remove parantheses when tree-shaking logical expressions (#5584)
- Do not ignore side effects in calls left of an optional chaining operator (#5589)
Pull Requests
- #5584: fix: find whitespace from operator position to start (
@TrickyPi
)- #5587: docs: improve command by code-group (
@thinkasany
,@lukastaegert
)- #5589: Fix side effect detection in optional chains (
@lukastaegert
)- #5592: chore(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5593: chore(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5594: chore(deps): lock file maintenance (
@renovate
[bot])- #5595: chore(deps): lock file maintenance (
@renovate
[bot])v4.19.0
4.19.0
2024-07-20
Features
- Implement support for decorators (#5562)
Bug Fixes
- Improve soucemap generation when tree-shaking logical expressions (#5581)
Pull Requests
- #5562: feat: implementing decorator support (
@TrickyPi
,@lukastaegert
)- #5570: refactor(finalisers): condition branch (
@Simon-He95
,@zhangmo8
)
... (truncated)
Changelog
Sourced from rollup's changelog.
4.19.2
2024-08-01
Bug Fixes
- Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)
Pull Requests
- #5597: Fix retrieval of literal values for chained namespaces (
@lukastaegert
)4.19.1
2024-07-27
Bug Fixes
- Do not remove parantheses when tree-shaking logical expressions (#5584)
- Do not ignore side effects in calls left of an optional chaining operator (#5589)
Pull Requests
- #5584: fix: find whitespace from operator position to start (
@TrickyPi
)- #5587: docs: improve command by code-group (
@thinkasany
,@lukastaegert
)- #5589: Fix side effect detection in optional chains (
@lukastaegert
)- #5592: chore(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5593: chore(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5594: chore(deps): lock file maintenance (
@renovate
[bot])- #5595: chore(deps): lock file maintenance (
@renovate
[bot])4.19.0
2024-07-20
Features
- Implement support for decorators (#5562)
Bug Fixes
- Improve soucemap generation when tree-shaking logical expressions (#5581)
Pull Requests
- #5562: feat: implementing decorator support (
@TrickyPi
,@lukastaegert
)- #5570: refactor(finalisers): condition branch (
@Simon-He95
,@zhangmo8
)- #5572: Improve chunk and asset type information in docs (
@lukastaegert
)- #5573: Switch to audit resolver to ignore requirejs vulnerability (
@lukastaegert
)- #5575: chore(deps): update dependency inquirer to v10 (
@renovate
[bot],@lukastaegert
)
... (truncated)
Commits
39955e5
4.19.27625d3e
Fix retrieval of literal values for chained namespaces (#5597)8b96791
4.19.1610d7c0
fix: find whitespace from operator position to start (#5584)57ea7b1
Fix side effect detection in optional chains (#5589)c16c924
docs: improve command by code-group (#5587)27260de
chore(deps): lock file maintenance (#5595)e7cc7ef
chore(deps): lock file maintenance (#5594)87b666d
chore(deps): lock file maintenance minor/patch updates (#5593)cff9a43
chore(deps): lock file maintenance minor/patch updates (#5592)- Additional commits viewable in compare view
Updates typescript
from 5.5.3 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
- fixed issues query for TypeScript v5.5.4 (Stable).
- fixed issues query for TypeScript v5.5.3 (Stable).
- fixed issues query for TypeScript v5.5.2 (Stable).
- fixed issues query for TypeScript v5.5.1 (RC).
- fixed issues query for TypeScript v5.5.0 (Beta).
Downloads are available on:
- npm
- NuGet package (soon!)
Commits
c8a7d58
Bump version to 5.5.4 and LKGc0ded04
🤖 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
Updates eslint
from 8.57.0 to 9.8.0
Release notes
Sourced from eslint's releases.
v9.8.0
Features
Bug Fixes
ab0ff27
fix: Throw error when invalid flags passed (#18705) (Nicholas C. Zakas)70dc803
fix:basePath
directory can never be ignored (#18711) (Milos Djermanovic)Documentation
282df1a
docs: Add system theme option (#18617) (Amaresh S M)53b1ff0
docs: Debug config docs (#18698) (Nicholas C. Zakas)a7016a5
docs: fix search input stylings (#18682) (Amaresh S M)Build Related
Chores
deee448
chore: upgrade to@eslint/[email protected]
(#18720) (Francesco Trotta)4aaf2b3
chore: package.json update for@eslint/js
release (Jenkins)8e1a627
chore: update dependency@eslint/core
to ^0.2.0 (#18700) (renovate[bot])v9.7.0
Features
7bd9839
feat: add support for es2025 duplicate named capturing groups (#18630) (Yosuke Ota)1381394
feat: addregex
option inno-restricted-imports
(#18622) (Nitin Kumar)Bug Fixes
Documentation
9f416db
docs: Add Powered by Algolia label to the search. (#18633) (Amaresh S M)c8d26cb
docs: Open JS Foundation -> OpenJS Foundation (#18649) (Milos Djermanovic)6e79ac7
docs:loadESLint
does not support optioncwd
(#18641) (Francesco Trotta)Chores
793b718
chore: upgrade@eslint/js
@9
.7.0 (#18680) (Francesco Trotta)7ed6f9a
chore: package.json update for@eslint/js
release (Jenkins)7bcda76
refactor: Add type references (#18652) (Nicholas C. Zakas)51bf57c
chore: add tech sponsors through actions (#18624) (Strek)6320732
refactor: don't useparent
property inNodeEventGenerator
(#18653) (Milos Djermanovic)9e6d640
refactor: move "Parsing error" prefix adding to Linter (#18650) (Milos Djermanovic)v9.6.0
Features
e2b16e2
feat: Implement feature flags (#18516) (Nicholas C. Zakas)8824aa1
feat: addecmaVersion: 2025
, parsing duplicate named capturing groups (#18596) (Milos Djermanovic)Bug Fixes
... (truncated)
Changelog
Sourced from eslint's changelog.
v9.8.0 - July 26, 2024
deee448
chore: upgrade to@eslint/[email protected]
(#18720) (Francesco Trotta)4aaf2b3
chore: package.json update for@eslint/js
release (Jenkins)8e1a627
chore: update dependency@eslint/core
to ^0.2.0 (#18700) (renovate[bot])13d0bd3
feat: Add and use SourceCode#getLoc/getRange (#18703) (Nicholas C. Zakas)282df1a
docs: Add system theme option (#18617) (Amaresh S M)ab0ff27
fix: Throw error when invalid flags passed (#18705) (Nicholas C. Zakas)70dc803
fix:basePath
directory can never be ignored (#18711) (Milos Djermanovic)53b1ff0
docs: Debug config docs (#18698) (Nicholas C. Zakas)4514424
build: Enable JSON linting (#18681) (Nicholas C. Zakas)a7016a5
docs: fix search input stylings (#18682) (Amaresh S M)v9.7.0 - July 12, 2024
793b718
chore: upgrade@eslint/js
@9
.7.0 (#18680) (Francesco Trotta)7ed6f9a
chore: package.json update for@eslint/js
release (Jenkins)14e9f81
fix: destructuring in catch clause inno-unused-vars
(#18636) (Francesco Trotta)7bcda76
refactor: Add type references (#18652) (Nicholas C. Zakas)51bf57c
chore: add tech sponsors through actions (#18624) (Strek)9f416db
docs: Add Powered by Algolia label to the search. (#18633) (Amaresh S M)6320732
refactor: don't useparent
property inNodeEventGenerator
(#18653) (Milos Djermanovic)7bd9839
feat: add support for es2025 duplicate named capturing groups (#18630) (Yosuke Ota)1381394
feat: addregex
option inno-restricted-imports
(#18622) (Nitin Kumar)9e6d640
refactor: move "Parsing error" prefix adding to Linter (#18650) (Milos Djermanovic)c8d26cb
docs: Open JS Foundation -> OpenJS Foundation (#18649) (Milos Djermanovic)6e79ac7
docs:loadESLint
does not support optioncwd
(#18641) (Francesco Trotta)v9.6.0 - June 28, 2024
b15ee30
chore: upgrade@eslint/js
@9
.6.0 (#18632) (Milos Djermanovic)d655503
chore: package.json update for@eslint/js
release (Jenkins)1613e2e
fix: Allow escaping characters in config patterns on Windows (#18628) (Milos Djermanovic)13dbecd
docs: Limit search to just docs (#18627) (Nicholas C. Zakas)7c78ad9
refactor: Use language.visitorKeys and check for non-JS SourceCode (#18625) (Nicholas C. Zakas)e2b16e2
feat: Implement feature flags (#18516) (Nicholas C. Zakas)69ff64e
refactor: Return value of applyInlineConfig() (#18623) (Nicholas C. Zakas)375227f
docs: Update getting-started.md - add pnpm to init eslint config (#18599) (Kostiantyn Ochenash)44915bb
docs: Update README (GitHub Actions Bot)d2d06f7
refactor: use/
separator when adjustingignorePatterns
on Windows (#18613) (Milos Djermanovic)21d3766
fix:no-unused-vars
include caught errors pattern in report message (#18609) (Kirk Waiblinger)6421973
refactor: fix disable directives for languages with 0-based lines (#18605) (Milos Djermanovic)d7a7736
fix: improveno-unused-vars
message on unused caught errors (#18608) (Kirk Waiblinger)0a13539
refactor: Allow optional methods for languages (#18604) (Nicholas C. Zakas)f9e95d2
fix: correct locations of invalid/* eslint */
comments (#18593) (Milos Djermanovic)8824aa1
feat: addecmaVersion: 2025
, parsing duplicate named capturing groups (#18596) (Milos Djermanovic)c7ddee0
chore: make internal-rules not being a package (#18601) (Milos Djermanovic)3379164
chore: remove.eslintrc.js
(#18011) (唯然)d0c3a32
chore: update knip (with webdriver-io plugin) (#18594) (Lars Kappert)d50db7b
docs: Update vscode-eslint info (#18595) (Nicholas C. Zakas)
... (truncated)
Commits
63881dc
9.8.0de36d1d
Build: changelog update for 9.8.0deee448
chore: upgrade to@eslint/[email protected]
(#18720)4aaf2b3
chore: package.json update for@eslint/js
release2570051
chore: package.json revert@eslint/js
version to 9.7.0 (#18719)d73b203
chore: package.json update for@eslint/js
release8e1a627
chore: update dependency@eslint/core
to ^0.2.0 (#18700)13d0bd3
feat: Add and use SourceCode#getLoc/getRange (#18703)282df1a
docs: Add system theme option (#18617)ab0ff27
fix: Throw error when invalid flags passed (#18705)- 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 <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