Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
AgeCommit message (Collapse)Author
2013-10-30uv: Upgrade to v0.11.14Timothy J Fontaine
2013-10-29Merge remote-tracking branch 'ry/v0.10'isaacs
2013-10-29npm@1.3.13isaacs
2013-10-25Merge remote-tracking branch 'upstream/v0.10'Timothy J Fontaine
Conflicts: ChangeLog deps/uv/ChangeLog deps/uv/include/uv-darwin.h deps/uv/src/unix/fsevents.c deps/uv/src/unix/process.c deps/uv/src/version.c doc/api/addons.markdown doc/api/cluster.markdown doc/api/http.markdown lib/http.js lib/tls.js src/node_crypto.cc src/node_http_parser.cc src/node_version.h src/pipe_wrap.cc src/v8abbr.h src/v8ustack.d test/simple/test-http-pipeline-flood.js
2013-10-24npm@1.3.12isaacs
2013-10-23v8: upgrade 3.21.18.3Timothy J Fontaine
2013-10-19uv: Upgrade to v0.10.18Timothy J Fontaine
2013-10-09mdb_v8: remove useless checkDave Pacheco
2013-10-09dtrace, mdb_v8: support more string, frame typesDave Pacheco
This change makes several improvements to the ustack helper and MDB support: - ustack helper and MDB: add support for two-byte strings (necessary to print many filenames in stacktraces in 0.10 and later). - ustack helper: fix position numbers, which were off by a factor of two - ustack helper: fix frames with undefined Scripts (e.g., "RegExp") - ustack helper: add stub frames - MDB: add support for sliced strings - MDB: sync up with changes from the illumos version of the module Fixes #6309 Closes #6318
2013-10-07v8: ugprade to 3.20.17.14Timothy J Fontaine
2013-09-26v8: upgrade to 3.20.17.13Timothy J Fontaine
fixes #6235
2013-09-25uv: Upgrade to v0.10.17Timothy J Fontaine
2013-09-24Revert "deps: update v8 to 3.20.17.11"Ben Noordhuis
After the upgrade from 3.20.17.7 to 3.20.17.11, we've begun hitting random assertions in V8 in memory-constrained / GC-heavy situations. The assertions all seem to be related to heap allocations and garbage collection but apart from that, they're all over the place. This reverts commit 970bdccc38fee27e10ff1a3b68f3fea3417788a1.
2013-09-23deps: update v8 to 3.20.17.11Fedor Indutny
fix #6235
2013-09-18deps: update v8 to 3.20.17.7Fedor Indutny
2013-09-07Merge remote-tracking branch 'ry/v0.10'isaacs
2013-09-07npm: upgrade to 1.3.11isaacs
2013-09-06Merge remote-tracking branch 'ry/v0.10'isaacs
Conflicts: deps/uv/ChangeLog deps/uv/src/version.c deps/uv/src/win/fs.c lib/_stream_transform.js
2013-09-06npm: upgrade to v1.3.10isaacs
2013-09-05uv: upgrade to v0.10.16Bert Belder
2013-09-04uv: upgrade to v0.11.13Ben Noordhuis
This commit changes src/tcp_wrap.cc and src/udp_wrap.cc just enough to get by (i.e. to compile and function correctly.) The new libuv API allows for more cleanup and deduplication but I'm saving that for another day.
2013-09-03uv: upgrade to v0.11.12Ben Noordhuis
* upgrade deps/uv/ to v0.11.12. * update files in src/ after a libuv API change.
2013-08-29uv: upgrade to v0.11.11Bert Belder
2013-08-28v8: upgrade to 3.20.17Trevor Norris
2013-08-24uv: upgrade to v0.11.10Bert Belder
2013-08-23uv: upgrade to v0.11.9Bert Belder
2013-08-23uv: update to v0.10.15Bert Belder
2013-08-22uv: Upgrade v0.10.14Timothy J Fontaine
2013-08-21uv: Upgrade to v0.11.8Timothy J Fontaine
2013-08-21Merge remote-tracking branch 'ry/v0.10'isaacs
Conflicts: lib/tls.js
2013-08-21deps: upgrade http_parser to 303c4e4Ben Noordhuis
Upgrade to joyent/http-parser@303c4e4. Changes: * Do not accept PUN/GEM methods as PUT/GET. * Further request method check strengthening.
2013-08-18Merge remote-tracking branch 'ry/v0.10'isaacs
Conflicts: AUTHORS ChangeLog lib/dgram.js lib/http.js src/node_crypto.cc src/node_version.h
2013-08-16npm: Upgrade to 1.3.8isaacs
2013-08-10v8: fix openbsd buildBen Noordhuis
This is [1] applied ahead of time. Summary: OpenBSD doesn't have <ucontext.h>. ucontext_t lives in <signal.h> and is a typedef for struct sigcontext. There is no uc_mcontext. [1] https://codereview.chromium.org/21705003/ Note: the patch has been accepted upstream but hasn't made its way into a stable release yet.
2013-08-10v8: upgrade v8 to 3.20.14.1Ben Noordhuis
2013-08-07uv: Upgrade to v0.11.7Timothy J Fontaine
2013-08-06Merge remote-tracking branch 'upstream/v0.10'Timothy J Fontaine
Conflicts: deps/v8/test/cctest/test-api.cc lib/events.js lib/http.js
2013-08-06build: embed the mdb_v8.so into the binaryTimothy J Fontaine
This builds and includes the mdb_v8.so in the binary of node so mdb can be sure to always use the latest version
2013-08-05v8: back-port fix for CVE-2013-2882mstarzinger@chromium.org
Quoting the CVE: Google V8, as used in Google Chrome before 28.0.1500.95, allows remote attackers to cause a denial of service or possibly have unspecified other impact via vectors that leverage "type confusion." Likely has zero impact on node.js because it only runs local, trusted code but let's apply it anyway. This is a back-port of upstream commit r15665. Original commit log: Use internal array as API function cache. R=yangguo@chromium.org BUG=chromium:260106 TEST=cctest/test-api/Regress260106 Review URL: https://codereview.chromium.org/19159003 Fixes #5973.
2013-08-05v8: fix openbsd buildBen Noordhuis
This is [1] applied ahead of time. Summary: OpenBSD doesn't have <ucontext.h>. ucontext_t lives in <signal.h> and is a typedef for struct sigcontext. There is no uc_mcontext. [1] https://codereview.chromium.org/21705003/
2013-08-03npm: Upgrade to 1.3.7isaacs
2013-07-31deps: upgrade libuv to joyent/libuv@4bdb7d8Ben Noordhuis
Non-release upgrade so pending patches can land.
2013-07-30v8: upgrade v8 to 3.20.11Ben Noordhuis
2013-07-30Merge remote-tracking branch 'origin/v0.10'Ben Noordhuis
Conflicts: AUTHORS ChangeLog deps/uv/ChangeLog deps/uv/src/version.c deps/uv/src/win/fs.c src/node.cc src/node_crypto.cc src/node_os.cc src/node_version.h
2013-07-29v8: upgrade to v8 3.20.9Ben Noordhuis
2013-07-25openssl: use asm for sha, md5, rmdFedor Indutny
2013-07-25uv: Upgrade to v0.10.13Timothy J Fontaine
2013-07-25npm: Upgrade to v1.3.5isaacs
2013-07-23v8: reapply floating patchesBen Noordhuis
2013-07-23v8: upgrade to v8 3.20.7Trevor Norris