René's URL Explorer Experiment


Title: Bump esbuild from 0.21.3 to 0.25.0 by dependabot[bot] · Pull Request #1 · githubnext/TypeScript · GitHub

Open Graph Title: Bump esbuild from 0.21.3 to 0.25.0 by dependabot[bot] · Pull Request #1 · githubnext/TypeScript

X Title: Bump esbuild from 0.21.3 to 0.25.0 by dependabot[bot] · Pull Request #1 · githubnext/TypeScript

Description: Bumps esbuild from 0.21.3 to 0.25.0. Release notes Sourced from esbuild's releases. v0.25.0 This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.24.0 or ~0.24.0. See npm's documentation about semver for more information. Restrict access to esbuild's development server (GHSA-67mh-4wv8-2f99) This change addresses esbuild's first security vulnerability report. Previously esbuild set the Access-Control-Allow-Origin header to * to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in the report. Starting with this release, CORS will now be disabled, and requests will now be denied if the host does not match the one provided to --serve=. The default host is 0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both 127.0.0.1 and 192.168.0.1). If you want to customize anything about esbuild's development server, you can put a proxy in front of esbuild and modify the incoming and/or outgoing requests. In addition, the serve() API call has been changed to return an array of hosts instead of a single host string. This makes it possible to determine all of the hosts that esbuild's development server will accept. Thanks to @​sapphi-red for reporting this issue. Delete output files when a build fails in watch mode (#3643) It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again. Fix correctness issues with the CSS nesting transform (#3620, #3877, #3933, #3997, #4005, #4037, #4038) This release fixes the following problems: Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using :is() to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues. /* Original code */ .parent { > .a, > .b1 > .b2 { color: red; } } /* Old output (with --supported:nesting=false) */ .parent > :is(.a, .b1 > .b2) { color: red; } /* New output (with --supported:nesting=false) */ .parent > .a, .parent > .b1 > .b2 { color: red; } Thanks to @​tim-we for working on a fix. The & CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered && to have the same specificity as &. With this release, this should now work correctly: /* Original code (color should be red) */ ... (truncated) Changelog Sourced from esbuild's changelog. Changelog: 2024 This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2). 0.24.2 Fix regression with --define and import.meta (#4010, #4012, #4013) The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression. This fix was contributed by @​sapphi-red. 0.24.1 Allow es2024 as a target in tsconfig.json (#4004) TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file: { "compilerOptions": { "target": "ES2024" } } As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation. This fix was contributed by @​billyjanitsch. Allow automatic semicolon insertion after get/set This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error: class Foo { get *x() {} set *y() {} } The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7. Allow quoted property names in --define and --pure (#4008) The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible: ... (truncated) Commits e9174d6 publish 0.25.0 to npm c27dbeb fix hosts in plugin-tests.js 6794f60 fix hosts in node-unref-tests.js de85afd Merge commit from fork da1de1b fix #4065: bitwise operators can return bigints f4e9d19 switch case liveness: default is always last 7aa47c3 fix #4028: minify live/dead switch cases better 22ecd30 minify: more constant folding for strict equality 4cdf03c fix #4053: reordering of .tsx in node_modules dc71977 fix #3692: 0 now picks a random ephemeral port 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 ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.

Open Graph Description: Bumps esbuild from 0.21.3 to 0.25.0. Release notes Sourced from esbuild's releases. v0.25.0 This release deliberately contains backwards-incompatible changes. To avoid automatically picking u...

X Description: Bumps esbuild from 0.21.3 to 0.25.0. Release notes Sourced from esbuild's releases. v0.25.0 This release deliberately contains backwards-incompatible changes. To avoid automatically picki...

Opengraph URL: https://github.com/githubnext/TypeScript/pull/1

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:7a02d4f8-f921-cf1f-e9fc-31a3d0e53e19
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idD5BC:32B219:1FBFF32:2AB1008:696DE586
html-safe-noncee4ee61d39499f70bea3d6c03d2888b8d948342a7ec18e978593524cb34745379
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJENUJDOjMyQjIxOToxRkJGRjMyOjJBQjEwMDg6Njk2REU1ODYiLCJ2aXNpdG9yX2lkIjoiMzU0MDI1MTA1MzE5NTY1MDQzOCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac315872f622c7a90dbab2e8e3baaf93ec22d8b65d0512cce9c4c872668531b2d3
hovercard-subject-tagpull_request:2330015452
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/githubnext/TypeScript/pull/1/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps esbuild from 0.21.3 to 0.25.0. Release notes Sourced from esbuild's releases. v0.25.0 This release deliberately contains backwards-incompatible changes. To avoid automatically picking u...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None4922b452d03cd8dbce479d866a11bc25b59ef6ee2da23aa9b0ddefa6bd4d0064
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/githubnext/TypeScript git https://github.com/githubnext/TypeScript.git
octolytics-dimension-user_id89615882
octolytics-dimension-user_logingithubnext
octolytics-dimension-repository_id805014759
octolytics-dimension-repository_nwogithubnext/TypeScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forktrue
octolytics-dimension-repository_parent_id20929025
octolytics-dimension-repository_parent_nwomicrosoft/TypeScript
octolytics-dimension-repository_network_root_id20929025
octolytics-dimension-repository_network_root_nwomicrosoft/TypeScript
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7e5ae23c70136152637ceee8d6faceb35596ec46
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgithubnext%2FTypeScript%2Fpull%2F1%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgithubnext%2FTypeScript%2Fpull%2F1%2Ffiles
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=githubnext%2FTypeScript
Reloadhttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
Reloadhttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
Reloadhttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
githubnext https://patch-diff.githubusercontent.com/githubnext
TypeScripthttps://patch-diff.githubusercontent.com/githubnext/TypeScript
microsoft/TypeScripthttps://patch-diff.githubusercontent.com/microsoft/TypeScript
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fgithubnext%2FTypeScript
Fork 1 https://patch-diff.githubusercontent.com/login?return_to=%2Fgithubnext%2FTypeScript
Star 2 https://patch-diff.githubusercontent.com/login?return_to=%2Fgithubnext%2FTypeScript
Code https://patch-diff.githubusercontent.com/githubnext/TypeScript
Pull requests 2 https://patch-diff.githubusercontent.com/githubnext/TypeScript/pulls
Actions https://patch-diff.githubusercontent.com/githubnext/TypeScript/actions
Projects 0 https://patch-diff.githubusercontent.com/githubnext/TypeScript/projects
Models https://patch-diff.githubusercontent.com/githubnext/TypeScript/models
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/githubnext/TypeScript/security
Please reload this pagehttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
Insights https://patch-diff.githubusercontent.com/githubnext/TypeScript/pulse
Code https://patch-diff.githubusercontent.com/githubnext/TypeScript
Pull requests https://patch-diff.githubusercontent.com/githubnext/TypeScript/pulls
Actions https://patch-diff.githubusercontent.com/githubnext/TypeScript/actions
Projects https://patch-diff.githubusercontent.com/githubnext/TypeScript/projects
Models https://patch-diff.githubusercontent.com/githubnext/TypeScript/models
Security https://patch-diff.githubusercontent.com/githubnext/TypeScript/security
Insights https://patch-diff.githubusercontent.com/githubnext/TypeScript/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fgithubnext%2FTypeScript%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Fgithubnext%2FTypeScript%2Fissues%2Fnew%2Fchoose
dependabothttps://patch-diff.githubusercontent.com/apps/dependabot
mainhttps://patch-diff.githubusercontent.com/githubnext/TypeScript/tree/main
dependabot/npm_and_yarn/esbuild-0.25.0https://patch-diff.githubusercontent.com/githubnext/TypeScript/tree/dependabot/npm_and_yarn/esbuild-0.25.0
Conversation 0 https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1
Commits 1 https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/commits
Checks 0 https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/checks
Files changed https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
Please reload this pagehttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
Bump esbuild from 0.21.3 to 0.25.0 https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
aee4fe0 Bump esbuild from 0.21.3 to 0.25.0 dependabot[bot] Feb 11, 2025 https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/commits/aee4fe03f160500f009c0c5c36c1036112707d17
Clear filters https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
Please reload this pagehttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
Please reload this pagehttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
package-lock.json https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519
package.json https://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
Please reload this pagehttps://patch-diff.githubusercontent.com/githubnext/TypeScript/pull/1/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.