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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
67,476 | 13.01.2019 22:30:22 | -3,600 | 4bd398053b592cc872e54aa3879475842a490a6e | feat(dirty-checker): expose dirty check settings | [
{
"change_type": "MODIFY",
"diff": "@@ -125,7 +125,8 @@ export {\n} from './observation/computed-observer';\nexport {\nIDirtyChecker,\n- DirtyCheckProperty\n+ DirtyCheckProperty,\n+ DirtyCheckSettings\n} from './observation/dirty-checker';\nexport {\nIObjectObservationAdapter,\n",
"new_path": "packages/... | TypeScript | MIT License | aurelia/aurelia | feat(dirty-checker): expose dirty check settings | 1 | feat | dirty-checker |
67,476 | 13.01.2019 22:30:38 | -3,600 | b7ba3a7c64b3556a1f4af9495cddbd50c91a26d7 | test(dirty-checker): add unit tests | [
{
"change_type": "ADD",
"diff": "+import { PLATFORM, Reporter } from '@aurelia/kernel';\n+import { expect } from 'chai';\n+import {\n+ BasicConfiguration,\n+ DirtyCheckSettings,\n+ IDirtyChecker,\n+ LifecycleFlags\n+} from '../../src/index';\n+\n+describe('DirtyChecker', function() {\n+ afterEach(function (... | TypeScript | MIT License | aurelia/aurelia | test(dirty-checker): add unit tests | 1 | test | dirty-checker |
67,476 | 13.01.2019 22:32:06 | -3,600 | ed4803f3fe5b889f2e582bdfbe11c80a0458f1e7 | refactor(dirty-checker): rename disable to disabled | [
{
"change_type": "MODIFY",
"diff": "@@ -26,7 +26,7 @@ export const DirtyCheckSettings = {\n* Disable dirty-checking entirely. Properties that cannot be observed without dirty checking\n* or an adapter, will simply not be observed.\n*/\n- disable: false,\n+ disabled: false,\n/**\n* Default: `true`\n*\n@@ -44... | TypeScript | MIT License | aurelia/aurelia | refactor(dirty-checker): rename disable to disabled | 1 | refactor | dirty-checker |
67,476 | 13.01.2019 22:44:38 | -3,600 | 9f5148cbacc2468cf09705ee74b27390d990ee71 | docs: add acknowledgements | [
{
"change_type": "MODIFY",
"diff": "@@ -12,5 +12,8 @@ There are many great services and open source projects that have enabled us to b\n## Inspiration\n* Cherow - For amazing parser design and testing inspiration.\n+* Pixi.js - For a high-performance update/tick loop.\n+* MobX - For inspiration on synchrono... | TypeScript | MIT License | aurelia/aurelia | docs: add acknowledgements | 1 | docs | null |
67,476 | 13.01.2019 23:43:02 | -3,600 | f40c7b1abf9a95e3bcba2a1d87919b0ad06dfab5 | test(dirty-checker): fix tests | [
{
"change_type": "MODIFY",
"diff": "@@ -41,16 +41,16 @@ describe('DirtyChecker', function() {\nframesPerCheck: 2,\nframeChecks: [\n{ callCount: 0 },\n- { callCount: 0 },\n- { oldValue: '0', newValue: '2', callCount: 1, flags: expectedFlags },\n- { oldValue: '0', newValue: '2', callCount: 1, flags: expectedF... | TypeScript | MIT License | aurelia/aurelia | test(dirty-checker): fix tests | 1 | test | dirty-checker |
217,928 | 13.01.2019 23:54:30 | -3,600 | 688783ea22accff1b94b203c84ef0929637394e0 | chore: currency update 4.5 | [
{
"change_type": "MODIFY",
"diff": "@@ -9,76 +9,116 @@ export class TradeIconPipe implements PipeTransform {\npublic static TRADE_SOURCES_PRIORITIES = {\n// Just in case\n- 25: 25, // Wolf Mark\n- 29: 25, // MGP\n+ 25: 50, // Wolf Mark\n+ 29: 50, // MGP\n// Seals\n- 20: 23, // Storm\n- 21: 23, // Serpent\n-... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: currency update 4.5 | 1 | chore | null |
67,476 | 14.01.2019 01:01:12 | -3,600 | 53e3aff65b9b92724d8b233af5f0616b4ebca6ef | refactor(ticker): improve frameDelta rounding | [
{
"change_type": "MODIFY",
"diff": "@@ -418,7 +418,12 @@ export class Ticker {\nif (currentTime > this.lastTime) {\nelapsedMS = currentTime - this.lastTime;\n- this.frameDelta = (~~(elapsedMS * 0.6 + 0.5)) / 10; // round to nearest 1/10th of frame\n+ // ElapsedMS * 60 / 1000 is to get the frame delta as cal... | TypeScript | MIT License | aurelia/aurelia | refactor(ticker): improve frameDelta rounding | 1 | refactor | ticker |
447,451 | 14.01.2019 01:01:43 | 18,000 | 590c2047032acc5e9e99d2d301faadd56ae2be1a | doc: add sidebar tutorial | [
{
"change_type": "MODIFY",
"diff": "@@ -2,9 +2,8 @@ Here is an overview about how to use the Accordion page object:\nconst PageAccordion = require('react-rainbow-components/components/Accordion/pageObject');\n- const { ARROW_LEFT_KEY } = require('react-rainbow-components/integration/constants');\n-\nconst A... | JavaScript | MIT License | nexxtway/react-rainbow | doc: add sidebar tutorial (#529) | 1 | doc | null |
67,476 | 14.01.2019 02:31:25 | -3,600 | 9e2458c4b33f936c8c8a15ee87ab265d86e82a66 | test(dirty-checker): "fix" flaky raf tests | [
{
"change_type": "MODIFY",
"diff": "@@ -90,17 +90,14 @@ describe('DirtyChecker', function() {\n}\n];\n- // only run these tests in the browser for now due to timing subtleties with the RAF polyfill in nodejs\n- // TODO: make sure everything passes in node\n- if (typeof document !== 'undefined') {\nfor (cons... | TypeScript | MIT License | aurelia/aurelia | test(dirty-checker): "fix" flaky raf tests | 1 | test | dirty-checker |
67,476 | 14.01.2019 02:51:32 | -3,600 | fc1133340e219fecff6458b272bd27c7a696565a | test(dirty-checker): i give up | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ import {\nLifecycleFlags\n} from '../../src/index';\n-declare var document;\n+declare var BROWSER;\ndescribe('DirtyChecker', function() {\nafterEach(function () {\n@@ -23,6 +23,8 @@ describe('DirtyChecker', function() {\nconst expectedFlags = LifecycleFlag... | TypeScript | MIT License | aurelia/aurelia | test(dirty-checker): i give up | 1 | test | dirty-checker |
67,476 | 14.01.2019 04:56:24 | -3,600 | a9f98225ce141f6b9db1fedd7e2fe139fe59d747 | fix(dirty-checker): use tick counter instead of frameDelta counter and revert tests back to normal | [
{
"change_type": "MODIFY",
"diff": "@@ -90,8 +90,7 @@ export class DirtyChecker {\nif (DirtyCheckSettings.disabled) {\nreturn;\n}\n- this.elapsedFrames += delta;\n- if (this.elapsedFrames < DirtyCheckSettings.framesPerCheck) {\n+ if (++this.elapsedFrames < DirtyCheckSettings.framesPerCheck) {\nreturn;\n}\nt... | TypeScript | MIT License | aurelia/aurelia | fix(dirty-checker): use tick counter instead of frameDelta counter and revert tests back to normal | 1 | fix | dirty-checker |
67,476 | 14.01.2019 06:24:59 | -3,600 | 3b24e402f46141b69c59d2945d01b2387999524a | docs: add pixi.js license to acknowledgements file | [
{
"change_type": "MODIFY",
"diff": "@@ -17,3 +17,29 @@ There are many great services and open source projects that have enabled us to b\n* Inferno - For setting the bar and providing great ideas for efficiently patching the DOM.\n* Parcel - For providing great inspiration for GitHub issue and PR template in... | TypeScript | MIT License | aurelia/aurelia | docs: add pixi.js license to acknowledgements file | 1 | docs | null |
67,507 | 14.01.2019 08:14:36 | -3,600 | 4a82bd1f928bec9491f2ee01bb5e7a0d88128e7a | build: set defaultSeverity to error (with some exceptions) | [
{
"change_type": "MODIFY",
"diff": "\"linterOptions\": {\n\"exclude\": []\n},\n+ \"defaultSeverity\": \"warning\",\n\"rules\": {\n\"cognitive-complexity\": false,\n\"completed-docs\": false,\n",
"new_path": "packages/tslint-test.json",
"old_path": "packages/tslint-test.json"
},
{
"change_typ... | TypeScript | MIT License | aurelia/aurelia | build: set defaultSeverity to error (with some exceptions) | 1 | build | null |
67,507 | 14.01.2019 09:05:44 | -3,600 | 97b784910321f9e214d00698a99c422e9de25b66 | refactor(kernel): more DI typing | [
{
"change_type": "MODIFY",
"diff": "@@ -6,7 +6,7 @@ import { IResourceType } from './resource';\nconst slice = Array.prototype.slice;\n-export type ResolveCallback<T = any> = (handler?: IContainer, requestor?: IContainer, resolver?: IResolver) => T;\n+export type ResolveCallback<T = unknown> = (handler?: IC... | TypeScript | MIT License | aurelia/aurelia | refactor(kernel): more DI typing | 1 | refactor | kernel |
902,122 | 14.01.2019 09:45:05 | -3,600 | 311e470645dfded0302f607616b61e475467ef3f | build: setup scripts | [
{
"change_type": "MODIFY",
"diff": "\"@commitlint/config-conventional\": \"latest\",\n\"browser-sync\": \"latest\",\n\"concurrently\": \"latest\",\n+ \"eachdir\": \"latest\",\n\"finepack\": \"latest\",\n\"git-authors-cli\": \"latest\",\n\"gulp\": \"latest\",\n\"gulp-uglify\": \"latest\",\n\"husky\": \"lates... | JavaScript | MIT License | microlinkhq/browserless | build: setup scripts | 1 | build | null |
67,507 | 14.01.2019 09:49:52 | -3,600 | 1027ff61b9416f4f85a56de6fd1c9ad690f75f6a | chore(kernel): fix DI tests | [
{
"change_type": "MODIFY",
"diff": "@@ -14,6 +14,7 @@ import {\nResolverStrategy\n} from '../src/di';\nimport {\n+ Constructable,\nDI,\nIContainer,\nIDefaultableInterfaceSymbol,\n@@ -1128,25 +1129,25 @@ describe(`The classInvokers object`, () => {\nclass Dep6 {}\nit(`invoke() handles 0 deps`, () => {\n- con... | TypeScript | MIT License | aurelia/aurelia | chore(kernel): fix DI tests | 1 | chore | kernel |
217,922 | 14.01.2019 11:36:28 | -3,600 | 1ecc316556da0c52379ba45f64f99a51872a5c3e | chore: attempt for auto updater fix, will need more investigation | [
{
"change_type": "MODIFY",
"diff": "@@ -5,6 +5,7 @@ const Config = require('electron-config');\nconst config = new Config();\nconst isDev = require('electron-is-dev');\nconst log = require('electron-log');\n+log.transports.file.level = 'info';\nconst express = require('express');\nconst oauth = require('./o... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: attempt for auto updater fix, will need more investigation | 1 | chore | null |
67,476 | 14.01.2019 11:49:14 | -3,600 | 71db77d4169548c14a09272c51b55b8931e69498 | feat(binding): initial implementation for proxy observer | [
{
"change_type": "MODIFY",
"diff": "@@ -144,6 +144,9 @@ export {\nexport {\npropertyObserver\n} from './observation/property-observer';\n+export {\n+ ProxyObserver\n+} from './observation/proxy-observer';\nexport {\nSelfObserver\n} from './observation/self-observer';\n",
"new_path": "packages/runtime/sr... | TypeScript | MIT License | aurelia/aurelia | feat(binding): initial implementation for proxy observer | 1 | feat | binding |
902,122 | 14.01.2019 12:25:11 | -3,600 | 1b6455d7364c7a22211162edc83915978d2e705d | build: extract code into dependency | [
{
"change_type": "MODIFY",
"diff": "\"screenshot\",\n\"text\"\n],\n+ \"dependencies\": {\n+ \"require-one-of\": \"~1.0.0\"\n+ },\n\"devDependencies\": {\n\"@commitlint/cli\": \"latest\",\n\"@commitlint/config-conventional\": \"latest\",\n",
"new_path": "package.json",
"old_path": "package.json"
},... | JavaScript | MIT License | microlinkhq/browserless | build: extract code into dependency | 1 | build | null |
67,476 | 14.01.2019 12:51:53 | -3,600 | e08d8e3dbdb899887f9bbb5a9e59b97fc4809acf | test(proxy-observer): firefox again.. | [
{
"change_type": "MODIFY",
"diff": "@@ -49,7 +49,7 @@ describe('ProxyObserver', function() {\n{ t: ' new String()', createObj() { return new String(); } },\n{ t: ' new Error()', createObj() { return new Error(); } },\n{ t: ' new Foo()', createObj() { return new Foo(); } },\n- { t: ' new Uint8Array()', creat... | TypeScript | MIT License | aurelia/aurelia | test(proxy-observer): firefox again.. | 1 | test | proxy-observer |
71,397 | 14.01.2019 13:17:51 | -14,400 | b633505bcf1977e1870740f081ca6861d4b9b891 | feat(ecs): environment variables for LoadBalancedXxxService | [
{
"change_type": "MODIFY",
"diff": "@@ -61,6 +61,13 @@ export interface LoadBalancedEc2ServiceProps {\n* @default 1\n*/\ndesiredCount?: number;\n+\n+ /**\n+ * Environment variables to pass to the container\n+ *\n+ * @default No environment variables\n+ */\n+ environment?: { [key: string]: string };\n}\n/**\... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(ecs): environment variables for LoadBalancedXxxService (#1537) | 1 | feat | ecs |
217,922 | 14.01.2019 13:44:22 | -3,600 | c07ef3b6a7e7de84efc41e70c311a24736eef3c0 | feat(inventory): items in inventory are now sorted by id | [
{
"change_type": "MODIFY",
"diff": "@@ -33,7 +33,13 @@ export class Inventory {\ngetDisplay(): { id: number, icon: number, amount: number }[][] {\nconst display = [];\n- const grid = [...this.grid];\n+ const grid = [...this.grid].sort((a, b) => {\n+ if (a.id === b.id) {\n+ // If it's the same item, order by... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(inventory): items in inventory are now sorted by id | 1 | feat | inventory |
67,507 | 14.01.2019 14:00:35 | -3,600 | ebedf76d92749dc6aa6ebfb096af43ad0c51eefc | build: revert defaultSeverity back to warning for now | [
{
"change_type": "MODIFY",
"diff": "\"**/examples/**\"\n]\n},\n- \"defaultSeverity\": \"error\",\n+ \"defaultSeverity\": \"warning\",\n\"rules\": {\n/**\n* Security Rules. The following rules should be turned on because they find security issues\n",
"new_path": "tslint.json",
"old_path": "tslint.jso... | TypeScript | MIT License | aurelia/aurelia | build: revert defaultSeverity back to warning for now | 1 | build | null |
217,922 | 14.01.2019 14:01:23 | -3,600 | d1e25ba118b0c8aaab55036313e323be96e03c90 | feat(list): show a check mark next to panel name if it's collapsed because it's done | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ import { LayoutOrderService } from '../layout-order.service';\nimport { List } from '../../../modules/list/model/list';\nimport { Observable, of } from 'rxjs';\nimport { LayoutRowDisplay } from '../layout-row-display';\n-import { filter, map, shareReplay, ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(list): show a check mark next to panel name if it's collapsed because it's done | 1 | feat | list |
902,122 | 14.01.2019 14:08:59 | -3,600 | 2bcd6f444b3a094dcbeb1427144c45448c69230d | build: setup continous release | [
{
"change_type": "MODIFY",
"diff": "@@ -31,3 +31,4 @@ coverage\n############################\n.node_history\n.envrc\n+.envrc\n",
"new_path": ".gitignore",
"old_path": ".gitignore"
},
{
"change_type": "MODIFY",
"diff": "language: node_js\nnode_js:\n- - \"node\"\n+ - lts/*\n+ - node\n-afte... | JavaScript | MIT License | microlinkhq/browserless | build: setup continous release | 1 | build | null |
217,922 | 14.01.2019 14:16:14 | -3,600 | 4f2acb6a2192881548972eb6d67719348765e628 | feat(layout): recipe default order type is now JOB, followed by LEVEL | [
{
"change_type": "MODIFY",
"diff": "@@ -47,9 +47,9 @@ export class LayoutOrderService {\nconst bName: string = this.localizedData.getItem(b.id)[this.translate.currentLang];\nif (aJobId === bJobId) {\nif (aLevel > bLevel) {\n- return 1;\n- } else if (aLevel > bLevel) {\nreturn -1;\n+ } else if (aLevel > bLev... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(layout): recipe default order type is now JOB, followed by LEVEL | 1 | feat | layout |
902,122 | 14.01.2019 14:22:01 | -3,600 | b286a590f7b825ac311c242e7332c140c1f81124 | build: pretty pkg | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"@browserless/examples\",\n- \"private\": true,\n+ \"version\": \"\",\n\"devDependencies\": {\n- \"p-event\": \"latest\",\n\"browserless\": \"latest\",\n\"lodash\": \"latest\",\n+ \"p-event\": \"latest\",\n\"term-img\": \"latest\"\n- }\n+ },\n+ \"private\": ... | JavaScript | MIT License | microlinkhq/browserless | build: pretty pkg | 1 | build | null |
67,476 | 14.01.2019 14:45:30 | -3,600 | d07f412adab1eb6d8e33f96685035ee00f798ae7 | fix(proxy-observer): make sure array/set/map work | [
{
"change_type": "MODIFY",
"diff": "@@ -38,10 +38,19 @@ export class ProxyObserver<T extends object = object> implements ProxyObserver<T\n}\npublic get(target: T, p: PropertyKey, receiver?: unknown): unknown {\n+ let value: unknown;\nif (typeof receiver === 'object' && !proxies.has(receiver)) {\n- return Re... | TypeScript | MIT License | aurelia/aurelia | fix(proxy-observer): make sure array/set/map work | 1 | fix | proxy-observer |
67,507 | 14.01.2019 14:55:34 | -3,600 | 5cc16208ca1686b50a8cabefadcecf31aef8e883 | test: disable irrelevant linting rules for tests | [
{
"change_type": "MODIFY",
"diff": "\"exclude\": []\n},\n\"rules\": {\n+ \"cognitive-complexity\": false,\n+ \"completed-docs\": false,\n\"mocha-no-side-effect-code\": false,\n\"no-any\": false,\n\"no-big-function\": false,\n- \"no-empty\": false,\n\"no-implicit-dependencies\": false,\n\"no-invalid-template... | TypeScript | MIT License | aurelia/aurelia | test: disable irrelevant linting rules for tests | 1 | test | null |
791,834 | 14.01.2019 15:02:30 | 28,800 | 120d7690e23a707b42fc1aff5511acaca6729aad | report: restore old, disabled failed grouping test | [
{
"change_type": "MODIFY",
"diff": "@@ -215,16 +215,36 @@ describe('CategoryRenderer', () => {\nassert.ok(description.querySelector('a'), 'description contains converted markdown links');\n});\n- // TODO waiting for decision regarding this header\n- it.skip('renders the failed audits grouped by group', () =... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: restore old, disabled failed grouping test (#7006) | 1 | report | null |
217,922 | 14.01.2019 15:10:32 | -3,600 | 43993a3dc3d2fbd2a436ae9738c9f51a7bf70682 | feat: lists and rotations can now be opened using double click on name
closes | [
{
"change_type": "MODIFY",
"diff": "</nz-collapse-panel>\n<ng-template #panelHeader>\n<div class=\"panel-header\" nz-row fxLayout=\"row\" fxLayout.lt-md=\"column\" fxLayoutGap.lt-md=\"5px\">\n- <div nz-col nzSm=\"22\" nzMd=\"4\">\n+ <div nz-col nzSm=\"22\" nzMd=\"4\" (dblclick)=\"openList()\">\n{{_list.name... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: lists and rotations can now be opened using double click on name
closes #700 | 1 | feat | null |
217,922 | 14.01.2019 15:35:34 | -3,600 | 546dd60fbdcd5bb82a67f7056e2cc8894345936e | feat(gathering-location): added compact display toggle
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -14,6 +14,7 @@ import { FullpageMessageModule } from '../../modules/fullpage-message/fullpage-m\nimport { FlexLayoutModule } from '@angular/flex-layout';\nimport { FishingBaitModule } from '../../modules/fishing-bait/fishing-bait.module';\nimport { MaintenanceGuard } f... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(gathering-location): added compact display toggle
closes #684 | 1 | feat | gathering-location |
503,933 | 14.01.2019 16:06:11 | 18,000 | 0f7fef5808feef7a898dac6a62619b67f72989b5 | fix(Button): make aria-label optional prop | [
{
"change_type": "MODIFY",
"diff": "@@ -39,13 +39,8 @@ const propTypes = {\ntype: PropTypes.oneOf(Object.values(ButtonType)),\n/** Adds button variant styles */\nvariant: PropTypes.oneOf(Object.values(ButtonVariant)),\n- /** Adds accessible text to the button. Required for plain buttons */\n- 'aria-label': ... | TypeScript | MIT License | patternfly/patternfly-react | fix(Button): make aria-label optional prop (#1186)
#1184 | 1 | fix | Button |
447,441 | 14.01.2019 16:08:27 | 18,000 | 9f92554cb1dd4c5fdd210350f0f2d919e1a317d9 | feat: added table sorting | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,8 @@ Column.propTypes = {\nsortable: PropTypes.bool,\n/** Specifies the width of a column in pixels and make the column non-resizable */\nwidth: PropTypes.number,\n+ /** Specifies the width of a column in pixels and allows the column to be resizable */\n+ def... | JavaScript | MIT License | nexxtway/react-rainbow | feat: added table sorting (#517) | 1 | feat | null |
503,942 | 14.01.2019 16:22:23 | 18,000 | 080658f75926d6b74219f6bc0f5ec2e1d5f1cbef | chore(generator): update generator to support typescript files | [
{
"change_type": "MODIFY",
"diff": "@@ -32,17 +32,40 @@ function setPF4Generators(plop) {\n};\nreturn [\n{\n- base,\ndata,\n- type: 'addMany',\n- destination: join(reactCoreRoot, './src/{{typeDir}}/{{componentName}}/'),\n- templateFiles: join(base, '**/*.js')\n+ type: 'add',\n+ templateFile: join(base, 'com... | TypeScript | MIT License | patternfly/patternfly-react | chore(generator): update generator to support typescript files (#1143) | 1 | chore | generator |
679,913 | 14.01.2019 16:49:04 | 0 | 61e406384d0089c6b52666b74ca3e6df0bc10032 | feat(vectors): add addm/addmN, subm/submN | [
{
"change_type": "MODIFY",
"diff": "@@ -246,9 +246,13 @@ Functions for memory mapped, strided vectors (without requiring wrappers):\n### Multiply-add\n+- `addm` / `addm2` / `addm3` / `addm4`\n+- `addmN` / `addmN2` / `addmN3` / `addmN4`\n- `addW2` / `addW3` / `addW4` / `addW5`\n- `madd` / `madd2` / `madd3` /... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add addm/addmN, subm/submN | 1 | feat | vectors |
791,704 | 14.01.2019 17:05:53 | 28,800 | 534621ce3a1ce550e680870699ab4032916f93bc | report: add top-level section for passed audits that had warnings | [
{
"change_type": "MODIFY",
"diff": "\"message\": \"Values are estimated and may vary.\",\n\"description\": \"Disclaimer shown to users below the metric values (First Contentful Paint, Time to Interactive, etc) to warn them that the numbers they see will likely change slightly the next time they run Lighthou... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: add top-level section for passed audits that had warnings (#6989) | 1 | report | null |
724,155 | 14.01.2019 17:18:34 | -3,600 | 57aab162c11eae8eaf8999add2471128d606658f | docs(mocha-webpack): replace mocha-webpack by mochapack fork | [
{
"change_type": "MODIFY",
"diff": "## Testing Single-File Components with Mocha + webpack\n-> An example project for this setup is available on [GitHub](https://github.com/vuejs/vue-test-utils-mocha-webpack-example).\n-\nAnother strategy for testing SFCs is compiling all our tests via webpack and then run ... | JavaScript | MIT License | vuejs/vue-test-utils | docs(mocha-webpack): replace mocha-webpack by mochapack fork | 1 | docs | mocha-webpack |
217,922 | 14.01.2019 18:44:03 | -3,600 | 7f116f856a9423ef4f7d31e03f0d16e1404132f1 | fix(simulator): fixed a freeze happening in some cases with byregot's blessing | [
{
"change_type": "MODIFY",
"diff": "@@ -120,11 +120,17 @@ export abstract class CraftingAction {\nlet id = clvl - rlvl;\nlet ingenuityEntry = ingenuityData.find(row => row.Id === id);\nlet ingenuityMultiplier = ingenuityEntry === undefined ? undefined : ingenuityEntry[`${type}Ingenuity${level}`];\n- while (... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(simulator): fixed a freeze happening in some cases with byregot's blessing | 1 | fix | simulator |
67,476 | 14.01.2019 21:48:06 | -3,600 | f1e09cea4264721b9c6a4cac96f1fc734303af42 | refactor(proxy-observer): use string instead of symbol for raw prop | [
{
"change_type": "MODIFY",
"diff": "@@ -58,7 +58,7 @@ describe('template-compiler.select', () => {\n// vCurrent does not attempt to correct <select/> value\n// vNext shouldn't for compat\nexpect(select3.value).to.equal('3');\n- const observer3 = observerLocator.getObserver(select3, 'value') as SelectValueOb... | TypeScript | MIT License | aurelia/aurelia | refactor(proxy-observer): use string instead of symbol for raw prop | 1 | refactor | proxy-observer |
67,476 | 14.01.2019 22:14:10 | -3,600 | 2bbab4d11e0c20439a00c590ca89c596752d89e1 | refactor(proxy-observer): use direct variable instead of weakmap for checking proxy existence | [
{
"change_type": "MODIFY",
"diff": "@@ -333,6 +333,7 @@ export type PropertyObserver = IPropertyObserver<IIndexable, string>;\nexport type Collection = unknown[] | Set<unknown> | Map<unknown, unknown>;\ninterface IObservedCollection {\n$observer?: CollectionObserver;\n+ $raw?: this;\n}\n/**\n",
"new_pat... | TypeScript | MIT License | aurelia/aurelia | refactor(proxy-observer): use direct variable instead of weakmap for checking proxy existence | 1 | refactor | proxy-observer |
67,476 | 14.01.2019 22:18:13 | -3,600 | d5dbbcd4f89be68b75c57ea2ced16b7074cd0643 | chore(create-element): fix slip-up | [
{
"change_type": "MODIFY",
"diff": "@@ -62,7 +62,7 @@ export class RenderPlan<T extends INode = Node> {\n}\npublic createView(flags: LifecycleFlags, engine: IRenderingEngine, parentContext?: IRenderContext): IView {\n- return this.getViewFactory(engine, parentContext).create(flags);\n+ return this.getViewFa... | TypeScript | MIT License | aurelia/aurelia | chore(create-element): fix slip-up | 1 | chore | create-element |
67,476 | 14.01.2019 22:26:19 | -3,600 | 69f0eb2a6282d99310eacb813e1028816972596c | chore(runtime): fix/re-enable nodejs tests | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,7 @@ describe('The \"compose\" custom element', () => {\n{\ndescription: 'View',\ncreate(ctx: HTMLTestContext) {\n- return createViewFactory(ctx).create(0);\n+ return createViewFactory(ctx).create();\n}\n},\n{\n@@ -184,8 +184,8 @@ describe('The \"compose\" cu... | TypeScript | MIT License | aurelia/aurelia | chore(runtime): fix/re-enable nodejs tests | 1 | chore | runtime |
67,476 | 14.01.2019 23:53:24 | -3,600 | 86422ebcc4783063f65de782394fdb54917e375d | refactor(observation): initial wireup for proxy observation | [
{
"change_type": "MODIFY",
"diff": "@@ -161,8 +161,12 @@ export class Binding implements IPartialConnectableBinding {\nthis.updateTarget(sourceExpression.evaluate(flags, scope, this.locator), flags);\n}\nif (mode & toView) {\n+ if (flags & LifecycleFlags.useProxies) {\n+ sourceExpression.connect(flags, scop... | TypeScript | MIT License | aurelia/aurelia | refactor(observation): initial wireup for proxy observation | 1 | refactor | observation |
815,813 | 15.01.2019 01:56:18 | 18,000 | c7dd2ac1f5deb5821fe4fd5f10767a3e88078fd0 | feat: added autocorrect and autocapitalize inputs
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -150,6 +150,8 @@ map: {\n| [typeahead] | `Subject` | `-` | no | Custom autocomplete or advanced filter. |\n| typeToSearchText | `string` | `Type to search` | no | Set custom text when using Typeahead |\n| [virtualScroll] | `boolean` | false | no | Enable virtual scroll... | TypeScript | MIT License | ng-select/ng-select | feat: added autocorrect and autocapitalize inputs (#1017)
closes #994 | 1 | feat | null |
67,476 | 15.01.2019 02:36:33 | -3,600 | 63f9b890bbb7986137f1b3a42eea06c7d0da51f7 | chore(binding): add refactor note | [
{
"change_type": "MODIFY",
"diff": "@@ -61,6 +61,10 @@ export function $bindElement(this: Writable<ICustomElement>, flags: LifecycleFla\nconst scope = this.$scope;\n(scope as Writable<IScope>).parentScope = parentScope;\n+ // --------\n+ // TODO: refactor this: bind the non-component bindables before `bindi... | TypeScript | MIT License | aurelia/aurelia | chore(binding): add refactor note | 1 | chore | binding |
67,476 | 15.01.2019 02:36:54 | -3,600 | b21c2d7a2a531dceaad0c6412ebe4ca6a97b82ba | test(proxy-observer): add preliminary tests for proxy based observation | [
{
"change_type": "MODIFY",
"diff": "@@ -55,6 +55,9 @@ describe(`If/Else`, () => {\ninterface Spec {\nt: string;\n}\n+ interface UseProxiesSpec extends Spec {\n+ useProxies: boolean;\n+ }\ninterface DuplicateOperationSpec extends Spec {\nbindTwice: boolean;\nnewScopeForDuplicateBind: boolean;\n@@ -91,6 +94,1... | TypeScript | MIT License | aurelia/aurelia | test(proxy-observer): add preliminary tests for proxy based observation | 1 | test | proxy-observer |
679,913 | 15.01.2019 02:56:07 | 0 | 18aeb49c026fb75b35ab7a1d52e7f5d4f5bc5105 | build(vectors): add memoize dep | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"build\": \"yarn clean && yarn build:es6 && yarn build:bundle\",\n\"build:es6\": \"tsc --declaration\",\n- \"build:bundle\": \"../../scripts/bundle-module vectors3 api checks equiv errors math random transducers\",\n+ \"build:bundle\": \"../../scripts/bun... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build(vectors): add memoize dep | 1 | build | vectors |
679,913 | 15.01.2019 02:57:41 | 0 | d14c94b2c341deb0a18e924e3999f95c7918b30f | build: disable minification for UMD outputs | [
{
"change_type": "MODIFY",
"diff": "@@ -89,9 +89,7 @@ const build =\ninterop: false,\nsourcemap: true,\nsourcemapExcludeSources: true,\n- },\n- true,\n- true\n+ }\n);\nfs.writeFileSync(\".meta/size.json\", JSON.stringify({ esm, cjs, umd }));\n",
"new_path": "scripts/bundle-module",
"old_path": "scri... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: disable minification for UMD outputs | 1 | build | null |
679,913 | 15.01.2019 02:59:45 | 0 | a39811c6c0497f6b62972115a1b80538eb63c1bb | feat(hiccup-svg): add ellipse shape type, update convert() | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"build\": \"yarn clean && yarn build:es6 && yarn build:bundle\",\n\"build:es6\": \"tsc --declaration\",\n- \"build:bundle\": \"../../scripts/bundle-module hiccup-svg checks hiccup\",\n+ \"build:bundle\": \"../../scripts/bundle-module hiccupSvg checks hicc... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hiccup-svg): add ellipse shape type, update convert() | 1 | feat | hiccup-svg |
71,421 | 15.01.2019 07:05:49 | 28,800 | 24f521a306c384f8010eba958dd78d75d3ff23e9 | fix(aws-cdk): Java init template works on Windows | [
{
"change_type": "MODIFY",
"diff": "@@ -78,6 +78,7 @@ export async function execProgram(aws: SDK, config: Settings): Promise<cxapi.Syn\nconst proc = childProcess.spawn(commandLine[0], commandLine.slice(1), {\nstdio: ['ignore', 'inherit', 'inherit'],\ndetached: false,\n+ shell: true,\nenv: {\n...process.env,... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(aws-cdk): Java init template works on Windows (#1503) | 1 | fix | aws-cdk |
217,922 | 15.01.2019 09:28:00 | -3,600 | 018bf51e296b4a0f684e3b4286fa248bc8566cb0 | chore: update for code signin cert, let's hope this one will be better with auto update | [
{
"change_type": "MODIFY",
"diff": "},\n\"win\": {\n\"icon\": \"./tools/build/icon.ico\",\n- \"publisherName\": \"Miu Asakura\",\n+ \"publisherName\": \"FFXIV Teamcraft\",\n+ \"certificateSubjectName\": \"FFXIV Teamcraft\",\n\"publish\": [\n\"github\"\n]\n",
"new_path": "package.json",
"old_path": "... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: update for code signin cert, let's hope this one will be better with auto update | 1 | chore | null |
71,138 | 15.01.2019 09:58:09 | 0 | 4e46d3c1e1dc545fcb62a5fab93aec652739a228 | feat(s3): export bucket websiteURL
fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -180,7 +180,7 @@ export interface IBucket extends cdk.IConstruct {\n*/\nexport interface BucketImportProps {\n/**\n- * The ARN fo the bucket. At least one of bucketArn or bucketName must be\n+ * The ARN of the bucket. At least one of bucketArn or bucketName must be\n* ... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(s3): export bucket websiteURL (#1521) (#1544)
fixes #1521 | 1 | feat | s3 |
730,438 | 15.01.2019 10:13:29 | 28,800 | 4376a0228ce3239f49ce89ab12fe738cd1ff7fb6 | fix(widget-recents): padding for search input box for lower resolutions | [
{
"change_type": "MODIFY",
"diff": "@@ -684,7 +684,7 @@ export class RecentsWidget extends Component {\nname=\"pillSearchInput\"\nhtmlId=\"pillSearchInput\"\ntype=\"pill\"\n- inputSize=\"large-10\"\n+ inputSize=\"small-10\"\nonKeyUp={this.handleSpaceFilterInput}\nonChange={this.handleSpaceFilterInput}\nclea... | JavaScript | MIT License | webex/react-widgets | fix(widget-recents): padding for search input box for lower resolutions | 1 | fix | widget-recents |
71,320 | 15.01.2019 10:17:13 | 18,000 | e291d372163f7a7a8cc4e31cacfeda4e56e6f9b7 | fix(aws-s3-deployment): clean up tempfiles after deployment
It can get filled up and errors out with "no disk space left" if the lambda function is warm | [
{
"change_type": "MODIFY",
"diff": "@@ -5,6 +5,7 @@ import json\nimport json\nimport traceback\nimport logging\n+import shutil\nfrom uuid import uuid4\nfrom botocore.vendored import requests\n@@ -111,6 +112,7 @@ def s3_deploy(s3_source_zip, s3_dest):\n# sync from \"contents\" to destination\naws_command(\"s... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(aws-s3-deployment): clean up tempfiles after deployment (#1367)
It can get filled up and errors out with "no disk space left" if the lambda function is warm | 1 | fix | aws-s3-deployment |
679,913 | 15.01.2019 11:13:03 | 0 | 9eb6f2d2dfd925c60e66267eef902c65dd5162b0 | build: update rollup dev dep | [
{
"change_type": "MODIFY",
"diff": "\"nyc\": \"^13.1.0\",\n\"parcel-bundler\": \"^1.11.0\",\n\"rimraf\": \"^2.6.3\",\n- \"rollup\": \"^1.0.2\",\n+ \"rollup\": \"^1.1.0\",\n\"rollup-plugin-cleanup\": \"^3.1.0\",\n\"terser\": \"^3.14.1\",\n\"tslint\": \"^5.12.0\",\n",
"new_path": "package.json",
"old_... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update rollup dev dep | 1 | build | null |
679,913 | 15.01.2019 11:48:14 | 0 | b63d2589004a82d03358d4ac4c100f97da31fb98 | docs(transducers): update cat() docstring | [
{
"change_type": "MODIFY",
"diff": "@@ -3,17 +3,33 @@ import { compR } from \"../func/compr\";\nimport { isReduced, unreduced, ensureReduced } from \"../reduced\";\n/**\n- * Transducer to concatenate iterable values. If, during processing, the\n- * transducer is given a wrapped `reduced()` input iterable, i... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs(transducers): update cat() docstring | 1 | docs | transducers |
679,913 | 15.01.2019 11:49:53 | 0 | 89dafa45f62fa61b4aa2ec70fab33c13959fcd7a | build: update bundle-module script, disable minification in UMD outputs | [
{
"change_type": "MODIFY",
"diff": "@@ -89,9 +89,7 @@ const build =\ninterop: false,\nsourcemap: true,\nsourcemapExcludeSources: true,\n- },\n- true,\n- true\n+ }\n);\nfs.writeFileSync(\".meta/size.json\", JSON.stringify({ esm, cjs, umd }));\n",
"new_path": "scripts/bundle-module",
"old_path": "scri... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update bundle-module script, disable minification in UMD outputs | 1 | build | null |
791,690 | 15.01.2019 12:00:17 | 21,600 | 82819a03b3b6db037759881602ecf5aeb48b9fe7 | core(speedindex): scale scoring coefficients based on throttling | [
{
"change_type": "MODIFY",
"diff": "@@ -42,6 +42,19 @@ class LanternMetricArtifact {\nthrow new Error('COEFFICIENTS unimplemented!');\n}\n+ /**\n+ * Returns the coefficients, scaled by the throttling settings if needed by the metric.\n+ * Some lantern metrics (speed-index) use components in their estimate t... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(speedindex): scale scoring coefficients based on throttling (#7007) | 1 | core | speedindex |
807,849 | 15.01.2019 12:04:57 | 28,800 | 8bc966950aef5d7a5737f9e8260d50b759df79a7 | fix(options): Document negated boolean options explicitly | [
{
"change_type": "MODIFY",
"diff": "@@ -38,11 +38,15 @@ exports.builder = yargs => {\ntype: \"string\",\nrequiresArg: true,\n},\n- bootstrap: {\n+ \"no-bootstrap\": {\ngroup: \"Command Options:\",\n- describe: \"Automatically chain `lerna bootstrap`.\\nPass --no-bootstrap to avoid this.\",\n+ describe: \"Do... | JavaScript | MIT License | lerna/lerna | fix(options): Document negated boolean options explicitly | 1 | fix | options |
807,849 | 15.01.2019 12:06:11 | 28,800 | 68a06854cc2412a7473d0c075f22817ec1774cd5 | fix(exec): Tweak description | [
{
"change_type": "MODIFY",
"diff": "# `@lerna/exec`\n-> Run an arbitrary command in each package\n+> Execute an arbitrary command in each package\n## Usage\n",
"new_path": "commands/exec/README.md",
"old_path": "commands/exec/README.md"
},
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7... | JavaScript | MIT License | lerna/lerna | fix(exec): Tweak description | 1 | fix | exec |
807,849 | 15.01.2019 12:07:09 | 28,800 | bfa89bf5965d2a541a8442381d01df131179117b | fix(run): Re-order --npm-client in help output | [
{
"change_type": "MODIFY",
"diff": "@@ -17,6 +17,13 @@ exports.builder = yargs => {\ntype: \"string\",\n})\n.options({\n+ \"npm-client\": {\n+ group: \"Command Options:\",\n+ describe: \"Executable used to run scripts (npm, yarn, pnpm, ...).\",\n+ defaultDescription: \"npm\",\n+ type: \"string\",\n+ require... | JavaScript | MIT License | lerna/lerna | fix(run): Re-order --npm-client in help output | 1 | fix | run |
679,913 | 15.01.2019 13:02:43 | 0 | a75f192057f1d81c02254101da74ae237ee91a97 | docs: update/fix various readmes | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,7 @@ yarn add @thi.ng/bitstream\n## API\n```ts\n-import * as bits from \"@thi.ng/bitstream\";\n+import { BitInputStream, BitOutputStream } from \"@thi.ng/bitstream\";\n```\n### BitOutputStream\n@@ -47,7 +47,7 @@ but JS can only represent integers (w/o loss of... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs: update/fix various readmes | 1 | docs | null |
504,004 | 15.01.2019 13:27:27 | 18,000 | b259ff594491bdc3a3163eef1e11bb52a13f45f9 | doc(Form): Add Form component examples
fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -11,8 +11,9 @@ import { Icon } from '../Icon';\nimport { Col, Row, Grid } from '../Grid';\nimport { Button } from '../Button';\nimport { Modal } from '../Modal';\n-import { Form } from './index';\n+import { Form, FormGroup, FormControl, ControlLabel } from './index';\n... | TypeScript | MIT License | patternfly/patternfly-react | doc(Form): Add Form component examples (#1168)
fixes #1115 | 1 | doc | Form |
679,913 | 15.01.2019 15:07:49 | 0 | 66e45ccdfb9cca9ad84f088f48d1b8aba2059616 | build: update .npmignore files | [
{
"change_type": "MODIFY",
"diff": "+.cache\n+.meta\n+.nyc_output\n+*.gz\n+*.html\n+*.tgz\nbuild\ncoverage\ndev\ndoc\n-export\nsrc*\ntest\n-.nyc_output\ntsconfig.json\n-*.tgz\n-*.html\n",
"new_path": "packages/color/.npmignore",
"old_path": "packages/color/.npmignore"
},
{
"change_type": "MO... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update .npmignore files | 1 | build | null |
71,138 | 15.01.2019 15:08:57 | 0 | 28a423d4a04178b4514f1f33cbe569bfa1766a6b | feat(s3): imported bucket format option for website URL format
Depending on the region, the format of the website URL may be different. Add a switch for it. | [
{
"change_type": "MODIFY",
"diff": "@@ -206,6 +206,14 @@ export interface BucketImportProps {\n* @default Inferred from bucket name\n*/\nbucketWebsiteUrl?: string;\n+\n+ /**\n+ * The format of the website URL of the bucket. This should be true for\n+ * regions launched since 2014.\n+ *\n+ * @default false\n... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(s3): imported bucket format option for website URL format (#1550)
Depending on the region, the format of the website URL may be different. Add a switch for it. | 1 | feat | s3 |
503,942 | 15.01.2019 15:10:10 | 18,000 | 752adae7f3b668984628d27f590a72025ba5c45c | feat(Chip): Add the Chip component to PF4 | [
{
"change_type": "ADD",
"diff": "+import { SFC, HTMLProps } from 'react';\n+import { Omit, OneOf } from '../../typeUtils';\n+import { TooltipPosition } from '../Tooltip';\n+\n+export interface ChipProps extends HTMLProps<HTMLDivElement> {\n+ children: string;\n+ closeBtnAriaLabel: string;\n+ isOverflowChip:... | TypeScript | MIT License | patternfly/patternfly-react | feat(Chip): Add the Chip component to PF4 (#1180) | 1 | feat | Chip |
273,701 | 15.01.2019 15:25:33 | 25,200 | 1083768a0dadd2ec47ffdca1f496ca34a4f121c6 | feat(drupal): support for JSON:API module | [
{
"change_type": "ADD",
"diff": "+\n+\n+## @gridsome/source-drupal\n+> Drupal source for Gridsome. This package is under development and API might change before v1 is released.\n+\n+### Quick Overview\n+\n+This is the source plugin for pulling in data from the Drupal content management system for Gridsome. ... | JavaScript | MIT License | gridsome/gridsome | feat(drupal): support for JSON:API module (#41) | 1 | feat | drupal |
273,683 | 15.01.2019 15:40:51 | -3,600 | c81fee4d3e41a855ebb0b3823aef6f7eaf386f2f | fix(webpack): transpile custom blocks | [
{
"change_type": "MODIFY",
"diff": "<template>\n- <div>\n+ <div class=\"footer\">\n<span>{{ $static.metaData.myTest.value }}</span>\n<span>{{ $static.metaData.pluginValue }}</span>\n</div>\n",
"new_path": "gridsome/__tests__/__fixtures__/project-basic/src/components/Footer.vue",
"old_path": "gridsom... | JavaScript | MIT License | gridsome/gridsome | fix(webpack): transpile custom blocks (#130) | 1 | fix | webpack |
273,683 | 15.01.2019 15:43:24 | -3,600 | 6e794abf4161393fd855d7f4756cf2362f04133f | fix(webpack): cache graphql loader results | [
{
"change_type": "MODIFY",
"diff": "const path = require('path')\n+const LRU = require('lru-cache')\n+const hash = require('hash-sum')\nconst validateQuery = require('../../graphql/utils/validateQuery')\n+const cache = new LRU({ max: 1000 })\n+\nmodule.exports = function (source, map) {\nconst isDev = proce... | JavaScript | MIT License | gridsome/gridsome | fix(webpack): cache graphql loader results | 1 | fix | webpack |
730,412 | 15.01.2019 16:06:21 | 0 | 9cdf4a2fced43e46c9938e96e7614c60a2a5473f | chore(release): 0.1.408 | [
{
"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.1.408\"></a>\n+## [0.1.408](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.408 | 1 | chore | release |
503,950 | 15.01.2019 16:08:27 | -7,200 | 3f79c484533591291b0941bb2efb771bdcb4799f | fix(Login Page): fix settings visibility | [
{
"change_type": "MODIFY",
"diff": "@@ -6,12 +6,12 @@ import { FormGroup } from '../../../../index';\nimport ForgotPassword from './LoginCardForgotPassword';\nconst LoginCardSettings = ({ rememberMe, forgotPassword, className, ...props }) =>\n- (rememberMe || forgotPassword) && (\n+ rememberMe.label || forg... | TypeScript | MIT License | patternfly/patternfly-react | fix(Login Page): fix settings visibility (#1171) | 1 | fix | Login Page |
67,476 | 15.01.2019 16:11:45 | -3,600 | 5aead83a5e10daec547533564501bfeea03f7ea7 | feat(observation): add tracing to observer constructors | [
{
"change_type": "MODIFY",
"diff": "+import { Tracer } from '@aurelia/kernel';\nimport { ILifecycle } from '../lifecycle';\nimport { CollectionKind, ICollectionObserver, IndexMap, IObservedArray, LifecycleFlags } from '../observation';\nimport { collectionObserver } from './collection-observer';\n@@ -364,6 ... | TypeScript | MIT License | aurelia/aurelia | feat(observation): add tracing to observer constructors | 1 | feat | observation |
67,476 | 15.01.2019 17:33:51 | -3,600 | bda96a9b6b165abb00304d8b514cd99218a8bc84 | test(di): test local registrations | [
{
"change_type": "ADD",
"diff": "+import { TestContext } from '../util';\n+import { CustomElementResource, Aurelia, ICustomElement, IDOM, IProjectorLocator, IRenderingEngine, INode, LifecycleFlags, Scope, BindingContext } from '@aurelia/runtime';\n+import { expect } from 'chai';\n+import { InterfaceSymbol }... | TypeScript | MIT License | aurelia/aurelia | test(di): test local registrations | 1 | test | di |
503,950 | 15.01.2019 17:36:02 | -7,200 | 91c33bfad3cbceba1dda9d07ae5f8cfab9cad315 | fix(DualList): de-Select items after the transition between lists. | [
{
"change_type": "MODIFY",
"diff": "@@ -186,22 +186,31 @@ class DualList extends React.Component {\nif (sideItemsWithRemainChildren.length > 0) {\nsideItems.push(...sideItemsWithRemainChildren);\n}\n- sideItems = arrangeArray({ ...sideState, items: sideItems });\n- otherSideItems = arrangeArray({ ...otherSi... | TypeScript | MIT License | patternfly/patternfly-react | fix(DualList): de-Select items after the transition between lists. (#1178) | 1 | fix | DualList |
503,950 | 15.01.2019 18:08:56 | -7,200 | 378e44e7d13919f31c7e344b7d486e29699b0100 | fix(DualList): refactor helpers functions signatures | [
{
"change_type": "MODIFY",
"diff": "@@ -39,19 +39,19 @@ class DualList extends React.Component {\n[side]: { selectCount: originalSelectCount, items: originalItems, isSortAsc, filterTerm }\n} = this.props;\nconst items = cloneDeep(originalItems);\n- const item = getItem({ isSortAsc, position, items, parentPo... | TypeScript | MIT License | patternfly/patternfly-react | fix(DualList): refactor helpers functions signatures (#1190) | 1 | fix | DualList |
447,451 | 15.01.2019 19:15:54 | 18,000 | bc4a7c0f217a39f45b21327cd6cfd9edc8e689c4 | chore: update firebase-tools to v6.1.1 | [
{
"change_type": "MODIFY",
"diff": "\"eslint-plugin-react\": \"^7.1.0\",\n\"eslint-plugin-webdriverio\": \"^1.0.1\",\n\"file-loader\": \"^1.1.11\",\n- \"firebase-tools\": \"^4.2.1\",\n+ \"firebase-tools\": \"6.1.1\",\n\"glob\": \"^7.1.3\",\n\"jest\": \"^23.4.2\",\n\"jest-axe\": \"^3.1.0\",\n",
"new_path... | JavaScript | MIT License | nexxtway/react-rainbow | chore: update firebase-tools to v6.1.1 (#531) | 1 | chore | null |
730,412 | 15.01.2019 19:30:57 | 0 | a21d66401dab8832bbb5f4cf262fb15575b6dbc9 | chore(release): 0.1.409 | [
{
"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.1.409\"></a>\n+## [0.1.409](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.409 | 1 | chore | release |
724,000 | 15.01.2019 22:07:45 | 0 | c13cac3856b3202cc40d9a6ef975cf9655d713ce | docs: use lowercase redirects | [
{
"change_type": "MODIFY",
"diff": "/en/* /:splat\n/api/mount /api/#mount\n-/api/shallowMount /api/#shallowmount\n-/api/createLocalVue /api/#createlocalvue\n+/api/shallowmount /api/#shallowmount\n+/api/createlocalvue /api/#createlocalvue\n/api/config /api/#config\n/api/wrapper/isvisible /api/wrapper/#isvisi... | JavaScript | MIT License | vuejs/vue-test-utils | docs: use lowercase redirects | 1 | docs | null |
531,793 | 15.01.2019 22:12:23 | 0 | e1f9686e3f1dcc39613370530ab4e392d81dce4c | feat(backend): allow stripping annotations
This allows same filtering we already have with labels. Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -140,12 +140,21 @@ annotations:\nhidden: bool\nhidden: list of strings\nvisible: list of strings\n+ keep: list of strings\n+ strip: list of strings\n```\n- `default:hidden` - bool, true if all annotations should be hidden by default.\n- `hidden` - list of annotations t... | TypeScript | Apache License 2.0 | prymitive/karma | feat(backend): allow stripping annotations
This allows same filtering we already have with labels. Fixes #312 | 1 | feat | backend |
273,683 | 15.01.2019 23:17:30 | -3,600 | ffb29eee33477b68d0b14d9e42d445c0e807ccb0 | fix(graphql): merge ref fields correctly | [
{
"change_type": "MODIFY",
"diff": "@@ -26,6 +26,7 @@ test('infer types from node fields', () => {\nnumberList: [10],\nfloatList: [1.2],\nextendObj: {},\n+ refs: [],\nsimpleObj: {\nfoo: 'bar'\n},\n@@ -43,6 +44,9 @@ test('infer types from node fields', () => {\nemptyList: [],\nemptyObj: {},\nemptyString: '',... | JavaScript | MIT License | gridsome/gridsome | fix(graphql): merge ref fields correctly (#128, #129) | 1 | fix | graphql |
447,451 | 15.01.2019 23:30:16 | 18,000 | defb0271f51e9a251ab12080f3a84ae3587ea2fc | chore: create .env file in ci | [
{
"change_type": "MODIFY",
"diff": "@@ -87,6 +87,14 @@ jobs:\n# fallback to using the latest cache if no exact match is found\n- v1-dependencies-\n+ - run:\n+ name: Create .env file\n+ command: |\n+ touch .env;\n+ echo REACT_APP_GA_ID=$REACT_APP_GA_ID >> .env;\n+ echo REACT_APP_GOOGLE_MAPS_APIKEY=$REACT_APP... | JavaScript | MIT License | nexxtway/react-rainbow | chore: create .env file in ci (#532) | 1 | chore | null |
273,683 | 15.01.2019 23:37:46 | -3,600 | b31fb2acbe2f0258c46f00f0dbbb69db651a0eae | chore(drupal): update readme | [
{
"change_type": "MODIFY",
"diff": "+# @gridsome/source-drupal\n-\n-## @gridsome/source-drupal\n-> Drupal source for Gridsome. This package is under development and API might change before v1 is released.\n+> Drupal source for Gridsome.\n### Quick Overview\n@@ -13,7 +12,8 @@ This is the source plugin for pu... | JavaScript | MIT License | gridsome/gridsome | chore(drupal): update readme | 1 | chore | drupal |
273,683 | 16.01.2019 00:02:35 | -3,600 | 6b38b7a10b21df1bba6e1741a9f187f3dba9cd23 | refactor(drupal): move code to plugin file | [
{
"change_type": "MODIFY",
"diff": "-const DrupalSource = require('./lib/DrupalSource')\n+const axios = require('axios')\n+const { forEach, uniq } = require('lodash')\n+const { DEFAULT_EXCLUDES } = require('./lib/constants')\n+const Entity = require('./lib/Entity')\n+\n+class DrupalSource {\n+ // defaultOpt... | JavaScript | MIT License | gridsome/gridsome | refactor(drupal): move code to plugin file | 1 | refactor | drupal |
71,326 | 16.01.2019 00:19:30 | -32,400 | ff96f3f8703a583f494d9e29552d59ddc1c8195d | feat(aws-ecs): add additional configuration to Volume | [
{
"change_type": "MODIFY",
"diff": "@@ -141,7 +141,7 @@ export class TaskDefinition extends cdk.Construct {\n/**\n* All volumes\n*/\n- private readonly volumes: CfnTaskDefinition.VolumeProperty[] = [];\n+ private readonly volumes: Volume[] = [];\n/**\n* Execution role for this task definition\n@@ -345,8 +34... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(aws-ecs): add additional configuration to Volume (#1357) | 1 | feat | aws-ecs |
679,913 | 16.01.2019 02:12:17 | 0 | 446a183275445e29b73b83c633545ad532df3394 | fix(vectors): minor update opt arg in VecOp* | [
{
"change_type": "MODIFY",
"diff": "@@ -58,11 +58,11 @@ export type VecOpVVVVNN = (out: Vec, a: ReadonlyVec, b: ReadonlyVec, c: Readonly\nexport type VecOpVO<T> = (out: Vec, a: ReadonlyVec, b?: T) => Vec;\nexport type VecOpOO<A, B> = (out: Vec, a?: A, b?: B) => Vec;\nexport type VecOpOOO<A, B, C> = (out: Ve... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(vectors): minor update opt arg in VecOp* | 1 | fix | vectors |
679,913 | 16.01.2019 02:12:38 | 0 | 18437026afa739a2b8e1da8966e8229d08c637ae | perf(vectors): update copy() | [
{
"change_type": "MODIFY",
"diff": "import { implementsFunction } from \"@thi.ng/checks\";\nimport { ReadonlyVec, Vec } from \"./api\";\n+import { set } from \"./set\";\nexport const copy =\n(v: ReadonlyVec): Vec =>\nimplementsFunction(v, \"copy\") ?\n(<any>v).copy() :\n- [...v];\n+ set([], v);\n",
"new... | TypeScript | Apache License 2.0 | thi-ng/umbrella | perf(vectors): update copy() | 1 | perf | vectors |
679,913 | 16.01.2019 02:14:35 | 0 | fea8fbe3e8e551f8a2f857f01a212cb7599dc673 | feat(geom): re-add arc, cubic, quadratic ops, splitAt & other ops | [
{
"change_type": "MODIFY",
"diff": "import { ICopy, IObjectOf, IToHiccup } from \"@thi.ng/api\";\nimport { isNumber } from \"@thi.ng/checks\";\nimport { equiv } from \"@thi.ng/equiv\";\n+import { cossin } from \"@thi.ng/math\";\nimport {\n- copy,\n- maddN,\n+ add2,\n+ maddN2,\n+ mul2,\nReadonlyVec,\n+ rotat... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(geom): re-add arc, cubic, quadratic ops, splitAt & other ops | 1 | feat | geom |
679,913 | 16.01.2019 02:51:17 | 0 | 4effc0ec96fa2ae0290c96979d5182ad839aba15 | feat(examples): add hdom-inner-html demo | [
{
"change_type": "ADD",
"diff": "+.cache\n+out\n+node_modules\n+yarn.lock\n+*.js\n",
"new_path": "examples/hdom-inner-html/.gitignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+# hdom-inner-html\n+\n+[Live demo](http://demo.thi.ng/umbrella/hdom-inner-html/)\n+\n+Please refer... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add hdom-inner-html demo #67 | 1 | feat | examples |
679,913 | 16.01.2019 03:01:42 | 0 | 2cc682a68430be73e0399b629ccd27a78dd3e221 | fix(examples): add release() lifecycle method (hdom-inner-html) | [
{
"change_type": "MODIFY",
"diff": "@@ -18,6 +18,11 @@ const innerHtmlWrapper =\nthis.prev = body;\n}\nreturn [\"div\"];\n+ },\n+ release() {\n+ this.el.innerHTML = \"\";\n+ delete this.prev;\n+ delete this.el;\n}\n});\n",
"new_path": "examples/hdom-inner-html/src/index.ts",
"old_path": "examples/hd... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(examples): add release() lifecycle method (hdom-inner-html) | 1 | fix | examples |
67,476 | 16.01.2019 03:19:32 | -3,600 | 845dfc4547a4b78634757f88ce9461080bd9cbd4 | refactor(viewport-custom-element): directly implement custom element behavior | [
{
"change_type": "MODIFY",
"diff": "-import { Constructable, IContainer, InterfaceSymbol } from '@aurelia/kernel';\n-import { bindable, CustomElementResource, INode, LifecycleFlags } from '@aurelia/runtime';\n+import { Constructable, IContainer, InterfaceSymbol, PLATFORM, Registration, Writable } from '@aur... | TypeScript | MIT License | aurelia/aurelia | refactor(viewport-custom-element): directly implement custom element behavior | 1 | refactor | viewport-custom-element |
67,476 | 16.01.2019 03:25:17 | -3,600 | 85bf49ad6d6fea7f95a2bd1142f67cc3631cb31f | chore(viewport): cleanup a leftover | [
{
"change_type": "MODIFY",
"diff": "@@ -99,27 +99,7 @@ export class ViewportCustomElement {\nconst templateFactory = parentContext.get(ITemplateFactory);\nconst renderContext = createRenderContext(dom, parentContext, null, null);\n- const definition: TemplateDefinition = {\n- name: 'au-viewport',\n- templat... | TypeScript | MIT License | aurelia/aurelia | chore(viewport): cleanup a leftover | 1 | chore | viewport |
67,507 | 16.01.2019 08:23:07 | -3,600 | 12340d3bbb8d1dad1a906dcbaad944ddb60ebb25 | chore(router): make some properties optional | [
{
"change_type": "MODIFY",
"diff": "@@ -47,7 +47,7 @@ export class HistoryBrowser {\nprivate isReplacing: boolean;\nprivate isRefreshing: boolean;\n- private ignorePathChange: ((value?: {} | PromiseLike<{}>) => void) | null;\n+ private ignorePathChange?: ((value?: {} | PromiseLike<{}>) => void) | null;\ncon... | TypeScript | MIT License | aurelia/aurelia | chore(router): make some properties optional | 1 | chore | router |
67,507 | 16.01.2019 10:17:28 | -3,600 | 2d7bad89d3bce94ca00a532556021299ca47dea5 | refactor: fix bantypes in tests | [
{
"change_type": "MODIFY",
"diff": "@@ -303,7 +303,7 @@ export class Router {\n}\n}\n- // public view(views: Object, title?: string, data?: Object): Promise<void> {\n+ // public view(views: string | Record<string, Viewport>, title?: string, data?: Record<string, unknown>): Promise<void> {\n// console.log('R... | TypeScript | MIT License | aurelia/aurelia | refactor: fix bantypes in tests | 1 | refactor | null |
217,922 | 16.01.2019 10:21:43 | -3,600 | 0e4f21e8475baa7ba5a01d2b287b5e809f893381 | fix(alarms): alarms now show only the first 8 alarms to avoid spamming the UI | [
{
"change_type": "MODIFY",
"diff": "@@ -156,6 +156,9 @@ export class AuthEffects {\n@Effect()\nupdateCharactersList$ = this.actions$.pipe(\nofType(AuthActionTypes.AddCharacter, AuthActionTypes.UserFetched),\n+ distinctUntilChanged((userFetched: UserFetched, previousUserFetched: UserFetched) => {\n+ return (... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): alarms now show only the first 8 alarms to avoid spamming the UI | 1 | fix | alarms |
217,922 | 16.01.2019 10:44:55 | -3,600 | e2863b3d97a0a91486ef4e559be950c3bdb783a1 | fix(layout): layout export now takes the whole layout into account, not only panels | [
{
"change_type": "MODIFY",
"diff": "@@ -13,7 +13,6 @@ import { filter, map, shareReplay, withLatestFrom } from 'rxjs/operators';\nimport { FilterResult } from '../filter-result';\nimport { ListLayout } from '../list-layout';\nimport { LayoutService } from '../layout.service';\n-import { LayoutRow } from '..... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(layout): layout export now takes the whole layout into account, not only panels | 1 | fix | layout |
217,922 | 16.01.2019 11:36:19 | -3,600 | d743bcb90cc4705d6e4782210b1f4853eb9cd234 | feat(lists): community lists and list panels are now lazy loading | [
{
"change_type": "MODIFY",
"diff": "@@ -37,6 +37,7 @@ import { HttpClient } from '@angular/common/http';\nimport { DomSanitizer, SafeUrl } from '@angular/platform-browser';\nimport { CustomLinksFacade } from './modules/custom-links/+state/custom-links.facade';\nimport { ObservableMedia } from '@angular/flex... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(lists): community lists and list panels are now lazy loading | 1 | feat | lists |
679,912 | 16.01.2019 13:32:55 | -7,200 | c3762e97b90b6e2fee6b0da57b7ee07bd842c27a | fix(cache): TLRU: expected behavior on getSet() | [
{
"change_type": "MODIFY",
"diff": "@@ -78,6 +78,14 @@ export class TLRUCache<K, V> extends LRUCache<K, V> {\nreturn value;\n}\n+ getSet(key: K, retrieve: () => Promise<V>, ttl = this.opts.ttl): Promise<V> {\n+ const e = this.get(key);\n+ if (e) {\n+ return Promise.resolve(e);\n+ }\n+ return retrieve().then... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(cache): TLRU: expected behavior on getSet() | 1 | fix | cache |
679,913 | 16.01.2019 14:20:17 | 0 | e81d8c31740577cf8ba4a62ea27d6eb06d12f804 | feat(vectors): update/split angleBetween for 2d/3d | [
{
"change_type": "MODIFY",
"diff": "-import { absTheta } from \"@thi.ng/math\";\nimport { ReadonlyVec } from \"./api\";\nimport { dot } from \"./dot\";\nimport { mag } from \"./mag\";\n+import { cross2 } from \"./cross\";\nexport const angleRatio =\n(a: ReadonlyVec, b: ReadonlyVec) =>\ndot(a, b) / (mag(a) *... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): update/split angleBetween for 2d/3d | 1 | feat | vectors |
217,922 | 16.01.2019 14:37:51 | -3,600 | d7554347e7efd71ac3e3804b1dab2e5a2d8e85a2 | chore(extraction): added docs regarding crafting log | [
{
"change_type": "MODIFY",
"diff": "@@ -122,7 +122,7 @@ namespace Extractor\nstatic void ExtractNpcs(Localize localize, ARealmReversed realm)\n{\n- JObject npcs = JObject.Parse(File.ReadAllText(@\"..\\..\\..\\..\\xivdb-mapper\\output\\npcs.json\"));\n+ JObject npcs = JObject.Parse(File.ReadAllText(@\"..\\..... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(extraction): added docs regarding crafting log | 1 | chore | extraction |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.