Bump the npm_and_yarn group across 1 directory with 15 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(about 1 year ago)
(about 1 year ago)
dependencies javascript
Bumps the npm_and_yarn group with 11 updates in the / directory:
| Package | From | To |
|---|---|---|
| esbuild | 0.14.38 |
0.25.4 |
| @size-limit/preset-small-lib | 8.0.1 |
11.2.0 |
| @web/dev-server-esbuild | 0.3.2 |
1.0.4 |
| body-parser | 1.20.0 |
1.20.3 |
| express | 4.18.1 |
4.21.2 |
| braces | 3.0.2 |
3.0.3 |
| cookie | 0.3.1 |
0.7.1 |
| @lhci/cli | 0.10.0 |
0.14.0 |
| ip | 1.1.5 |
removed |
| @open-wc/testing | 3.1.6 |
3.2.2 |
| @web/test-runner | 0.14.0 |
0.20.2 |
Updates esbuild from 0.14.38 to 0.25.4
Release notes
Sourced from esbuild's releases.
v0.25.4
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhostwhere the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
corsoption will now set theAccess-Control-Allow-Originresponse header when the request has a matchingOriginheader. Note that this currently only works for requests that don't send a preflightOPTIONSrequest, as esbuild's development server doesn't currently supportOPTIONSrequests.Some examples:
CLI:
esbuild --servedir=. --cors-origin=https://example.comJS:
const ctx = await esbuild.context({}) await ctx.serve({ servedir: '.', cors: { origin: 'https://example.com', }, })Go:
ctx, _ := api.Context(api.BuildOptions{}) ctx.Serve(api.ServeOptions{ Servedir: ".", CORS: api.CORSOptions{ Origin: []string{"https://example.com"}, }, })The special origin
*can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.Pass through invalid URLs in source maps unmodified (#4169)
This fixes a regression in version 0.25.0 where
sourcesin source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation ofsourcesfrom file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs insourcesshould now be passed through unmodified.Handle exports named
__proto__in ES modules (#4162, #4163)In JavaScript, the special property name
__proto__sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named__proto__so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.This fix was contributed by
@magic-akari.
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2022
This changelog documents all esbuild versions published in the year 2022 (versions 0.14.11 through 0.16.12).
0.16.12
Loader defaults to
jsfor extensionless files (#2776)Certain packages contain files without an extension. For example, the
yargspackage contains the fileyargs/yargswhich has no extension. Node, Webpack, and Parcel can all understand code that importsyargs/yargsbecause they assume that the file is JavaScript. However, esbuild was previously unable to understand this code because it relies on the file extension to tell it how to interpret the file. With this release, esbuild will now assume files without an extension are JavaScript files. This can be customized by setting the loader for""(the empty string, representing files without an extension) to another loader. For example, if you want files without an extension to be treated as CSS instead, you can do that like this:
CLI:
esbuild --bundle --loader:=cssJS:
esbuild.build({ bundle: true, loader: { '': 'css' }, })Go:
api.Build(api.BuildOptions{ Bundle: true, Loader: map[string]api.Loader{"": api.LoaderCSS}, })In addition, the
"type"field inpackage.jsonfiles now only applies to files with an explicit.js,.jsx,.ts, or.tsxextension. Previously it was incorrectly applied by esbuild to all files that had an extension other than.mjs,.mts,.cjs, or.ctsincluding extensionless files. So for example an extensionless file in a"type": "module"package is now treated as CommonJS instead of ESM.0.16.11
Avoid a syntax error in the presence of direct
eval(#2761)The behavior of nested
functiondeclarations in JavaScript depends on whether the code is run in strict mode or not. It would be problematic if esbuild preserved nestedfunctiondeclarations in its output because then the behavior would depend on whether the output was run in strict mode or not instead of respecting the strict mode behavior of the original source code. To avoid this, esbuild transforms nestedfunctiondeclarations to preserve the intended behavior of the original source code regardless of whether the output is run in strict mode or not:// Original code if (true) { function foo() {} console.log(!!foo) foo = null console.log(!!foo) }
... (truncated)
Commits
218d29epublish 0.25.4 to npme66cd0bdev server: simple support for CORS requests (#4171)8bf3368js api: validate some options as arrays of strings1e7375ajs api: simplify comma-separated array validation5f5964drelease notes for #4163adb5284fix: handle__proto__as a computed property in exports and add tests for s...0aa9f7bfix #4169: keep invalid source map URLs unmodified5959289add additional guards for #4114 when using:is()677910bpublish 0.25.3 to npma41040efix #4110: support custom non-IPhostvalues- Additional commits viewable in compare view
Updates @size-limit/preset-small-lib from 8.0.1 to 11.2.0
Release notes
Sourced from @size-limit/preset-small-lib's releases.
11.2.0
- Added
--configargument (by@EvgenyWas).- Added top-level
awaitsupport to config (by@aryaemami59).- Added
timeoption to config (by@EvgenyWas).- Added
messageoption to config (by@dartess).- Updated
esbuild.11.1.6
- Updated
chokidar.- Updated
esbuild.- Updated
jiti.11.1.5
- Reduced dependencies (by
@ziebam).- Updated
esbuild.11.1.4
- Fixed types (by
@aryaemami59).11.1.3
- Updated
esbuild.- Updated CSS loaders for webpack.
11.1.2
- Fixed CSS support in esbuild plugin (by
@just-boris).11.1.1
- Fixed Windows support (by
@aryaemami59).11.1.0
- Added TypeScript support for config (by
@aryaemami59).- Fixed
webpack-whyregression (by@hoo00nn).11.0.3
- Fixed
.mjsconfig support (by@aryaemami59).- Updated
esbuild.
Changelog
Sourced from @size-limit/preset-small-lib's changelog.
11.2.0
- Added
--configargument (by@EvgenyWas).- Added top-level
awaitsupport to config (by@aryaemami59).- Added
timeoption to config (by@EvgenyWas).- Added
messageoption to config (by@dartess).- Updated
esbuild.11.1.6
- Updated
chokidar.- Updated
esbuild.- Updated
jiti.11.1.5
- Reduced dependencies (by
@ziebam).- Updated
esbuild.11.1.4
- Fixed types (by
@aryaemami59).11.1.3
- Updated
esbuild.- Updated CSS loaders for webpack.
11.1.2
- Fixed CSS support in esbuild plugin (by
@just-boris).11.1.1
- Fixed Windows support (by
@aryaemami59).11.1.0
- Added TypeScript support for config (by
@aryaemami59).- Fixed
webpack-whyregression (by@hoo00nn).11.0.3
- Fixed
.mjsconfig support (by Arya Emami).- Updated
esbuild.11.0.2
- Fixed
require is not definedregression.- Updated
esbuild-visualizer.11.0.1
- Updated
estimo.- Updated
lilconfig.11.0
- Moved to Brotli as default compression. Use
gzip: truefor old behavior.10.0.3
- Fixed third-party plugins support (by
@JounQin).
... (truncated)
Commits
896eee2Release 11.2.0 version69fab9cUpdate Vitest15a4c46Update dependenciesedda423feat: add time options to set loading network speed, latency and message (#384)6f44d9bAvoid patterns in simple example549350afeat: implement new --config arg to specify a custom path to configuration fi...3542c73fix: remove extra blank line in terminal when output is empty (#383)5b831e1Fix pnpm version7b56b53Update dependencies7a0c618Bump cross-spawn from 7.0.3 to 7.0.5 (#381)- Additional commits viewable in compare view
Updates @web/dev-server-esbuild from 0.3.2 to 1.0.4
Release notes
Sourced from @web/dev-server-esbuild's releases.
@web/dev-server-esbuild@1.0.4Patch Changes
- d826727: upgrade esbuild to 0.25.x
@web/dev-server-esbuild@1.0.3Patch Changes
- f506af31: Upgrade esbuild to 0.24.x
- Updated dependencies [fb33d75c]
@web/dev-server-core@0.7.4
Changelog
Sourced from @web/dev-server-esbuild's changelog.
1.0.4
Patch Changes
- d826727: upgrade esbuild to 0.25.x
1.0.3
Patch Changes
- f506af31: Upgrade esbuild to 0.24.x
- Updated dependencies [fb33d75c]
@web/dev-server-core@0.7.41.0.2
Patch Changes
- fix: update
@web/dev-server-core1.0.1
Patch Changes
- e31de569: Update
@web/dev-server-rollupto latest version1.0.0
Major Changes
8218a0a5: Update ESBuild to latest version.
ESBuild has changed how TypeScript decorators are enabled in preparation for JavaScript decorators to land in browsers. ESBuild now requires the
experimentalDecoratorskey to be set totruein thetsconfig.jsonfor TypeScript decorators to be enabled.If you are having issues with decorators after updating to this version, try setting the
experimentalDecoratorskey in yourtsconfig.json.Minor Changes
- c185cbaa: Set minimum node version to 18
Patch Changes
- Updated dependencies [c185cbaa]
@web/dev-server-core@0.7.00.4.4
Patch Changes
- ef6b2543: Use split versions for all lit dependencies
... (truncated)
Commits
3a6bf8fVersion Packagesd826727fix: upgrade esbuild to 0.25.x5f4f351Version Packagesdc23517chore: bump esbuild to 0.24.0f506af3chore: upgrade esbuild to 0.20.x03f3c6fVersion Packages54d65a4ci: align reporters across all packages90e4472ci: use workspaces to run node tests0780a22Version Packagesce40a8fupdate@web/dev-server-rollupin more places- Additional commits viewable in compare view
Updates body-parser from 1.20.0 to 1.20.3
Release notes
Sourced from body-parser's releases.
1.20.3
What's Changed
Important
- deps: qs@6.13.0
- add
depthoption to customize the depth level in the parser- IMPORTANT: The default
depthlevel for parsing URL-encoded data is now32(previously wasInfinity). DocumentationOther changes
- chore: add support for OSSF scorecard reporting by
@inigomarquinezin expressjs/body-parser#522- ci: fix errors in ci github action for node 8 and 9 by
@inigomarquinezin expressjs/body-parser#523- fix: pin to node@22.4.1 by
@wesleytoddin expressjs/body-parser#527- deps: qs@6.12.3 by
@melikhov-devin expressjs/body-parser#521- Add OSSF Scorecard badge by
@bjohansebasin expressjs/body-parser#531- Linter by
@UlisesGasconin expressjs/body-parser#534- Release: 1.20.3 by
@UlisesGasconin expressjs/body-parser#535New Contributors
@inigomarquinezmade their first contribution in expressjs/body-parser#522@melikhov-devmade their first contribution in expressjs/body-parser#521@bjohansebasmade their first contribution in expressjs/body-parser#531@UlisesGasconmade their first contribution in expressjs/body-parser#534Full Changelog: https://github.com/expressjs/body-parser/compare/1.20.2...1.20.3
1.20.2
- Fix strict json error message on Node.js 19+
- deps: content-type@~1.0.5
- perf: skip value escaping when unnecessary
- deps: raw-body@2.5.2
1.20.1
- deps: qs@6.11.0
- perf: remove unnecessary object clone
Changelog
Sourced from body-parser's changelog.
1.20.3 / 2024-09-10
- deps: qs@6.13.0
- add
depthoption to customize the depth level in the parser- IMPORTANT: The default
depthlevel for parsing URL-encoded data is now32(previously wasInfinity)1.20.2 / 2023-02-21
- Fix strict json error message on Node.js 19+
- deps: content-type@~1.0.5
- perf: skip value escaping when unnecessary
- deps: raw-body@2.5.2
1.20.1 / 2022-10-06
- deps: qs@6.11.0
- perf: remove unnecessary object clone
Commits
17529511.20.339744cfchore: linter (#534)b2695c4Merge commit from forkade0f3fadd scorecard to readme (#531)99a1bd6deps: qs@6.12.3 (#521)9478591fix: pin to node@22.4.183db46aci: fix errors in ci github action for node 8 and 9 (#523)9d4e212chore: add support for OSSF scorecard reporting (#522)ee913741.20.2368a93aFix strict json error message on Node.js 19+- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by ulisesgascon, a new releaser for body-parser since your current version.
Updates express from 4.18.1 to 4.21.2
Release notes
Sourced from express's releases.
4.21.2
What's Changed
- Add funding field (v4) by
@bjohansebasin expressjs/express#6065- deps: path-to-regexp@0.1.11 by
@blakeembreyin expressjs/express#5956- deps: bump path-to-regexp@0.1.12 by
@jonchurchin expressjs/express#6209- Release: 4.21.2 by
@UlisesGasconin expressjs/express#6094Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2
4.21.1
What's Changed
- Backport a fix for CVE-2024-47764 to the 4.x branch by
@joshbukerin expressjs/express#6029- Release: 4.21.1 by
@UlisesGasconin expressjs/express#6031Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1
4.21.0
What's Changed
- Deprecate
"back"magic string in redirects by@blakeembreyin expressjs/express#5935- finalhandler@1.3.1 by
@wesleytoddin expressjs/express#5954- fix(deps): serve-static@1.16.2 by
@wesleytoddin expressjs/express#5951- Upgraded dependency qs to 6.13.0 to match qs in body-parser by
@agadzinski93in expressjs/express#5946New Contributors
@agadzinski93made their first contribution in expressjs/express#5946Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0
4.20.0
What's Changed
Important
- IMPORTANT: The default
depthlevel for parsing URL-encoded data is now32(previously wasInfinity)- Remove link renderization in html while using
res.redirectOther Changes
- 4.19.2 Staging by
@wesleytoddin expressjs/express#5561- remove duplicate location test for data uri by
@wesleytoddin expressjs/express#5562- feat: document beta releases expectations by
@marco-ippolitoin expressjs/express#5565- Cut down on duplicated CI runs by
@jonchurchin expressjs/express#5564- Add a Threat Model by
@UlisesGasconin expressjs/express#5526- Assign captain of encodeurl by
@blakeembreyin expressjs/express#5579- Nominate jonchurch as repo captain for
http-errors,expressjs.com,morgan,cors,body-parserby@jonchurchin expressjs/express#5587- docs: update Security.md by
@inigomarquinezin expressjs/express#5590- docs: update triage nomination policy by
@UlisesGasconin expressjs/express#5600- Add CodeQL (SAST) by
@UlisesGasconin expressjs/express#5433- docs: add UlisesGascon as triage initiative captain by
@UlisesGasconin expressjs/express#5605
... (truncated)
Changelog
Sourced from express's changelog.
4.21.2 / 2024-11-06
- deps: path-to-regexp@0.1.12
- Fix backtracking protection
- deps: path-to-regexp@0.1.11
- Throws an error on invalid path values
4.21.1 / 2024-10-08
- Backported a fix for CVE-2024-47764
4.21.0 / 2024-09-11
- Deprecate
res.location("back")andres.redirect("back")magic string- deps: serve-static@1.16.2
- includes send@0.19.0
- deps: finalhandler@1.3.1
- deps: qs@6.13.0
4.20.0 / 2024-09-10
- deps: serve-static@0.16.0
- Remove link renderization in html while redirecting
- deps: send@0.19.0
- Remove link renderization in html while redirecting
- deps: body-parser@0.6.0
- add
depthoption to customize the depth level in the parser- IMPORTANT: The default
depthlevel for parsing URL-encoded data is now32(previously wasInfinity)- Remove link renderization in html while using
res.redirect- deps: path-to-regexp@0.1.10
- Adds support for named matching groups in the routes using a regex
- Adds backtracking protection to parameters without regexes defined
- deps: encodeurl@~2.0.0
- Removes encoding of
\,|, and^to align better with URL spec- Deprecate passing
options.maxAgeandoptions.expirestores.clearCookie
- Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
4.19.2 / 2024-03-25
- Improved fix for open redirect allow list bypass
4.19.1 / 2024-03-20
- Allow passing non-strings to res.location with new encoding handling checks
... (truncated)
Commits
1faf2284.21.22e0fb64deps: bump path-to-regexp@0.1.12 (#6209)59fc270deps: path-to-regexp@0.1.11 (#5956)51fc39cdocs: add funding (#6065)8e229f94.21.1a024c8afix(deps): cookie@0.7.17e562c64.21.01bcde96fix(deps): qs@6.13.0 (#5946)7d36477fix(deps): serve-static@1.16.2 (#5951)40d2d8ffix(deps): finalhandler@1.3.1- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by jonchurch, a new releaser for express since your current version.
Updates braces from 3.0.2 to 3.0.3
Commits
74b2db23.0.388f1429update eslint. lint, fix unit tests.415d660Snyk js braces 6838727 (#40)190510ffix tests, skip 1 test in test/braces.expand716eb9freadme bumpa5851e5Merge pull request #37 from coderaiser/fix/vulnerability2092bd1feature: braces: add maxSymbols (https://github.com/micromatch/braces/issues/...9f5b4cffix: vulnerability (https://security.snyk.io/vuln/SNYK-JS-BRACES-6838727)98414f9remove funding file665ab5dupdate keepEscaping doc (#27)- Additional commits viewable in compare view
Updates cookie from 0.3.1 to 0.7.1
Release notes
Sourced from cookie's releases.
0.7.1
Fixed
- Allow leading dot for domain (#174)
- Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
- Add fast path for
serializewithout options, useobj.hasOwnPropertywhen parsing (#172)https://github.com/jshttp/cookie/compare/v0.7.0...v0.7.1
0.7.0
- perf: parse cookies ~10% faster (#144 by
@kurtextremand #170)- fix: narrow the validation of cookies to match RFC6265 (#167 by
@bewinsnw)- fix: add
maintopackage.jsonfor rspack (#166 by@proudparrot2)https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.0
0.6.0
- Add
partitionedoption0.5.0
- Add
priorityoption- Fix
expiresoption to reject invalid dates- pref: improve default decode speed
- pref: remove slow string split in parse
0.4.2
- pref: read value only when assigning in parse
- pref: remove unnecessary regexp in parse
0.4.1
- Fix
maxAgeoption to reject invalid values0.4.0
- Add
SameSite=Nonesupport
Commits
cf4658f0.7.16a8b8f5Allow leading dot for domain (#174)58015c0Remove more code and perf wins (#172)ab057d60.7.05f02ca8Migrate history to GitHub releasesa5d591cMigrate history to GitHub releases51968f9Skip isNaN9e7ca51perf(parse): cache length, return early (#144)d6f39b0Fix tests for old node6bb701fRemove failing scorecard- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.
Updates @lhci/cli from 0.10.0 to 0.14.0
Release notes
Sourced from @lhci/cli's releases.
v0.14.0
v0.14.0 (2024-06-20)
- feat: upgrade to lighthouse 12.0.0 (#1035) (cc564a6), closes #1035
- feat: support .htm files in fallback server (#1033) (2ed3b31), closes #1033
- feat: increase column width for project name (#1006) (8fe7e8d), closes #1006
- feat: upgrade to lighthouse 12.1.0 (#1046) (8a0e3dc), closes #1046
- feat(cli): add --lhr to assert command to load LHRs from anywhere (#1024) (19c7ca6), closes #1024
- fix(cli): use ProxyAgent instead of HttpsProxyAgent (#1038) (cdf4605), closes #1038
- chore: bump lhci references to 0.13 (083d639)
- misc(release): remove hulk from release process (mostly) (36e629e)
BREAKING CHANGE
- upgrade to lighthouse 12.1.0
v0.13.0
v0.13.0 (2023-12-15)
- feat: sort projects by name (#976) (2bf36f4), closes #976
- feat: upgrade to lighthouse 11.4.0 (#991) (7cc4ba8), closes #991
- feat(cli): add static dir file discovery depth flag (#940) (de1614e), closes #940
- fix(docker): added extra environment variable to lhci-client Dockerfile for puppeteer executable (#9 (f28992b), closes #916
- docs: add *.cjs to supported config extensions (#975) (a706c54), closes #975
- docs: fix typo of puppeterScript to puppeteerScript (#979) (b16e48d), closes #979
- tests: use more random name for sql test file (#986) (72b79d8), closes #986
- chore: update docker images with latest version (9d710c1)
- chore: rebaseline snapshot images (#980) (7e75eed), closes #980
- chore: remove jest worker limit (#981) (91bfbf9), closes #981
- chore: set jest max workers to 1 (#985) (200b915), closes #985
- chore: bump to node 18 (#989) (c5bde95), closes #989
- chore(deps): run yarn audit fix to upgrade many deps (#992) (3ea9955), closes #992
- chore(deps): upgrade to storybook 7.6.4, preact 10.19.3, esbuild 0.19.9 (#990) (5d30e52), closes #990
- chore(deps): bump lodash from 4.17.11 to 4.17.21 (#956) (00b2c91), closes #956
- chore(deps): bump handlebars from 4.1.2 to 4.7.8 (#978) (c183f9f), closes #978
- chore(deps): bump
@babel/traversefrom 7.4.3 to 7.23.6 (#987) (60693f0), closes #987- chore(deps): bump browserify-sign from 4.0.4 to 4.2.2 (#957) (e40dec0), closes #957
- chore(deps): bump tree-kill from 1.2.1 to 1.2.2 (#952) (2bd2e9c), closes #952
- chores(deps): upgrade puppeteer to 21.6.1 (#988) (939ef03), closes #988
- chores(deps): upgrade umzug to 3.4.0 (#984) (a3ee284), closes #984
- chores(deps): upgrade typescript to 5.3.3 (#983) (29a67d9), closes #983
- chores(deps): upgrade sequelize to 6.35.2 (#982) (5b94d30), closes #982
- collect: use new headless mode (#907) (2cf4dc0), closes #907
- Readme: Update Heroku mentions (#931) (b124841), closes #931
- Instruct users to install Lighthouse CI 0.12 (#927) (72db595), closes #927
- catch localStorage exceptions in difftool (#938) (332888a), closes #938
... (truncated)
Commits
bbaa624misc(release): remove hulk from release process (mostly)cdf4605fix(cli): use ProxyAgent instead of HttpsProxyAgent (#1038)8a0e3dcfeat: upgrade to lighthouse 12.1.0 (#1046)8fe7e8dfeat: increase column width for project name (#1006)2ed3b31feat: support .htm files in fallback server (#1033)cc564a6feat: upgrade to lighthouse 12.0.0 (#1035)19c7ca6feat(cli): add --lhr to assert command to load LHRs from anywhere (#1024)083d639chore: bump lhci references to 0.137cc4ba8feat: upgrade to lighthouse 11.4.0 (#991)3ea9955chore(deps): run yarn audit fix to upgrade many deps (#992)- Additional commits viewable in compare view
Updates express from 4.18.1 to 4.21.2
Release notes
Sourced from express's releases.
4.21.2
What's Changed
- Add funding field (v4) by
@bjohansebasin expressjs/express#6065- deps: path-to-regexp@0.1.11 by
@blakeembreyin expressjs/express#5956- deps: bump path-to-regexp@0.1.12 by
@jonchurchin expressjs/express#6209- Release: 4.21.2 by
@UlisesGasconin expressjs/express#6094Full Changelog: https://github.com/expressjs/express/compare/4.21.1...4.21.2
4.21.1
What's Changed
- Backport a fix for CVE-2024-47764 to the 4.x branch by
@joshbukerin expressjs/express#6029- Release: 4.21.1 by
@UlisesGasconin expressjs/express#6031Full Changelog: https://github.com/expressjs/express/compare/4.21.0...4.21.1
4.21.0
What's Changed
- Deprecate
"back"magic string in redirects by@blakeembreyin expressjs/express#5935- finalhandler@1.3.1 by
@wesleytoddin expressjs/express#5954- fix(deps): serve-static@1.16.2 by
@wesleytoddin expressjs/express#5951- Upgraded dependency qs to 6.13.0 to match qs in body-parser by
@agadzinski93in expressjs/express#5946New Contributors
@agadzinski93made their first contribution in expressjs/express#5946Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0
4.20.0
What's Changed
Important
- IMPORTANT: The default
depthlevel for parsing URL-encoded data is now32(previously wasInfinity)- Remove link renderization in html while using
res.redirectOther Changes
- 4.19.2 Staging by
@wesleytoddin expressjs/express#5561- remove duplicate location test for data uri by
@wesleytoddin expressjs/express#5562- feat: document beta releases expectations by
@marco-ippolitoin expressjs/express#5565- Cut down on duplicated CI runs by
@jonchurchin expressjs/express#5564- Add a Threat Model by
@UlisesGasconin expressjs/express#5526- Assign captain of encodeurl by
@blakeembreyin expressjs/express#5579- Nominate jonchurch as repo captain for
<...http-errors,expressjs.com,morgan,cors,body-parserby@jonchurchin expressjs/express#5587Description has been truncated
Pull Request Statistics
1
2
+12006
-1293
Package Dependencies
@size-limit/preset-small-lib
npm
8.0.1 → 11.2.0
Major
Technical Details
| ID: | 561376 |
| UUID: | 2534687154 |
| Node ID: | PR_kwDODk9xUM6XFEGy |
| Host: | GitHub |
| Repository: | github/catalyst |
| Merge State: | Unknown |