fix(deps): update all non-major dependencies #13
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.3.2->^1.5.6^17.3.0->^17.4.2^4.17.15->^4.17.1618.0.26->18.0.27^2.8.2->^2.8.163.0.1->3.0.23.0.0->3.0.15.1.2->5.1.61.2.2->1.2.6^0.16.13->^0.17.5^8.31.0->^8.33.0^1.13.0->^1.14.0^8.1.3->^8.5.4^22.4.7->^22.4.9^3.2.1->^3.2.2^8.4.20->^8.4.21^2.8.1->^2.8.3^12.1.1->^12.1.43.9.1->3.12.0^3.12.1->^3.12.2^4.0.3->^4.0.4^1.0.4->^1.0.7^0.4.69->^0.4.71^4.2.0->^4.3.2Release Notes
ant-design/cssinjs
v1.5.6Compare Source
3dff670v1.5.5Compare Source
3c98eb6v1.5.4Compare Source
87dddeev1.5.3Compare Source
4e48272v1.5.2Compare Source
cae0e1av1.5.1Compare Source
5dc40b9v1.5.0Compare Source
277056988e99a8v1.4.0Compare Source
40cc35fefdd397c545414conventional-changelog/commitlint
v17.4.2Compare Source
Note: Version bump only for package @commitlint/cli
v17.4.1Compare Source
Note: Version bump only for package @commitlint/cli
v17.4.0Compare Source
Bug Fixes
vercel/vercel
v2.8.16Compare Source
v2.8.15Compare Source
v2.8.14Compare Source
v2.8.13Compare Source
v2.8.12Compare Source
v2.8.11Compare Source
v2.8.10Compare Source
v2.8.6Compare Source
v2.8.5Compare Source
v2.8.4Compare Source
v2.8.3Compare Source
vitejs/vite (@vitejs/plugin-legacy)
v3.0.2Compare Source
Please refer to CHANGELOG.md for details.
vitejs/vite-plugin-react
v3.0.1Compare Source
ant-design/ant-design
v5.1.6Compare Source
menuprop. #40211 @candy4290destroyAllnot work as expect. #40281 @ds1371danimessageglobal static methodconfigsettingdurationnot working. #40232 @Yuiai01atag. #40269 @ds1371danidisabled. #40273 @ds1371danioutline, replacelineWidthwithlineWidthBold. #40291 @simonpfish:notselector. #40264pt_BR. #40270 @rafaelncarvalhomenu属性,但是出现 overlay deprecation 警告的问题。#40211 @candy4290destroyAll不工作的问题。#40281 @ds1371danimessage组件通过config设置duration无效问题。#40232 @Yuiai01a标签时的 文本颜色不正确的问题。#40269 @ds1371danidisabled时显示错误的文本颜色和光标。#40273 @ds1371danioutline计算逻辑,替换lineWidth为lineWidthBold。#40291 @simonpfish:not支持不完全的旧版浏览器。#40264pt_BR缺失的国际化。#40270 @rafaelncarvalhov5.1.5Compare Source
onEditCallback parameter type problem. #39926 @RSS1102onEdit类型问题。#39926 @RSS1102v5.1.4Compare Source
placementin RTL mode. #40109 @3hsonv5.1.3Compare Source
shouldCellUpdatelogic to increase the secondary rendering speed. #40063columns.rendernot trigger re-render when render function use closure data. #40004blockprops not work. #39992 @li-jia-nantheme="dark". #40105notFoundContentcannot be clicked. #40067disabledandindeterminate. #39974 @ds1371danishouldCellUpdate逻辑,提升二次渲染速度。#40063columns.render中如果使用闭包数据,更新闭包数据不会触发重新渲染的问题。#40004block属性不生效的问题。#39992 @li-jia-nannotFoundContent内容无法交互的问题。#40067disabled和indeterminate时的样式问题。#39974 @ds1371danionClick为 undefined,鼠标点击也会出现边框样式。#40023 @crazyairaxios/axios
v1.2.6Compare Source
Bug Fixes
CommonRequestHeadersList&CommonResponseHeadersListtypes to be private in commonJS; (#5503) (5a3d0a3)Contributors to this release
v1.2.5Compare Source
Bug Fixes
Contributors to this release
v1.2.4Compare Source
Bug Fixes
RawAxiosRequestConfigback toAxiosRequestConfig; (#5486) (2a71f49)AxiosRequestConfiggeneric; (#5478) (9bce81b)Contributors to this release
v1.2.3Compare Source
Bug Fixes
Contributors to this release
evanw/esbuild
v0.17.5Compare Source
Parse
consttype parameters from TypeScript 5.0The TypeScript 5.0 beta announcement adds
consttype parameters to the language. You can now add theconstmodifier on a type parameter of a function, method, or class like this:The type of
namesin the above example isreadonly ["Alice", "Bob", "Eve"]. Marking the type parameter asconstbehaves as if you had writtenas constat every use instead. The above code is equivalent to the following TypeScript, which was the only option before TypeScript 5.0:You can read the announcement for more information.
Make parsing generic
asyncarrow functions more strict in.tsxfilesPreviously esbuild's TypeScript parser incorrectly accepted the following code as valid:
The official TypeScript parser rejects this code because it thinks it's the identifier
asyncfollowed by a JSX element starting with<T>. So with this release, esbuild will now reject this syntax in.tsxfiles too. You'll now have to add a comma after the type parameter to get generic arrow functions like this to parse in.tsxfiles:Allow the
inandouttype parameter modifiers on class expressionsTypeScript 4.7 added the
inandoutmodifiers on the type parameters of classes, interfaces, and type aliases. However, while TypeScript supported them on both class expressions and class statements, previously esbuild only supported them on class statements due to an oversight. This release now allows these modifiers on class expressions too:Update
enumconstant folding for TypeScript 5.0TypeScript 5.0 contains an updated definition of what it considers a constant expression:
This impacts esbuild's implementation of TypeScript's
const enumfeature. With this release, esbuild will now attempt to follow these new rules. For example, you can now initialize anenummember with a template literal expression that contains a numeric constant:These rules are not followed exactly due to esbuild's limitations. The rule about dotted references to
constvariables is not followed both because esbuild's enum processing is done in an isolated module setting and because doing so would potentially require esbuild to use a type system, which it doesn't have. For example:Also, the rule that requires converting numbers to a string currently only followed for 32-bit signed integers and non-finite numbers. This is done to avoid accidentally introducing a bug if esbuild's number-to-string operation doesn't exactly match the behavior of a real JavaScript VM. Currently esbuild's number-to-string constant folding is conservative for safety.
Forbid definite assignment assertion operators on class methods
In TypeScript, class methods can use the
?optional property operator but not the!definite assignment assertion operator (while class fields can use both):Previously esbuild incorrectly allowed the definite assignment assertion operator with class methods. This will no longer be allowed starting with this release.
v0.17.4Compare Source
Implement HTTP
HEADrequests in serve mode (#2851)Previously esbuild's serve mode only responded to HTTP
GETrequests. With this release, esbuild's serve mode will also respond to HTTPHEADrequests, which are just like HTTPGETrequests except that the body of the response is omitted.Permit top-level await in dead code branches (#2853)
Adding top-level await to a file has a few consequences with esbuild:
moduleandexportsfor exports and also enables strict mode, which disables certain syntax and changes how function hoisting works (among other things).require()on this file or on any file that imports this file (even indirectly), since therequire()function doesn't return a promise and so can't represent top-level await.This release relaxes these rules slightly: rules 2 and 3 will now no longer apply when esbuild has identified the code branch as dead code, such as when it's behind an
if (false)check. This should make it possible to use esbuild to convert code into different output formats that only uses top-level await conditionally. This release does not relax rule 1. Top-level await will still cause esbuild to unconditionally consider the input module format to be ESM, even when the top-levelawaitis in a dead code branch. This is necessary because whether the input format is ESM or not affects the whole file, not just the dead code branch.Fix entry points where the entire file name is the extension (#2861)
Previously if you passed esbuild an entry point where the file extension is the entire file name, esbuild would use the parent directory name to derive the name of the output file. For example, if you passed esbuild a file
./src/.tsthen the output name would besrc.js. This bug happened because esbuild first strips the file extension to get./src/and then joins the path with the working directory to get the absolute path (e.g.join("/working/dir", "./src/")gives/working/dir/src). However, the join operation also canonicalizes the path which strips the trailing/. Later esbuild uses the "base name" operation to extract the name of the output file. Since there is no trailing/, esbuild returns"src"as the base name instead of"", which causes esbuild to incorrectly include the directory name in the output file name. This release fixes this bug by deferring the stripping of the file extension until after all path manipulations have been completed. So now the file./src/.tswill generate an output file named.js.Support replacing property access expressions with inject
At a high level, this change means the
injectfeature can now replace all of the same kinds of names as thedefinefeature. Soinjectis basically now a more powerful version ofdefine, instead of previously only being able to do some of the things thatdefinecould do.Soem background is necessary to understand this change if you aren't already familiar with the
injectfeature. Theinjectfeature lets you replace references to global variable with a shim. It works like this:injectfeatureFor example, if you inject the following file using
--inject:./injected.js:Then esbuild will replace all references to
processwith theprocessShimvariable, which will causeprocess.cwd()to return'/'. This feature is sort of abusing the ESM export alias syntax to specify the mapping of global variables to shims. But esbuild works this way because using this syntax for that purpose is convenient and terse.However, if you wanted to replace a property access expression, the process was more complicated and not as nice. You would have to:
injectfeaturedefinefeature to map the property access expression to the random name you made in step 2For example, if you inject the following file using
--inject:./injected2.js --define:process.cwd=someRandomName:Then esbuild will replace all references to
process.cwdwith thecwdShimvariable, which will also causeprocess.cwd()to return'/'(but which this time will not mess with other references toprocess, which might be desirable).With this release, using the inject feature to replace a property access expression is now as simple as using it to replace an identifier. You can now use JavaScript's "arbitrary module namespace identifier names" feature to specify the property access expression directly using a string literal. For example, if you inject the following file using
--inject:./injected3.js:Then esbuild will now replace all references to
process.cwdwith thecwdShimvariable, which will also causeprocess.cwd()to return'/'(but which will also not mess with other references toprocess).In addition to inserting a shim for a global variable that doesn't exist, another use case is replacing references to static methods on global objects with cached versions to both minify them better and to make access to them potentially faster. For example:
v0.17.3Compare Source
Fix incorrect CSS minification for certain rules (#2838)
Certain rules such as
@mediacould previously be minified incorrectly. Due to a typo in the duplicate rule checker, two known@-rules that share the same hash code were incorrectly considered to be equal. This problem was made worse by the rule hashing code considering two unknown declarations (such as CSS variables) to have the same hash code, which also isn't optimal from a performance perspective. Both of these issues have been fixed:v0.17.2Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.