Bump the npm_and_yarn group across 2 directories with 19 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(5 days ago)
(5 days ago)
(5 days ago)
dependencies javascript
Bumps the npm_and_yarn group with 3 updates in the /bin/Debug/net8.0/my-app directory: @angular/platform-server, cookie and ws.
Bumps the npm_and_yarn group with 3 updates in the /wwwroot directory: @angular/platform-server, cookie and ws.
Updates @angular/platform-server from 17.1.3 to 21.0.0
Release notes
Sourced from @angular/platform-server's releases.
VSCode Extension: 21.0.0
- fix(language-service): address potential memory leak during project creation (89095946cf)
- fix(language-server): fix directory renaming on Windows (3f7111a9c3)
21.0.0
common
Commit Description Add experimental support for the Navigation API (#63406) Support of optional keys for the KeyValue pipe (#48814) update to cldr 47 (#64032) properly type ngComponentOutlet (#64561) improve typing of ngComponentOutletContent(#63674)remove ngModuleFactoryinput ofNgComponentOutlet(#62838)compiler
compiler-cli
Commit Description Adds diagnostic for misconfigured @defertriggers (#64069)enable type checking of host bindings by default (#63654) allow value to be set on radio fields capture metadata for undecorated fields (#63957) disallow compiling with the emitDeclarationOnlyTS compiler option enabled (#61609)do not flag custom control required inputs as missing when field is present infer type of custom field controls infer types of signal forms set on native inputs make field detection logic more robust missingStructuralDirective diagnostic produces false negatives (#64579) remove internal syntax-related flags (#63787) report invalid bindings on form controls use any when checking field interface conformance core
Commit Description Add migration for zoneless by default. (#63042) Allow passing application providers in bootstrapModuleoptions (#64354)introduce BootstrapContextfor improved server bootstrapping (#63562)make SimpleChanges generic (#64535) support IntersectionObserver options in viewport triggers (#64130) support regular expressions in templates (#63887) control not recognized when input has directive injecting ViewContainerRef (#64368)
... (truncated)
Changelog
Sourced from @angular/platform-server's changelog.
21.0.0 (2025-11-19)
Blog post "Announcing Angular v21".
Breaking Changes
common
- (test only) -
TestBednow provides a fakePlatformLocationimplementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default forTestBedby providing theMockPlatformLocationfrom@angular/common/testingin your providers:{provide: PlatformLocation, useClass: MockPlatformLocation}ngComponentOutletContentis now of typeNode[][] | undefinedinstead ofany[][] | undefined.- NgModuleFactory has been removed, use NgModule instead.
compiler-cli
- Previously hidden type issues in host bindings may show up in your builds. Either resolve the type issues or set
"typeCheckHostBindings": falsein theangularCompilerOptionssection of your tsconfig.- The Angular compiler now produces an error when the the
emitDeclarationOnlyTS compiler option is enabled as this mode is not supported.core
The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.
Before:
const bootstrap = () => bootstrapApplication(AppComponent, config);After:
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, config, context);A schematic is provided to automatically update
main.server.tsfiles to pass theBootstrapContextto thebootstrapApplicationcall.In addition,
getPlatform()anddestroyPlatform()will now returnnulland be a no-op respectively when running in a server environment.Using a combination of
provideZoneChangeDetectionwhile also removing ZoneJS polyfills will no longer result in the internal scheduler being disabled. All Angular applications now consistenly use the same scheduler, and those with the Zone change detection provider include additional automatic scheduling behaviors based on
... (truncated)
Commits
8ab0847refactor(core): markVERSIONas@__PURE__for better tree-shaking3bed9f0build: format md files1b5e2c8refactor(platform-server): remove redundantprovidedIn: 'root'from injecti...062a696refactor(platform-server): use URL constructor for robust parsing (#64494)dd2f53brefactor(core): warning whenhydrationtrigger is used without hydration b...ad23764feat(core): support IntersectionObserver options in viewport triggers (#64130)f5b50ecrefactor: clean up explicit standalone flags from tests (#63963)f008045fix(core): do not rename ARIA property bindings to attributes (#63925)0d028e0refactor(platform-browser): Remove zonejs compatibility detector (#63847)8f59295refactor(core): remove unnecessary deps arrays (#63823)- Additional commits viewable in compare view
Updates express from 4.19.2 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
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 body-parser from 1.20.2 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
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)
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)- See full diff in compare view
Maintainer changes
This version was pushed to npm by ulisesgascon, a new releaser for body-parser 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.4.2 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
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 js-yaml from 3.14.1 to 4.1.1
Changelog
Sourced from js-yaml's changelog.
[4.1.1] - 2025-11-12
Security
- Fix prototype pollution issue in yaml merge (<<) operator.
[4.1.0] - 2021-04-15
Added
- Types are now exported as
yaml.types.XXX.- Every type now has
optionsproperty with original arguments kept as they were (seeyaml.types.int.optionsas an example).Changed
Schema.extend()now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered asabcdinstead ofcbad).[4.0.0] - 2021-01-03
Changed
- Check migration guide to see details for all breaking changes.
- Breaking: "unsafe" tags
!!js/function,!!js/regexp,!!js/undefinedare moved to js-yaml-js-types package.- Breaking: removed
safe*functions. Useload,loadAll,dumpinstead which are all now safe by default.yaml.DEFAULT_SAFE_SCHEMAandyaml.DEFAULT_FULL_SCHEMAare removed, useyaml.DEFAULT_SCHEMAinstead.yaml.Schema.create(schema, tags)is removed, useschema.extend(tags)instead.!!binarynow always mapped toUint8Arrayon load.- Reduced nesting of
/libfolder.- Parse numbers according to YAML 1.2 instead of YAML 1.1 (
01234is now decimal,0o1234is octal,1:23is parsed as string instead of base60).dump()no longer quotes:,[,],(,)except when necessary, #470, #557.- Line and column in exceptions are now formatted as
(X:Y)instead ofat line X, column Y(also present in compact format), #332.- Code snippet created in exceptions now contains multiple lines with line numbers.
dump()now serializesundefinedasnullin collections and removes keys withundefinedin mappings, #571.dump()withskipInvalid=truenow serializes invalid items in collections as null.- Custom tags starting with
!are now dumped as!taginstead of!<!tag>, #576.- Custom tags starting with
tag:yaml.org,2002:are now shorthanded using!!, #258.Added
- Added
.mjs(es modules) support.- Added
quotingTypeandforceQuotesoptions for dumper to configure string literal style, #290, #529.- Added
styles: { '!!null': 'empty' }option for dumper (serializes{ foo: null }as "foo:"), #570.- Added
replaceroption (similar to option in JSON.stringify), #339.- Custom
Tagcan now handle all tags or multiple tags with the same prefix, #385.Fixed
... (truncated)
Commits
cc482e74.1.1 released50968b8dist rebuildd092d86lint fix383665ffix prototype pollution in merge (<<)0d3ca7aREADME.md: HTTP => HTTPS (#678)49baadddoc: 'empty' style option for !!nullba3460eFix demo link (#618)2cef47b4.1.0 released810b149dist rebuild2b5620eExport built-in types, type override now preserves order- Additional commits viewable in compare view
Updates esbuild from 0.19.11 to 0.25.12
Release notes
Sourced from esbuild's releases.
v0.25.12
Fix a minification regression with CSS media queries (#4315)
The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for
@media <media-type> and <media-condition-without-or> { ... }was missing an equality check for the<media-condition-without-or>part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.Update the list of known JavaScript globals (#4310)
This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global
Arrayproperty is considered to be side-effect free but accessing the globalscrollYproperty can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:From ES2017:
AtomicsSharedArrayBufferFrom ES2020:
BigInt64ArrayBigUint64ArrayFrom ES2021:
FinalizationRegistryWeakRefFrom ES2025:
Float16ArrayIteratorNote that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from
Iterator:// This can now be tree-shaken by esbuild: class ExampleIterator extends Iterator {}Add support for the new
@view-transitionCSS rule (#4313)With this release, esbuild now has improved support for pretty-printing and minifying the new
@view-transitionrule (which esbuild was previously unaware of):/* Original code */ @view-transition { navigation: auto; types: check; }/* Old output */
@view-transition{ navigation: auto; types: check; }/* New output */
@view-transition{
navigation: auto;
types: check;
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2023
This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).
Commits
208f539publish 0.25.12 to npm5f03afdupdate release notes6b2ee78minify: remove css rules containing empty:is()f361debadd some additional known static methods07aa646automatically mark "RegExp.escape()" calls as pure9039c46simplify some call expression checks188944dadd some additional known static methodsd3c67f9fix #4310: addIteratorand other known globals4a51f0bfix: escape dev server breadcrumb hrefs properly (#4316)26b29edfix #4315:@mediadeduplication bug edge case- Additional commits viewable in compare view
Updates http-proxy-middleware from 2.0.6 to 2.0.9
Release notes
Sourced from http-proxy-middleware's releases.
v2.0.9
What's Changed
- fix(fixRequestBody): check readableLength by
@chimuraiin chimurai/http-proxy-middleware#1097- chore(package): v2.0.9 by
@chimuraiin chimurai/http-proxy-middleware#1099Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.8...v2.0.9
v2.0.8
What's Changed
- fix(fixRequestBody): prevent multiple .write() calls by
@chimuraiin chimurai/http-proxy-middleware#1090- fix(fixRequestBody): handle invalid request by
@chimuraiin chimurai/http-proxy-middleware#1091- chore(package): v2.0.8 by
@chimuraiin chimurai/http-proxy-middleware#1094Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7...v2.0.8
v2.0.7
Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7
v2.0.7-beta.1
Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7-beta.0...v2.0.7-beta.1
v2.0.7-beta.0
Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7-beta.0
Changelog
Sourced from http-proxy-middleware's changelog.
v2.0.9
- fix(fixRequestBody): check readableLength
v2.0.8
- fix(fixRequestBody): prevent multiple .write() calls
- fix(fixRequestBody): handle invalid request
v2.0.7
- ci(github actions): add publish.yml
- fix(filter): handle errors
Commits
617a7c9chore(package): v2.0.9 (#1099)d22d587fix(fixRequestBody): check readableLength (#1097)d03d51bchore(package): v2.0.8 (#1094)c50dd06fix(fixRequestBody): handle invalid request (#1091)76a9d8dfix(fixRequestBody): prevent multiple .write() calls (#1090)1e92339ci(github-actions): fix npm tag90afb7cchore(package): v2.0.70b4274efix(filter): handle errors1bd6dd5ci(github actions): add publish.yml- See full diff in compare view
Updates nanoid from 3.3.7 to 3.3.11
Release notes
Sourced from nanoid's releases.
3.3.11
- Fixed React Native support.
3.3.10
- Fixed React Native support (by
@steida).3.3.9
- Reduced npm package size.
Changelog
Sourced from nanoid's changelog.
3.3.11
- Fixed React Native support.
3.3.10
- Fixed React Native support (by
@steida).3.3.9
- Reduced npm package size.
3.3.8
- Fixed a way to break Nano ID by passing non-integer size (by
@myndzi).
Commits
37289ceRelease 3.3.11 version23690b7Fix CIc147962Fix RN supporta83734eMove to manually ESM/CJS dual packagebb12e8aRelease 3.3.10 version8f44264Fix Expo supportadf9b0cRelease 3.3.9 version1c6f088Remove dev file from npm package3044cd5Release 3.3.8 version4fe3495Update size limit- Additional commits viewable in compare view
Updates on-headers from 1.0.2 to 1.1.0
Release notes
Sourced from on-headers's releases.
1.1.0
Important
What's Changed
- Migrate CI pipeline to GitHub actions by
@carpassein jshttp/on-headers#12- fix README.md badges by
@carpassein jshttp/on-headers#13- add OSSF scorecard action by
@carpassein jshttp/on-headers#14- fix: use
ubuntu-latestas ci runner by@UlisesGasconin jshttp/on-headers#19- ci: apply OSSF Scorecard security best practices by
@UlisesGasconin jshttp/on-headers#20- 👷 add upstream change detection by
@ctcpipin jshttp/on-headers#31- ✨ add script to update known hashes by
@ctcpipin jshttp/on-headers#32- 💚 update CI - add newer node versions by
@ctcpipin jshttp/on-headers#33New Contributors
@carpassemade their first contribution in jshttp/on-headers#12@UlisesGasconmade their first contribution in jshttp/on-headers#19@ctcpipmade their first contribution in jshttp/on-headers#31Full Changelog: https://github.com/jshttp/on-headers/compare/v1.0.2...v1.1.0
Commits
4b017af1.1.0b636f2d♻️ refactor header array code3e2c2d4✨ ignore falsy header keys, matching node behavior172eb41✨ support duplicate headersc6e3849🔒️ fix array handling6893518💚 update CI - add newer node versions56a345d✨ add script to update known hashes175ab21👷 add upstream change detection (#31)-
Package Dependencies
Security Advisories
cookie accepts cookie name, path, and domain with out of bounds characters
on-headers is vulnerable to http response header manipulation
Technical Details
| ID: | 11381569 |
| UUID: | 3663902261 |
| Node ID: | PR_kwDOLP6sz861dkUA |
| Host: | GitHub |
| Repository: | batuhan-basoglu/NET-Web-API-w-Angular |