summaryrefslogtreecommitdiff
path: root/src/mongo/scripting/mozjs/global.cpp
AgeCommit message (Collapse)Author
2023-07-01SERVER-77049 SERVER-77050 IWYU automated changes up to 1.0Daniel Moody
2022-05-06SERVER-66203 move MONGO_LOGV2_DEFAULT_COMPONENT defs below includesBilly Donahue
2020-06-10SERVER-48352 logv2 cleanup for scripting/mozjs, shell/Gabriel Russell
o also, deduplicated the example log id's in src/mongo/logv2/README.md even though they were just examples, it was funny that there werre not unique
2020-05-18SERVER-46932 supress more logging in the shellGabriel Russell
2020-02-23SERVER-46156 Deprecate LogstreamBuilder and more manual log conversionsHenrik Edin
* Remove setPlainConsoleLogger() * Update errorcodes linter to work with custom user defined log macros rename src/mongo/embedded/{embedded_log_appender.h => embedded_log_backend.h} (61%)
2020-02-10SERVER-46057 Disable truncation from js logging in shellHenrik Edin
2019-12-04SERVER-43998 ProgramOutputMultiplexer::appendLine should write to the loggerGabriel Russell
2019-02-13SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue
Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
2018-10-22SERVER-37651 Update header files with new licenseRamon Fernandez
2018-04-27SERVER-31508: Make Javascript sleep interruptableSpencer Jackson
2016-10-03SERVER-19042 Make globalScriptEngine a decoration on ServiceContext where ↵Jonathan Reams
possible
2016-09-15SERVER-22688 Provide a setParameter and shell option to control the js heap ↵Waley Chen
limit
2016-09-13Revert "SERVER-22688 Provide a setParameter and shell option to control the ↵Waley Chen
js heap limit" This reverts commit 955cf8c998a60a8c2a2493dd428dd3d763e90259.
2016-09-13SERVER-22688 Provide a setParameter and shell option to control the js heap ↵Waley Chen
limit
2016-08-15SERVER-25402 Fewer binaries depend on interpolated version infoAndrew Morrow
2016-08-01SERVER-22734 unify --version output, thus adding enterprise designationsMatt Cotter
2016-07-15Revert "SERVER-22734 add Enterprise to version in enterprise shell builds"Dan Pasette
This reverts commit 472ac6b5bcb50e8869d03ecb044ce8ed3d779954.
2016-07-14SERVER-22734 add Enterprise to version in enterprise shell buildsMatt Cotter
2016-05-17SERVER-24104 Replace stdx::duration with mongo::Duration.Andy Schwerin
The mongo::Duration type does overflow checking on casts and arithmetic. This patch also moves DESTRUCTOR_GUARD out of assert_util.h into destructor_guard.h in order to break an include cycle with duration.h.
2016-04-07SERVER-23547 Make the multiversion concept of "latest" more precise.Andy Schwerin
This supports multiversion tests involving subversions, like 3.2.1 compared to 3.2 latest.
2015-09-17SERVER-20375 Constrain JS method thisvJason Carey
This constrains universal access to wraptype methods by providing a JS_ATTACH_JS_CONSTRAINED_METHOD() macro which allows for a list of types that are allowed to call said method. In this way we can lock down all methods without having to add uasserts to each individual method body.
2015-07-14SERVER-18531 Integrate SpiderMonkeyJason Carey
Provides SpiderMonkey 38.0.1esr as a JS engine for mongo and mongod.