angular-cosmosdb
angular-cosmosdb copied to clipboard
Bump debug, express, mongoose, compression, serve-index and karma
Bumps debug to 2.6.9 and updates ancestor dependencies debug, express, mongoose, compression, serve-index and karma. These dependencies need to be updated together.
Updates debug from 2.6.8 to 2.6.9
Release notes
Sourced from debug's releases.
2.6.9
Patches
- Remove ReDoS regexp in
%oformatter: #504Credits
Huge thanks to
@zhuangyafor their help!
Changelog
Sourced from debug's changelog.
2.6.9 / 2017-09-22
- remove ReDoS regexp in %o formatter (#504)
Commits
13abeaeRelease 2.6.9f53962eremove ReDoS regexp in %o formatter (#504)- See full diff in compare view
Updates express from 4.15.4 to 4.18.2
Release notes
Sourced from express's releases.
4.18.2
- Fix regression routing a large stack in a single route
- deps: [email protected]
- deps: [email protected]
- perf: remove unnecessary object clone
- deps: [email protected]
4.18.1
- Fix hanging on large stack of sync routes
4.18.0
- Add "root" option to
res.download- Allow
optionswithoutfilenameinres.download- Deprecate string and non-integer arguments to
res.status- Fix behavior of
null/undefinedasmaxAgeinres.cookie- Fix handling very large stacks of sync middleware
- Ignore
Object.prototypevalues in settings throughapp.set/app.get- Invoke
defaultwith same arguments as types inres.format- Support proper 205 responses using
res.send- Use
http-errorsforres.formaterror- deps: [email protected]
- Fix error message for json parse whitespace in
strict- Fix internal error when inflated body exceeds limit
- Prevent loss of async hooks context
- Prevent hanging when request already read
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- Add
priorityoption- Fix
expiresoption to reject invalid dates- deps: [email protected]
- Replace internal
evalusage withFunctionconstructor- Use instance methods on
processto check for listeners- deps: [email protected]
- Remove set content headers that break response
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- Prevent loss of async hooks context
- deps: [email protected]
- deps: [email protected]
- Fix emitted 416 error missing headers property
- Limit the headers removed for 304 response
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
... (truncated)
Changelog
Sourced from express's changelog.
4.18.2 / 2022-10-08
- Fix regression routing a large stack in a single route
- deps: [email protected]
- deps: [email protected]
- perf: remove unnecessary object clone
- deps: [email protected]
4.18.1 / 2022-04-29
- Fix hanging on large stack of sync routes
4.18.0 / 2022-04-25
- Add "root" option to
res.download- Allow
optionswithoutfilenameinres.download- Deprecate string and non-integer arguments to
res.status- Fix behavior of
null/undefinedasmaxAgeinres.cookie- Fix handling very large stacks of sync middleware
- Ignore
Object.prototypevalues in settings throughapp.set/app.get- Invoke
defaultwith same arguments as types inres.format- Support proper 205 responses using
res.send- Use
http-errorsforres.formaterror- deps: [email protected]
- Fix error message for json parse whitespace in
strict- Fix internal error when inflated body exceeds limit
- Prevent loss of async hooks context
- Prevent hanging when request already read
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- Add
priorityoption- Fix
expiresoption to reject invalid dates- deps: [email protected]
- Replace internal
evalusage withFunctionconstructor- Use instance methods on
processto check for listeners- deps: [email protected]
- Remove set content headers that break response
- deps: [email protected]
- deps: [email protected]
- deps: [email protected]
- Prevent loss of async hooks context
- deps: [email protected]
- deps: [email protected]
... (truncated)
Commits
8368dc14.18.261f4049docs: replace Freenode with Libera Chatbb7907bbuild: [email protected]f56ce73build: [email protected]24b3dc5deps: [email protected]689d175deps: [email protected]340be0fbuild: [email protected]33e8dc3docs: use Node.js name style644f646build: [email protected]ecd7572build: [email protected]- Additional commits viewable in compare view
Updates mongoose from 4.11.7 to 4.13.21
Changelog
Sourced from mongoose's changelog.
4.13.21 / 2020-07-12
- fix(query): delete top-level
_bsontypeproperty in queries to prevent silent empty queries #82225.9.23 / 2020-07-10
- fix(model): fix
syncIndexes()error when db index has a collation but Mongoose index does not #9224 clhuang- fix(array): only cast array to proper depth if it contains an non-array value #9217 #9215 cyrilgandon
- docs(schematype): document the
transformoption #9211- docs(mongoose): fix typo #9212 JNa0
5.9.22 / 2020-07-06
- fix(schema): treat
{ type: mongoose.Schema.Types.Array }as equivalent to{ type: Array }#9194- fix: revert fix for #9107 to avoid issues when calling
connect()multiple times #9167- fix(update): respect storeSubdocValidationError option with update validators #9172
- fix: upgrade to safe-buffer 5.2 #9198
- docs: add a note about SSL validation to migration guide #9147
- docs(schemas): fix inconsistent header #9196 samtsai15
5.9.21 / 2020-07-01
- fix: propagate
typeKeyoption to implicitly created schemas fromtypePojoToMixed#9185 joaoritter- fix(populate): handle embedded discriminator
refPathwith multiple documents #9153- fix(populate): handle deselected foreign field with
perDocumentLimitand multiple documents #9175- fix(document): disallow
transformfunctions that return promises #9176 #9163 AbdelrahmanHafez- fix(document): use strict equality when checking mixed paths for modifications #9165
- docs: add target="_blank" to all edit links #9058
5.9.20 / 2020-06-22
- fix(populate): handle populating primitive array under document array discriminator #9148
- fix(connection): make sure to close previous connection when calling
openUri()on an already open connection #9107- fix(model): fix conflicting $setOnInsert default values with
updatevalues in bulkWrite #9160 #9157 AbdelrahmanHafez- docs(validation): add note about validateBeforeSave and invalidate #9144 dandv
- docs: specify the array field syntax for invalidate #9137 dandv
- docs: fix several typos and broken references #9024 AbdelrahmanHafez
- docs: fix minor typo #9143 dandv
5.9.19 / 2020-06-15
- fix: upgrade mongodb driver -> 3.5.9 #9124 AbdelrahmanHafez
- fix: copy
requiredvalidator on single nested subdoc correctly when callingSchema#clone()#8819- fix(discriminator): handle
tiedValuewhen casting update on nested paths #9108- fix(model): allow empty arrays for bulkWrite #9132 #9131 AbdelrahmanHafez
- fix(schema): correctly set partialFilterExpression for nested schema indexes #9091
- fix(castArrayFilters): handle casting on all fields of array filter #9122 lafeuil
- fix(update): handle nested path createdAt when overwriting parent path #9105
- docs(subdocs): add some notes on the difference between single nested subdocs and nested paths #9085
- docs(subdocs): improve docs on
typePojoToMixed#9085
... (truncated)
Commits
f88eb25fix(query): delete top-level_bsontypeproperty in queries to prevent silen...1db031ctest(schema): clean up messy tests re: #84598fa8012test: test cleanup re: #84594a55040chore: remove problematic mongoose-long dep and use mongodb 3.4 in tests91f95dachore: run consistent mongod version in tests0e65e6echore: release 4.13.20803090dfix(schema): make aliases handle mongoose-lean-virtuals6a8b381chore: add .config.js to gitignore and npmignoref51c4aachore: release 4.13.192aeeaa8Merge pull request #7950 from cdimitroulas/backport-aggregate-options-bugfix- Additional commits viewable in compare view
Updates compression from 1.7.0 to 1.7.4
Release notes
Sourced from compression's releases.
1.7.4
- deps: compressible@~2.0.16
- Mark
text/lessas compressible- deps: mime-db@'>= 1.38.0 < 2'
- deps: on-headers@~1.0.2
- Fix
res.writeHeadpatch missing return value- perf: prevent unnecessary buffer copy
1.7.3
- deps: accepts@~1.3.5
- deps: mime-types@~2.1.18
- deps: compressible@~2.0.14
- Mark all XML-derived types as compressible
- deps: mime-db@'>= 1.34.0 < 2'
- deps: [email protected]
1.7.2
- deps: compressible@~2.0.13
- deps: mime-db@'>= 1.33.0 < 2'
1.7.1
- deps: accepts@~1.3.4
- deps: mime-types@~2.1.16
- deps: [email protected]
- deps: compressible@~2.0.11
- deps: mime-db@'>= 1.29.0 < 2'
- deps: [email protected]
- deps: vary@~1.1.2
- perf: improve header token parsing speed
Changelog
Sourced from compression's changelog.
1.7.4 / 2019-03-18
- deps: compressible@~2.0.16
- Mark
text/lessas compressible- deps: mime-db@'>= 1.38.0 < 2'
- deps: on-headers@~1.0.2
- Fix
res.writeHeadpatch missing return value- perf: prevent unnecessary buffer copy
1.7.3 / 2018-07-15
- deps: accepts@~1.3.5
- deps: mime-types@~2.1.18
- deps: compressible@~2.0.14
- Mark all XML-derived types as compressible
- deps: mime-db@'>= 1.34.0 < 2'
- deps: [email protected]
1.7.2 / 2018-02-18
- deps: compressible@~2.0.13
- deps: mime-db@'>= 1.33.0 < 2'
1.7.1 / 2017-09-26
- deps: accepts@~1.3.4
- deps: mime-types@~2.1.16
- deps: [email protected]
- deps: compressible@~2.0.11
- deps: mime-db@'>= 1.29.0 < 2'
- deps: [email protected]
- deps: vary@~1.1.2
- perf: improve header token parsing speed
Commits
dd5055d1.7.47e91b18perf: prevent unnecessary buffer copyf6873b5build: [email protected]b07e7fdbuild: [email protected]aed82c0build: [email protected]5b7d4c0build: [email protected]ddf2b6ebuild: simplify & speed up logic in Travis CI build steps61a438dbuild: [email protected]7ee13e1deps: on-headers@~1.0.28fb7dcadeps: compressible@~2.0.16- Additional commits viewable in compare view
Updates serve-index from 1.9.0 to 1.9.1
Release notes
Sourced from serve-index's releases.
1.9.1
- deps: accepts@~1.3.4
- deps: mime-types@~2.1.16
- deps: [email protected]
- deps: http-errors@~1.6.2
- deps: [email protected]
- deps: mime-types@~2.1.17
- Add new mime types
- deps: mime-db@~1.30.0
- deps: parseurl@~1.3.2
- perf: reduce overhead for full URLs
- perf: unroll the "fast-path"
RegExp
Changelog
Sourced from serve-index's changelog.
1.9.1 / 2017-09-28
- deps: accepts@~1.3.4
- deps: mime-types@~2.1.16
- deps: [email protected]
- deps: http-errors@~1.6.2
- deps: [email protected]
- deps: mime-types@~2.1.17
- Add new mime types
- deps: mime-db@~1.30.0
- deps: parseurl@~1.3.2
- perf: reduce overhead for full URLs
- perf: unroll the "fast-path"
RegExp
Commits
a399faa1.9.1fc69533deps: parseurl@~1.3.245dbe4fdocs: add express.static to the express example76e3c3adeps: [email protected]da37631build: [email protected]3e09fb2build: [email protected]0894f8cdeps: mime-types@~2.1.17a4f1ef3deps: http-errors@~1.6.2ccbeaebdeps: accepts@~1.3.4- See full diff in compare view
Updates karma from 1.7.0 to 1.7.1
Release notes
Sourced from karma's releases.
1.7.1
Bug Fixes
- debug-runner: support asynchronous tests in the debug runner (a36f3eb), closes #2811
- file-list: Stop polluting global environment with core-js (0988022)
- preprocessor: renamed handeFile to readFileCallback (92a8c81)
- preprocessor: retry if fs.readFile fails (4b60513)
- preprocessor: throw if retry fails (2789bf5)
Features
- ci: disable testing of node versions below 4 (ec92ea9)
- client: log global error stack trace (523d608), closes #2812
- config: remove polling usage (b0f41c7), closes #2669
- deps: add support for node
@8(7feaee3), closes #2754- deps: update socket.io to
1.7.4to avoid issue withws[@1](https://github.com/1).1.2(264442b), closes #2593- watcher: Debounce autoWatchBatchDelay (2f8c049), closes #2331
Changelog
Sourced from karma's changelog.
1.7.1 (2017-08-25)
Bug Fixes
- debug-runner: support asynchronous tests in the debug runner (a36f3eb), closes #2811
- file-list: Stop polluting global environment with core-js (0988022)
- preprocessor: renamed handeFile to readFileCallback (92a8c81)
- preprocessor: retry if fs.readFile fails (4b60513)
- preprocessor: throw if retry fails (2789bf5)
Features
- ci: disable testing of node versions below 4 (ec92ea9)
- client: log global error stack trace (523d608), closes #2812
- config: remove polling usage (b0f41c7), closes #2669
- deps: add support for node
@8(7feaee3), closes #2754- deps: update socket.io to
1.7.4to avoid issue withws[@1](https://github.com/1).1.2(264442b), closes #2593- watcher: Debounce autoWatchBatchDelay (2f8c049), closes #2331
2.0.0 (2017-12-21)
Bug Fixes
- config: Call debug log methods after setting the loglevel based upon config/cli-options. (99fd3f0)
- config: Call debug log methods after setting the loglevel based upon config/cli-options. (a340dae)
- config: Retry install with appveyor-retry. (17d5791)
- config: Workaround npm 5.4 windows bug (ec47d81)
- deps: update socket.io to version 2.0.3. (3b7b019), closes #2821 #2777
- logging: Upgrade to log4js 2.x API. (#2868) (f6f8707), closes #2858
- reporter: show file path correctly when urlRoot specified (34dc7d3), closes #2897
- debug-runner: support asynchronous tests in the debug runner (a36f3eb), closes #2811
- file-list: Stop polluting global environment with core-js (0988022)
- preprocessor: renamed handeFile to readFileCallback (92a8c81)
- preprocessor: retry if fs.readFile fails (4b60513)
- preprocessor: throw if retry fails (2789bf5)
Features
... (truncated)
Commits
446c1f3chore: release v2.0.125fdf3echore: update contributors2270abbMerge pull request #2948 from devoto13/es20150e6d46crefactor: migrate EmitterWrapped to ES20159b472c4refactor: migrate misc files to ES201575ec567refactor: migrate config to ES2015a1f4716refactor: migrate complection to ES2015aeb4541refactor: migrate cli to ES201533b1078refactor: migrate BrowserResult class to ES20155809653refactor: migrate BrowserCollection class to ES2015- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.