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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
807,849 | 17.03.2018 14:14:07 | 25,200 | 92492219cac5bd63b4abec0a35a2dba618e8264e | fix: Use correct instance property override | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ const getRangeToReference = require(\"./lib/get-range-to-reference\");\nconst notSatisfiedMessage = require(\"./lib/not-satisfied-message\");\nclass AddCommand extends Command {\n- get requireGit() {\n+ get requiresGit() {\nreturn false;\n}\n",
"new_... | JavaScript | MIT License | lerna/lerna | fix: Use correct instance property override | 1 | fix | null |
815,745 | 17.03.2018 17:41:52 | -7,200 | 98889819b30076d962f9082799a1d190fdf7d081 | fix: break loop while marking items
fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -232,12 +232,12 @@ export class ItemsList {\n}\nprivate _stepToItem(steps: number) {\n- if (this._filteredItems.length === 0) {\n+ if (this._filteredItems.length === 0 || this._filteredItems.every(x => x.disabled)) {\nreturn;\n}\nthis._markedIndex = this._getNextItemIn... | TypeScript | MIT License | ng-select/ng-select | fix: break loop while marking items (#363)
fixes #361 | 1 | fix | null |
573,201 | 17.03.2018 18:15:56 | 18,000 | e2b96e0ce66b060d45aec60910ffe126aa0a46b2 | chore: staticServer doc fix
Fixes invalid regular expression for serveStatic example which was missing a closing `/` | [
{
"change_type": "MODIFY",
"diff": "@@ -534,7 +534,7 @@ _The serveStatic module is different than most of the other plugins, in that\nit is expected that you are going to map it to a route, as below:_\n```javascript\n-server.get(/\\/docs\\/current\\/?.*\\/, restify.plugins.serveStatic({\n+server.get(/\\/doc... | JavaScript | MIT License | restify/node-restify | chore: staticServer doc fix (#1618)
Fixes invalid regular expression for serveStatic example which was missing a closing `/` | 1 | chore | null |
679,913 | 17.03.2018 22:58:29 | 0 | 422c2c4e68b4f5b337b552d43645465684558afe | feat(resolve-map): add package | [
{
"change_type": "ADD",
"diff": "+build\n+coverage\n+dev\n+doc\n+src*\n+test\n+.nyc_output\n+tsconfig.json\n+*.tgz\n+*.html\n",
"new_path": "packages/resolve-map/.npmignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+ Apache License\n+ Version 2.0, January 2004\n+ http://www.... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(resolve-map): add @thi.ng/resolve-map package | 1 | feat | resolve-map |
679,913 | 17.03.2018 23:10:07 | 0 | d34bd146c43c360fecb8f2ea2eb3cb326064fa28 | build: update make-module script (deps) | [
{
"change_type": "MODIFY",
"diff": "@@ -15,13 +15,11 @@ cp packages/api/LICENSE $MODULE/\necho \"writing test skeleton...\"\ncat << EOF > $MODULE/test/index.ts\n-import * as assert from \"assert\";\n-import * as $1 from \"../src/index\";\n+// import * as assert from \"assert\";\n+// import * as $1 from \"..... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update make-module script (deps) | 1 | build | null |
679,913 | 17.03.2018 23:47:14 | 0 | 8281609c11a5197d8c2b25439b3467f4221fb7da | minor(atom): fix typo in package | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"@thi.ng/atom\",\n\"version\": \"1.0.0\",\n- \"description\": \"Mutable wrapper for a immutable values\",\n+ \"description\": \"Mutable wrapper for immutable values\",\n\"main\": \"./index.js\",\n\"typings\": \"./index.d.ts\",\n\"repository\": \"https://gith... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(atom): fix typo in package | 1 | minor | atom |
679,913 | 17.03.2018 23:50:44 | 0 | 1e7ef2b63f12a75bc27d799ad31f9065f9cdd997 | build: fix atom deps in downstream packages | [
{
"change_type": "MODIFY",
"diff": "\"test\": \"rm -rf build && tsc -p test && nyc mocha build/test/*.js\"\n},\n\"devDependencies\": {\n- \"@thi.ng/atom\": \"^0.13.0\",\n+ \"@thi.ng/atom\": \"^1.0.0\",\n\"@types/mocha\": \"^2.2.48\",\n\"@types/node\": \"^9.4.6\",\n\"mocha\": \"^5.0.0\",\n",
"new_path": ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: fix atom deps in downstream packages | 1 | build | null |
807,849 | 18.03.2018 08:52:47 | 25,200 | 89f9d3b4acb029bf4e21fa7b49f0fd90876bfe04 | fix(clean-stack): Try to avoid causing errors during error cleanup | [
{
"change_type": "MODIFY",
"diff": "module.exports = cleanStack;\nfunction cleanStack(err, className) {\n- const lines = err.stack ? err.stack.split(\"\\n\") : err.split(\"\\n\");\n+ const lines = err.stack ? err.stack.split(\"\\n\") : String(err).split(\"\\n\");\nconst cutoff = new RegExp(`^ at ${className... | JavaScript | MIT License | lerna/lerna | fix(clean-stack): Try to avoid causing errors during error cleanup | 1 | fix | clean-stack |
807,849 | 18.03.2018 09:16:01 | 25,200 | ed5d2ba9f5503b0a986c755467887a82388efefa | test(windows): Avoid uncaught mocked rejection | [
{
"change_type": "MODIFY",
"diff": "@@ -12,9 +12,11 @@ const createSymlink = require(\"..\");\nconst linkRelative = (from, to) => path.relative(path.dirname(to), from);\ndescribe(\"create-symlink\", () => {\n- fs.lstat.mockRejectedValue(\"ENOENT\");\n+ fs.lstat.mockImplementation(() => Promise.reject(new Er... | JavaScript | MIT License | lerna/lerna | test(windows): Avoid uncaught mocked rejection | 1 | test | windows |
679,913 | 18.03.2018 12:13:31 | 0 | 2376e02f8a884be1acbb0578e662bff489fe1b2f | build: fix changelogs for atom/interceptors/paths | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,22 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline\n**Note:** Version bump only for package @thi.ng/atom\n+<a name=\"1.0.0\"></a>\n+# 1.0.0 (2018-03-17)\n+\n+\n+### Documentation\n+\n+* **atom:** extract @thi.ng/paths & @th... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: fix changelogs for atom/interceptors/paths | 1 | build | null |
679,913 | 18.03.2018 14:15:18 | 0 | 92f0e27ed62e28256c4b29314287b35da66f045b | fix(paths): fix setIn fast paths for path length 3/4 | [
{
"change_type": "MODIFY",
"diff": "@@ -136,7 +136,6 @@ export function getter(path: Path) {\n*/\nexport function setter(path: Path) {\nconst ks = toPath(path);\n- // (s, v) => ({ ...s, [k]: f((s || {})[k], v) });\nlet [a, b, c, d] = ks;\nswitch (ks.length) {\ncase 0:\n@@ -146,9 +145,9 @@ export function se... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(paths): fix setIn fast paths for path length 3/4 | 1 | fix | paths |
679,913 | 18.03.2018 16:17:06 | 0 | eaeccf471a4410b0165b1e7f2c429cc707b791a4 | fix(paths): fix setter fast paths | [
{
"change_type": "MODIFY",
"diff": "@@ -143,11 +143,11 @@ export function setter(path: Path) {\ncase 1:\nreturn (s, v) => ({ ...s, [a]: v });\ncase 2:\n- return (s, v) => ({ ...s, [a]: { ...s[a], [b]: v } });\n+ return (s, v) => ({ ...(s = s || {}), [a]: { ...s[a], [b]: v } });\ncase 3:\n- return (s, v) => ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(paths): fix setter fast paths | 1 | fix | paths |
679,913 | 18.03.2018 16:25:51 | 0 | f295a47531f69842eee0827fe95b1f172c2ae2db | build(examples): update all deps to use "latest" | [
{
"change_type": "MODIFY",
"diff": "\"webpack\": \"^3.10.0\"\n},\n\"dependencies\": {\n- \"@thi.ng/api\": \"^2.0.4\",\n- \"@thi.ng/atom\": \"^1.0.1\",\n- \"@thi.ng/hdom\": \"^2.2.0\",\n- \"@thi.ng/interceptors\": \"^1.0.1\"\n+ \"@thi.ng/api\": \"latest\",\n+ \"@thi.ng/atom\": \"latest\",\n+ \"@thi.ng/hdom\"... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build(examples): update all @thi.ng deps to use "latest" | 1 | build | examples |
679,913 | 18.03.2018 21:40:58 | 0 | c0ec2745691cd5b77ccc6f4369229b98a9e3cbae | feat(atom): add optional support for eager views, update tests/readme | [
{
"change_type": "MODIFY",
"diff": "@@ -200,6 +200,41 @@ viewA.release()\nviewC.release()\n```\n+Since v1.1.0 views can also be configured to be eager, instead of the\n+\"lazy\" default behavior. If the optional `lazy` arg is true (default),\n+the view's transformer will only be executed with the first `der... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(atom): add optional support for eager views, update tests/readme | 1 | feat | atom |
679,913 | 19.03.2018 00:24:03 | 0 | 76c5e0a487d5f5268630cd9bd747242eac489eaf | fix(interceptors): InterceptorPredicate args
last arg is bus, same as w/ InterceptorFn | [
{
"change_type": "MODIFY",
"diff": "import { ReadonlyAtom } from \"@thi.ng/atom/api\";\nexport type InterceptorFn = (state: any, e: Event, bus?: IDispatch) => InterceptorContext | void;\n-export type InterceptorPredicate = (state: any, e: Event, fx?: any) => boolean;\n+export type InterceptorPredicate = (st... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(interceptors): InterceptorPredicate args
- last arg is bus, same as w/ InterceptorFn | 1 | fix | interceptors |
730,429 | 19.03.2018 09:08:56 | 14,400 | 88731332470e0dcada9d4593ccef686f16df53ac | chore(package): stick postcss-loader to 2.1.1 due to release issues | [
{
"change_type": "MODIFY",
"diff": "\"postcss\": \"^6.0.3\",\n\"postcss-cli\": \"^4.1.0\",\n\"postcss-cssnext\": \"^3.0.2\",\n- \"postcss-loader\": \"^2.0.5\",\n+ \"postcss-loader\": \"2.1.1\",\n\"postcss-modules\": \"^0.8.0\",\n\"postcss-reporter\": \"^5.0.0\",\n\"react-test-renderer\": \"^16.1.0\",\n",
... | JavaScript | MIT License | webex/react-widgets | chore(package): stick postcss-loader to 2.1.1 due to release issues
https://github.com/postcss/postcss-loader/issues/347 | 1 | chore | package |
807,849 | 19.03.2018 10:04:45 | 25,200 | 399fb1752ca442931cd6cad23dd20cc8d905ca79 | test(helpers): add set-npm-userconfig | [
{
"change_type": "ADD",
"diff": "+\"use strict\";\n+\n+// Overwrite npm userconfig to avoid test pollution\n+// https://docs.npmjs.com/misc/config#npmrc-files\n+process.env.npm_config_userconfig = require(\"path\").resolve(__dirname, \"test-user.ini\");\n",
"new_path": "helpers/set-npm-userconfig/index.... | JavaScript | MIT License | lerna/lerna | test(helpers): add set-npm-userconfig | 1 | test | helpers |
791,690 | 19.03.2018 10:59:20 | 25,200 | a21e3cd3cd815fdf2de87b22dfc550b5d440d6de | core: convert diagnostics to numeric scores | [
{
"change_type": "MODIFY",
"diff": "'use strict';\nconst statistics = require('../lib/statistics');\n+const Util = require('../report/v2/renderer/util');\nconst DEFAULT_PASS = 'defaultPass';\n@@ -148,7 +149,7 @@ class Audit {\nlet auditDescription = audit.meta.description;\nif (audit.meta.failureDescription... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core: convert diagnostics to numeric scores (#4778) | 1 | core | null |
217,922 | 19.03.2018 11:47:31 | -3,600 | af3877fc7431ad2d34097dc305151aa8b08ba5b4 | chore: fix deprecated import | [
{
"change_type": "MODIFY",
"diff": "@@ -19,7 +19,7 @@ import {CustomLinkPopupComponent} from './custom-link-popup/custom-link-popup.co\nimport {FormsModule} from '@angular/forms';\nimport {CommonComponentsModule} from '../../modules/common-components/common-components.module';\nimport {TranslateModule} from... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: fix deprecated import | 1 | chore | null |
815,746 | 19.03.2018 12:26:09 | -7,200 | 81bfcab0c20c19329d8012a65635e1565a5b3ff6 | fix: remove appended dropdown node | [
{
"change_type": "MODIFY",
"diff": "@@ -138,6 +138,7 @@ import { delay } from 'rxjs/operators';\nbindLabel=\"title\"\nbindValue=\"thumbnailUrl\"\nplaceholder=\"Select photo\"\n+ appendTo=\"body\"\n[virtualScroll]=\"true\"\nformControlName=\"photo\">\n<ng-template ng-label-tmp let-item=\"item\">\n",
"new... | TypeScript | MIT License | ng-select/ng-select | fix: remove appended dropdown node (#366) | 1 | fix | null |
679,913 | 19.03.2018 12:36:15 | 0 | bebd1186a2e39537dc6ccd4ff5006104f489f6bc | feat(transducers): add partitionSync() xform | [
{
"change_type": "MODIFY",
"diff": "@@ -605,7 +605,7 @@ reducer and optional initial accumulator/result.\n#### `keep<T>(f?: ((x: T) => any)): Transducer<T, T>`\n-#### `labeled<L, T>(id: L): Transducer<T, [L, T]>`\n+#### `labeled<L, T>(id: L | ((x: T) => L)): Transducer<T, [L, T]>`\n#### `map<A, B>(fn: (x: A... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): add partitionSync() xform | 1 | feat | transducers |
679,913 | 19.03.2018 12:38:21 | 0 | 3bc8d54a1e656d761344308ae2385c80375f6471 | refactor(transducers): update labeled(), mapIndexed(), partition()
labeled() - add support for label fn instead of just static label
mapIndexed() - add optional start index arg
partition() - minor update in completing reducer | [
{
"change_type": "MODIFY",
"diff": "+import { isFunction } from \"@thi.ng/checks/is-function\";\n+\nimport { Transducer } from \"../api\";\nimport { map } from \"./map\";\n-export function labeled<L, T>(id: L): Transducer<T, [L, T]> {\n- return map((x) => [id, x]);\n+export function labeled<L, T>(id: L | ((... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(transducers): update labeled(), mapIndexed(), partition()
- labeled() - add support for label fn instead of just static label
- mapIndexed() - add optional start index arg
- partition() - minor update in completing reducer | 1 | refactor | transducers |
815,746 | 19.03.2018 12:45:04 | -7,200 | 934da338a66c1b48e51047efef642c00c8903772 | chore(release): 0.30.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.30.1\"></a>\n+## [0.30.1](https://github.com/ng-select/ng-select/compare/v0.30.0...... | TypeScript | MIT License | ng-select/ng-select | chore(release): 0.30.1 | 1 | chore | release |
791,723 | 19.03.2018 12:55:20 | 25,200 | 0cddcd38a62757abc63baf577f1ea6a55945763c | core(domstats): useIsolation within domstats | [
{
"change_type": "MODIFY",
"diff": "@@ -138,7 +138,7 @@ class DOMStats extends Gatherer {\nreturn (${getDOMStats.toString()}(document.documentElement));\n})()`;\nreturn options.driver.sendCommand('DOM.enable')\n- .then(() => options.driver.evaluateAsync(expression))\n+ .then(() => options.driver.evaluateAsy... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(domstats): useIsolation within domstats (#4811) | 1 | core | domstats |
791,723 | 19.03.2018 13:06:36 | 25,200 | 0206170281957905e4e16433b4badc9fc07e1bf1 | core(img-usage): handle invalid images within determineNaturalSize | [
{
"change_type": "MODIFY",
"diff": "@@ -96,7 +96,7 @@ function collectImageElementInfo() {\nfunction determineNaturalSize(url) {\nreturn new Promise((resolve, reject) => {\nconst img = new Image();\n- img.addEventListener('error', reject);\n+ img.addEventListener('error', _ => reject(new Error('determineNat... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(img-usage): handle invalid images within determineNaturalSize (#4812) | 1 | core | img-usage |
791,690 | 19.03.2018 13:06:56 | 25,200 | 941b0148e9837a2dd2a534935da1d178bf618ecb | tests(smokehouse): adjust byte efficiency CPU multiplier | [
{
"change_type": "MODIFY",
"diff": "@@ -136,6 +136,8 @@ class UnusedBytes extends Audit {\n*/\nstatic createAuditResult(result, graph) {\nconst simulatorOptions = PredictivePerf.computeRTTAndServerResponseTime(graph);\n+ // TODO: calibrate multipliers, see https://github.com/GoogleChrome/lighthouse/issues/8... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests(smokehouse): adjust byte efficiency CPU multiplier (#4809) | 1 | tests | smokehouse |
217,922 | 19.03.2018 13:58:11 | -3,600 | 5d35b8f7facac0a9bce054050986c00760afcd01 | feat: show closest aetheryte to TP in the same map for gatherable items | [
{
"change_type": "MODIFY",
"diff": "@@ -36,6 +36,7 @@ import {WorkshopService} from './database/workshop.service';\nimport {VenturesExtractor} from './list/data/extractor/ventures-extractor';\nimport {CustomLinksService} from './database/custom-links/custom-links.service';\nimport {PatreonGuard} from './gua... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: show closest aetheryte to TP in the same map for gatherable items
#185 | 1 | feat | null |
791,723 | 19.03.2018 14:20:36 | 25,200 | ab5071ef62453bb86586235c6886f9607f60ebf6 | deps(browserify): update deep transitive dep to use recent acorn | [
{
"change_type": "MODIFY",
"diff": "\"run-sequence\": \"^1.1.5\",\n\"through2\": \"^2.0.1\"\n},\n+ \"resolutions\": {\n+ \"browserify/insert-module-globals/lexical-scope/astw\": \"2.2.0\"\n+ },\n\"dependencies\": {}\n}\n",
"new_path": "lighthouse-extension/package.json",
"old_path": "lighthouse-exte... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | deps(browserify): update deep transitive dep to use recent acorn (#4813) | 1 | deps | browserify |
807,849 | 19.03.2018 14:24:57 | 25,200 | 20816401313f32ba9e10b3f6fa505685a7beb6ff | fix: Respect durable hoist configuration
fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -17,6 +17,7 @@ const createSymlink = require(\"@lerna/create-symlink\");\n// helpers\nconst initFixture = require(\"@lerna-test/init-fixture\")(__dirname);\nconst normalizeRelativeDir = require(\"@lerna-test/normalize-relative-dir\");\n+const updateLernaConfig = requir... | JavaScript | MIT License | lerna/lerna | fix: Respect durable hoist configuration
fixes #1325 | 1 | fix | null |
217,922 | 19.03.2018 14:44:12 | -3,600 | eea0aa30ce6f9bf43410d1d8849a59ea8cbe9950 | fix(beta): unable to link nickname to profile
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -29,10 +29,13 @@ export class NicknamePopupComponent {\nconst user = this.data.user;\nuser.nickname = this.nickname;\nthis.linkService.getAllByAuthor(user.$key).mergeMap(links => {\n+ if (links.length > 0) {\nreturn Observable.combineLatest(links.map(link => {\nlink.au... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(beta): unable to link nickname to profile
closes #280 | 1 | fix | beta |
217,922 | 19.03.2018 14:45:43 | -3,600 | 8fc3077f9727c71189ba5c5ae8544b00af992233 | fix(beta): patreon email linking is case-sensitive (not anymore) | [
{
"change_type": "MODIFY",
"diff": "@@ -88,7 +88,7 @@ export class UserService extends FirebaseStorage<AppUser> {\nreturn Observable.of(u);\n}\nreturn this.firebase.list('/patreon/supporters').valueChanges().map((supporters: { email: string }[]) => {\n- u.patron = supporters.find(s => s.email === u.patreonE... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(beta): patreon email linking is case-sensitive (not anymore) | 1 | fix | beta |
807,849 | 19.03.2018 16:29:22 | 25,200 | 8877aa0fe63da49cee5e1c02f0ec3b4d34494f0b | fix(bootstrap): Move --hoist/--nohoist coerce into class
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -144,6 +144,21 @@ Array [\n]\n`;\n+exports[`BootstrapCommand with hoisting should not hoist when disallowed from lerna.json 1`] = `\n+Object {\n+ \"ROOT\": Array [\n+ \"bar@^2.0.0\",\n+ \"foo@^1.0.0\",\n+ ],\n+ \"packages/package-3\": Array [\n+ \"foo@0.1.12\",\n+ ],\n... | JavaScript | MIT License | lerna/lerna | fix(bootstrap): Move --hoist/--nohoist coerce into class
Fixes #1337 | 1 | fix | bootstrap |
679,913 | 19.03.2018 16:30:55 | 0 | abc195a4024576497d9e253b1aab10675107e482 | feat(transducers): add mapVals() xform | [
{
"change_type": "MODIFY",
"diff": "@@ -619,6 +619,9 @@ reducer and optional initial accumulator/result.\n#### `mapNth<A, B>(n: number, offset: number, fn: (x: A) => B): Transducer<A, B>`\n+#### `mapVals<A, B>(fn: (v: A) => B, copy = true): Transducer<IObjectOf<A>, IObjectOf<B>>`\n+\n+\n#### `movingAverage(... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): add mapVals() xform | 1 | feat | transducers |
807,849 | 19.03.2018 16:32:07 | 25,200 | 19774fe32bb33544f6971e8586a37744c8be40e7 | refactor(bootstrap): Use read-package-tree to determine installed status | [
{
"change_type": "MODIFY",
"diff": "@@ -90,7 +90,11 @@ class BootstrapCommand extends Command {\nreturn this.installRootPackageOnly();\n}\n- const tasks = [() => this.installExternalDependencies(), () => this.symlinkPackages()];\n+ const tasks = [\n+ () => this.getDependenciesToInstall(),\n+ result => this.... | JavaScript | MIT License | lerna/lerna | refactor(bootstrap): Use read-package-tree to determine installed status | 1 | refactor | bootstrap |
807,849 | 19.03.2018 16:36:02 | 25,200 | 8797b075fcc5a55415149f2b6fb4ca4ae618d9d0 | chore(release): durable --git-remote upstream | [
{
"change_type": "MODIFY",
"diff": "\"allowBranch\": \"master\",\n\"cdVersion\": \"prerelease\",\n\"conventionalCommits\": true,\n+ \"gitRemote\": \"upstream\",\n\"preid\": \"beta\",\n\"message\": \"chore(release): publish %s\"\n}\n",
"new_path": "lerna.json",
"old_path": "lerna.json"
}
] | JavaScript | MIT License | lerna/lerna | chore(release): durable --git-remote upstream | 1 | chore | release |
679,913 | 19.03.2018 16:36:28 | 0 | c736433439efbe6a5aeca08c4a8df1e17d8ea066 | refactor(rstream): add/update Stream ctor arities | [
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,7 @@ import { Transducer } from \"@thi.ng/transducers/api\";\nimport { DEBUG, IStream, ISubscriber, StreamCancel, StreamSource } from \"./api\";\nimport { Subscription } from \"./subscription\";\n+import { isString } from \"util\";\nexport class Stream<T> exten... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rstream): add/update Stream ctor arities | 1 | refactor | rstream |
679,913 | 19.03.2018 16:36:50 | 0 | 791a993f1d83cc21e504bbba1cf7224e6854d04e | feat(rstream): add StreamSync | [
{
"change_type": "MODIFY",
"diff": "export * from \"./api\";\nexport * from \"./stream\";\nexport * from \"./stream-merge\";\n+export * from \"./stream-sync\";\nexport * from \"./subscription\";\nexport * from \"./from/atom\";\n",
"new_path": "packages/rstream/src/index.ts",
"old_path": "packages/rs... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): add StreamSync | 1 | feat | rstream |
807,849 | 19.03.2018 16:37:32 | 25,200 | 903e922289e37d2a5f322a8536ee246a732cab51 | chore(release): publish v3.0.0-beta.5 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+<a name=\"3.0.0-beta.5\"></a>\n+# [3.0.0-beta.5](https://github.com/lerna/lerna/compare/v3.0.0-beta.4...v3.0.0-beta.5... | JavaScript | MIT License | lerna/lerna | chore(release): publish v3.0.0-beta.5 | 1 | chore | release |
217,922 | 19.03.2018 16:47:05 | -3,600 | c28cab3e36e69e628610569340887468313333fa | chore: add navigation optimized path implementation
TODO: design for that | [
{
"change_type": "MODIFY",
"diff": "@@ -6,10 +6,17 @@ import {Aetheryte} from '../../core/data/aetheryte';\nimport {aetherytes} from '../../core/data/sources/aetherytes';\nimport {Vector2} from '../../core/tools/vector2';\nimport {MathToolsService} from '../../core/tools/math-tools';\n+import {NavigationSte... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: add navigation optimized path implementation
TODO: design for that | 1 | chore | null |
807,849 | 19.03.2018 16:52:01 | 25,200 | df5b91083ef8e27c7ea18bbddc028bec7624ca54 | chore(release): publish v3.0.0-beta.6 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+<a name=\"3.0.0-beta.6\"></a>\n+# [3.0.0-beta.6](https://github.com/lerna/lerna/compare/v3.0.0-beta.5...v3.0.0-beta.6... | JavaScript | MIT License | lerna/lerna | chore(release): publish v3.0.0-beta.6 | 1 | chore | release |
679,913 | 19.03.2018 16:59:49 | 0 | f7029efd4acf1ac045b1a70a77ae528cb985a7dc | refactor(rstream): minor cleanup/perf StreamSync | [
{
"change_type": "MODIFY",
"diff": "@@ -66,7 +66,7 @@ export class StreamSync<A, B> extends Subscription<A, B> {\nlet srcIDs = new Set<string>();\nlet xform: Transducer<any, any> = comp(\npartitionSync<A>(srcIDs, (x) => x[0], opts.reset !== false, opts.all !== false),\n- mapVals((x) => x[1])\n+ mapVals((x) ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rstream): minor cleanup/perf StreamSync | 1 | refactor | rstream |
679,913 | 19.03.2018 17:04:08 | 0 | ff802a45273a8dc53a1487d8dae3ca446573aacc | refactor(rstream): simplify StreamMerge source handling | [
{
"change_type": "MODIFY",
"diff": "@@ -19,15 +19,13 @@ export interface StreamMergeOpts<A, B> extends IID<string> {\n*/\nexport class StreamMerge<A, B> extends Subscription<A, B> {\n- sources: ISubscribable<A>[];\n- wrappedSources: Subscription<A, any>[];\n+ sources: Map<ISubscribable<A>, Subscription<A, a... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rstream): simplify StreamMerge source handling | 1 | refactor | rstream |
791,723 | 19.03.2018 17:13:09 | 25,200 | 8b02a903d6a293754705cc41a4c784de331d6b9e | core(runner): add custom folder support to -G/-A | [
{
"change_type": "MODIFY",
"diff": "@@ -73,8 +73,8 @@ function getFlags(manualArgv) {\n'disable-cpu-throttling': 'Disable CPU throttling',\n'disable-network-throttling': 'Disable network throttling',\n'gather-mode':\n- 'Collect artifacts from a connected browser and save to disk. If audit-mode is not also e... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(runner): add custom folder support to -G/-A (#4792) | 1 | core | runner |
807,849 | 19.03.2018 17:39:47 | 25,200 | bb2c5e86e37f3526e28b317e2fbd848f172a561b | fix(cli): Retrieve correct version | [
{
"change_type": "MODIFY",
"diff": "@@ -6,12 +6,13 @@ const tempy = require(\"tempy\");\n// helpers\nconst initFixture = require(\"@lerna-test/init-fixture\")(__dirname);\n-const lernaVersion = require(\"../package.json\").version;\n// file under test\nconst lernaInit = require(\"@lerna-test/command-runner\... | JavaScript | MIT License | lerna/lerna | fix(cli): Retrieve correct version | 1 | fix | cli |
807,849 | 19.03.2018 17:44:07 | 25,200 | 7c1b1ce9b1ef1aa2f981b727d78d1e335578dead | test: fix lint error | [
{
"change_type": "MODIFY",
"diff": "@@ -18,8 +18,6 @@ const gitCommit = require(\"@lerna-test/git-commit\");\nconst gitTag = require(\"@lerna-test/git-tag\");\nconst updateLernaConfig = require(\"@lerna-test/update-lerna-config\");\n-const LERNA_VERSION = require(\"../package.json\").version;\n-\n// file un... | JavaScript | MIT License | lerna/lerna | test: fix lint error | 1 | test | null |
791,834 | 19.03.2018 18:07:14 | 25,200 | adf4f86dcef08d263bb6d77e117659a53d3c2002 | core(tsc): add type defs for Chrome Remote Debugging Protocol | [
{
"change_type": "MODIFY",
"diff": "\"npm-run-posix-or-windows\": \"^2.0.2\",\n\"sinon\": \"^2.3.5\",\n\"typescript\": \"^2.8.0-rc\",\n+ \"vscode-chrome-debug-core\": \"^3.23.8\",\n\"zone.js\": \"^0.7.3\"\n},\n\"dependencies\": {\n",
"new_path": "package.json",
"old_path": "package.json"
},
{
... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(tsc): add type defs for Chrome Remote Debugging Protocol (#4816) | 1 | core | tsc |
573,195 | 19.03.2018 18:09:07 | 25,200 | 8b11b71b487d0001c96312519298f7f85b196471 | fix: server should fire not acceptable event | [
{
"change_type": "MODIFY",
"diff": "@@ -48,12 +48,9 @@ function acceptParser(accepts) {\nfunction parseAccept(req, res, next) {\nif (req.accepts(acceptable)) {\n- next();\n- return;\n+ return next();\n}\n-\n- res.json(e);\n- next(false);\n+ return next(e);\n}\nreturn parseAccept;\n",
"new_path": "lib/pl... | JavaScript | MIT License | restify/node-restify | fix: server should fire not acceptable event (#1627) | 1 | fix | null |
679,913 | 20.03.2018 01:02:48 | 0 | 47b6a924d007dfd3429ab2a9fa3e8b0932167f64 | refactor(rstream): simplify Subscription, update all impls
use Set for storing child subs
update Stream, StreamMerge, StreamSync
only clean sources in StreamMerge/Sync.unsubscribe() | [
{
"change_type": "MODIFY",
"diff": "@@ -68,11 +68,11 @@ export class StreamMerge<A, B> extends Subscription<A, B> {\ns.unsubscribe();\n}\nthis.state = State.DONE;\n- delete this.sources;\n+ this.sources.clear();\nreturn true;\n}\nif (super.unsubscribe(sub)) {\n- if (!this.subs.length) {\n+ if (!this.subs.si... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rstream): simplify Subscription, update all impls
- use Set for storing child subs
- update Stream, StreamMerge, StreamSync
- only clean sources in StreamMerge/Sync.unsubscribe() | 1 | refactor | rstream |
724,219 | 20.03.2018 01:55:57 | 18,000 | 93c6ba5826e33dd019a3ce84e0a2a66701818b49 | fix: add isVisible type | [
{
"change_type": "MODIFY",
"diff": "@@ -45,6 +45,7 @@ type RefSelector = {\ninterface BaseWrapper {\ncontains (selector: Selector): boolean\nexists (): boolean\n+ isVisible (): boolean\nvisible (): boolean\nattributes(): { [name: string]: string }\n",
"new_path": "packages/test-utils/types/index.d.ts",
... | JavaScript | MIT License | vuejs/vue-test-utils | fix: add isVisible type (#478) | 1 | fix | null |
679,913 | 20.03.2018 08:28:06 | 0 | 6f5ec04044bec31830a5e1137e80741be5d3fa43 | test(rstream): remove obsolete fromPromise error test case | [
{
"change_type": "MODIFY",
"diff": "@@ -61,7 +61,8 @@ describe(\"fromPromise()\", () => {\n});\nsetTimeout(() => {\nassert(called, \"not called\");\n- assert.throws(() => src.next(Promise.resolve()), \"no next() allowed\");\n+ // TODO remove, next() doesn't throw error anymore if already in done or error st... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(rstream): remove obsolete fromPromise error test case | 1 | test | rstream |
807,849 | 20.03.2018 10:17:28 | 25,200 | 7b80e0798c4ea118fd8bfbd5dc550a98bfa4d74b | feat(init): Improve ex-nihilo output
Create package.json with 2-space indent
Add stub name and "private": true when creating root package.json
Detect indent of existing lerna.json
sync -> async | [
{
"change_type": "MODIFY",
"diff": "\"use strict\";\nconst fs = require(\"fs-extra\");\n+const pMap = require(\"p-map\");\nconst writeJsonFile = require(\"write-json-file\");\nconst writePkg = require(\"write-pkg\");\n@@ -34,23 +35,37 @@ class InitCommand extends Command {\n}\nexecute() {\n- this.ensurePack... | JavaScript | MIT License | lerna/lerna | feat(init): Improve ex-nihilo output
- Create package.json with 2-space indent
- Add stub name and "private": true when creating root package.json
- Detect indent of existing lerna.json
- sync -> async | 1 | feat | init |
807,849 | 20.03.2018 10:31:06 | 25,200 | 98c8be60ae0c2abdaafe208daf78c94f6f9cdaa3 | fix(create): Skip repository property when git remote is missing | [
{
"change_type": "MODIFY",
"diff": "@@ -340,4 +340,12 @@ describe(\"CreateCommand\", () => {\ntag: \"next\",\n});\n});\n+\n+ it(\"skips repository field when git remote is missing\", async () => {\n+ const cwd = await initFixture(\"basic\");\n+\n+ await lernaCreate(cwd)(\"a-pkg\");\n+\n+ expect(await manife... | JavaScript | MIT License | lerna/lerna | fix(create): Skip repository property when git remote is missing | 1 | fix | create |
679,913 | 20.03.2018 10:48:16 | 0 | 2ad2f485b37c14683b1186391a6d5051d62b4594 | fix(rstream): bisect() add downstream impl checks, add tests | [
{
"change_type": "MODIFY",
"diff": "@@ -2,15 +2,15 @@ import { Predicate } from \"@thi.ng/api/api\";\nimport { ISubscriber } from \"../api\";\nimport { Subscription } from \"../subscription\";\n-// TODO wrap A & B and attach as children? else, how to propagate teardown?\nexport function bisect<T>(pred: Pred... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(rstream): bisect() add downstream impl checks, add tests | 1 | fix | rstream |
573,227 | 20.03.2018 11:10:28 | 25,200 | 09b46dc196e073e51df83d30d7f36e55f6dfb4d9 | docs(api): regenerate | [
{
"change_type": "MODIFY",
"diff": "@@ -31,6 +31,7 @@ permalink: /docs/plugins-api/\n- [Using an external storage mechanism for key/bucket mappings.](#using-an-external-storage-mechanism-for-keybucket-mappings)\n- [inflightRequestThrottle](#inflightrequestthrottle)\n- [cpuUsageThrottle](#cpuusagethrottle)\n... | JavaScript | MIT License | restify/node-restify | docs(api): regenerate | 1 | docs | api |
730,429 | 20.03.2018 11:21:16 | 14,400 | d76944deadeb5e2aaec7cd55edce76ad11f62cd9 | chore(tooling): add .env.default support
CISCOSPARK_APPID_ORGID is needed for guest tokens | [
{
"change_type": "ADD",
"diff": "+CISCOSPARK_APPID_ORGID=Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi80MjFhMWY4OC0zM2ViLTQ3MTUtOTY1ZS0zYzE5ZDYyZDJjMDk\n",
"new_path": ".env.default",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "-require('dotenv').config();\nrequire('babel-register')... | JavaScript | MIT License | webex/react-widgets | chore(tooling): add .env.default support
CISCOSPARK_APPID_ORGID is needed for guest tokens | 1 | chore | tooling |
679,913 | 20.03.2018 12:55:44 | 0 | 01a751e2c0826d68278a0e3e5f3245b63924b748 | feat(rstream): update Subscription.unsubscribe()
switch to DONE state if unsubscribing itself from parent
unsubscribe itself from parent after last child sub unsubscribed
(effect propagates upstream until no more parent) | [
{
"change_type": "MODIFY",
"diff": "@@ -81,23 +81,27 @@ export class Subscription<A, B> implements\nunsubscribe(sub?: Subscription<B, any>) {\nif (!sub) {\nif (this.parent) {\n- return this.parent.unsubscribe(this);\n+ const res = this.parent.unsubscribe(this);\n+ this.state = State.DONE;\n+ delete this.par... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): update Subscription.unsubscribe()
- switch to DONE state if unsubscribing itself from parent
- unsubscribe itself from parent after last child sub unsubscribed
(effect propagates upstream until no more parent) | 1 | feat | rstream |
679,913 | 20.03.2018 12:56:15 | 0 | 41bb385fae2d836c43e107a1719ad11461a730ec | feat(rstream): add fromView(), update fromAtom() docs, update re-exports | [
{
"change_type": "MODIFY",
"diff": "@@ -3,14 +3,16 @@ import { ReadonlyAtom } from \"@thi.ng/atom/api\";\nimport { Stream } from \"../stream\";\n/**\n- * Yields stream of value changes in given atom / cursor.\n- * Attaches watch to atom and checks for value changes with given `changed`\n- * predicate (`!==`... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): add fromView(), update fromAtom() docs, update re-exports | 1 | feat | rstream |
679,913 | 20.03.2018 13:04:35 | 0 | 7dce160ca4840939d60d1a49a867bd82c8e0a7a3 | minor(rstream): fromPromise() | [
{
"change_type": "MODIFY",
"diff": "@@ -29,7 +29,6 @@ export class Resolver<T> extends Subscription<Promise<T>, T> {\ndone() {\nif (this.parent.getState() === State.DONE && this.outstanding === 0) {\nsuper.done();\n- delete this.outstanding;\n}\n}\n}\n",
"new_path": "packages/rstream/src/subs/resolve.ts... | TypeScript | Apache License 2.0 | thi-ng/umbrella | minor(rstream): fromPromise() | 1 | minor | rstream |
679,913 | 20.03.2018 13:07:45 | 0 | d18a11588f4b530c7cf2fb0c1b4e06a47c353b6f | feat(rstream): update Sidechain*.next(), add unsubscribe()
don't throw errors in next() if state >= DONE
unsub sidechain when unsubscribing SidechainPartition/Toggle itself | [
{
"change_type": "MODIFY",
"diff": "@@ -30,11 +30,17 @@ export class SidechainPartition<A, B> extends Subscription<A, A[]> {\n});\n}\n+ unsubscribe(sub?: Subscription<any, any>) {\n+ const res = super.unsubscribe(sub);\n+ if (!sub || !this.subs.size) {\n+ this.sideSub.unsubscribe();\n+ }\n+ return res;\n+ }... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): update Sidechain*.next(), add unsubscribe()
- don't throw errors in next() if state >= DONE
- unsub sidechain when unsubscribing SidechainPartition/Toggle itself | 1 | feat | rstream |
679,913 | 20.03.2018 13:08:18 | 0 | db61b0bda92f4ca646094fdb74e143d9819be632 | test(rstream): add/update sidechain* tests | [
{
"change_type": "MODIFY",
"diff": "@@ -4,10 +4,15 @@ import * as rs from \"../src/index\";\ndescribe(\"SidechainPartition\", function () {\n+ let src, side, buf;\n+\n+ beforeEach(() => {\n+ src = new rs.Stream();\n+ side = new rs.Stream();\n+ buf = [];\n+ });\n+\nit(\"partitions (manual)\", (done) => {\n- ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(rstream): add/update sidechain* tests | 1 | test | rstream |
679,913 | 20.03.2018 13:36:20 | 0 | 80264093cfea9a80d541adae970204dde95da6b3 | feat(rstream): fix update StreamMerge to support transduced input streams
any Subscription values (incl. Streams) sent by inputs are added
to the set of inputs themselves and not passed downstream
add test case | [
{
"change_type": "MODIFY",
"diff": "@@ -37,7 +37,13 @@ export class StreamMerge<A, B> extends Subscription<A, B> {\nthis.sources.set(\nsrc,\nsrc.subscribe({\n- next: (x) => this.next(x),\n+ next: (x) => {\n+ if (x instanceof Subscription) {\n+ this.add(x);\n+ } else {\n+ this.next(x);\n+ }\n+ },\ndone: () =... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): fix #6 update StreamMerge to support transduced input streams
- any Subscription values (incl. Streams) sent by inputs are added
to the set of inputs themselves and not passed downstream
- add test case | 1 | feat | rstream |
217,922 | 20.03.2018 14:37:52 | -3,600 | b13add1b4841db6e56f3338c3837b7c098ee05ab | fix: little issue with the recipe addition to a list not in workshop | [
{
"change_type": "MODIFY",
"diff": "<mat-icon>add</mat-icon>\n<span>{{'New_List' | translate}}</span></button>\n<button mat-menu-item *ngFor=\"let list of lists.basicLists\"\n- (click)=\"addAllRecipes(list, list.$key)\">\n+ (click)=\"addRecipe(recipe, list, list.$key, amount.value, collectible.checked)\">\n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: little issue with the recipe addition to a list not in workshop | 1 | fix | null |
679,913 | 20.03.2018 15:02:29 | 0 | ebe222c90ff4c49f2f83a1a0a8496d2d1bacdfa2 | refactor(rstream): update & StreamMerge/SyncOpts, minor fixes StreamSync
only allow arrays for sources
pre-add/remove source IDs in StreamSync.addAll/removeAll()
update mapVals() xform to use copies | [
{
"change_type": "MODIFY",
"diff": "@@ -5,7 +5,7 @@ import { ISubscribable, State } from \"./api\";\nimport { Subscription } from \"./subscription\";\nexport interface StreamMergeOpts<A, B> extends IID<string> {\n- src: Iterable<ISubscribable<A>>;\n+ src: ISubscribable<A>[];\nxform: Transducer<A, B>;\nclose... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rstream): update & StreamMerge/SyncOpts, minor fixes StreamSync
- only allow arrays for sources
- pre-add/remove source IDs in StreamSync.addAll/removeAll()
- update mapVals() xform to use copies | 1 | refactor | rstream |
217,922 | 20.03.2018 15:30:39 | -3,600 | ae0b5e6491369ec35d5872686496fda18d332c10 | fix: list author avatar hidden in list panel | [
{
"change_type": "MODIFY",
"diff": "<div class=\"description\">\n<img *ngIf=\"author | async as authorData\" [src]=\"authorData?.avatar\" class=\"author-avatar\"\n[matTooltip]=\"authorData?.name\" matTooltipPosition=\"above\"\n- hidden=\"{{authorData?.name === 'Anonymous'}}\"\n+ [hidden]=\"authorData?.name ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: list author avatar hidden in list panel | 1 | fix | null |
217,922 | 20.03.2018 15:35:34 | -3,600 | 501652fded0c92a81b3d646df7a559033890a1ee | chore(release): 3.4.0-beta.3 | [
{
"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=\"3.4.0-beta.3\"></a>\n+# [3.4.0-beta.3](https://github.com/Supamiu/ffxiv-teamcraft/com... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(release): 3.4.0-beta.3 | 1 | chore | release |
679,913 | 20.03.2018 16:14:32 | 0 | 6b87bca42c7db1f5ce9bbde1017295a1912ad7df | feat(rstream): Subscription stores last value and passes to new subs | [
{
"change_type": "MODIFY",
"diff": "import { isFunction } from \"@thi.ng/checks/is-function\";\nimport { implementsFunction } from \"@thi.ng/checks/implements-function\";\n-import { Reducer, Transducer } from \"@thi.ng/transducers/api\";\n+import { Reducer, Transducer, SEMAPHORE } from \"@thi.ng/transducers... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): Subscription stores last value and passes to new subs | 1 | feat | rstream |
679,913 | 20.03.2018 16:15:02 | 0 | a1c58418ad89e78d968fea938310d7948cda6201 | docs(rstream): add Cache deprecation docstring | [
{
"change_type": "MODIFY",
"diff": "@@ -3,6 +3,11 @@ import { Transducer } from \"@thi.ng/transducers/api\";\nimport { Subscription } from \"../subscription\";\n+/**\n+ * Deprecated since v1.1.0. Subscriptions now store last received value\n+ * and new subs will receive the last value stored in parent as th... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(rstream): add Cache deprecation docstring | 1 | docs | rstream |
217,922 | 20.03.2018 16:21:52 | -3,600 | 13753a01e9d2fe8776d9e497c898913bc210fe4c | chore: hotfix for navigation map | [
{
"change_type": "MODIFY",
"diff": "@@ -10,9 +10,12 @@ export class ZoneBreakdown {\nif (row.gatheredBy !== undefined && row.gatheredBy.nodes !== undefined && row.gatheredBy.nodes.length !== 0) {\nrow.gatheredBy.nodes.forEach(node => {\nif (node.coords !== undefined) {\n- row.coords = {x: node.coords[0], y:... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: hotfix for navigation map | 1 | chore | null |
791,723 | 20.03.2018 16:41:02 | 25,200 | f092a8ad4363bca3c5897a1f756a75a3333be2f5 | docs: update docker image id | [
{
"change_type": "MODIFY",
"diff": "@@ -54,7 +54,7 @@ You can do a local docker image install of Travis to better inspect a travis bui\n* [Common Build Problems - Travis CI](https://docs.travis-ci.com/user/common-build-problems/#Troubleshooting-Locally-in-a-Docker-Image)\n```sh\n-docker run --name travis-de... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | docs: update docker image id | 1 | docs | null |
217,922 | 20.03.2018 16:47:15 | -3,600 | dfc379f54ce1ace616085ef9d10cf2c2a22cc2c9 | chore: hotfix for navigation map (uniquify missing on some calls) | [
{
"change_type": "MODIFY",
"diff": "@@ -150,7 +150,7 @@ export class ListDetailsPanelComponent implements OnChanges, OnInit {\npublic openNavigationMap(zoneBreakdownRow: ZoneBreakdownRow): void {\nconst data: { mapId: number, points: NavigationObjective[] } = {\nmapId: zoneBreakdownRow.zoneId,\n- points: zo... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: hotfix for navigation map (uniquify missing on some calls) | 1 | chore | null |
791,813 | 20.03.2018 16:55:29 | -3,600 | 32fd61fee406fe6556c09c382ef82d03f08a84a4 | core(is-crawlable): fix empty row in the details table | [
{
"change_type": "MODIFY",
"diff": "@@ -107,7 +107,7 @@ class IsCrawlable extends Audit {\nblockingDirectives.push({\nsource: {\ntype: 'url',\n- text: robotsFileUrl.href,\n+ value: robotsFileUrl.href,\n},\n});\n}\n",
"new_path": "lighthouse-core/audits/seo/is-crawlable.js",
"old_path": "lighthouse-c... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(is-crawlable): fix empty row in the details table (#4820) | 1 | core | is-crawlable |
217,922 | 20.03.2018 17:06:18 | -3,600 | 7bfea30d0ad64e7c65d3424498b137ca6ca5cdc9 | chore: adjust mount speed | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ import {NavigationObjective} from './navigation-objective';\nexport class MapService {\n// Flying mount speed, used as reference for TP over mount comparison, needs a precise recording.\n- private static readonly MOUNT_SPEED = 2.5;\n+ private static read... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: adjust mount speed | 1 | chore | null |
791,813 | 20.03.2018 19:39:02 | -3,600 | 5192079f232359496281922cf06978a5e64d08bd | deps(robots-parser): patch robots-parser to work in browser env | [
{
"change_type": "MODIFY",
"diff": "\"plots-smoke\": \"bash plots/test/smoke.sh\",\n\"changelog\": \"conventional-changelog --config ./build/changelog-generator/index.js --infile changelog.md --same-file\",\n\"type-check\": \"tsc -p .\",\n- \"mixed-content\": \"./lighthouse-cli/index.js --chrome-flags='--he... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | deps(robots-parser): patch robots-parser to work in browser env (#4819) | 1 | deps | robots-parser |
791,759 | 20.03.2018 19:54:11 | -3,600 | 7a1fb93328a45051f1cbf29ee69060314d8d909b | core(runner): rename generatedTime to fetchedAt | [
{
"change_type": "MODIFY",
"diff": "@@ -11,7 +11,7 @@ The top-level Lighthouse Results object (LHR) is what the lighthouse node module\n| Name | Description |\n| - | - |\n| lighthouseVersion | The version of Lighthouse with which these results were generated. |\n-| generatedTime | The ISO-8601 timestamp of ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(runner): rename generatedTime to fetchedAt (#4783) | 1 | core | runner |
679,913 | 20.03.2018 20:37:05 | 0 | 26f15b238af2c72ea0de18e081a3348ccc8804a0 | refactor(rstream): simplify unsubscribe() logic
add Subscription.cleanup()
update unsub for Stream, Subscription, StreamMerge/Sync
no more calling of done() as part of unsub process
(strictly unidirectional teardown from child -> parent)
fix input unsubs for StreamMerge/Sync | [
{
"change_type": "MODIFY",
"diff": "@@ -70,20 +70,13 @@ export class StreamMerge<A, B> extends Subscription<A, B> {\nunsubscribe(sub?: Subscription<B, any>) {\nif (!sub) {\n- for (let s of this.sources.keys()) {\n+ for (let s of this.sources.values()) {\ns.unsubscribe();\n}\nthis.state = State.DONE;\nthis.s... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rstream): simplify unsubscribe() logic
- add Subscription.cleanup()
- update unsub for Stream, Subscription, StreamMerge/Sync
- no more calling of done() as part of unsub process
(strictly unidirectional teardown from child -> parent)
- fix input unsubs for StreamMerge/Sync | 1 | refactor | rstream |
679,913 | 20.03.2018 20:41:03 | 0 | 42b343aaec935de16132f60861c02a78f7ec5ff1 | test(rstream): add StreamSync & Subscription tests | [
{
"change_type": "ADD",
"diff": "+import * as assert from \"assert\";\n+\n+import { Atom } from \"@thi.ng/atom\";\n+import * as tx from \"@thi.ng/transducers\";\n+\n+import * as rs from \"../src/index\";\n+\n+describe(\"StreamSync\", () => {\n+\n+ function adder() {\n+ return tx.map(\n+ (ports) => {\n+ let ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(rstream): add StreamSync & Subscription tests | 1 | test | rstream |
679,913 | 20.03.2018 22:35:48 | 0 | eec56dec5d42c754c6c7d2032ae29aab8d4dfbac | feat(rstream): add transduce(), update re-exports | [
{
"change_type": "MODIFY",
"diff": "@@ -21,5 +21,6 @@ export * from \"./subs/resolve\";\nexport * from \"./subs/sidechain-partition\";\nexport * from \"./subs/sidechain-toggle\";\nexport * from \"./subs/trace\";\n+export * from \"./subs/transduce\";\nexport * from \"./utils/worker\";\n",
"new_path": "pa... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): add transduce(), update re-exports | 1 | feat | rstream |
679,913 | 20.03.2018 22:36:33 | 0 | 1fee7d5cad70e266b20d353360a1d63c41662ca2 | feat(rstream): add merge()/sync() ctor wrappers | [
{
"change_type": "MODIFY",
"diff": "@@ -86,3 +86,7 @@ export class StreamMerge<A, B> extends Subscription<A, B> {\n}\n}\n}\n+\n+export function merge<A, B>(opts: Partial<StreamMergeOpts<A, B>>) {\n+ return new StreamMerge(opts);\n+}\n",
"new_path": "packages/rstream/src/stream-merge.ts",
"old_path":... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): add merge()/sync() ctor wrappers | 1 | feat | rstream |
679,913 | 20.03.2018 22:37:22 | 0 | 907d5995399b19b31afb88b2e5213b53829e72c1 | feat(rstream): add IDeref impl for Subscription | [
{
"change_type": "MODIFY",
"diff": "@@ -5,8 +5,10 @@ import { push } from \"@thi.ng/transducers/rfn/push\";\nimport { isReduced, unreduced } from \"@thi.ng/transducers/reduced\";\nimport { DEBUG, ISubscribable, ISubscriber, State } from \"./api\";\n+import { IDeref } from \"@thi.ng/api/api\";\nexport class ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(rstream): add IDeref impl for Subscription | 1 | feat | rstream |
679,913 | 21.03.2018 00:02:44 | 0 | deb59a154615aa0ab573ee75a7a3b539958e70e5 | docs(rstream): update readme, add dataflow example | [
{
"change_type": "MODIFY",
"diff": "@@ -43,7 +43,7 @@ are provided too:\n- [merge](https://github.com/thi-ng/umbrella/tree/master/packages/rstream/src/stream-merge.ts) - unsorted merge from multiple inputs (dynamic add/remove)\n- [sync](https://github.com/thi-ng/umbrella/tree/master/packages/rstream/src/str... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(rstream): update readme, add dataflow example | 1 | docs | rstream |
679,913 | 21.03.2018 00:22:07 | 0 | 2a1264a2e7f4393d27b88f8761eb1ddcf9dcffdd | refactor(rstream-log): update Logger ctor arg handling | [
{
"change_type": "MODIFY",
"diff": "-import { isNumber } from \"@thi.ng/checks/is-number\";\n-\nimport { ISubscribable } from \"@thi.ng/rstream/api\";\nimport { StreamMerge } from \"@thi.ng/rstream/stream-merge\";\nimport { Subscription } from \"@thi.ng/rstream/subscription\";\n@@ -16,15 +14,24 @@ export cl... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(rstream-log): update Logger ctor arg handling | 1 | refactor | rstream-log |
791,676 | 21.03.2018 00:24:09 | -3,600 | e90f9acb894906951f3bb5fa19eb3298f5593143 | extension(tests): add extension pptr smoketest | [
{
"change_type": "MODIFY",
"diff": "@@ -17,17 +17,20 @@ cache:\n- lighthouse-viewer/node_modules\n- /home/travis/.rvm/gems/\ninstall:\n+ # if our e2e tests fail in the future it might be that we are not compatible\n+ # with the latest puppeteer api so we probably need to run on chromimum\n+ # @see https://g... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | extension(tests): add extension pptr smoketest (#4640) | 1 | extension | tests |
217,922 | 21.03.2018 00:34:41 | -3,600 | 4d42c48d4c39a8e888695e509ee48e0084b68506 | chore(release): 3.4.0-beta.4 | [
{
"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=\"3.4.0-beta.4\"></a>\n+# [3.4.0-beta.4](https://github.com/Supamiu/ffxiv-teamcraft/com... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(release): 3.4.0-beta.4 | 1 | chore | release |
679,913 | 21.03.2018 03:29:27 | 0 | fbb19acd0a4a542129b358c209aef865693ce1c7 | refactor(api): update mixins, IEnable / INotify return types | [
{
"change_type": "MODIFY",
"diff": "@@ -127,7 +127,7 @@ export interface IEnable {\n* @param opts optional implementation specific arg\n*/\nenable(opts?: any);\n- toggle?();\n+ toggle?(): boolean;\n}\nexport interface IEquiv {\n@@ -170,9 +170,9 @@ export type Listener = (e: Event) => void;\n* Also see `@INo... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(api): update mixins, IEnable / INotify return types | 1 | refactor | api |
679,913 | 21.03.2018 03:30:32 | 0 | b3287808a0aadc126b7ff73e359e50cbf599ba2c | refactor(router): update INotify dummy impl
reflecting INotify updates in | [
{
"change_type": "MODIFY",
"diff": "@@ -22,8 +22,8 @@ export class BasicRouter implements\n}\n// mixin\n- public addListener(_: string, __: Listener, ___?: any) { }\n- public removeListener(_: string, __: Listener, ___?: any) { }\n+ public addListener(_: string, __: Listener, ___?: any) { return false; }\n+... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(router): update INotify dummy impl
- reflecting INotify updates in @thi.ng/api | 1 | refactor | router |
679,913 | 21.03.2018 03:31:08 | 0 | 47643f96ad089905e810c3c4202f8f403d6cc965 | test(api): add INotify tests | [
{
"change_type": "ADD",
"diff": "+import * as assert from \"assert\";\n+\n+import { Event, INotify, EVENT_ALL } from \"../src/api\";\n+import * as mixins from \"../src/mixins\";\n+\n+describe(\"mixins\", () => {\n+\n+ it(\"INotify\", () => {\n+\n+ @mixins.INotify\n+ class Foo implements INotify {\n+ addList... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(api): add INotify tests | 1 | test | api |
679,913 | 21.03.2018 04:27:32 | 0 | bae1647c8521cb0deec80cb3c553c26ecef93bb0 | feat(atom): add optional validation predicate for Atom, add tests | [
{
"change_type": "MODIFY",
"diff": "-import { IEquiv, Watch } from \"@thi.ng/api/api\";\n+import { IEquiv, Watch, Predicate } from \"@thi.ng/api/api\";\nimport { IWatch } from \"@thi.ng/api/mixins/iwatch\";\nimport { Path, setIn, updateIn } from \"@thi.ng/paths\";\n@@ -15,10 +15,15 @@ export class Atom<T> i... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(atom): add optional validation predicate for Atom, add tests | 1 | feat | atom |
217,922 | 21.03.2018 10:20:55 | -3,600 | b0255473466d8ed8b479e93beb761bc8a838ac16 | fix: instance returned by gathering search causing strange results | [
{
"change_type": "MODIFY",
"diff": "<div class=\"timed\" *ngIf=\"node.timed\">\n<mat-icon>access_alarm</mat-icon>\n<div class=\"spawns\">\n- <span *ngFor=\"let spawn of getSpawns(node)\">{{spawn}}</span>\n+ <span *ngFor=\"let spawn of getSpawns(node); let first = first\">\n+ <span *ngIf=\"!first\"> / </span... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: instance returned by gathering search causing strange results | 1 | fix | null |
807,849 | 21.03.2018 10:56:17 | 25,200 | ad20d8af74a8474e7ab8cb656ab36c480677a70b | feat(npm-conf): Add get/setCredentialsByURI() methods | [
{
"change_type": "MODIFY",
"diff": "\"use strict\";\n+const assert = require(\"assert\");\nconst fs = require(\"fs\");\nconst path = require(\"path\");\nconst { ConfigChain } = require(\"config-chain\");\nconst findPrefix = require(\"./find-prefix\");\nconst parseField = require(\"./parse-field\");\n+const ... | JavaScript | MIT License | lerna/lerna | feat(npm-conf): Add get/setCredentialsByURI() methods | 1 | feat | npm-conf |
821,196 | 21.03.2018 11:48:34 | 25,200 | 06e2c4615151abf37b30d4ff20b1f9b2e476ace8 | fix: remove noUnusedLocals and noUnusedParameters as these are checked with tslint | [
{
"change_type": "MODIFY",
"diff": "\"forceConsistentCasingInFileNames\": true,\n\"importHelpers\": true,\n\"module\": \"commonjs\",\n- \"noUnusedLocals\": true,\n- \"noUnusedParameters\": true,\n\"outDir\": \"./lib\",\n\"pretty\": true,\n\"rootDirs\": [\n",
"new_path": "templates/tsconfig.json",
"o... | TypeScript | MIT License | oclif/oclif | fix: remove noUnusedLocals and noUnusedParameters as these are checked with tslint | 1 | fix | null |
821,196 | 21.03.2018 11:49:23 | 25,200 | 526742b20961a3d04c8ad7f4367eb3d6213e4ba6 | docs: add nested topic example | [
{
"change_type": "MODIFY",
"diff": "@@ -417,7 +417,8 @@ The help descriptions will be the description of the first command within a dire\n{\n\"oclif\": {\n\"topics\": {\n- \"config\": { \"description\": \"manage heroku config variables\" }\n+ \"apps:favorites\": { \"description\": \"manage favorite apps\" }... | TypeScript | MIT License | oclif/oclif | docs: add nested topic example | 1 | docs | null |
791,690 | 21.03.2018 12:37:56 | 25,200 | 1c23205c843242775ec8105fc4722ade8c1cbf8b | core(network-analyzer): more distrustful of chrome connection info | [
{
"change_type": "MODIFY",
"diff": "@@ -185,6 +185,23 @@ class NetworkAnalyzer {\n});\n}\n+ /**\n+ * @param {LH.NetworkRequest[]} records\n+ * @return {boolean}\n+ */\n+ static canTrustConnectionInformation(records) {\n+ const connectionIdWasStarted = new Map();\n+ for (const record of records) {\n+ const s... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(network-analyzer): more distrustful of chrome connection info (#4828) | 1 | core | network-analyzer |
679,913 | 21.03.2018 13:05:32 | 0 | 3b1d563a98457734eb4a081a14e2260b00408e08 | feat(atom): add CursorOpts and cursor validation, update ctor, add tests | [
{
"change_type": "MODIFY",
"diff": "import * as api from \"@thi.ng/api/api\";\n-import { IDeref, IID, IRelease } from \"@thi.ng/api/api\";\nimport { Path } from \"@thi.ng/paths\";\nexport type SwapFn<T> = (curr: T, ...args: any[]) => T;\n@@ -30,9 +29,9 @@ export interface ISwap<T> {\n}\nexport interface IVi... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(atom): add CursorOpts and cursor validation, update ctor, add tests | 1 | feat | atom |
679,913 | 21.03.2018 13:34:01 | 0 | d93940a47b18a24a7094a270ce07e91c82612eea | feat(atom): consider parent validators in History update fns | [
{
"change_type": "MODIFY",
"diff": "@@ -81,14 +81,17 @@ export class History<T> implements\n/**\n* `IAtom.reset()` implementation. Delegates to wrapped atom/cursor,\n* but too applies `changed` predicate to determine if there was a\n- * change and previous value should be recorded.\n+ * change and if the pr... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(atom): consider parent validators in History update fns | 1 | feat | atom |
807,849 | 21.03.2018 13:45:06 | 25,200 | ce72828416d86789b87633ad0db3d091fa8c4f89 | feat(utils): Add | [
{
"change_type": "ADD",
"diff": "+# `@lerna/map-to-registry`\n+\n+> Produce registry uri and auth of package name from npm config\n+\n+## Usage\n+\n+This is an extraction of an internal npm [utility](https://github.com/npm/npm/blob/f644018/lib/utils/map-to-registry.js). Caveat emptor.\n+\n+```js\n+'use stri... | JavaScript | MIT License | lerna/lerna | feat(utils): Add @lerna/map-to-registry | 1 | feat | utils |
807,849 | 21.03.2018 13:45:55 | 25,200 | a391cc590b012dcd026713fded1a1e3c7251782b | chore(config): add durable options for lerna create | [
{
"change_type": "MODIFY",
"diff": "\"cacheDir\": \".changelog\"\n},\n\"command\": {\n+ \"create\": {\n+ \"homepage\": \"https://github.com/lerna/lerna\",\n+ \"license\": \"MIT\"\n+ },\n\"publish\": {\n\"allowBranch\": \"master\",\n\"cdVersion\": \"prerelease\",\n",
"new_path": "lerna.json",
"old_pa... | JavaScript | MIT License | lerna/lerna | chore(config): add durable options for lerna create | 1 | chore | config |
217,922 | 21.03.2018 14:03:27 | -3,600 | f05dfe38f1abd32bcaa46704c6a8169efa4ab4fe | style: no more <br> in about copyright notice | [
{
"change_type": "MODIFY",
"diff": "<br>\n<br>\n<h2>{{'ABOUT.Copyright_notice_title' | translate}}</h2>\n-<p>{{'ABOUT.Copyright_notice_content' | translate}}</p>\n+<p [innerHtml]=\"'ABOUT.Copyright_notice_content' | translate\"></p>\n<h2>{{'ABOUT.Thanks_title' | translate}}</h2>\n<div>\n",
"new_path": "... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | style: no more <br> in about copyright notice | 1 | style | null |
821,205 | 21.03.2018 14:10:36 | 10,800 | e3a7943855ffbe96de697541025a90cf59194076 | feat: add tslint component option | [
{
"change_type": "MODIFY",
"diff": "@@ -491,7 +491,7 @@ USAGE\nOPTIONS\n--defaults use defaults for every setting\n--force overwrite existing files\n- --options=options (typescript|semantic-release|mocha)\n+ --options=options (typescript|tslint|semantic-release|mocha)\n```\n_See code: [src/commands/multi.ts... | TypeScript | MIT License | oclif/oclif | feat: add tslint component option (#63) | 1 | feat | null |
679,913 | 21.03.2018 14:24:18 | 0 | 4d3785f98f597101b529995ea8013d9df4f2c40e | feat(api): add error types & ctor fns | [
{
"change_type": "MODIFY",
"diff": "+import { illegalArgs } from \"../error\";\n+\n/**\n* Method property decorator factory. Augments original method with\n* deprecation message (via console), shown when method is invoked.\n@@ -11,7 +13,7 @@ export function deprecated(msg?: string, log = console.log): Metho... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(api): add error types & ctor fns | 1 | feat | api |
679,913 | 21.03.2018 14:24:48 | 0 | ea7b17520ac2521ffc696e00ee9d9e11b671a359 | refactor(atom): update error handling | [
{
"change_type": "MODIFY",
"diff": "import { IEquiv, Watch, Predicate } from \"@thi.ng/api/api\";\n+import { illegalState } from \"@thi.ng/api/error\";\nimport { IWatch } from \"@thi.ng/api/mixins/iwatch\";\nimport { Path, setIn, updateIn } from \"@thi.ng/paths\";\n@@ -20,7 +21,7 @@ export class Atom<T> imp... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(atom): update error handling | 1 | refactor | atom |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.