author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
743,977
15.04.2017 16:45:02
18,000
6f78c05a3a719f3c40e3b8197dd1ea2e85afd627
feat: allow strict mode to be disabled BREAKING CHANGE: the first argument to strict() is now used to enable/disable its functionality, rather than controlling whether or not it is global.
[ { "change_type": "MODIFY", "diff": "@@ -1809,7 +1809,7 @@ Specify --help for available options\nSpecifies either a single option key (string), or an array of options.\nIf any of the options is present, yargs validation is skipped.\n-.strict([global=true])\n+.strict([enabled=true])\n---------\nAny command-li...
JavaScript
MIT License
yargs/yargs
feat: allow strict mode to be disabled (#840) BREAKING CHANGE: the first argument to strict() is now used to enable/disable its functionality, rather than controlling whether or not it is global.
1
feat
null
807,849
18.04.2017 12:18:23
25,200
2e5cf3dbe6ee300915a8fd68cc32b13f0833c0cf
deps: upgrade yargs
[ { "change_type": "MODIFY", "diff": "\"temp-write\": \"^3.2.0\",\n\"write-json-file\": \"^2.0.0\",\n\"write-pkg\": \"^2.1.0\",\n- \"yargs\": \"^7.0.2\"\n+ \"yargs\": \"^7.1.0\"\n},\n\"bin\": {\n\"lerna\": \"./bin/lerna.js\"\n", "new_path": "package.json", "old_path": "package.json" }, { "chan...
JavaScript
MIT License
lerna/lerna
deps: upgrade yargs
1
deps
null
807,849
18.04.2017 12:22:21
25,200
bcb12789896379844c768608ca8a69d8750e42cd
bin: remove yargs.terminalWidth() workaround
[ { "change_type": "MODIFY", "diff": "@@ -11,12 +11,6 @@ const globalKeys = Object.keys(globalOptions).concat([\n\"version\",\n]);\n-// workaround non-interactive yargs.terminalWidth() error\n-// until https://github.com/yargs/yargs/pull/837 is released\n-function terminalWidth() {\n- return typeof process.st...
JavaScript
MIT License
lerna/lerna
bin: remove yargs.terminalWidth() workaround
1
bin
null
807,849
18.04.2017 14:03:15
25,200
2ac3ba1b020c7b66df91077067a6b288e5cc7ceb
cli: move guts of bin/lerna into src/cli
[ { "change_type": "MODIFY", "diff": "#!/usr/bin/env node\n\"use strict\";\n-const yargs = require(\"yargs\");\n-const dedent = require(\"dedent\");\n-const globalOptions = require(\"../lib/Command\").builder;\n-\n-// the options grouped under \"Global Options:\" header\n-const globalKeys = Object.keys(global...
JavaScript
MIT License
lerna/lerna
cli: move guts of bin/lerna into src/cli
1
cli
null
807,849
18.04.2017 14:04:13
25,200
957fdaddd6cea23d8e7eb626833e2f9b7763d2d2
cli: add group 'Command Options' so they sort above 'Global Options'
[ { "change_type": "MODIFY", "diff": "@@ -18,15 +18,18 @@ export const describe = \"Link local packages together and install remaining pack\nexport const builder = {\n\"hoist\": {\n+ group: \"Command Options:\",\ndescribe: \"Install external dependencies matching [glob] to the repo root\",\ntype: \"string\",\...
JavaScript
MIT License
lerna/lerna
cli: add group 'Command Options' so they sort above 'Global Options'
1
cli
null
743,863
30.04.2017 23:28:16
25,200
4c824c95470738501a6867cbbeaef99a1832775f
docs: made a few tweaks to CHANGELOG
[ { "change_type": "MODIFY", "diff": "@@ -26,9 +26,10 @@ All notable changes to this project will be documented in this file. See [standa\n### BREAKING CHANGES\n-* environment variables will now override config files, '--' is now populated rather than '_' when parsing is stopped.\n+* environment variables now...
JavaScript
MIT License
yargs/yargs
docs: made a few tweaks to CHANGELOG
1
docs
null
743,863
01.05.2017 23:42:24
25,200
692ee205e24ee7cb19a848c3e88ee19d2ffd72ef
chore: update description for strict()
[ { "change_type": "MODIFY", "diff": "@@ -1847,8 +1847,7 @@ If any of the options is present, yargs validation is skipped.\nAny command-line argument given that is not demanded, or does not have a\ncorresponding description, will be reported as an error.\n-`global` indicates whether `strict()` should be enabl...
JavaScript
MIT License
yargs/yargs
chore: update description for strict()
1
chore
null
743,863
26.06.2017 15:42:19
25,200
747d426eb64c82ae384ffe6250ecacbcf17539a6
docs: slight tweak to yargs sample code
[ { "change_type": "MODIFY", "diff": "@@ -53,7 +53,7 @@ Retreat from the xupptumblers!\n```js\n#!/usr/bin/env node\n-const yargs = require('yargs') // eslint-disable-line\n+require('yargs') // eslint-disable-line\n.command('serve', 'start the server', (yargs) => {\nyargs.option('port', {\ndescribe: 'port to b...
JavaScript
MIT License
yargs/yargs
docs: slight tweak to yargs sample code
1
docs
null
743,989
27.06.2017 03:51:52
-19,080
628be21f4300852fb3f905264b222673fbd160f3
fix: don't bother calling JSON.stringify() on string default values
[ { "change_type": "MODIFY", "diff": "@@ -413,7 +413,7 @@ module.exports = function (yargs, y18n) {\n} else {\nswitch (typeof value) {\ncase 'string':\n- string += JSON.stringify(value)\n+ string += '\"' + value + '\"'\nbreak\ncase 'object':\nstring += JSON.stringify(value)\n", "new_path": "lib/usage.js",...
JavaScript
MIT License
yargs/yargs
fix: don't bother calling JSON.stringify() on string default values (#891)
1
fix
null
807,849
28.06.2017 11:57:13
25,200
d24704def1444ec87c0d4145da467dcdf761958c
fix: shorten error message assert to match npm5 semantics
[ { "change_type": "MODIFY", "diff": "@@ -117,7 +117,7 @@ describe(\"lerna exec\", () => {\nconst { stdout, stderr } = await execa(LERNA_BIN, args, { cwd });\nexpect(stderr).toMatch(\n- \"Failed at the package-1@1.0.0 fail-or-succeed script 'echo \\\"failure!\\\" && exit 1'.\"\n+ \"Failed at the package-1@1.0...
JavaScript
MIT License
lerna/lerna
fix: shorten error message assert to match npm5 semantics
1
fix
null
808,054
28.06.2017 19:41:47
-7,200
4adfdd343dfc09937b94073ed016c2fe05a257d1
fix: Run yarn in non-interactive mode
[ { "change_type": "MODIFY", "diff": "@@ -82,6 +82,10 @@ export default class NpmUtilities {\nargs.push(\"--mutex\", config.mutex);\n}\n+ if (cmd === \"yarn\") {\n+ args.push(\"--non-interactive\");\n+ }\n+\nlog.silly(\"installInDir\", [cmd, args]);\nChildProcessUtilities.exec(cmd, args, opts, done);\n}).catc...
JavaScript
MIT License
lerna/lerna
fix: Run yarn in non-interactive mode (#897)
1
fix
null
807,872
28.06.2017 21:21:38
-7,200
a6a3da8ba98d42ca971b4ead2f79402665c0335e
chore(travis): test against node 8 and npm 5
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,7 @@ git:\nsudo: false\nlanguage: node_js\nnode_js:\n- - '7'\n+ - '8'\n- '6'\n- '4'\n", "new_path": ".travis.yml", "old_path": ".travis.yml" }, { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ clone_depth: 1\nenvironment:\nmatrix:\n- - no...
JavaScript
MIT License
lerna/lerna
chore(travis): test against node 8 and npm 5 (#861)
1
chore
travis
743,863
04.07.2017 12:04:45
25,200
a8e0cffbdd36eda0b6f93ca48f0ccfcf6e4af355
fix: defaulting keys to 'undefined' interfered with conflicting key logic
[ { "change_type": "MODIFY", "diff": "@@ -308,10 +308,10 @@ module.exports = function (yargs, usage, y18n) {\nself.conflicting = function (argv) {\nvar args = Object.getOwnPropertyNames(argv)\n-\nargs.forEach(function (arg) {\n- // if there is a conflict defined for this key and both conflicting keys have bee...
JavaScript
MIT License
yargs/yargs
fix: defaulting keys to 'undefined' interfered with conflicting key logic
1
fix
null
743,863
04.07.2017 13:43:27
25,200
782b89690ecc22f969f381f8eff7e69413f2cbc5
fix: 'undefined' default value for choices resulted in validation failing
[ { "change_type": "MODIFY", "diff": "@@ -457,6 +457,88 @@ describe('validation tests', function () {\n})\n.argv\n})\n+\n+ // addresses: https://github.com/yargs/yargs/issues/849\n+ it('succeeds when demandOption is true and valid choice is provided', function (done) {\n+ yargs('one -a 10 marsupial')\n+ .comm...
JavaScript
MIT License
yargs/yargs
fix: 'undefined' default value for choices resulted in validation failing
1
fix
null
448,039
07.08.2017 09:56:43
-7,200
8a39ed9900dddcc110f4804d2fdc19574a84ec68
chore: cut release for v1.0.0-pre.14
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.0.0-pre.14\"></a>\n+# [1.0.0-pre.14](https://github.com/dherges/ng-packagr/compare/...
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.0.0-pre.14
1
chore
null
448,039
08.08.2017 08:05:57
-7,200
b366a508e7cbf9a0890d0cd4de6204e84a4744de
test: reproduce issue
[ { "change_type": "MODIFY", "diff": "{\n- \"$schema\": \"../../../src/lib/ng-package.schema.json\",\n- \"lib\": {\n- \"entryFile\": \"public_api.ts\"\n- }\n+ \"$schema\": \"../../../src/lib/ng-package.schema.json\"\n}\n", "new_path": "integration/samples/typings/ng-package.json", "old_path": "integra...
TypeScript
MIT License
ng-packagr/ng-packagr
test: reproduce issue #97
1
test
null
807,849
09.08.2017 18:26:43
25,200
90f84f0e795b75b656a11e04d5792a64b15a38d4
chore: bump dependencies (non-major)
[ { "change_type": "MODIFY", "diff": "\"cmd-shim\": \"^2.0.2\",\n\"columnify\": \"^1.5.4\",\n\"command-join\": \"^2.0.0\",\n- \"conventional-changelog-cli\": \"^1.3.1\",\n- \"conventional-recommended-bump\": \"^1.0.0\",\n+ \"conventional-changelog-cli\": \"^1.3.2\",\n+ \"conventional-recommended-bump\": \"^1....
JavaScript
MIT License
lerna/lerna
chore: bump dependencies (non-major)
1
chore
null
807,849
10.08.2017 09:39:46
25,200
f36ba1d731553c9da38b26c69d3a353b51e5c621
chore: chalk 2.x
[ { "change_type": "MODIFY", "diff": "\"homepage\": \"https://lernajs.io/\",\n\"dependencies\": {\n\"async\": \"^1.5.0\",\n- \"chalk\": \"^1.1.1\",\n+ \"chalk\": \"^2.1.0\",\n\"cmd-shim\": \"^2.0.2\",\n\"columnify\": \"^1.5.4\",\n\"command-join\": \"^2.0.0\",\n", "new_path": "package.json", "old_path"...
JavaScript
MIT License
lerna/lerna
chore: chalk 2.x
1
chore
null
807,849
10.08.2017 09:56:14
25,200
001ec5882630cedd895f2c95a56a755617bb036c
chore: fs-extra 4.x
[ { "change_type": "MODIFY", "diff": "\"dedent\": \"^0.7.0\",\n\"execa\": \"^0.6.3\",\n\"find-up\": \"^2.1.0\",\n- \"fs-extra\": \"^3.0.1\",\n+ \"fs-extra\": \"^4.0.1\",\n\"get-port\": \"^3.1.0\",\n\"glob\": \"^7.1.2\",\n\"globby\": \"^6.1.0\",\n", "new_path": "package.json", "old_path": "package.json...
JavaScript
MIT License
lerna/lerna
chore: fs-extra 4.x
1
chore
null
807,849
10.08.2017 10:02:46
25,200
d1b5dddc3bc97317e6fa406b840e6acc628cf013
chore: upgrade eslint + eslint-config-babel
[ { "change_type": "MODIFY", "diff": "\"babel-jest\": \"^19.0.0\",\n\"babel-plugin-add-module-exports\": \"^0.2.1\",\n\"babel-preset-env\": \"^1.6.0\",\n- \"eslint\": \"^3.19.0\",\n- \"eslint-config-babel\": \"^6.0.0\",\n+ \"eslint\": \"^4.4.1\",\n+ \"eslint-config-babel\": \"^7.0.2\",\n\"eslint-plugin-babel\...
JavaScript
MIT License
lerna/lerna
chore: upgrade eslint + eslint-config-babel
1
chore
null
807,849
10.08.2017 10:03:36
25,200
3c0b1b1068c45da7c2901f344b476dc7306afa2d
lint: remove unnecessary escape character
[ { "change_type": "MODIFY", "diff": "@@ -124,7 +124,7 @@ export default class ImportCommand extends Command {\n.replace(/^([-+]{3} [ab])/mg, replacement)\n.replace(/^(diff --git a)/mg, replacement)\n.replace(/^(diff --git \\S+ b)/mg, replacement)\n- .replace(/^(rename (from|to)) /mg, `\\$1 ${this.targetDir}/...
JavaScript
MIT License
lerna/lerna
lint: remove unnecessary escape character
1
lint
null
448,039
14.08.2017 07:40:17
-7,200
ad6325baa00aff76d7bea0726f06cdbaf0740aa7
fix: move ng-package.schema.json to dist root directory BREAKING CHANGES: the `ng-package.schema.json` was accidentally moved to `lib` folder in a previous release. Restore it in its original location!
[ { "change_type": "MODIFY", "diff": "@@ -14,7 +14,7 @@ require('ts-node').register({\nproject: path.join(__dirname, '..', 'tsconfig.packagr.json')\n});\n-const ngPackagr = require('../lib/ng-packagr');\n+const ngPackagr = require('../src/lib/ng-packagr');\nlet promise = Promise.resolve();\nwhile (SAMPLES.len...
TypeScript
MIT License
ng-packagr/ng-packagr
fix: move ng-package.schema.json to dist root directory BREAKING CHANGES: the `ng-package.schema.json` was accidentally moved to `lib` folder in a previous release. Restore it in its original location!
1
fix
null
448,039
14.08.2017 07:59:34
-7,200
0c3130c726dfcebae1abb719b5565fdd4d1dba2a
fix: read json config values thru `schema.$$get()`
[ { "change_type": "MODIFY", "diff": "+import { SchemaClass } from '@ngtools/json-schema';\nimport { NgPackageConfig } from '../../ng-package.schema';\nconst path = require('path');\n@@ -5,35 +6,56 @@ const SCOPE_PREFIX = '@';\nconst SCOPE_NAME_SEPARATOR = '/';\n-/** POVO (plain-old value object) of the Angul...
TypeScript
MIT License
ng-packagr/ng-packagr
fix: read json config values thru `schema.$$get()`
1
fix
null
743,897
14.08.2017 21:21:16
25,200
a2c0fefc4e1fe5300309c0bb5eb0ebfc254e4982
docs: correct typos in example.md
[ { "change_type": "MODIFY", "diff": "@@ -135,7 +135,7 @@ DEBUG(\"Extra chatty mode\");\nShowing semi-important stuff too\nExtra chatty mode\n-Tell users how to use yer options and make demands.\n+Tell users how to use your options and make demands.\n-------------------------------------------------\narea.js:...
JavaScript
MIT License
yargs/yargs
docs: correct typos in example.md (#934)
1
docs
null
448,039
16.08.2017 13:53:37
-7,200
e22ead21d2f7c4fc9fa89ae6bad6ba1535bc2eba
chore: cut release for v1.0.0-pre.15
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.0.0-pre.15\"></a>\n+# [1.0.0-pre.15](https://github.com/dherges/ng-packagr/compare/...
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.0.0-pre.15
1
chore
null
448,039
22.08.2017 07:30:00
-7,200
2709d4a54cc7ec5531f8b9d9da0a6fde9dfe7a77
chore: cut release for v1.0.0-pre.16
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.0.0-pre.16\"></a>\n+# [1.0.0-pre.16](https://github.com/dherges/ng-packagr/compare/...
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.0.0-pre.16
1
chore
null
807,849
23.08.2017 20:56:50
25,200
5421da5ae601e9f8857c7cf53f219957c4d74399
chore: write-file-atomic ^2.3.0
[ { "change_type": "MODIFY", "diff": "\"signal-exit\": \"^3.0.2\",\n\"strong-log-transformer\": \"^1.0.6\",\n\"temp-write\": \"^3.3.0\",\n- \"write-file-atomic\": \"^2.1.0\",\n+ \"write-file-atomic\": \"^2.3.0\",\n\"write-json-file\": \"^2.2.0\",\n\"write-pkg\": \"^3.1.0\",\n\"yargs\": \"^8.0.2\"\n", "new...
JavaScript
MIT License
lerna/lerna
chore: write-file-atomic ^2.3.0
1
chore
null
807,849
23.08.2017 21:00:27
25,200
41b1be9a6cbc919c63fd336534d9d57ef58577bf
chore: inquirer 3.2.2
[ { "change_type": "MODIFY", "diff": "\"glob\": \"^7.1.2\",\n\"globby\": \"^6.1.0\",\n\"graceful-fs\": \"^4.1.11\",\n- \"inquirer\": \"^3.2.1\",\n+ \"inquirer\": \"^3.2.2\",\n\"is-ci\": \"^1.0.10\",\n\"load-json-file\": \"^3.0.0\",\n\"lodash\": \"^4.17.4\",\n", "new_path": "package.json", "old_path": ...
JavaScript
MIT License
lerna/lerna
chore: inquirer 3.2.2
1
chore
null
807,849
23.08.2017 21:02:33
25,200
debaf90fb8a6c099eb8414d8ff0c68a871c34305
chore: eslint ^4.5.0
[ { "change_type": "MODIFY", "diff": "\"babel-jest\": \"^19.0.0\",\n\"babel-plugin-add-module-exports\": \"^0.2.1\",\n\"babel-preset-env\": \"^1.6.0\",\n- \"eslint\": \"^4.4.1\",\n+ \"eslint\": \"^4.5.0\",\n\"eslint-config-babel\": \"^7.0.2\",\n\"eslint-plugin-babel\": \"^4.1.2\",\n\"eslint-plugin-flowtype\":...
JavaScript
MIT License
lerna/lerna
chore: eslint ^4.5.0
1
chore
null
807,849
23.08.2017 22:07:01
25,200
eef3f405e5fe2fd5c96b9d0e80a02fab13dd2807
chore: get-port ^3.2.0, ensuring port is always bound in IPv4 range
[ { "change_type": "MODIFY", "diff": "\"execa\": \"^0.6.3\",\n\"find-up\": \"^2.1.0\",\n\"fs-extra\": \"^4.0.1\",\n- \"get-port\": \"^3.1.0\",\n+ \"get-port\": \"^3.2.0\",\n\"glob\": \"^7.1.2\",\n\"globby\": \"^6.1.0\",\n\"graceful-fs\": \"^4.1.11\",\n", "new_path": "package.json", "old_path": "packag...
JavaScript
MIT License
lerna/lerna
chore: get-port ^3.2.0, ensuring port is always bound in IPv4 range
1
chore
null
807,849
23.08.2017 22:30:54
25,200
4d984c1401a0fd842af1424fd7e63dba04f33054
chore: execa ^0.8.0
[ { "change_type": "MODIFY", "diff": "\"conventional-changelog-cli\": \"^1.3.2\",\n\"conventional-recommended-bump\": \"^1.0.1\",\n\"dedent\": \"^0.7.0\",\n- \"execa\": \"^0.6.3\",\n+ \"execa\": \"^0.8.0\",\n\"find-up\": \"^2.1.0\",\n\"fs-extra\": \"^4.0.1\",\n\"get-port\": \"^3.2.0\",\n", "new_path": "pa...
JavaScript
MIT License
lerna/lerna
chore: execa ^0.8.0
1
chore
null
573,190
25.08.2017 12:47:00
25,200
927b79a0c01e3edc13ba3d9766a17500aa654e3a
docs: update the website `git clone` should be recursive
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ The website templates are maintained at https://github.com/restify/restify.githu\nTo update the documentaiton on the website to reflect the latest version of 5.x simply:\n```\n-git clone git@github.com:restify/restify.github.io\n+git clone --recursive gi...
JavaScript
MIT License
restify/node-restify
docs: update the website `git clone` should be recursive
1
docs
null
448,039
28.08.2017 07:49:00
-7,200
edb8ab71612fedc416921fea6d315145ec5ba30c
chore: cut release for v1.0.0-pre.17
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.0.0-pre.17\"></a>\n+# [1.0.0-pre.17](https://github.com/dherges/ng-packagr/compare/...
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.0.0-pre.17
1
chore
null
573,227
28.08.2017 20:58:37
-7,200
22370420f138f38d7a4627e7ce30e25033f0624e
test(plugin): avoid using 127.0.0.2 in throttle tests
[ { "change_type": "MODIFY", "diff": "@@ -189,10 +189,17 @@ describe('throttle plugin', function () {\n});\n});\n+ describe('expose headers', function () {\n+ before(function (done) {\n+ // close global server before creating a new to avoid port conflicts\n+ CLIENT.close();\n+ SERVER.close(done);\n+ });\n+\ni...
JavaScript
MIT License
restify/node-restify
test(plugin): avoid using 127.0.0.2 in throttle tests
1
test
plugin
807,849
28.08.2017 22:45:48
25,200
958a2ab5b94221632cc981fc94ed5b951bc45efa
ci: synchronize upgraded npm across matrix, using 5.4.0 in node v8.x
[ { "change_type": "MODIFY", "diff": "@@ -19,6 +19,9 @@ cache:\n- node_modules\nbefore_install:\n+ - if [[ `node -v` == v4* ]]; then npm i -g npm@3; fi\n+ - if [[ `node -v` == v6* ]]; then npm i -g npm@4; fi\n+ - if [[ `node -v` == v8* ]]; then npm i -g npm@5.4.0; fi\n- curl -o- -L https://yarnpkg.com/install...
JavaScript
MIT License
lerna/lerna
ci: synchronize upgraded npm across matrix, using 5.4.0 in node v8.x
1
ci
null
573,227
30.08.2017 23:58:10
-7,200
63066954b8945b63fe91d252b7d35e1df70d35e1
docs(plugins): Document undocumented parser options
[ { "change_type": "MODIFY", "diff": "@@ -258,7 +258,10 @@ server.use(restify.plugins.bodyParser({\nuploadDir: os.tmpdir(),\nmultiples: true,\nhash: 'sha1',\n- rejectUnknown: true\n+ rejectUnknown: true,\n+ requestBodyOnGet: false,\n+ reviver: undefined,\n+ maxFieldsSize: 2 * 1024 * 1024\n}));\n```\n@@ -275,6...
JavaScript
MIT License
restify/node-restify
docs(plugins): Document undocumented parser options (#1469)
1
docs
plugins
448,039
31.08.2017 10:01:15
-7,200
665a24981af6edf308b48dad2814cfdf2cbee831
feat: ng-packagr is released 1.0.0 final
[ { "change_type": "MODIFY", "diff": "\"postbuild\": \"node scripts/postbuild.js\",\n\"schema\": \"json2ts --input src/ng-package.schema.json --output src/ng-package.schema.ts\",\n\"prerelease\": \"yarn build\",\n- \"release\": \"standard-version --message 'chore: cut release for v%s' --prerelease pre\",\n+ \...
TypeScript
MIT License
ng-packagr/ng-packagr
feat: ng-packagr is released 1.0.0 final
1
feat
null
448,039
31.08.2017 10:08:10
-7,200
8f6f3f2897d361da4d6244f36b3e8875ff0abb8f
chore: cut release for v1.0.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.0.0\"></a>\n+# [1.0.0](https://github.com/dherges/ng-packagr/compare/v1.0.0-pre.17....
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.0.0
1
chore
null
448,039
31.08.2017 11:02:51
-7,200
a74c69811f64c3272f8e0263abfe6a2c571948d7
chore: cut release for v1.0.1
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.0.1\"></a>\n+## [1.0.1](https://github.com/dherges/ng-packagr/compare/v1.0.0...v1.0...
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.0.1
1
chore
null
743,863
03.09.2017 12:50:47
25,200
c240661c27a69fdd2bae401919a9ad31ccd1be01
fix: address bug with handling of arrays of implications
[ { "change_type": "MODIFY", "diff": "@@ -255,10 +255,10 @@ module.exports = function validation (yargs, usage, y18n) {\nconst implyFail = []\nObject.keys(implied).forEach((key) => {\n- if (implied[key]) {\n- implied[key].forEach((value) => {\n- let num\nconst origKey = key\n+ ;(implied[key] || []).forEach((v...
JavaScript
MIT License
yargs/yargs
fix: address bug with handling of arrays of implications
1
fix
null
743,927
03.09.2017 20:10:28
-3,600
792564d954d5143b2b57b05aaca4007780f5b728
feat: to allow both undefined and nulls, for benefit of TypeScript
[ { "change_type": "MODIFY", "diff": "@@ -384,7 +384,7 @@ function Yargs (processArgs, cwd, parentRequire) {\n}\nself.demandCommand = function demandCommand (min, max, minMsg, maxMsg) {\n- argsert('[number] [number|string] [string|null] [string|null]', [min, max, minMsg, maxMsg], arguments.length)\n+ argsert(...
JavaScript
MIT License
yargs/yargs
feat: to allow both undefined and nulls, for benefit of TypeScript (#945)
1
feat
null
573,195
06.09.2017 12:10:06
25,200
9373cb5e9bb4b9986b98bf0196b9deb00b791f50
New: server `strictNext` option throws when calling next more than once
[ { "change_type": "MODIFY", "diff": "@@ -253,8 +253,9 @@ function Server(options) {\nthis.router = options.router;\nthis.routes = {};\nthis.secure = false;\n- this.versions = options.versions || options.version || [];\nthis.socketio = options.socketio || false;\n+ this._once = (options.strictNext === false) ...
JavaScript
MIT License
restify/node-restify
New: server `strictNext` option throws when calling next more than once (#1454)
1
new
null
573,195
08.09.2017 10:59:52
25,200
33dc141eb8d67e414456b3059f51e537e06ccf49
docs: more detailed plugin docs
[ { "change_type": "MODIFY", "diff": "@@ -32,21 +32,141 @@ server.use(restify.plugins.throttle({\nserver.use(restify.plugins.conditionalRequest());\n```\n-## Available Plugins\n+## `server.pre()` plugins\n+\n+This module includes various pre plugins, which are intended to be used prior\n+to routing of the URL...
JavaScript
MIT License
restify/node-restify
docs: more detailed plugin docs (#1474)
1
docs
null
573,190
08.09.2017 15:04:47
25,200
84be6799c4a80ae67f3aa03165c8031a55bddc97
feat: cpuUsageThrottle
[ { "change_type": "MODIFY", "diff": "@@ -260,8 +260,14 @@ event, e.g., `server.on('after', plugins.metrics());`:\nThe module includes the following plugins to be used with restify's `pre` event:\n* `inflightRequestThrottle(options)` - limits the max number of inflight requests\n* `options.limit` {Number} the...
JavaScript
MIT License
restify/node-restify
feat: cpuUsageThrottle (#1460)
1
feat
null
573,227
10.09.2017 08:38:23
-7,200
33b0e901557f8f4796e0eb33e13042e6a40f28b9
chore(makefile): do not use shrinkwrap file to run nap check
[ { "change_type": "MODIFY", "diff": "@@ -31,9 +31,8 @@ NPM := npm\n#\nDOC_FILES = index.restdown\nJS_FILES = '.'\n-SHRINKWRAP = npm-shrinkwrap.json\n-CLEAN_FILES += node_modules $(SHRINKWRAP) cscope.files\n+CLEAN_FILES += node_modules cscope.files\ninclude ./tools/mk/Makefile.defs\n@@ -65,9 +64,7 @@ test: $(...
JavaScript
MIT License
restify/node-restify
chore(makefile): do not use shrinkwrap file to run nap check (#1482)
1
chore
makefile
573,190
11.09.2017 09:52:18
25,200
e4ffe430b47a2b51fe5fbef00dfa8bd3a1fb66c1
fix(cpuUsageThrottle): Always queue a new timeout
[ { "change_type": "MODIFY", "diff": "@@ -105,6 +105,7 @@ function cpuUsageThrottle (opts) {\n// use to gather CPU load averages, this allows us to cancel the timeout\n// when shutting down restify.\nself._timeout = null;\n+\n// self._timeoutDelta represents the amount of time between when we _should_\n// hav...
JavaScript
MIT License
restify/node-restify
fix(cpuUsageThrottle): Always queue a new timeout (#1484)
1
fix
cpuUsageThrottle
448,039
12.09.2017 13:55:19
-7,200
40312fea2c74097441fcb2e800a9351cdb9715f7
chore: cut release for v1.1.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.1.0\"></a>\n+# [1.1.0](https://github.com/dherges/ng-packagr/compare/v1.0.1...v1.1....
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.1.0
1
chore
null
573,227
12.09.2017 17:49:08
-7,200
866d516159df2c8aaa063e688e6787ad84cba851
chore(examples): remove deprecated CORS
[ { "change_type": "DELETE", "diff": "-var restify = require('./lib');\n-\n-var srv = restify.createServer();\n-srv.use(restify.CORS());\n-\n-function foo(req, res, next) {\n- res.send(204);\n- next();\n-}\n-\n-srv.put('/foo', foo);\n-srv.get('/foo', foo);\n-srv.del('/foo', foo);\n-srv.post('/foo', foo);\n-\n...
JavaScript
MIT License
restify/node-restify
chore(examples): remove deprecated CORS (#1485)
1
chore
examples
573,227
12.09.2017 17:59:24
-7,200
9a1040aa5166232dd3a5c5acd46e6f7fe11ab0f0
chore(examples): fix sockio example
[ { "change_type": "ADD", "diff": "+{\n+ \"name\": \"restify-example\",\n+ \"version\": \"0.0.0\",\n+ \"description\": \"Socket.io example\",\n+ \"main\": \"sockio.js\",\n+ \"dependencies\": {\n+ \"socket.io\": \"2.0.3\"\n+ },\n+ \"scripts\": {\n+ \"start\": \"node sockio.js\"\n+ }\n+}\n", "new_path": "ex...
JavaScript
MIT License
restify/node-restify
chore(examples): fix sockio example (#1487)
1
chore
examples
573,227
12.09.2017 18:06:59
-7,200
925b2cf86facb2d4d93648eb5c6f3ae741d8df26
chore(examples): migrate spdy, dtrace and jsonp examples to the latest restify
[ { "change_type": "MODIFY", "diff": "-var restify = require('../lib');\n+var restify = require('../../lib');\nvar server = restify.createServer({\nname: 'helloworld'\n});\n-server.use(restify.acceptParser(server.acceptable));\n-server.use(restify.authorizationParser());\n-server.use(restify.dateParser());\n-...
JavaScript
MIT License
restify/node-restify
chore(examples): migrate spdy, dtrace and jsonp examples to the latest restify (#1488)
1
chore
examples
573,223
13.09.2017 10:32:22
-19,080
ee154908d3ec4fd4a4108019140820c172df66b5
Fix: 652 - Incorrect error on route with no versions
[ { "change_type": "MODIFY", "diff": "@@ -468,10 +468,17 @@ Router.prototype.find = function find(req, res, callback) {\n// not the first one. However, if neither the client nor\n// server specified any version, we're done, because neither\n// cared\n- if (routes[i].versions.length === 0 && req.version() === ...
JavaScript
MIT License
restify/node-restify
Fix: 652 - Incorrect error on route with no versions (#1465)
1
fix
null
573,195
14.09.2017 14:06:11
25,200
dc9d4eb490fe926d71af17f84e9ad6e1e598b735
Docs: clarity on error handling
[ { "change_type": "MODIFY", "diff": "@@ -491,6 +491,15 @@ restify.createServer({\n});\n```\n+Restify ships with the following default formatters, which can be overridden\n+when passing a formatters options to `createServer()`:\n+\n+* application/javascript\n+* application/json\n+* text/plain\n+* application/...
JavaScript
MIT License
restify/node-restify
Docs: clarity on error handling (#1491)
1
docs
null
744,030
18.09.2017 01:48:02
-7,200
ac8088bf70bd27aa10268afb0d63bcf3a4a8016f
fix: implications fails only displayed once
[ { "change_type": "MODIFY", "diff": "@@ -249,6 +249,7 @@ module.exports = function validation (yargs, usage, y18n) {\n;(implied[key] || []).forEach((value) => {\nlet num\nlet key = origKey\n+ const origValue = value\n// convert string '1' to number 1\nnum = Number(key)\n@@ -278,7 +279,7 @@ module.exports = f...
JavaScript
MIT License
yargs/yargs
fix: implications fails only displayed once (#954)
1
fix
null
573,190
19.09.2017 09:34:55
25,200
78b0900b0ffcefa86e541c850d27779c5f656f00
fix(cpuUsageThrottle): Correctly named handler for debugInfo
[ { "change_type": "MODIFY", "diff": "@@ -77,7 +77,7 @@ var EWMA = require('ewma');\n* unit is in ms. Defaults to 250.\n* @returns {Function} middleware to be registered on server.pre\n*/\n-function cpuUsageThrottle (opts) {\n+function cpuUsageThrottlePlugin (opts) {\n// Scrub input and populate our configura...
JavaScript
MIT License
restify/node-restify
fix(cpuUsageThrottle): Correctly named handler for debugInfo (#1499)
1
fix
cpuUsageThrottle
573,190
19.09.2017 09:58:41
25,200
c2e6deae5dab78187a8b09ce5256fb09db390bc9
fix(server): error in pre handler triggers after event
[ { "change_type": "MODIFY", "diff": "@@ -753,17 +753,14 @@ Server.prototype._handle = function _handle(req, res) {\n// run pre() handlers first before routing and running\nif (self.before.length > 0) {\nself._run(req, res, null, self.before, function (err) {\n- // check for return false here - like with the ...
JavaScript
MIT License
restify/node-restify
fix(server): error in pre handler triggers after event (#1500)
1
fix
server
448,077
20.09.2017 08:53:21
-3,600
3f87f5e9d64a8248fa726801c2843e73079ca004
feat: add rollup commonjs plugin to support all library types
[ { "change_type": "MODIFY", "diff": "\"read-file\": \"^0.2.0\",\n\"rimraf\": \"^2.6.1\",\n\"rollup\": \"^0.50.0\",\n+ \"rollup-plugin-commonjs\": \"^8.2.1\",\n\"rollup-plugin-node-resolve\": \"^3.0.0\",\n\"sorcery\": \"^0.10.0\",\n\"stylus\": \"^0.54.5\",\n", "new_path": "package.json", "old_path": "...
TypeScript
MIT License
ng-packagr/ng-packagr
feat: add rollup commonjs plugin to support all library types (#121)
1
feat
null
448,039
20.09.2017 09:55:58
-7,200
e56d8f8628d4a3fcff415ee8aaf8026e89af50a4
chore: cut release for v1.2.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.2.0\"></a>\n+# [1.2.0](https://github.com/dherges/ng-packagr/compare/v1.1.0...v1.2....
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.2.0
1
chore
null
815,745
22.09.2017 15:37:47
-10,800
72f4dd0f3390316784fdad6efea0539d33ef187d
feat: focus first item on open/keyup
[ { "change_type": "MODIFY", "diff": "@@ -45,9 +45,10 @@ export class ItemsList {\n}\nfilter(term: string, bindLabel: string) {\n- this._markedItemIndex = -1;\n+ this.unmarkCurrentItem();\nconst filterFuncVal = this.getDefaultFilterFunc(term, bindLabel);\nthis.filteredItems = term ? this.items.filter(val => f...
TypeScript
MIT License
ng-select/ng-select
feat: focus first item on open/keyup
1
feat
null
815,746
24.09.2017 14:15:57
-10,800
1c30d71e72d78d17ea0f6b24b644b761ff6ecb09
fix: increase dropdown container height
[ { "change_type": "MODIFY", "diff": "@@ -173,7 +173,7 @@ ng-select {\nbox-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);\nbox-sizing: border-box;\nmargin-top: -1px;\n- max-height: 200px;\n+ max-height: 242px;\nposition: absolute;\ntop: 100%;\nwidth: 100%;\n@@ -181,7 +181,7 @@ ng-select {\n-webkit-overflow-scrolling: t...
TypeScript
MIT License
ng-select/ng-select
fix: increase dropdown container height
1
fix
null
815,746
24.09.2017 14:32:20
-10,800
ebf29279f7c09e0fb5f2d1a16144564d967958d7
fix: do not fire duplicate events
[ { "change_type": "MODIFY", "diff": "@@ -24,15 +24,19 @@ export class ItemsList {\nreturn this._selected[0];\n}\n- select(item: NgOption) {\n+ select(item: NgOption): boolean {\n+ if (this._selected.indexOf(item) > -1) {\n+ return false;\n+ }\nif (!this._multiple) {\nthis.clearSelected();\n}\nthis._selected....
TypeScript
MIT License
ng-select/ng-select
fix: do not fire duplicate events
1
fix
null
815,746
24.09.2017 15:02:11
-10,800
e4084eadf6025849d87daa9767f16b74f925b08f
fix: Fire close event only dropdown was opened
[ { "change_type": "MODIFY", "diff": "@@ -524,6 +524,81 @@ describe('NgSelectComponent', function () {\n}));\n});\n});\n+\n+ describe('Output events', () => {\n+ it('fire open event once', fakeAsync(() => {\n+ const fixture = createTestingModule(\n+ NgSelectEventsTestCmp,\n+ `<ng-select [items]=\"cities\"\n+ ...
TypeScript
MIT License
ng-select/ng-select
fix: Fire close event only dropdown was opened
1
fix
null
744,030
25.09.2017 13:30:20
-7,200
74a38b2646478c301a17498afa36a832277e5b9c
feat: multiple usage calls are now collected, not replaced
[ { "change_type": "MODIFY", "diff": "@@ -64,11 +64,21 @@ module.exports = function usage (yargs, y18n) {\n}\n// methods for ouputting/building help (usage) message.\n- let usage\n+ let usages = []\n+ let usageDisabled = false\nself.usage = (msg) => {\n- usage = msg\n+ if (msg === null) {\n+ usageDisabled = t...
JavaScript
MIT License
yargs/yargs
feat: multiple usage calls are now collected, not replaced (#958)
1
feat
null
743,916
27.09.2017 02:09:59
-36,000
3bb8771876e6c62e7e44b64d62f12a8ede9120ab
fix: config and normalise can be disabled with false
[ { "change_type": "MODIFY", "diff": "@@ -1186,6 +1186,17 @@ describe('yargs dsl tests', () => {\nargv.foo.should.equal('baz')\n})\n+ it('can be disabled with option shorthand', () => {\n+ const argv = yargs('--config ./test/fixtures/config.json')\n+ .option('config', {\n+ config: false,\n+ global: false\n+ }...
JavaScript
MIT License
yargs/yargs
fix: config and normalise can be disabled with false (#952)
1
fix
null
815,746
27.09.2017 09:14:51
-10,800
c76d4100f2edee5912796131151faea6fee895f2
fix: Clear all selected values before new model write action
[ { "change_type": "MODIFY", "diff": "@@ -40,6 +40,7 @@ export class ItemsList {\nclearSelected() {\nthis._selected.forEach((item) => {\nitem.selected = false;\n+ item.marked = false;\n});\nthis._selected = [];\n}\n", "new_path": "src/lib/src/items-list.ts", "old_path": "src/lib/src/items-list.ts" }...
TypeScript
MIT License
ng-select/ng-select
fix: Clear all selected values before new model write action
1
fix
null
815,746
27.09.2017 18:00:40
-10,800
5f30ce8cf79b924fe3f95f3cb96956beb98956e1
fix: Check if change detector is not destroyed
[ { "change_type": "MODIFY", "diff": "import {\nComponent,\nOnInit,\n+ OnDestroy,\nforwardRef,\nChangeDetectorRef,\nInput,\n@@ -41,7 +42,7 @@ const NGB_ANG_SELECT_VALUE_ACCESSOR = {\n'role': 'dropdown'\n}\n})\n-export class NgSelectComponent implements OnInit, ControlValueAccessor {\n+export class NgSelectCom...
TypeScript
MIT License
ng-select/ng-select
fix: Check if change detector is not destroyed
1
fix
null
573,227
28.09.2017 09:38:32
-7,200
dae48df3ce9b420cb9624b3c1d444681ff3b4f82
chore(package): update dependencies ( mime has a known security vulnabirity: )
[ { "change_type": "MODIFY", "diff": "\"http-signature\": \"^1.0.0\",\n\"lodash\": \"^4.17.4\",\n\"lru-cache\": \"^4.0.1\",\n- \"mime\": \"^1.4.0\",\n+ \"mime\": \"^1.4.1\",\n\"negotiator\": \"^0.6.1\",\n\"once\": \"^1.3.0\",\n\"pidusage\": \"^1.1.6\",\n\"devDependencies\": {\n\"chai\": \"^4.0.1\",\n\"cover\"...
JavaScript
MIT License
restify/node-restify
chore(package): update dependencies ( mime has a known security vulnabirity: https://nodesecurity.io/advisories/534 )
1
chore
package
815,745
28.09.2017 16:13:10
-10,800
571319c3553189b7672346513f373cd5b974d21e
fix: click issue using custom template closes
[ { "change_type": "MODIFY", "diff": "<div class=\"as-value\" *ngIf=\"showValue()\">\n<span class=\"as-value-label\" role=\"option\" aria-selected=\"true\">\n<ng-template\n- *ngIf=\"displayTemplateRef\"\n- [ngTemplateOutlet]=\"displayTemplateRef.template\"\n- [ngOutletContext]=\"getDisplayTemplateContext()\">...
TypeScript
MIT License
ng-select/ng-select
fix: click issue using custom template closes #6
1
fix
null
815,746
30.09.2017 11:58:13
-10,800
ceca2f22874db62ed4b5706dcabe8c387523f052
chore: simplify detect changes usages
[ { "change_type": "MODIFY", "diff": "@@ -26,15 +26,13 @@ describe('NgSelectComponent', function () {\n// select second city\nselectOption(fixture, KeyCode.ArrowDown, 1);\n- fixture.detectChanges();\n- tick();\n+ tickAndDetectChanges(fixture);\nexpect(fixture.componentInstance.selectedCity).toEqual(jasmine.ob...
TypeScript
MIT License
ng-select/ng-select
chore: simplify detect changes usages
1
chore
null
815,746
30.09.2017 17:32:19
-10,800
95b6e9932e8ce0f68509f0dc3f7e06d6415e7144
fix: handle clear and arrow click correctly
[ { "change_type": "MODIFY", "diff": "@@ -641,6 +641,73 @@ describe('NgSelectComponent', function () {\nexpect(fixture.componentInstance.onChange).toHaveBeenCalledTimes(1);\n}));\n});\n+\n+ describe('Clear icon click', () => {\n+ let fixture: ComponentFixture<NgSelectBasicTestCmp>;\n+ let clickIcon = null;\n+...
TypeScript
MIT License
ng-select/ng-select
fix: handle clear and arrow click correctly
1
fix
null
815,746
30.09.2017 18:07:04
-10,800
d6d6e8dbbaf1d8388fd28214506b687292365c19
feat: allow to configure module settings globally
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ const appRoutes: Routes = [\n@NgModule({\nimports: [\nBrowserModule,\n- NgSelectModule,\n+ NgSelectModule.forRoot({notFoundText: 'No items found', typeToSearchText: 'Type to search'}),\nCommonModule,\nFormsModule,\nReactiveFormsModule,\n", "new_path"...
TypeScript
MIT License
ng-select/ng-select
feat: allow to configure module settings globally
1
feat
null
815,746
30.09.2017 20:13:49
-10,800
014cca8f7a44fdc8bcebbed08e0f5ca74d557c6f
chore: remove concurrent event checks by adding $event.stopPropagation();
[ { "change_type": "MODIFY", "diff": "@@ -366,14 +366,6 @@ describe('NgSelectComponent', function () {\nexpect(fixture.componentInstance.select.isOpen).toBe(true);\n});\n-\n- it('prevent dropdown close if after first open', () => {\n- fixture.componentInstance.select.open();\n-\n- document.getElementById('clo...
TypeScript
MIT License
ng-select/ng-select
chore: remove concurrent event checks by adding $event.stopPropagation();
1
chore
null
815,746
30.09.2017 23:23:32
-10,800
80b6aa23aecb4adae27302ce0a320a93d976882a
fix: do not use document click HostListener HostListener on document click should not be used because it triggers change detection when it is not needed
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,8 @@ import {\nViewChild,\nElementRef,\nChangeDetectionStrategy,\n- Optional\n+ Optional,\n+ Renderer2\n} from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n@@ -85,11 +86,15 @@ export class NgSelectComponent impl...
TypeScript
MIT License
ng-select/ng-select
fix: do not use document click HostListener HostListener on document click should not be used because it triggers change detection when it is not needed
1
fix
null
815,746
01.10.2017 00:09:48
-10,800
935ac7d20bdeb462dd4d6086bf1efd6924d69171
chore: add hover style on clear icon
[ { "change_type": "MODIFY", "diff": "@@ -110,7 +110,6 @@ ng-select {\nbackground-color: $color-selected;\nborder-radius: 2px;\nborder: 1px solid #c2e0ff;\n- border: 1px solid rgba(0, 126, 255, 0.24);\ndisplay: inline-block;\nfont-size: 0.9em;\nline-height: 1.4;\n@@ -120,11 +119,14 @@ ng-select {\n.as-clear {...
TypeScript
MIT License
ng-select/ng-select
chore: add hover style on clear icon
1
chore
null
815,746
01.10.2017 00:11:28
-10,800
43ef5b9572aa8b227bb1f0e6c95a6dbeea7aa5cc
fix: run virtual scroll calculations outside angular zone
[ { "change_type": "MODIFY", "diff": "@@ -94,7 +94,6 @@ export class NgSelectComponent implements OnInit, OnDestroy, ControlValueAccesso\nprivate renderer: Renderer2\n) {\nthis.mergeConfig(config);\n- this.handleDocumentClick();\n}\n@Input()\n@@ -115,6 +114,7 @@ export class NgSelectComponent implements OnIni...
TypeScript
MIT License
ng-select/ng-select
fix: run virtual scroll calculations outside angular zone
1
fix
null
807,849
02.10.2017 18:10:49
25,200
897b4bf92c07c67051ee66329199ea5f7040816c
chore: Update CHANGELOG for v2.3.0
[ { "change_type": "MODIFY", "diff": "+## v2.3.0 (2017-10-03)\n+\n+New options for `lerna import` and `lerna publish`, set `--loglevel` from lerna.json, and more!\n+\n+#### :rocket: Enhancement\n+* [#1019](https://github.com/lerna/lerna/pull/1019) Add `--flatten` option to use when merge conflicts cannot be i...
JavaScript
MIT License
lerna/lerna
chore: Update CHANGELOG for v2.3.0
1
chore
null
807,849
02.10.2017 18:17:25
25,200
efff3beaa863b3bec8ec9eb045e5035fd2e5c95d
chore: Update CHANGELOG for v2.3.1
[ { "change_type": "MODIFY", "diff": "+## v2.3.1 (2017-10-03)\n+\n+This is what happens when you forget to pull from upstream before publishing.\n+\n+#### :nail_care: Polish\n+* [#1025](https://github.com/lerna/lerna/pull/1025) Log which packages are throwing ECYCLE error. ([@FezVrasta](https://github.com/Fez...
JavaScript
MIT License
lerna/lerna
chore: Update CHANGELOG for v2.3.1
1
chore
null
808,031
03.10.2017 10:30:57
-39,600
7aa16e5f30db7010733a412140a7a4da83b65b47
docs(README): tweak conventional message 1. Normally we lower case the header 2. The scope of a release should be just release (See the angular repo) [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -416,11 +416,11 @@ Useful for bypassing the user input prompt if you already know which version to\n#### --message, -m [msg]\n```sh\n-$ lerna publish -m \"chore: Publish %s\"\n-# commit message = \"chore: Publish v1.0.0\"\n+$ lerna publish -m \"chore(release): publish ...
JavaScript
MIT License
lerna/lerna
docs(README): tweak conventional message (#1040) 1. Normally we lower case the header 2. The scope of a release should be just release (See the angular repo) [skip ci]
1
docs
README
807,849
03.10.2017 14:21:34
25,200
b350871597d46da602eb54733bd398ff0c9b8d07
chore: use multiline template strings for verbose error messages
[ { "change_type": "MODIFY", "diff": "@@ -249,9 +249,11 @@ export default class Command {\nif (this.options.independent && !this.repository.isIndependent()) {\nthrow new ValidationError(\n\"EVERSIONMODE\",\n- \"You ran lerna with `--independent` or `-i`, but the repository is not set to independent mode. \" +...
JavaScript
MIT License
lerna/lerna
chore: use multiline template strings for verbose error messages
1
chore
null
448,039
04.10.2017 08:20:08
-7,200
0425053f54f06e1de9e9181989469eb84cad87cb
chore: cut release for v1.3.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.3.0\"></a>\n+# [1.3.0](https://github.com/dherges/ng-packagr/compare/v1.2.1...v1.3....
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.3.0
1
chore
null
815,746
04.10.2017 17:48:38
-10,800
5bcdda5d2300749c8d8fdfc3521b25ab0f37c6d2
fix: handle selected value when items are not loaded yet
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,11 @@ export class SelectAutocompleteComponent {\n}\nloadGithubUsers(term: string): Observable<any[]> {\n+ if (term) {\nreturn this.http.get<any>(`https://api.github.com/search/users?q=${term}`).map(rsp => rsp.items);\n+ } else {\n+ return Observable.of([]);\...
TypeScript
MIT License
ng-select/ng-select
fix: handle selected value when items are not loaded yet (#61)
1
fix
null
815,745
04.10.2017 18:44:26
-10,800
5e0ca53b3459a16a67716c32c32eb276d9b0853f
fix(navigation): close dropdown without selection on tab fixes
[ { "change_type": "MODIFY", "diff": "<div class=\"as-menu-outer\">\n<virtual-scroll role=\"listbox\" class=\"as-menu\" [bufferAmount]=\"4\" [items]=\"itemsList.filteredItems\" (update)=\"viewPortItems = $event\">\n- <div class=\"as-option\" role=\"option\" (click)=\"toggle(item)\" (mouseover)=\"onItemHover(i...
TypeScript
MIT License
ng-select/ng-select
fix(navigation): close dropdown without selection on tab fixes #65 #67
1
fix
navigation
815,746
04.10.2017 19:30:35
-10,800
4ebc1cf3984326df31ed0014c57a2aa5295e11cd
fix: clear filter value on selected item fixes
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,8 @@ import { Observable } from 'rxjs/Observable';\nnotFoundText=\"No results found\"\ntypeToSearchText=\"Search for github account\"\nbindLabel=\"login\"\n+ [placeholder]=\"placeholder\"\n+ [multiple]=\"multiple\"\n[typeahead]=\"typeahead\"\n[(ngModel)]=\"gi...
TypeScript
MIT License
ng-select/ng-select
fix: clear filter value on selected item (#72) fixes #66
1
fix
null
573,195
05.10.2017 12:02:50
25,200
e696a1f80cd84e7d3db9fb85a18212f970f9a0d3
Fix: redirect should work even when hostname or protocol is not specified in req.url
[ { "change_type": "MODIFY", "diff": "@@ -93,6 +93,14 @@ Sets the link header.\n* `url` {String} a url to redirect to\n* `next` {Function} a callback function\n* `options` {Object} an options object to configure a redirect\n+* `[options.secure]` {Boolean} whether to redirect to http or https\n+* `[options.hos...
JavaScript
MIT License
restify/node-restify
Fix: redirect should work even when hostname or protocol is not specified in req.url (#1497)
1
fix
null
807,849
05.10.2017 12:07:14
25,200
42620995ab1281ce4f1582751720929d7bc66619
refactor: encapsulate semver comparison in PackageGraphNode
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,10 @@ export class PackageGraphNode {\nthis.package = pkg;\nthis.dependencies = [];\n}\n+\n+ satisfies(versionRange) {\n+ return semver.satisfies(this.package.version, versionRange);\n+ }\n}\n/**\n@@ -46,7 +50,7 @@ export default class PackageGraph {\n: depen...
JavaScript
MIT License
lerna/lerna
refactor: encapsulate semver comparison in PackageGraphNode
1
refactor
null
807,849
05.10.2017 15:31:23
25,200
01fbdc648a6f39aa75746d6c6ebffbd31d63b7d7
chore: turn off broken node v4 on appveyor
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,8 @@ environment:\nmatrix:\n- nodejs_version: \"8\"\n- nodejs_version: \"6\"\n- - nodejs_version: \"4\"\n+ # node v4 is broken on appveyor\n+ # - nodejs_version: \"4\"\nmatrix:\nfast_finish: true\n@@ -17,9 +18,7 @@ cache:\ninstall:\n- ps: Install-Product node $...
JavaScript
MIT License
lerna/lerna
chore: turn off broken node v4 on appveyor
1
chore
null
807,849
05.10.2017 15:31:51
25,200
3bdb108b3b9b0db4c2d4ab57da492d1d949b27a6
chore: use latest-* tags when upgrading npm in travis
[ { "change_type": "MODIFY", "diff": "@@ -19,9 +19,9 @@ cache:\n- node_modules\nbefore_install:\n- - if [[ `node -v` == v4* ]]; then npm i -g npm@3; fi\n- - if [[ `node -v` == v6* ]]; then npm i -g npm@4; fi\n- - if [[ `node -v` == v8* ]]; then npm i -g npm@5.4.0; fi\n+ - if [[ `node -v` == v4* ]]; then npm i...
JavaScript
MIT License
lerna/lerna
chore: use latest-* tags when upgrading npm in travis
1
chore
null
573,227
05.10.2017 19:48:33
-7,200
8ac9cc8492f675d580a763ddec27290f9d78bb96
docs(req): req.getQuery() returns with a raw query string with queryParser() plugin
[ { "change_type": "MODIFY", "diff": "@@ -96,13 +96,13 @@ req.getQuery();\n// => 'a=1'\n```\n-Note that if the query parser plugin is used, then this method will returned\n-the parsed query string:\n+If the `queryParser` plugin is used, the parsed query string is available\n+under the `req.query`:\n```js\n// ...
JavaScript
MIT License
restify/node-restify
docs(req): req.getQuery() returns with a raw query string with queryParser() plugin (#1508)
1
docs
req
573,190
09.10.2017 14:14:20
25,200
f7126f225686f85987dc36b4dc1b82f1dee4e891
docs(README): remove NSP badge
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,6 @@ NSP := ./node_modules/.bin/nsp\nNODEUNIT := ./node_modules/.bin/nodeunit\nMOCHA := ./node_modules/.bin/mocha\nNODECOVER := ./node_modules/.bin/cover\n-NSP_BADGE := ./tools/nspBadge.js\nNPM := npm\n#\n@@ -64,7 +63,7 @@ test: $(NODEUNIT)\n.PHONY: nsp\nnsp:...
JavaScript
MIT License
restify/node-restify
docs(README): remove NSP badge (#1511)
1
docs
README
573,190
09.10.2017 14:17:01
25,200
eecb2d259deda34c2f297f2ef8b6d4fedc504e9e
fix(cpuUsageThrottle): dont include interval in lag
[ { "change_type": "MODIFY", "diff": "@@ -142,7 +142,7 @@ function cpuUsageThrottlePlugin (opts) {\n// updated the _reject value and how long it actually took. This\n// metric accounts for the misbehaviour of pidusage.stat\nvar now = Date.now();\n- self._timeoutDelta = now - self._timeoutStart;\n+ self._timeo...
JavaScript
MIT License
restify/node-restify
fix(cpuUsageThrottle): dont include interval in lag (#1504)
1
fix
cpuUsageThrottle
135,510
09.10.2017 17:20:53
-28,800
8f35daeea1a5f035ed23a842c66aeeb9976287b9
fix(config-lerna-scopes): fix package list get with recent lerna versions
[ { "change_type": "MODIFY", "diff": "const Repository = require('lerna/lib/Repository');\n+const PackageUtilities = require('lerna/lib/PackageUtilities');\nmodule.exports = {\nutils: {getPackages},\n@@ -8,8 +9,12 @@ module.exports = {\n};\nfunction getPackages() {\n- const repo = new Repository(process.cwd()...
TypeScript
MIT License
conventional-changelog/commitlint
fix(config-lerna-scopes): fix package list get with recent lerna versions
1
fix
config-lerna-scopes
573,227
09.10.2017 17:45:10
-7,200
e8efd6cdcb73e674583e2a7081d2a9b923c72809
fix(plugins): use process.hrtime() for duration calculation
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,7 @@ var assert = require('assert-plus');\nvar bunyan = require('bunyan');\nvar HttpError = require('restify-errors').HttpError;\nvar VError = require('verror');\n+var hrTimeDurationInMs = require('./utils/hrTimeDurationInMs');\n/**\n* Utility to get response h...
JavaScript
MIT License
restify/node-restify
fix(plugins): use process.hrtime() for duration calculation (#1507)
1
fix
plugins
448,039
10.10.2017 13:44:29
-7,200
ddbf2b35da13c10573186f963216551baa45228f
test: empty `.less` style file causes build error See
[ { "change_type": "ADD", "diff": "", "new_path": "integration/samples/custom/src/less-baz/less-baz.component.less", "old_path": "integration/samples/custom/src/less-baz/less-baz.component.less" }, { "change_type": "ADD", "diff": "+import { Component } from '@angular/core';\n+\n+@Component...
TypeScript
MIT License
ng-packagr/ng-packagr
test: empty `.less` style file causes build error See #165
1
test
null
448,039
10.10.2017 13:58:54
-7,200
f5106eb896be1c52c7eb855c33c69acda918f4e4
fix: pass empty string to `less.render()` Resolves
[ { "change_type": "MODIFY", "diff": "@@ -122,7 +122,7 @@ const renderLess = (lessOpts: any): Promise<string> => {\nreturn readFile(lessOpts.filename)\n.then((lessData: string) => new Promise<string>((resolve, reject) => {\n- less.render(lessData, lessOpts, (err, result) => {\n+ less.render(lessData || '', le...
TypeScript
MIT License
ng-packagr/ng-packagr
fix: pass empty string to `less.render()` Resolves #165
1
fix
null
448,039
11.10.2017 13:22:53
-7,200
e66054525de5c8b8beedffda58b0a8d781f35629
fix: include `package.schema.json` in dist artefacts and npm package
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ const copy = (paths, opts) => {\n// copyfiles 'lib/conf/**/*.json' dist\",\ncopy(['src/cli/*', 'dist'], {up: 1})\n- .then(() => copy(['src/ng-package.schema.json', 'dist'], {up: 1}))\n+ .then(() => copy(['src/**.schema.json', 'dist'], {up: 1}))\n.then(()...
TypeScript
MIT License
ng-packagr/ng-packagr
fix: include `package.schema.json` in dist artefacts and npm package
1
fix
null
448,039
11.10.2017 13:23:20
-7,200
3f07ec15c3b4d63bc753bc94a87bd2eaef4ef5bf
chore: cut release for v1.4.1
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"1.4.1\"></a>\n+## [1.4.1](https://github.com/dherges/ng-packagr/compare/v1.4.0...v1.4...
TypeScript
MIT License
ng-packagr/ng-packagr
chore: cut release for v1.4.1
1
chore
null
135,497
13.10.2017 20:31:36
-3,600
c881433d593184af6ee3ab2433c3bdb280541145
feat: edit flag now accepts the path to the commit file Closes
[ { "change_type": "MODIFY", "diff": "@@ -23,8 +23,8 @@ const rules = {\n};\nconst configuration = {\n- string: ['cwd', 'from', 'to', 'extends', 'parser-preset'],\n- boolean: ['edit', 'help', 'version', 'quiet', 'color'],\n+ string: ['cwd', 'from', 'to', 'edit', 'extends', 'parser-preset'],\n+ boolean: ['help...
TypeScript
MIT License
conventional-changelog/commitlint
feat: edit flag now accepts the path to the commit file Closes #40.
1
feat
null
743,891
15.10.2017 02:33:02
-19,080
280d0d6bd1035b91254db876281c1ae755520f07
feat: hidden options are now explicitly indicated using "hidden" flag BREAKING CHANGE: previously hidden options were simply implied using a falsy description
[ { "change_type": "MODIFY", "diff": "@@ -2314,10 +2314,12 @@ describe('usage tests', () => {\nconst r = checkUsage(() => yargs(['--help'])\n.option('answer', {\ntype: 'string',\n- choices: ['yes', 'no', 'maybe']\n+ choices: ['yes', 'no', 'maybe'],\n+ hidden: true\n})\n.option('confidence', {\n- choices: [0, ...
JavaScript
MIT License
yargs/yargs
feat: hidden options are now explicitly indicated using "hidden" flag (#962) BREAKING CHANGE: previously hidden options were simply implied using a falsy description
1
feat
null
573,187
16.10.2017 16:20:37
25,200
09066d833c5431b2f4a33758a1856a953aae57be
chore(release): release 6.2.0
[ { "change_type": "MODIFY", "diff": "\"express\",\n\"DTrace\"\n],\n- \"version\": \"6.0.1\",\n+ \"version\": \"6.2.0\",\n\"repository\": {\n\"type\": \"git\",\n\"url\": \"git://github.com/restify/node-restify.git\"\n\"restify-errors\": \"^5.0.0\",\n\"semver\": \"^5.0.1\",\n\"spdy\": \"^3.3.3\",\n+ \"unleash\...
JavaScript
MIT License
restify/node-restify
chore(release): release 6.2.0
1
chore
release
743,863
16.10.2017 17:52:51
25,200
02cc11deac82898bd2218be99f71f6b2a7bd517f
docs: whoops, forgot to call out a breaking change introduced into parse()
[ { "change_type": "MODIFY", "diff": "@@ -52,6 +52,7 @@ All notable changes to this project will be documented in this file. See [standa\n### BREAKING CHANGES\n* version() and help() are now enabled by default, and show up in help output; the implicit help command can no longer be enabled/disabled independent...
JavaScript
MIT License
yargs/yargs
docs: whoops, forgot to call out a breaking change introduced into parse()
1
docs
null
448,095
16.10.2017 18:54:17
18,000
18515af5d18513b471f5844622f3934e5dcfda01
fix: regression in cli defaults
[ { "change_type": "MODIFY", "diff": "@@ -4,13 +4,19 @@ import * as program from 'commander';\nimport * as path from 'path';\nimport { createNgPackage, NgPackagrCliArguments } from './../lib/ng-packagr';\n+const DEFAULT_PROJECT_PATH = path.resolve(process.cwd(), 'ng-package.json');\n+\nfunction parseProjectPa...
TypeScript
MIT License
ng-packagr/ng-packagr
fix: regression in cli defaults
1
fix
null