build: update all non-major dependencies#25536
Merged
clydin merged 1 commit intoangular:mainfrom Jul 13, 2023
Merged
Conversation
4f499f8 to
8022e3b
Compare
8022e3b to
370c9be
Compare
370c9be to
17c9ab6
Compare
clydin
approved these changes
Jul 13, 2023
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
0.18.11->0.18.120.18.11->0.18.120.18.11->0.18.120.18.11->0.18.128.4.25->8.4.268.4.25->8.4.26Release Notes
evanw/esbuild (esbuild)
v0.18.12Compare Source
Fix a panic with
const enuminside parentheses (#3205)This release fixes an edge case where esbuild could potentially panic if a TypeScript
const enumstatement was used inside of a parenthesized expression and was followed by certain other scope-related statements. Here's a minimal example that triggers this edge case:Allow a newline in the middle of TypeScript
export typestatement (#3225)Previously esbuild incorrectly rejected the following valid TypeScript code:
Code that uses a newline after
export typeis now allowed starting with this release.Fix cross-module inlining of string enums (#3210)
A refactoring typo in version 0.18.9 accidentally introduced a regression with cross-module inlining of string enums when combined with computed property accesses. This regression has been fixed.
Rewrite
.jsto.tsinside packages withexports(#3201)Packages with the
exportsfield are supposed to disable node's path resolution behavior that allows you to import a file with a different extension than the one in the source code (for example, importingfoo/barto getfoo/bar.js). And TypeScript has behavior where you can import a non-existent.jsfile and you will get the.tsfile instead. Previously the presence of theexportsfield caused esbuild to disable all extension manipulation stuff which included both node's implicit file extension searching and TypeScript's file extension swapping. However, TypeScript appears to always apply file extension swapping even in this case. So with this release, esbuild will now rewrite.jsto.tseven inside packages withexports.Fix a redirect edge case in esbuild's development server (#3208)
The development server canonicalizes directory URLs by adding a trailing slash. For example, visiting
/aboutredirects to/about/if/about/index.htmlwould be served. However, if the requested path begins with two slashes, then the redirect incorrectly turned into a protocol-relative URL. For example, visiting//aboutredirected to//about/which the browser turns intohttp://about/. This release fixes the bug by canonicalizing the URL path when doing this redirect.postcss/postcss (postcss)
v8.4.26Compare Source
Configuration
📅 Schedule: Branch creation - "after 10:00pm every weekday,before 4:00am every weekday,every weekend" in timezone America/Tijuana, 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 Renovate Bot.