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
679,913
02.02.2018 13:28:58
0
0f57ff904a459d667095356a9c1a4a0e2cff615f
docs(atom): update readme, add history example
[ { "change_type": "MODIFY", "diff": "## About\n-Clojure inspired mutable wrappers for (usually) immutable values, with support for watches.\n-\n-TODO\n+Clojure inspired mutable wrappers for (usually) immutable values, with support\n+for watches, cursors (direct access to nested values), undo/redo history.\n#...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(atom): update readme, add history example
1
docs
atom
679,913
02.02.2018 15:26:29
0
110a9deb9dc67d63c803f78720bf8b6b65e23590
fix(api): update compare() & equiv()
[ { "change_type": "MODIFY", "diff": "@@ -11,5 +11,8 @@ export function compare(a: any, b: any): number {\nif (typeof a.compare === \"function\") {\nreturn a.compare(b);\n}\n+ if (typeof b.compare === \"function\") {\n+ return -b.compare(a);\n+ }\nreturn a < b ? -1 : a > b ? 1 : 0;\n}\n", "new_path": "pac...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(api): update compare() & equiv()
1
fix
api
679,913
02.02.2018 15:39:49
0
448e8396227cf5e1c082bde762679a44f01bc736
perf(diff): add fail fasts
[ { "change_type": "MODIFY", "diff": "@@ -20,6 +20,9 @@ export function diffArray(_a, _b) {\nconst: {},\nlinear: []\n};\n+ if (_a === _b) {\n+ return state;\n+ }\nconst reverse = _a.length >= _b.length,\nadds = state[reverse ? \"dels\" : \"adds\"],\ndels = state[reverse ? \"adds\" : \"dels\"],\n", "new_pa...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(diff): add fail fasts
1
perf
diff
679,913
02.02.2018 15:52:22
0
324d2fa2426d7369afa744dacfe239b4f9e6e9e3
docs(examples): add benchmark docs
[ { "change_type": "MODIFY", "diff": "import { start } from \"@thi.ng/hiccup-dom\";\nimport { fromRAF } from \"@thi.ng/rstream/from/raf\";\n+import { Stream } from \"@thi.ng/rstream/stream\";\nimport * as tx from \"@thi.ng/transducers\";\n+// pre-defined hex formatters\nconst hex4 = tx.hex(4);\nconst hex6 = t...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(examples): add benchmark docs
1
docs
examples
679,913
02.02.2018 15:58:59
0
d134d5b7ba7b2c37b09fd1d8ca38145830c1eec8
refactor(hiccup-dom): add interfaces (still unused)
[ { "change_type": "MODIFY", "diff": "+import { IObjectOf } from \"@thi.ng/api/api\";\n+\n+export interface ILifecycle {\n+ init(el: Element, ...args: any[]);\n+ render(...args: any[]): any;\n+ release(...args: any[]);\n+}\n+\n+export interface ComponentAttribs {\n+ class?: string;\n+ disabled?: boolean;\n+ h...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-dom): add interfaces (still unused)
1
refactor
hiccup-dom
807,849
02.02.2018 18:31:09
28,800
513d81a62364c6182970dfd176742e6565da2195
refactor(PackageUtilities): use pkg.manifestLocation
[ { "change_type": "MODIFY", "diff": "@@ -267,7 +267,7 @@ function symlinkPackages(packages, packageGraph, logger, forceLocal, callback) {\nreturn (\nmatch &&\n- FileSystemUtilities.existsSync(path.join(match.package.location, \"package.json\")) &&\n+ FileSystemUtilities.existsSync(match.pkg.manifestLocation)...
JavaScript
MIT License
lerna/lerna
refactor(PackageUtilities): use pkg.manifestLocation
1
refactor
PackageUtilities
807,849
02.02.2018 18:41:02
28,800
9a108690969fc1931bf7e8e7ba967bd2c56629f7
refactor(Package): use Object.defineProperties for greater control
[ { "change_type": "MODIFY", "diff": "@@ -10,78 +10,91 @@ const dependencyIsSatisfied = require(\"./utils/dependencyIsSatisfied\");\nconst NpmUtilities = require(\"./NpmUtilities\");\nclass Package {\n- constructor(pkg, location) {\n- this._package = pkg;\n- this._location = location;\n- }\n-\n- get name() {\...
JavaScript
MIT License
lerna/lerna
refactor(Package): use Object.defineProperties for greater control
1
refactor
Package
807,849
02.02.2018 18:42:59
28,800
75e3a4aa3ad879e8f26695b85c52dc931e1f4eb8
refactor(Package): #isPrivate() -> #private
[ { "change_type": "MODIFY", "diff": "@@ -23,6 +23,9 @@ class Package {\nlocation: {\nvalue: location,\n},\n+ private: {\n+ value: Boolean(pkg.private),\n+ },\n// mutable\nversion: {\nget() {\n@@ -89,10 +92,6 @@ class Package {\n});\n}\n- isPrivate() {\n- return !!this.json.private;\n- }\n-\ntoJSON() {\nretur...
JavaScript
MIT License
lerna/lerna
refactor(Package): #isPrivate() -> #private
1
refactor
Package
815,746
02.02.2018 20:22:05
-7,200
77d36ca98c05c256734a3c806599f5fda69b2c34
feat: Close dropdown on select by default closes
[ { "change_type": "MODIFY", "diff": "@@ -124,6 +124,7 @@ map: {\n| dropdownPosition | `bottom`,`top` | `bottom` | no | Set the dropdown position on open |\n| appendTo | string | null | no | Append drodown to body or any other element using css selector |\n| loading | boolean | `-` | no | you can set the load...
TypeScript
MIT License
ng-select/ng-select
feat: Close dropdown on select by default (#226) closes #222
1
feat
null
815,746
02.02.2018 20:32:27
-7,200
7c5748e6d7facfdcad9688a3943ff8bf125713a9
fix: add touched on dropdown open fixes
[ { "change_type": "MODIFY", "diff": "@@ -277,6 +277,7 @@ export class NgSelectComponent implements OnInit, OnDestroy, OnChanges, AfterVie\nthis.itemsList.markSelectedOrDefault(this.markFirst);\nthis._scrollToMarked();\nthis._focusSearchInput();\n+ this._onTouched();\nthis.openEvent.emit();\nif (this.appendTo...
TypeScript
MIT License
ng-select/ng-select
fix: add touched on dropdown open (#228) fixes #225
1
fix
null
679,913
02.02.2018 21:35:14
0
38699b96a7c07b0033aa8ec25a0dcc6d52d395c4
docs(hiccup-dom): add diagram
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,8 @@ difference between the old and new DOM trees (both nested JS arrays).\nComponents can be defined as static arrays, closures or objects with life cycle\nhooks (init, render, release).\n+![hdom dataflow](../../assets/hdom-dataflow.svg)\n+\nThe approach is ...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(hiccup-dom): add diagram
1
docs
hiccup-dom
815,746
02.02.2018 21:41:51
-7,200
3551917f33437361debacf87ef8d8e13431f8293
feat: add support for nested value bindings fixes
[ { "change_type": "MODIFY", "diff": "@@ -7,24 +7,24 @@ import { Component, ChangeDetectionStrategy } from '@angular/core';\n<label>Bind to default <b>label</b>, <b>object</b> bindings</label>\n---html,true\n<ng-select [items]=\"defaultBindingsList\"\n- [(ngModel)]=\"selectedCity2\">\n+ [(ngModel)]=\"selected...
TypeScript
MIT License
ng-select/ng-select
feat: add support for nested value bindings (#229) fixes #219
1
feat
null
815,746
02.02.2018 21:43:08
-7,200
92b347dbdf926237102a73f48002a02b55adcedf
chore(release): 0.17.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=\"0.17.0\"></a>\n+# [0.17.0](https://github.com/ng-select/ng-select/compare/v0.16.0...v...
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.17.0
1
chore
release
679,913
02.02.2018 22:45:25
0
7ae706eb57b7ffd55ca058f79af7c2f3b06078d5
feat(hiccup): skip fn exec for event attribs, update tests, readme BREAKING CHANGE: event attribs w/ function values will be omitted, see readme for details/examples
[ { "change_type": "MODIFY", "diff": "@@ -117,6 +117,9 @@ If an attribute specifies a function as value, the function is called with the\nentire attribute object as argument. This allows for the dynamic generation of\nattribute values, based on existing ones. The result MUST be a string.\n+**BREAKING CHANGE s...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hiccup): skip fn exec for event attribs, update tests, readme BREAKING CHANGE: event attribs w/ function values will be omitted, see readme for details/examples
1
feat
hiccup
679,913
02.02.2018 23:51:09
0
7cc5c93a9de5c8740340d2cf9054285ca950aac4
refactor(hiccup-dom): update event attrib naming convention, update readme BREAKING CHANGE: event attributes now just use `on` prefix, previously `on-`
[ { "change_type": "MODIFY", "diff": "@@ -21,6 +21,7 @@ Benefits:\n- Only ~10KB minified\n```typescript\n+import { serialize } from \"@thi.ng/hiccup\";\nimport { start } from \"@thi.ng/hiccup-dom\";\n// stateless component w/ params\n@@ -29,7 +30,7 @@ const greeter = (name) => [\"h1.title\", \"hello \", name]...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-dom): update event attrib naming convention, update readme BREAKING CHANGE: event attributes now just use `on` prefix, previously `on-`
1
refactor
hiccup-dom
679,913
02.02.2018 23:57:29
0
292677993c56f333b4b72316956edf73c709d118
refactor(examples): update event attribs
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ const greeter = (name) => [\"h1.title\", \"hello \", name];\n// component w/ local state\nconst counter = () => {\nlet i = 0;\n- return () => [\"button\", { \"on-click\": () => (i++) }, `clicks: ${i}`];\n+ return () => [\"button\", { onclick: () => (i++) }...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): update event attribs
1
refactor
examples
679,913
02.02.2018 23:58:11
0
309c7d7c885e05a5003095c44d88044e2dce915a
build(examples): update example build commands
[ { "change_type": "MODIFY", "diff": "@@ -10,3 +10,5 @@ cd umbrella/examples/dashboard\nyarn install\nyarn dev\n```\n+\n+Once webpack has completed building, refresh your browser...\n", "new_path": "examples/dashboard/README.md", "old_path": "examples/dashboard/README.md" }, { "change_type": "...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(examples): update example build commands
1
build
examples
679,913
02.02.2018 23:58:53
0
8106d16f879c6843f50bb056904e3bae92ab7b54
build: update main package build commands, update make-example script, readme
[ { "change_type": "MODIFY", "diff": "@@ -53,6 +53,16 @@ cd umbrella\nyarn build\n```\n+### Building example projects\n+\n+```\n+# build all examples (from project root)\n+yarn examples\n+\n+# in example dir\n+yarn dev\n+```\n+\n### Testing\n(TODO not all packages have tests yet)\n@@ -65,19 +75,19 @@ lerna ru...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update main package build commands, update make-example script, readme
1
build
null
679,913
03.02.2018 07:49:46
0
aa48d3be188f6eada7ea37896d66cdc7807bc731
feat(examples): add svg particles demo
[ { "change_type": "ADD", "diff": "+# svg-particles\n+\n+[Live demo](http://demo.thi.ng/umbrella/hiccup-dom/svg-particles/)\n+\n+```\n+git clone https://github.com/thi-ng/umbrella.git\n+cd umbrella/examples/svg-particles\n+yarn install\n+yarn dev\n+```\n+\n+Once webpack has completed building, refresh your br...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add svg particles demo
1
feat
examples
679,913
03.02.2018 07:53:29
0
c09bb89d61bd3c9ce32fb2039cd0f089dfa5d966
docs(hiccup-dom): add svg example links
[ { "change_type": "MODIFY", "diff": "@@ -71,7 +71,7 @@ wrapper around React, whereas this library is standalone, more lowlevel &\nless opinionated.\nIf you're interested in using this, please also consider the\n-[@thi.ng/atom](https://github.com/thi-ng/umbrella/tree/master/packages/atom)\n+[@thi.ng/atom](htt...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(hiccup-dom): add svg example links
1
docs
hiccup-dom
807,849
03.02.2018 15:47:40
28,800
2dffbb46e637ae0fc61a41ff48be406cc2581e4c
refactor(ConventionalCommits): cleanup API just pass a type to encapsulated methods stop passing fake callbacks use pkg.manifestLocation make tests more meaningful
[ { "change_type": "MODIFY", "diff": "@@ -19,78 +19,46 @@ const CHANGELOG_HEADER = dedent(`# Change Log\nconst RECOMMEND_CLI = require.resolve(\"conventional-recommended-bump/cli\");\nconst CHANGELOG_CLI = require.resolve(\"conventional-changelog-cli/cli\");\n-function recommendIndependentVersion(pkg, opts) {...
JavaScript
MIT License
lerna/lerna
refactor(ConventionalCommits): cleanup API - just pass a type to encapsulated methods - stop passing fake callbacks - use pkg.manifestLocation - make tests more meaningful
1
refactor
ConventionalCommits
679,913
03.02.2018 16:47:59
0
2e4e51c50eca197cb2de0787f1f01625e81c19fa
feat(examples): add json component demo
[ { "change_type": "ADD", "diff": "+# json-components\n+\n+[Live demo](http://demo.thi.ng/umbrella/json-components/)\n+\n+```\n+git clone https://github.com/thi-ng/umbrella.git\n+cd umbrella/examples/json-components\n+yarn install\n+yarn dev\n+```\n+\n+Once webpack has completed building, refresh your browser...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add json component demo
1
feat
examples
679,913
03.02.2018 16:49:46
0
3156e8882bcd9228ba3001af9914d6e64d35e8d6
fix(examples): update deps
[ { "change_type": "MODIFY", "diff": "\"webpack\": \"^3.10.0\"\n},\n\"dependencies\": {\n- \"@thi.ng/api\": \"^2.0.1\",\n- \"@thi.ng/hiccup-dom\": \"^1.0.0\",\n- \"@thi.ng/rstream\": \"^0.9.2\",\n- \"@thi.ng/transducers\": \"^1.0.7\"\n+ \"@thi.ng/checks\": \"^1.1.6\",\n+ \"@thi.ng/hiccup-dom\": \"^1.0.0\"\n}\...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(examples): update deps
1
fix
examples
679,913
03.02.2018 17:03:50
0
5d8478e15ada1c40c478b5ae57b956d17c1acb45
fix(examples): add missing files
[ { "change_type": "ADD", "diff": "+<!DOCTYPE html>\n+<html>\n+\n+<head>\n+ <style>\n+ html {\n+ font: 14px/1.4 Helvetica, Arial, sans-serif;\n+ }\n+\n+ h3 {\n+ margin: 0;\n+ }\n+\n+ footer {\n+ margin-top: 2em;\n+ }\n+\n+ .item {\n+ display: inline-block;\n+ width: 25%;\n+ margin: 5px;\n+ padding: 10px;\n+ b...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(examples): add missing files
1
fix
examples
679,913
03.02.2018 17:18:04
0
d8fa4caeccde80bbc8f4e32668be4b0c39903eac
fix(examples): update index.html
[ { "change_type": "MODIFY", "diff": "Made with\n<a href=\"https://github.com/thi-ng/umbrella/tree/master/packages/hiccup-dom\">@thi.ng/hiccup-dom</a>.\n</footer>\n- <script type=\"text/javascript\" src=\"bundle.min.js\"></script>\n+ <script type=\"text/javascript\" src=\"bundle.js\"></script>\n</body>\n</htm...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(examples): update index.html
1
fix
examples
679,913
03.02.2018 17:54:57
0
944cbb3ba658134cb9c2a5a3ac5c55726380c2f7
fix(hiccup-dom): add NO_SPANS config this avoids adding inner spans for <text> / <textfield> elements
[ { "change_type": "MODIFY", "diff": "@@ -127,6 +127,8 @@ function normalizeElement(spec: any[]) {\nreturn [tag, attribs, content.length > 0 ? content : undefined];\n}\n+const NO_SPANS = { text: 1, textarea: 1 };\n+\nexport function normalizeTree(el: any, path = [0], keys = true, span = true) {\nif (el == nul...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(hiccup-dom): add NO_SPANS config - this avoids adding inner spans for <text> / <textfield> elements
1
fix
hiccup-dom
679,913
03.02.2018 17:55:33
0
10c119b2f623ba4ed95d0e46187dc676dc322682
refactor(hiccup-dom): minor update ILifeCycle
[ { "change_type": "MODIFY", "diff": "import { IObjectOf } from \"@thi.ng/api/api\";\nexport interface ILifecycle {\n- init(el: Element, ...args: any[]);\n+ init?(el: Element, ...args: any[]);\nrender(...args: any[]): any;\n- release(...args: any[]);\n+ release?(...args: any[]);\n}\nexport interface Component...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-dom): minor update ILifeCycle
1
refactor
hiccup-dom
679,913
03.02.2018 17:56:15
0
b524145b280349b61f4983ad0c7bb41b7e86c00b
feat(examples): add reactive json editor component
[ { "change_type": "MODIFY", "diff": ".item {\ndisplay: inline-block;\n- width: 25%;\n+ width: 45%;\nmargin: 5px;\npadding: 10px;\nbackground: #eee;\ncolor: #fff;\ntext-decoration: none;\n}\n+\n+ #container {\n+ display: grid;\n+ grid-template-columns: 33% auto;\n+ grid-template-rows: auto;\n+ grid-column-gap...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add reactive json editor component
1
feat
examples
679,913
03.02.2018 21:03:03
0
83cd1a210a30d4d3481d4204fbce851fd95e1b26
refactor(examples): minor update json-components
[ { "change_type": "MODIFY", "diff": "@@ -43,7 +43,7 @@ const content = (body) => [\"div\", body];\n// generic JSON object tree transformer\n// called with a nested object spec reflecting the structure\n// of the source data and returns composed component function\n-export const componentFromSpec = (spec) => ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): minor update json-components
1
refactor
examples
679,913
03.02.2018 22:05:23
0
b6d95fbe4209de256204da1419b2dc0f36e6a4ba
feat(examples): add json demo theme support, update docs
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/examples/json-components/assets/editme.png differ\n", "new_path": "examples/json-components/assets/editme.png", "old_path": "examples/json-components/assets/editme.png" }, { "change_type": "MODIFY", "diff": "margin-top: 2em;\n...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add json demo theme support, update docs
1
feat
examples
679,913
03.02.2018 22:50:41
0
4edf45fc16d39bb3ee8d98e8586315bb259b8a5b
fix(hiccup-dom): fix update start() to be cancellable, add docs
[ { "change_type": "MODIFY", "diff": "import { diffElement, normalizeTree } from \"./diff\";\n-export function start(parent, tree: any) {\n+/**\n+ * Takes a parent DOM element (or ID) and hiccup tree\n+ * (array or function) and starts RAF update loop,\n+ * computing diff to previous frame's tree and applying...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(hiccup-dom): fix #3, update start() to be cancellable, add docs
1
fix
hiccup-dom
679,913
04.02.2018 00:08:54
0
1f4f4b8c45a4a4f42f2c8213d002cadcd3a7d026
fix(hiccup-dom): support parent DOM ID as arg start()
[ { "change_type": "MODIFY", "diff": "+import { isString } from \"@thi.ng/checks/is-string\";\nimport { diffElement, normalizeTree } from \"./diff\";\n/**\n@@ -17,12 +18,15 @@ import { diffElement, normalizeTree } from \"./diff\";\n* @param parent\n* @param tree\n*/\n-export function start(parent: Element, tr...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(hiccup-dom): support parent DOM ID as arg start()
1
fix
hiccup-dom
679,913
04.02.2018 01:30:15
0
855d8039095a2d8ebb9862811f339f7e6706bf5b
feat(transducers): add page() xform, update readme
[ { "change_type": "MODIFY", "diff": "@@ -128,6 +128,27 @@ tx.reduce(\n// }\n```\n+### Pagination\n+\n+```typescript\n+// extract only items for given page id & page length\n+[...tx.iterator(tx.page(0, 5), tx.range(12))]\n+// [ 0, 1, 2, 3, 4 ]\n+\n+// when composing with other transducers\n+// it's most effic...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers): add page() xform, update readme
1
feat
transducers
679,913
04.02.2018 22:03:00
0
3ee6755f16f983f473e6aca7994d9a644561811d
fix(examples): minor fixes index.html
[ { "change_type": "MODIFY", "diff": "<body>\n<h1>JSON driven components</h1>\n- <p>The components on the right are a direct mapping of the JSON data below using a mapping function from JSON to\n- <a href=\"https://github.com/thi-ng/umbrella/tree/master/packages/hiccup-dom\">hiccup component format</a>, then ...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(examples): minor fixes index.html
1
fix
examples
679,913
04.02.2018 22:03:25
0
eb12a165bdc23e8a6f86b48ea5ac8d2bb2734f70
build: update upload-docs script
[ { "change_type": "MODIFY", "diff": "@@ -9,3 +9,5 @@ for m in $modules; do\necho \"syncing...\"\naws s3 sync $m/doc s3://docs.thi.ng/umbrella/$name --profile toxi-s3 --acl public-read\ndone\n+\n+aws s3 cp dev/docs.html s3://docs.thi.ng/index.html --profile toxi-s3 --acl public-read\n", "new_path": "scrip...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update upload-docs script
1
build
null
808,010
05.02.2018 08:16:56
-32,400
8e3ab1e8267e09dab9a7674d7b9989ee792fbeaa
fix: add other potential cause of git initialization failure
[ { "change_type": "MODIFY", "diff": "@@ -230,7 +230,7 @@ class Command {\nif (this.requiresGit && !GitUtilities.isInitialized(this.execOpts)) {\nthrow new ValidationError(\n\"ENOGIT\",\n- \"This is not a git repository, did you already run `git init` or `lerna init`?\"\n+ \"git binary missing, or this is not...
JavaScript
MIT License
lerna/lerna
fix: add other potential cause of git initialization failure (#1248)
1
fix
null
815,736
05.02.2018 09:32:35
-10,800
fbd5f5c696be75bfd4e1ccb92833df2db91b905a
fix: Not found text is not used for custom tags
[ { "change_type": "MODIFY", "diff": "</div>\n</ng-select-virtual-scroll>\n- <div class=\"ng-select-dropdown\" *ngIf=\"showNoItemsFound() && !addTag\">\n+ <div class=\"ng-select-dropdown\" *ngIf=\"showNoItemsFound() && !showAddTag()\">\n<div class=\"ng-option disabled\">\n{{notFoundText}}\n</div>\n", "new...
TypeScript
MIT License
ng-select/ng-select
fix: Not found text is not used for custom tags #234 (#235)
1
fix
null
573,214
05.02.2018 09:48:43
-3,600
bde8fda646a6f69b57fd72af1f00d6153fe056ec
fix(jsonBodyParser): fix percent sign causing server fail
[ { "change_type": "MODIFY", "diff": "@@ -38,7 +38,10 @@ function jsonBodyParser(options) {\nparams = JSON.parse(req.body, opts.reviver);\n} catch (e) {\nreturn next(\n- new errors.InvalidContentError('Invalid JSON: ' + e.message)\n+ new errors.InvalidContentError(\n+ '%s',\n+ 'Invalid JSON: ' + e.message\n+ ...
JavaScript
MIT License
restify/node-restify
fix(jsonBodyParser): fix percent sign causing server fail (#1411)
1
fix
jsonBodyParser
448,039
05.02.2018 12:28:47
-3,600
2285971699d1244592d95740240482cf3947ae99
release: cut v2.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=\"2.0.0\"></a>\n+\n+# [2.0.0](https://github.com/dherges/ng-packagr/compare/v2.0.0-rc.1...
TypeScript
MIT License
ng-packagr/ng-packagr
release: cut v2.0.0
1
release
null
679,913
05.02.2018 12:48:27
0
5281d9a832a3fe84ef07fabc7574c474799714c6
feat(examples): add webgl example
[ { "change_type": "ADD", "diff": "+# webgl\n+\n+[Live demo](http://demo.thi.ng/umbrella/hiccup-dom/webgl/)\n+\n+```\n+git clone https://github.com/thi-ng/umbrella.git\n+cd umbrella/examples/webgl\n+yarn install\n+yarn dev\n+```\n+\n+Once webpack has completed building, refresh your browser...\n", "new_pa...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add webgl example
1
feat
examples
815,745
05.02.2018 13:21:01
-7,200
5a0288328ef6ebcca07ca901f2b512ee4c724550
chore(release): 0.17.2
[ { "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=\"0.17.2\"></a>\n+## [0.17.2](https://github.com/ng-select/ng-select/compare/v0.17.1......
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.17.2
1
chore
release
791,690
05.02.2018 16:10:01
28,800
717f90d720dc52236ee15adb5e3a31253e3c0cef
extension: change resolve current tab msg
[ { "change_type": "MODIFY", "diff": "@@ -132,7 +132,7 @@ class ExtensionConnection extends Connection {\nreturn reject(chrome.runtime.lastError);\n}\nif (tabs.length === 0) {\n- const message = 'Couldn\\'t resolve current tab. Please file a bug.';\n+ const message = 'Couldn\\'t resolve current tab. Check you...
JavaScript
Apache License 2.0
googlechrome/lighthouse
extension: change resolve current tab msg (#4407)
1
extension
null
791,723
05.02.2018 16:54:05
28,800
6bebd4c30a994359c64504b53ac0c83feb476e5b
core(a11y): aXe perf: only collect provided resultTypes
[ { "change_type": "MODIFY", "diff": "@@ -25,6 +25,7 @@ function runA11yChecks() {\n'wcag2aa',\n],\n},\n+ resultTypes: ['violations', 'inapplicable'],\nrules: {\n'tabindex': {enabled: true},\n'table-fake-caption': {enabled: true},\n", "new_path": "lighthouse-core/gather/gatherers/accessibility.js", "o...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(a11y): aXe perf: only collect provided resultTypes (#4380)
1
core
a11y
815,810
06.02.2018 08:44:20
-3,600
493c3493e3c680db37f25ec0def8c70c46f625ed
feat: highlight search term in labels in dropdown list closes
[ { "change_type": "MODIFY", "diff": "@@ -22,9 +22,9 @@ import { DataService } from '../shared/data.service';\n<label>Custom option</label>\n---html,true\n<ng-select [items]=\"cities2\" [(ngModel)]=\"selectedCity2\" bindLabel=\"name\" bindValue=\"name\">\n- <ng-template ng-option-tmp let-item=\"item\" let-ind...
TypeScript
MIT License
ng-select/ng-select
feat: highlight search term in labels in dropdown list (#233) closes #152
1
feat
null
791,723
06.02.2018 14:04:09
28,800
1b965069929d3a88aa37137bceb3e6fdcba50a36
misc(package): scripts don't require "--" for options to be forwarded
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ sleep 0.5s\nconfig=\"lighthouse-cli/test/smokehouse/a11y/a11y-config.js\"\nexpectations=\"lighthouse-cli/test/smokehouse/a11y/expectations.js\"\n-yarn smokehouse -- --config-path=$config --expectations-path=$expectations\n+yarn smokehouse --config-path=$co...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(package): scripts don't require "--" for options to be forwarded (#4437)
1
misc
package
679,913
07.02.2018 11:45:40
0
a10a487ccc0f1a6be05115269c9492a91a9870df
fix(csp): fix example in readme
[ { "change_type": "MODIFY", "diff": "@@ -119,7 +119,7 @@ Channel.merge([\nChannel.range(0, 3),\nChannel.range(10, 15),\nChannel.range(100, 110)\n-]).reduce(tx.push).then(console.log);\n+]).reduce(tx.push()).then(console.log);\n// [ 0, 100, 101, 102, 103, 1, 2, 104, 105, 10, 11, 12, 13, 106, 14, 107, 108, 109...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(csp): fix #5, example in readme
1
fix
csp
679,913
07.02.2018 11:54:26
0
080c2ee51fc7a807237ae4b49e49e2962f6e05e4
fix(csp): fix more example fixes (rfn calls)
[ { "change_type": "MODIFY", "diff": "@@ -57,7 +57,7 @@ const results = new Mult(\"results\");\n// tap result channel and sum word counts\nconst counter = results\n.tap(tx.map(x => x[1]))\n- .reduce(tx.add);\n+ .reduce(tx.add());\n// 2nd output channel with streaming sort transducer\n// (using a sliding windo...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(csp): fix #5, more example fixes (rfn calls)
1
fix
csp
791,940
07.02.2018 14:03:34
28,800
0e7983fed43a079cb9d505a16eb2f2e6c33893d0
core(help-text-fix): Add link to docs for mixed-content audit
[ { "change_type": "MODIFY", "diff": "@@ -28,7 +28,7 @@ class MixedContent extends Audit {\nfailureDescription: 'Some insecure resources can be upgraded to HTTPS',\nhelpText: `Mixed content warnings can prevent you from upgrading to HTTPS.\nThis audit shows which insecure resources this page uses that can be\...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(help-text-fix): Add link to docs for mixed-content audit (#4444)
1
core
help-text-fix
815,796
07.02.2018 15:29:35
-3,600
d4404f77484a55a1abec44891dde66099a85acf8
feat: determine dropdownPosition automatically closes
[ { "change_type": "MODIFY", "diff": "@@ -121,7 +121,7 @@ map: {\n| loadingText | string | `Loading...` | no | Set custom text when for loading items |\n| [typeahead] | Subject | `-` | no | Custom autocomplete or filter. |\n| [disableVirtualScroll] | boolean | false | no | Disable virtual scroll |\n-| dropdow...
TypeScript
MIT License
ng-select/ng-select
feat: determine dropdownPosition automatically (#238) closes #237
1
feat
null
791,940
07.02.2018 16:13:33
28,800
278d1e7c1aae3bc6b0477ca1058c1188d858c9eb
cli: Add --mixed-content flag for triggering the mixed content audit
[ { "change_type": "MODIFY", "diff": "@@ -17,6 +17,8 @@ const log = require('lighthouse-logger');\n// @ts-ignore\nconst perfOnlyConfig = require('../lighthouse-core/config/perf.json');\n// @ts-ignore\n+const mixedContentConfig = require('../lighthouse-core/config/mixed-content.js');\n+// @ts-ignore\nconst pkg...
JavaScript
Apache License 2.0
googlechrome/lighthouse
cli: Add --mixed-content flag for triggering the mixed content audit (#4441)
1
cli
null
791,723
07.02.2018 18:40:04
28,800
2a9283e68b173db432dfa4805886b3fd6b1f48f2
docs(releasing): update details around tagging
[ { "change_type": "MODIFY", "diff": "@@ -72,17 +72,25 @@ echo \"Test the lighthouse-viewer build\"\n# * Update changelog *\ngit fetch --tags\nyarn changelog\n-# add new contributors, e.g. from\n-# git shortlog -s -e -n v2.3.0..HEAD\n+# add new contributors, e.g. from git shortlog -s -e -n v2.3.0..HEAD\n+# an...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(releasing): update details around tagging
1
docs
releasing
135,503
07.02.2018 19:20:33
0
d063f653b858954e61ef926975277a50febd7229
docs(travis-cli): correct spelling of intented
[ { "change_type": "MODIFY", "diff": "@@ -98,7 +98,7 @@ async function stash() {\nfunction validate() {\nif (process.env.CI !== 'true' || process.env.TRAVIS !== 'true') {\nthrow new Error(\n- `@commitlint/travis-cli is inteded to be used on Travis CI`\n+ `@commitlint/travis-cli is intended to be used on Travi...
TypeScript
MIT License
conventional-changelog/commitlint
docs(travis-cli): correct spelling of intented Signed-off-by: Adam Moss <adam.moss@bcs.org.uk>
1
docs
travis-cli
791,809
08.02.2018 00:25:51
-7,200
3131106fefbb572ecc890f5821b6069bab03f939
core(response-compression): Exclude binary files from auditing
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ const Gatherer = require('../gatherer');\nconst gzip = require('zlib').gzip;\nconst compressionTypes = ['gzip', 'br', 'deflate'];\n+const binaryMimeTypes = ['image', 'audio', 'video'];\nconst CHROME_EXTENSION_PROTOCOL = 'chrome-extension:';\nclass Respon...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(response-compression): Exclude binary files from auditing (#4144)
1
core
response-compression
679,913
08.02.2018 03:19:15
0
68f8fc23161e7bbcc8f848b24eeedaf0dd61944d
feat(checks): add new predicates, refactor existing add: isBlob, isEven, isFile, isInRange, isOdd, isRegExp add: hasMinLength, hasMaxLength update: existsAndNotNull, isArray, isArrayLike
[ { "change_type": "MODIFY", "diff": "export function existsAndNotNull(x: any) {\n- return !(x === undefined || x === null);\n+ return x != null;\n}\n", "new_path": "packages/checks/src/exists-not-null.ts", "old_path": "packages/checks/src/exists-not-null.ts" }, { "change_type": "ADD", "di...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(checks): add new predicates, refactor existing - add: isBlob, isEven, isFile, isInRange, isOdd, isRegExp - add: hasMinLength, hasMaxLength - update: existsAndNotNull, isArray, isArrayLike
1
feat
checks
679,913
08.02.2018 03:20:56
0
445c857547117bd1238ed3b2f8707b878e98b303
refactor(transducers): re-use even/odd from
[ { "change_type": "MODIFY", "diff": "-export function even(x: number) {\n- return (x % 2) === 0;\n-}\n+export { isEven as even } from \"@thi.ng/checks/is-even\";\n", "new_path": "packages/transducers/src/func/even.ts", "old_path": "packages/transducers/src/func/even.ts" }, { "change_type": "M...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(transducers): re-use even/odd from @thi.ng/checks
1
refactor
transducers
815,810
08.02.2018 07:29:18
-3,600
f50065429248f3720d843e415a2d51bc0e04cc35
feat: allow to set max selected items using multiple closes
[ { "change_type": "MODIFY", "diff": "@@ -112,6 +112,7 @@ map: {\n| [markFirst] | boolean | `true` | no | Marks first item as focused when opening/filtering. Default `true`|\n| [searchable] | boolean | `true` | no | Allow to search for value. Default `true`|\n| multiple | boolean | `false` | no | Allows to se...
TypeScript
MIT License
ng-select/ng-select
feat: allow to set max selected items using multiple (#239) closes #181
1
feat
null
791,690
08.02.2018 10:57:28
28,800
f9cdfc5d97eed400ccd59ffe0ed77baf5cd0c186
core(computed-artifact): use deep equality over strict
[ { "change_type": "MODIFY", "diff": "*/\n'use strict';\n+const ArbitraryEqualityMap = require('../../lib/arbitrary-equality-map');\n+\nclass ComputedArtifact {\n/**\n* @param {!ComputedArtifacts} allComputedArtifacts\n*/\nconstructor(allComputedArtifacts) {\n/** @private {!Map} */\n- this._cache = new Map();...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(computed-artifact): use deep equality over strict (#4409)
1
core
computed-artifact
791,699
08.02.2018 11:13:11
-39,600
0f8b1a3541e044ef137a994837e8a9f41ad9aee8
core(assets): json stringify devtools log
[ { "change_type": "MODIFY", "diff": "@@ -286,7 +286,7 @@ function saveAssets(artifacts, audits, pathWithBasename) {\nfunction logAssets(artifacts, audits) {\nreturn prepareAssets(artifacts, audits).then(assets => {\nassets.map(data => {\n- log.log(`devtoolslog-${data.passName}.json`, data.devtoolsLog);\n+ lo...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(assets): json stringify devtools log (#4457)
1
core
assets
791,690
08.02.2018 11:45:46
28,800
a517412528b2b491d5ae298843fd5bc0f97a6f03
core(tracing-processor): fix scheduleable task logic
[ { "change_type": "MODIFY", "diff": "@@ -79,7 +79,7 @@ class PageDependencyGraphArtifact extends ComputedArtifact {\n// Skip all trace events that aren't schedulable tasks with sizable duration\nif (\n- evt.name !== TracingProcessor.SCHEDULABLE_TASK_TITLE ||\n+ !TracingProcessor.isScheduleableTask(evt)||\n!e...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(tracing-processor): fix scheduleable task logic (#4480)
1
core
tracing-processor
573,194
08.02.2018 16:17:46
28,800
35bd1c2b375ea70dc2b4a4549461ff59ff5e4ec4
fix: use `Buffer.isBuffer` instead of `util.isBuffer`.
[ { "change_type": "MODIFY", "diff": "var http = require('http');\nvar sprintf = require('util').format;\nvar url = require('url');\n-var util = require('util');\nvar assert = require('assert-plus');\nvar mime = require('mime');\n@@ -446,7 +445,7 @@ function patch(Response) {\n// Set Content-Type to applicati...
JavaScript
MIT License
restify/node-restify
fix: use `Buffer.isBuffer` instead of `util.isBuffer`. (#1593)
1
fix
null
573,207
08.02.2018 17:18:35
28,800
df04015439becae8e8c48a02cb6e1992d6040037
fix: Allow multiple unmerged set-cookie headers.
[ { "change_type": "MODIFY", "diff": "@@ -20,12 +20,10 @@ var InternalServerError = errors.InternalServerError;\n/**\n* @private\n* Headers that cannot be multi-values.\n- * @see #779, don't use comma separated values for set-cookie\n- * @see #986, don't use comma separated values for content-type\n- * @see h...
JavaScript
MIT License
restify/node-restify
fix: Allow multiple unmerged set-cookie headers. (#1570)
1
fix
null
573,184
08.02.2018 17:19:19
28,800
644c1980aa1a21b0c7fa9aa41e22df9af6eab31e
Fix: Return 444 status code for closed and aborted requests
[ { "change_type": "MODIFY", "diff": "@@ -47,12 +47,8 @@ function createMetrics(opts, callback) {\n// connection state can currently only have the following values:\n// 'close' | 'aborted' | undefined.\n//\n- // it is possible to get a 200 statusCode with a connectionState\n- // value of 'close' or 'aborted'....
JavaScript
MIT License
restify/node-restify
Fix: Return 444 status code for closed and aborted requests (#1579)
1
fix
null
791,723
08.02.2018 17:26:51
28,800
d8daeb3510cdc806ecf2361cd8807d3eea8ae3cd
tests(smokehouse): improve smokehouse failure output
[ { "change_type": "MODIFY", "diff": "@@ -209,23 +209,34 @@ function collateResults(actual, expected) {\n* @param {{category: string, equal: boolean, diff: ?Object, actual: boolean, expected: boolean}} assertion\n*/\nfunction reportAssertion(assertion) {\n+ const _toJSON = RegExp.prototype.toJSON;\n+ // eslin...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests(smokehouse): improve smokehouse failure output (#4482)
1
tests
smokehouse
815,746
08.02.2018 18:12:34
-7,200
e264a15cffc9a091b1f9c5a242ba66e3c0329eaa
fix: focus only if filter value is not set closes
[ { "change_type": "MODIFY", "diff": "@@ -280,13 +280,15 @@ export class NgSelectComponent implements OnInit, OnDestroy, OnChanges, AfterVie\nthis.isOpen = true;\nthis.itemsList.markSelectedOrDefault(this.markFirst);\nthis._scrollToMarked();\n- this._focusSearchInput();\nthis.openEvent.emit();\n+ if (!this.fi...
TypeScript
MIT License
ng-select/ng-select
fix: focus only if filter value is not set (#244) closes #242
1
fix
null
815,746
08.02.2018 18:13:06
-7,200
7f346d12c5fff55f4c1dfdef4db4611675b9110c
chore(release): 0.20.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=\"0.20.1\"></a>\n+## [0.20.1](https://github.com/ng-select/ng-select/compare/v0.20.0......
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.20.1
1
chore
release
791,676
08.02.2018 19:45:55
-3,600
b57a59d46d8eb7f4e7655253d9becba470c3c14a
core(webfonts): patch fonts gatherer to handle missing font item
[ { "change_type": "MODIFY", "diff": "@@ -146,7 +146,7 @@ class Fonts extends Gatherer {\n).then(([loadedFonts, fontFaces]) => {\nreturn loadedFonts.map(fontFace => {\nconst fontFaceItem = this._findSameFontFamily(fontFace, fontFaces);\n- fontFace.src = fontFaceItem.src || [];\n+ fontFace.src = (fontFaceItem ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(webfonts): patch fonts gatherer to handle missing font item (#4465)
1
core
webfonts
573,185
09.02.2018 02:18:15
-3,600
656e60e03d5fe2b011f8b2198178bc22d749b21f
fix: add support for secureOptions in createServer
[ { "change_type": "MODIFY", "diff": "@@ -162,7 +162,8 @@ function Server(options) {\npassphrase: self.passphrase,\nrejectUnauthorized: options.rejectUnauthorized,\nrequestCert: options.requestCert,\n- ciphers: options.ciphers\n+ ciphers: options.ciphers,\n+ secureOptions: options.secureOptions\n});\n} else i...
JavaScript
MIT License
restify/node-restify
fix: add support for secureOptions in createServer (#1575)
1
fix
null
791,690
09.02.2018 07:12:48
28,800
9825c6c5e85186857b340628db1fb94666ca79ee
core(fonts): fix infinite loop
[ { "change_type": "MODIFY", "diff": "'use strict';\nconst Gatherer = require('./gatherer');\n+const Sentry = require('../../lib/sentry');\nconst fontFaceDescriptors = [\n'display',\n'family',\n@@ -119,7 +120,7 @@ function getFontFaceFromStylesheets() {\npromises.push(Promise.resolve(getSheetsFontFaces(styles...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(fonts): fix infinite loop (#4488)
1
core
fonts
791,690
09.02.2018 07:13:07
28,800
c3620b18e4ecf880763594f6cfcb1c2bc4783e40
core(responsive-images): move images with no dimensions to offscreen audit
[ { "change_type": "MODIFY", "diff": "@@ -103,6 +103,12 @@ setTimeout(() => {\n<!-- FAIL(offscreen): image is offscreen -->\n<img style=\"margin-top: 1000px; width: 120px; height: 80px;\" src=\"lighthouse-480x320.webp\">\n+ <!-- PASS(optimized): image is JPEG optimized -->\n+ <!-- PASS(webp): image is WebP op...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(responsive-images): move images with no dimensions to offscreen audit (#4487)
1
core
responsive-images
791,731
09.02.2018 07:16:30
28,800
3e34af7c722e0a4dc9d1e46c1fac908b0ebde69b
docs: examples of combining puppeteer & lighthouse
[ { "change_type": "ADD", "diff": "+# Recipes Puppeteer with Lighthouse\n+\n+**Note**: https://github.com/GoogleChrome/lighthouse/issues/3837 tracks the discussion for making Lighthouse work in concert with Puppeteer.\n+Some things are possible today (login to a page using Puppeteer, audit it using Lighthouse...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs: examples of combining puppeteer & lighthouse (#4408)
1
docs
null
791,876
09.02.2018 14:57:05
0
e685dedc29263262850dcfdb09173ffbdef713a3
misc(spelling): fix discernable to discernible
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ class LinkName extends AxeAudit {\nreturn {\nname: 'link-name',\ndescription: 'Links have a discernible name',\n- failureDescription: 'Links do not have a discernable name',\n+ failureDescription: 'Links do not have a discernible name',\nhelpText: 'Link ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(spelling): fix discernable to discernible (#4485)
1
misc
spelling
815,745
10.02.2018 18:47:41
-7,200
fb7b94bbb7cecfe732c1da29ce6574fd4214a7b2
fix(multiselect): allow to clear item even no items available fixes
[ { "change_type": "MODIFY", "diff": "@@ -782,6 +782,26 @@ describe('NgSelectComponent', function () {\ntick();\n}));\n+ it('should clear item even if there are no items loaded', fakeAsync(() => {\n+ const fixture = createTestingModule(\n+ NgSelectBasicTestCmp,\n+ `<ng-select [items]=\"cities\"\n+ bindLabel=\...
TypeScript
MIT License
ng-select/ng-select
fix(multiselect): allow to clear item even no items available (#251) fixes #247
1
fix
multiselect
815,745
10.02.2018 18:48:43
-7,200
6be231af57e2a16405abf0265490ac951a3f74e7
fix: don't show not found text while loading fixes
[ { "change_type": "MODIFY", "diff": "@@ -519,6 +519,7 @@ describe('NgSelectComponent', function () {\nNgSelectBasicTestCmp,\n`<ng-select [items]=\"cities\"\nbindLabel=\"name\"\n+ [loading]=\"citiesLoading\"\n[multiple]=\"multiple\"\n[(ngModel)]=\"selectedCity\">\n</ng-select>`);\n@@ -539,6 +540,17 @@ describ...
TypeScript
MIT License
ng-select/ng-select
fix: don't show not found text while loading (#252) fixes #243
1
fix
null
807,849
11.02.2018 15:41:34
28,800
e9f30643f620cc2b0606d5ef895643b626a4699c
chore(test/helpers): ensure callsBack() waits for the next tick
[ { "change_type": "MODIFY", "diff": "@@ -4,5 +4,5 @@ module.exports = callsBack;\n// for mocking the behaviour of methods that accept a callback\nfunction callsBack(err, val) {\n- return (...args) => args.pop()(err, val);\n+ return (...args) => process.nextTick(args.pop(), err, val);\n}\n", "new_path": "...
JavaScript
MIT License
lerna/lerna
chore(test/helpers): ensure callsBack() waits for the next tick
1
chore
test/helpers
807,849
11.02.2018 23:54:45
28,800
ac0eae9e5d5d05a56809c6433f1b145050eafaf1
chore: extract consoleOutput test helper, return strings
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n-const chalk = require(\"chalk\");\nconst log = require(\"npmlog\");\n-const normalizeNewline = require(\"normalize-newline\");\n-\n-// mocked or stubbed modules\n-const output = require(\"../src/utils/output\");\n// helpers\n+const consoleOutput = requir...
JavaScript
MIT License
lerna/lerna
chore: extract consoleOutput test helper, return strings
1
chore
null
807,849
12.02.2018 00:11:51
28,800
69193557ee295cd214b0b3cffb94afb21b18b6e5
refactor: add getShortSHA() util
[ { "change_type": "MODIFY", "diff": "@@ -178,6 +178,15 @@ function getCurrentSHA(opts) {\nreturn sha;\n}\n+function getShortSHA(opts) {\n+ log.silly(\"getShortSHA\");\n+\n+ const sha = ChildProcessUtilities.execSync(\"git\", [\"rev-parse\", \"--short\", \"HEAD\"], opts);\n+ log.verbose(\"getShortSHA\", sha);...
JavaScript
MIT License
lerna/lerna
refactor: add getShortSHA() util
1
refactor
null
807,849
12.02.2018 01:31:31
28,800
3313bf5b2dbde0a9d8ccd92a318674494ee4f08b
chore: add test/helpers/cliRunner for integration usage
[ { "change_type": "ADD", "diff": "+\"use strict\";\n+\n+const log = require(\"npmlog\");\n+const cli = require(\"../../src/cli\");\n+\n+jest.mock(\"is-ci\", () => true);\n+\n+// silence logs\n+log.level = \"silent\";\n+\n+module.exports = runner;\n+\n+function runner(cwd) {\n+ // create a _new_ yargs instanc...
JavaScript
MIT License
lerna/lerna
chore: add test/helpers/cliRunner for integration usage
1
chore
null
807,849
12.02.2018 01:33:11
28,800
49c242ad598f1315c954e641ff19ba11a0570324
chore: sort functions in FileSystemUtilities
[ { "change_type": "MODIFY", "diff": "@@ -26,6 +26,11 @@ function chmodSync(filePath, mode) {\nfs.chmodSync(filePath, mode);\n}\n+function existsSync(filePath) {\n+ log.silly(\"existsSync\", filePath);\n+ return pathExists.sync(filePath);\n+}\n+\nfunction mkdirp(filePath, callback) {\nlog.silly(\"mkdirp\", fi...
JavaScript
MIT License
lerna/lerna
chore: sort functions in FileSystemUtilities
1
chore
null
807,849
12.02.2018 01:36:11
28,800
5e72a136309b67eb56e66d6f3d8db013cc641deb
chore: remove unused GitUtilities.removeTag
[ { "change_type": "MODIFY", "diff": "@@ -69,11 +69,6 @@ function addTag(tag, opts) {\nChildProcessUtilities.execSync(\"git\", [\"tag\", tag, \"-m\", tag], opts);\n}\n-function removeTag(tag, opts) {\n- log.silly(\"removeTag\", tag);\n- ChildProcessUtilities.execSync(\"git\", [\"tag\", \"-d\", tag], opts);\n-...
JavaScript
MIT License
lerna/lerna
chore: remove unused GitUtilities.removeTag
1
chore
null
807,849
12.02.2018 12:36:17
28,800
e65e3dd059388e120006573d1086bafce4e9fcd4
fix: trim trailing whitespace from every line of every entry of console output, ugh
[ { "change_type": "MODIFY", "diff": "@@ -12,5 +12,12 @@ chalk.enabled = false;\nmodule.exports = consoleOutput;\nfunction consoleOutput() {\n- return output.mock.calls.map(args => normalizeNewline(args[0])).join(\"\\n\");\n+ return output.mock.calls\n+ .map(args =>\n+ normalizeNewline(args[0])\n+ .split(\"\\...
JavaScript
MIT License
lerna/lerna
fix: trim trailing whitespace from every line of every entry of console output, ugh
1
fix
null
791,723
12.02.2018 15:11:32
28,800
ecedb320bbbea5a4e523a96c99df27c053fb02dc
tests(appveyor): quietly unzip Chrome to keep appveyor logs cleaner
[ { "change_type": "MODIFY", "diff": "@@ -22,5 +22,5 @@ fi\nif [ -e \"$LIGHTHOUSE_CHROMIUM_PATH\" ]; then\necho \"cached chrome found\"\nelse\n- wget \"$url\" --no-check-certificate -q -O chrome.zip && unzip chrome.zip\n+ wget \"$url\" --no-check-certificate -q -O chrome.zip && unzip -q chrome.zip\nfi\n", ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests(appveyor): quietly unzip Chrome to keep appveyor logs cleaner
1
tests
appveyor
791,723
12.02.2018 15:12:16
28,800
a9cde8f15ed5b3e051f1ad2a2cebeb9839e08421
core(gather-runner): [revert] load a blank data URI, rather than about:blank This reverts commit
[ { "change_type": "DELETE", "diff": "-<!doctype html>\n-<html>\n-<meta charset=\"utf-8\">\n-<meta name=\"viewport\" content=\"width=device-width\">\n-<title>Resetting page...</title>\n-<style>\n- html, body {\n- height: 100%;\n- background: hsl(231, 99%, 99%);\n- overflow: hidden;\n- }\n-</style>\n-<body>\n"...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(gather-runner): [revert] load a blank data URI, rather than about:blank (#4518) This reverts commit 3030b4f0651fc4eb2634600d7cf0dbca43972b32.
1
core
gather-runner
807,849
12.02.2018 18:12:13
28,800
b28d8dac8ba75f63f8d6c6eea5494fddcfaeceec
chore: convert test/PublishCommand to clearAllMocks, not reset
[ { "change_type": "MODIFY", "diff": "@@ -94,24 +94,24 @@ const updatedPackageJSON = name =>\n.pop();\ndescribe(\"PublishCommand\", () => {\n- beforeEach(() => {\n// default exports that return Promises\n- writePkg.mockImplementation(() => Promise.resolve());\n- writeJsonFile.mockImplementation(() => Promise....
JavaScript
MIT License
lerna/lerna
chore: convert test/PublishCommand to clearAllMocks, not reset
1
chore
null
791,731
13.02.2018 10:14:36
28,800
9b56ccb4f1539090922d021a0352ef1c821aefb2
docs(headless-chrome.md): fix broken link
[ { "change_type": "MODIFY", "diff": "@@ -96,5 +96,5 @@ launchChromeAndRunLighthouse('https://github.com', flags).then(results => {\nOther resources you might find helpful:\n- [Getting Started with Headless Chrome](https://developers.google.com/web/updates/2017/04/headless-chrome)\n-- Example [Dockerfile](htt...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(headless-chrome.md): fix broken link (#4523)
1
docs
headless-chrome.md
807,849
13.02.2018 13:22:46
28,800
56cce9c6e803296bfbd48f69a7e9a6c06153059e
chore: Fix transitive dependent collection broken in
[ { "change_type": "MODIFY", "diff": "@@ -74,14 +74,11 @@ class UpdatedPackagesCollector {\ngetUpdates() {\nthis.logger.silly(\"getUpdates\");\n- const updatedPackages = this.collectUpdatedPackages();\n- const prereleasedPackages = this.collectPrereleasedPackages();\n- const dependents = new Set(\n- [...updat...
JavaScript
MIT License
lerna/lerna
chore: Fix transitive dependent collection broken in #1260
1
chore
null
807,849
14.02.2018 13:13:20
28,800
72dcb4dbea52733703d16e77800000c43e2e5afe
fix: bump conventional-changelog-* to ensure security fixes propagate
[ { "change_type": "MODIFY", "diff": "\"dev\": true\n},\n\"conventional-changelog-angular\": {\n- \"version\": \"1.6.2\",\n- \"resolved\": \"https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.6.2.tgz\",\n- \"integrity\": \"sha512-LiGZkMJOCJFLNzDlZo3f+DpblcDSzsaYHUWhC+...
JavaScript
MIT License
lerna/lerna
fix: bump conventional-changelog-* to ensure security fixes propagate
1
fix
null
807,849
15.02.2018 09:23:35
28,800
c8546166d0fd50e843a06d586254c1055a484c5d
refactor: DiffCommand use PackageGraph instead of list search throw ValidationError instead of generic
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n-const _ = require(\"lodash\");\n-\nconst ChildProcessUtilities = require(\"../ChildProcessUtilities\");\nconst Command = require(\"../Command\");\nconst GitUtilities = require(\"../GitUtilities\");\n+const ValidationError = require(\"../utils/ValidationE...
JavaScript
MIT License
lerna/lerna
refactor: DiffCommand - use PackageGraph instead of list search - throw ValidationError instead of generic
1
refactor
null
807,849
15.02.2018 09:26:01
28,800
ebb5ddc7ddeb6e5588171fff9d9604bc0f6f34db
refactor: UpdatedCommand yargs builder is a function the mixes in publishOptions format results in ternary before output is emitted
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n-const _ = require(\"lodash\");\nconst chalk = require(\"chalk\");\nconst Command = require(\"../Command\");\n@@ -8,15 +7,6 @@ const output = require(\"../utils/output\");\nconst publishOptions = require(\"./PublishCommand\").builder;\nconst UpdatedPackag...
JavaScript
MIT License
lerna/lerna
refactor: UpdatedCommand - yargs builder is a function the mixes in publishOptions - format results in ternary before output is emitted
1
refactor
null
807,849
15.02.2018 14:51:00
28,800
e06d77fa3a1917b4f4e0578eb29bf97f1e1c9c8e
refactor(test): don't actually chdir during Command unit tests
[ { "change_type": "MODIFY", "diff": "@@ -26,7 +26,7 @@ const onAllExitedOriginal = ChildProcessUtilities.onAllExited;\nconst getChildProcessCountOriginal = ChildProcessUtilities.getChildProcessCount;\ndescribe(\"Command\", () => {\n- const originalCWD = process.cwd();\n+ let testDir;\nafterEach(() => jest.re...
JavaScript
MIT License
lerna/lerna
refactor(test): don't actually chdir during Command unit tests
1
refactor
test
807,849
15.02.2018 14:59:44
28,800
2db09baa4a09325c97333b474e8e97da55a4c856
refactor(test): Use async readJSON in AddCommand unit tests
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ expect.extend(pkgMatchers);\n// silence logs\nlog.level = \"silent\";\n-const readPkg = (testDir, pkg) => fs.readJsonSync(path.join(testDir, pkg, \"package.json\"));\n+const readPkg = (testDir, pkg) => fs.readJSON(path.join(testDir, pkg, \"package.json\"...
JavaScript
MIT License
lerna/lerna
refactor(test): Use async readJSON in AddCommand unit tests
1
refactor
test
807,849
15.02.2018 15:26:50
28,800
310a702ccefce34e44c04beb747acfc7fb53ec1f
chore: rename yargsRunner -> command-runner
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ const initFixture = require(\"./helpers/initFixture\");\nconst pkgMatchers = require(\"./helpers/pkgMatchers\");\n// file under test\n-const lernaAdd = require(\"./helpers/yargsRunner\")(require(\"../src/commands/AddCommand\"));\n+const lernaAdd = requir...
JavaScript
MIT License
lerna/lerna
chore: rename yargsRunner -> command-runner
1
chore
null
679,913
15.02.2018 16:06:29
0
47d5df09c3fbe1287877cf4caa5c8868015f1877
chore: update issue tpl
[ { "change_type": "MODIFY", "diff": "<!--\n-Please use the following convention:\n-\n-- title: \"[module-name] issue subject\", e.g. \"[hiccup-dom] serialization question\"\n-- please also use any relevant labels to tag your issue\n-\n-If possible (or relevant), please include a minimum reproducable code exa...
TypeScript
Apache License 2.0
thi-ng/umbrella
chore: update issue tpl
1
chore
null
807,849
15.02.2018 16:15:48
28,800
d07d36bb83e13aa5ca630cd629a64dfedb352ca6
chore: add test/helpers/silence-logging to jest.setupFiles
[ { "change_type": "MODIFY", "diff": "\"<rootDir>/src\",\n\"<rootDir>/test\"\n],\n+ \"setupFiles\": [\n+ \"<rootDir>/test/helpers/silence-logging.js\"\n+ ],\n\"testEnvironment\": \"node\",\n\"testMatch\": [\n\"**/test/*.js\"\n", "new_path": "package.json", "old_path": "package.json" }, { "chan...
JavaScript
MIT License
lerna/lerna
chore: add test/helpers/silence-logging to jest.setupFiles
1
chore
null
807,849
15.02.2018 16:20:32
28,800
a9a2cd1f96386b57777e8220002216fb74914370
chore: improve loggingOutput helper, remove irrelevant log tests
[ { "change_type": "MODIFY", "diff": "const fs = require(\"fs-extra\");\nconst execa = require(\"execa\");\n-const loadJsonFile = require(\"load-json-file\");\nconst log = require(\"npmlog\");\nconst path = require(\"path\");\nconst tempy = require(\"tempy\");\nconst touch = require(\"touch\");\n-const writeJ...
JavaScript
MIT License
lerna/lerna
chore: improve loggingOutput helper, remove irrelevant log tests
1
chore
null
807,849
15.02.2018 18:16:57
28,800
51e99508b9319f1b0f18950caaa822d1a6d4eebc
fix: clear mocks during publish integration test
[ { "change_type": "MODIFY", "diff": "@@ -59,6 +59,9 @@ describe(\"lerna publish\", () => {\nif (process.cwd() !== currentDirectory) {\nprocess.chdir(currentDirectory);\n}\n+\n+ // consoleOutput creates a mock\n+ jest.clearAllMocks();\n});\ntest(\"exit 0 when no updates\", async () => {\n", "new_path": "t...
JavaScript
MIT License
lerna/lerna
fix: clear mocks during publish integration test
1
fix
null
791,813
15.02.2018 18:26:44
-3,600
2f807e0c5f5a7424d9067bf904ffedefa4414141
core(main-resource): adjust main resource identification logic
[ { "change_type": "MODIFY", "diff": "'use strict';\nconst ComputedArtifact = require('./computed-artifact');\n-const HTTP_REDIRECT_CODE_LOW = 300;\n-const HTTP_REDIRECT_CODE_HIGH = 399;\n/**\n* @fileoverview This artifact identifies the main resource on the page. Current solution assumes\n@@ -18,15 +16,6 @@ ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(main-resource): adjust main resource identification logic (#4475)
1
core
main-resource
791,813
15.02.2018 22:39:00
-3,600
c510a49761e5df29d73b96d39647c10571983ab2
core(font-size): recalibrate the legible font sizes
[ { "change_type": "MODIFY", "diff": "<style>\n.small {\n- font-size: 15px;\n+ font-size: 11px;\n}\n</style>\n</head>\n<a href='javascript:void(0);'>click this</a>\n<h2>Small text</h2>\n- <!-- PASS(font-size): amount of illegible text is below the 75% threshold -->\n+ <!-- PASS(font-size): amount of illegible...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(font-size): recalibrate the legible font sizes (#4550)
1
core
font-size
807,849
16.02.2018 10:16:33
28,800
28507a66a59088c0792b346f231f985b4bfd3b34
chore(lint): allow for-of statements, this isn't a browser
[ { "change_type": "MODIFY", "diff": "- err # Error decoration\n- obj # .reduce() object\n- pkg # Package instance\n+ no-restricted-syntax:\n+ - error\n+ - ForInStatement\n+ - LabeledStatement\n+ - WithStatement\nno-underscore-dangle:\n- error\n- allowAfterThis: true\n", "new_path": ".eslintrc.yaml", ...
JavaScript
MIT License
lerna/lerna
chore(lint): allow for-of statements, this isn't a browser
1
chore
lint
679,913
16.02.2018 11:00:54
0
722042b1712507d230d62ecacae4cb7bcb4f5974
feat(transducers): add range2d / range3d generators
[ { "change_type": "MODIFY", "diff": "@@ -103,6 +103,8 @@ export * from \"./iter/cycle\";\nexport * from \"./iter/iterate\";\nexport * from \"./iter/pairs\";\nexport * from \"./iter/range\";\n+export * from \"./iter/range2d\";\n+export * from \"./iter/range3d\";\nexport * from \"./iter/repeat\";\nexport * fro...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers): add range2d / range3d generators
1
feat
transducers
679,913
16.02.2018 11:45:09
0
d38f47e07df9a067b5f52ad2a039d21c01bf4c0d
test(transducers): add range2d tests
[ { "change_type": "ADD", "diff": "+import { range2d } from \"../src/iter/range2d\";\n+\n+import * as assert from \"assert\";\n+\n+describe(\"range2d\", () => {\n+ it(\"forward\", () => {\n+ assert.deepEqual(\n+ [...range2d(0, 3, 1, 3)],\n+ [[0, 1], [1, 1], [2, 1], [0, 2], [1, 2], [2, 2]]\n+ );\n+ });\n+ it(\...
TypeScript
Apache License 2.0
thi-ng/umbrella
test(transducers): add range2d tests
1
test
transducers