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,507 | 04.10.2019 22:47:29 | -7,200 | 45863d7cbeaaaf8c582721770ccca8cd933ef80f | chore: lint no-trailing-spaces | [
{
"change_type": "MODIFY",
"diff": "@@ -123,6 +123,7 @@ module.exports = {\n'no-throw-literal': 'error',\n'no-undef-init': 'error',\n'no-useless-escape': 'error',\n+ 'no-trailing-spaces': 'error',\n'prefer-object-spread': 'error',\n'prefer-regex-literals': 'error',\n'quote-props': ['error', 'consistent'],\n... | TypeScript | MIT License | aurelia/aurelia | chore: lint no-trailing-spaces | 1 | chore | null |
531,793 | 04.10.2019 23:03:10 | -3,600 | d7c15240f176adb2a0810d3b2b8be479eabe90b7 | feat(backend): allow configuring defaults for the UI | [
{
"change_type": "MODIFY",
"diff": "@@ -79,10 +79,17 @@ func index(c *gin.Context) {\n}\nfiltersB64 := base64.StdEncoding.EncodeToString(filtersJSON)\n+ defaults, err := json.Marshal(config.Config.UI)\n+ if err != nil {\n+ panic(err)\n+ }\n+ defaultsB64 := base64.StdEncoding.EncodeToString(defaults)\n+\nc.H... | TypeScript | Apache License 2.0 | prymitive/karma | feat(backend): allow configuring defaults for the UI | 1 | feat | backend |
531,793 | 04.10.2019 23:04:53 | -3,600 | f43d9ece7d70da3fd7ed752671e27494b917455f | feat(ui): ui default settings are populated from the config file | [
{
"change_type": "MODIFY",
"diff": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n- <meta charset=\"utf-8\">\n- <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\n- <meta name=\"theme-color\" content=\"#000000\">\n+ <meta charset=\"utf-8\" />\n+ <meta\n+ name=\"viewpo... | TypeScript | Apache License 2.0 | prymitive/karma | feat(ui): ui default settings are populated from the config file | 1 | feat | ui |
531,793 | 04.10.2019 23:05:08 | -3,600 | e749c1b4b31171de7d3a5645f01bf15650b876f6 | feat(demo): set UI defaults | [
{
"change_type": "MODIFY",
"diff": "@@ -70,3 +70,10 @@ silenceForm:\n- job\n- severity\n- region\n+ui:\n+ refresh: 10s\n+ hideFiltersWhenIdle: true\n+ colorTitlebar: false\n+ minimalGroupWidth: 420\n+ alertsPerGroup: 5\n+ collapseGroups: collapsedOnMobile\n",
"new_path": "demo/karma.yaml",
"old_path... | TypeScript | Apache License 2.0 | prymitive/karma | feat(demo): set UI defaults | 1 | feat | demo |
531,793 | 04.10.2019 23:34:52 | -3,600 | ca3e9520d9a740041d2fa28c53a55d203354b36a | chore(ui): update package-lock.json | [
{
"change_type": "MODIFY",
"diff": "\"integrity\": \"sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A==\"\n},\n\"@types/node\": {\n- \"version\": \"12.7.9\",\n- \"resolved\": \"https://registry.npmjs.org/@types/node/-/node-12.7.9.tgz\",\n- \"integrity\": \"sha512... | TypeScript | Apache License 2.0 | prymitive/karma | chore(ui): update package-lock.json | 1 | chore | ui |
67,479 | 04.10.2019 23:38:49 | -36,000 | 5ec77db0828b453bcba767bbd9d46947263b8a2b | chore(tests): remove invalid code | [
{
"change_type": "MODIFY",
"diff": "@@ -387,7 +387,6 @@ describe('[repeat.contextual-prop.spec.ts]', function () {\nCloneValueConverter\n);\n- let didThrow = false;\nlet component: Root;\ntry {\nau.app({ host, component: App });\n@@ -395,7 +394,6 @@ describe('[repeat.contextual-prop.spec.ts]', function () {... | TypeScript | MIT License | aurelia/aurelia | chore(tests): remove invalid code | 1 | chore | tests |
531,793 | 05.10.2019 00:27:05 | -3,600 | f77a5c1a59eb83adcdd8c7c81b2fa590417c0900 | fix(ci): filter out local PR builds on Travis | [
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,7 @@ jobs:\ninclude:\n- stage: Test\nname: Test Go code\n+ if: (repo = prymitive/karma AND type != pull_request) OR (repo != prymitive/karma AND type = pull_request)\n<<: *DEFAULTS_GO\nbefore_script:\n- travis_retry make mock-assets\n@@ -37,6 +38,7 @@ jobs:\n... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ci): filter out local PR builds on Travis | 1 | fix | ci |
67,507 | 05.10.2019 00:45:40 | -7,200 | 2cad42cdde91396efbde92867cf47aa84bb7e88b | chore: lint no-extra-semi | [
{
"change_type": "MODIFY",
"diff": "@@ -106,6 +106,7 @@ module.exports = {\n'no-constant-condition': 'error',\n'no-eval': 'error',\n'no-extra-bind': 'error',\n+ 'no-extra-semi': 'error',\n'no-import-assign': 'error',\n'no-new-func': 'error',\n'no-new-wrappers': 'error',\n@@ -187,7 +188,6 @@ module.exports =... | TypeScript | MIT License | aurelia/aurelia | chore: lint no-extra-semi | 1 | chore | null |
679,913 | 05.10.2019 05:52:39 | 25,200 | 21ff930e3c902051ed937e9294d71dd25688d729 | feat(vectors): add fill(), add MultiVecOp.impl(), update vop() | [
{
"change_type": "MODIFY",
"diff": "@@ -54,8 +54,27 @@ export interface VectorConstructor<T> {\n}\nexport interface MultiVecOp<VOP> {\n+ /**\n+ * Adds / overwrites implementation for given vector size.\n+ *\n+ * @param dim\n+ * @param op\n+ */\nadd(dim: number, op: VOP): VOP;\n+ /**\n+ * Adds / overwrites d... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(vectors): add fill(), add MultiVecOp.impl(), update vop() | 1 | feat | vectors |
815,598 | 05.10.2019 09:20:14 | -28,800 | 40c7f9fa2fac3ecd61041e97e334b49a10a07ff7 | chore: CHANGELOG for v0.22.0 | [
{
"change_type": "MODIFY",
"diff": "+# [v0.22.0](https://github.com/nervosnetwork/ckb/compare/v0.21.2...v0.22.0) (2019-10-05)\n+\n+### Breaking Changes\n+\n+* #1585: Include fractions in epoch number representations (@xxuejie)\n+\n+ This change introduce fractions in 2 places where epoch numbers might\n+ be... | Rust | MIT License | nervosnetwork/ckb | chore: CHANGELOG for v0.22.0 | 1 | chore | null |
815,598 | 05.10.2019 09:24:14 | -28,800 | fec1d449e6f16effd4666f93ed7d7782c248aa27 | chore: use ckb-cli v0.22 | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ git:\nenv:\nglobal:\n- RUST_BACKTRACE=full\n- - CKB_CLI_VERSION=v0.21.1\n+ - CKB_CLI_VERSION=v0.22.0\naddons:\napt:\n",
"new_path": ".travis.yml",
"old_path": ".travis.yml"
},
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ trigge... | Rust | MIT License | nervosnetwork/ckb | chore: use ckb-cli v0.22 | 1 | chore | null |
815,598 | 05.10.2019 10:43:49 | -28,800 | 192c342ff93f76abc39e191ce1f642793fb0c2fd | chore: dump db version | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ use std::sync::Arc;\n// - If the data can be migrated manually: update \"x.y1.z\" to \"x.y2.0\".\n// - If the data can not be migrated: update \"x1.y.z\" to \"x2.0.0\".\npub(crate) const VERSION_KEY: &str = \"db-version\";\n-pub(crate) const VERSION_VALU... | Rust | MIT License | nervosnetwork/ckb | chore: dump db version | 1 | chore | null |
815,598 | 05.10.2019 10:45:30 | -28,800 | 64045243c375f7099a41120a611ed8d84239a420 | chore: bump version code | [
{
"change_type": "MODIFY",
"diff": "@@ -45,44 +45,44 @@ index = 1\n# Spec: ckb_testnet\n[ckb_testnet]\n-genesis = \"0x93f8d7cdd824af4cf7a2dfd09d5c4831e57f28eca3445ce332294a43cb3dcf83\"\n-cellbase = \"0xe1286c93cdbbf8dea086b051e12149ce025c6f60eca107f429b6a240f3f2d3a0\"\n+genesis = \"0x9d33c7f172fe6efa61a3011... | Rust | MIT License | nervosnetwork/ckb | chore: bump version code | 1 | chore | null |
531,793 | 05.10.2019 10:48:22 | -3,600 | 68b3793ef33781d0460ac8ad193df183712f4938 | fix(ui): add a test for react-moment | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,8 @@ import { advanceTo, clear } from \"jest-date-mock\";\nimport toDiffableHtml from \"diffable-html\";\n+import Moment from \"react-moment\";\n+\nimport { MockAlert, MockAnnotation, MockAlertGroup } from \"__mocks__/Alerts.js\";\nimport { AlertStore } from \"... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): add a test for react-moment | 1 | fix | ui |
815,598 | 05.10.2019 10:53:41 | -28,800 | 340755897d5da84a8eeb30fd1cc1f1420832b2ad | chore: bump testnet genesis | [
{
"change_type": "MODIFY",
"diff": "@@ -45,44 +45,44 @@ index = 1\n# Spec: ckb_testnet\n[ckb_testnet]\n-genesis = \"0x9d33c7f172fe6efa61a3011a087f78196333f8cfd890b85b19d3e54f9fa36ce4\"\n-cellbase = \"0x0dfa69745677b2d4fca5a077bfe8ebb945820af14e188f62dd80e210ad3601b0\"\n+genesis = \"0x8c6000088bb9540b111f1f7... | Rust | MIT License | nervosnetwork/ckb | chore: bump testnet genesis | 1 | chore | null |
531,793 | 05.10.2019 11:31:18 | -3,600 | 49325fcca5407e2f0ee32ed0dfd6cab6da68b3ab | fix(tests): always use UTC timestamps in UI tests | [
{
"change_type": "MODIFY",
"diff": "@@ -20,7 +20,7 @@ beforeAll(() => {\n});\nbeforeEach(() => {\n- advanceTo(new Date(2000, 1, 1, 0, 0, 0));\n+ advanceTo(new Date(Date.UTC(2000, 1, 1, 0, 0, 0)));\nalertStore = new AlertStore([\"label=value\"]);\nfetchSpy = jest\n",
"new_path": "ui/src/Components/Fetche... | TypeScript | Apache License 2.0 | prymitive/karma | fix(tests): always use UTC timestamps in UI tests | 1 | fix | tests |
67,516 | 05.10.2019 11:32:12 | -7,200 | caf1136cc7fab8abbb86e40ff3684892bf2ee323 | feat(integration): tests for updateTrigger and if
`if` is not actively "assert"ed yet | [
{
"change_type": "MODIFY",
"diff": "<text-input id=\"input-two-way\" value.two-way=\"inputTwoWay\"></text-input>\n<text-input id=\"input-to-view\" value.to-view=\"inputToView\"></text-input>\n<text-input id=\"input-from-view\" value.from-view=\"inputFromView\"></text-input>\n+\n+ <text-input id=\"blurred-in... | TypeScript | MIT License | aurelia/aurelia | feat(integration): tests for updateTrigger and if
`if` is not actively "assert"ed yet | 1 | feat | integration |
531,793 | 05.10.2019 12:57:20 | -3,600 | 4870e0c9af5d37cb4eb908e649fa2092ab085df0 | fix(docs): mention snapshots in CONTRIBUTING.md | [
{
"change_type": "MODIFY",
"diff": "@@ -36,6 +36,15 @@ UI is written using [React](https://reactjs.org), follow user guide for\n[create-react-app](https://github.com/facebook/create-react-app) to make\nchanges to the UI code.\n+Some UI tests are using [snapshots](https://jestjs.io/docs/en/snapshot-testing).... | TypeScript | Apache License 2.0 | prymitive/karma | fix(docs): mention snapshots in CONTRIBUTING.md (#1005) | 1 | fix | docs |
531,793 | 05.10.2019 14:34:08 | -3,600 | 93aacb6ab699d453007b4b404094d5974346c0b0 | feat(ui): add a border around bright labels | [
{
"change_type": "MODIFY",
"diff": "@@ -60,6 +60,10 @@ class BaseLabel extends Component {\n? \"components-label-dark\"\n: \"components-label-bright\"\n);\n+\n+ data.colorClassNames.push(\n+ `components-label-brightness-${Math.round(c.brightness / 25)}`\n+ );\n} else {\n// if not fall back to class\ndata.co... | TypeScript | Apache License 2.0 | prymitive/karma | feat(ui): add a border around bright labels | 1 | feat | ui |
67,479 | 05.10.2019 15:30:32 | -36,000 | 3e7b0e681117a7b61ab76551171131f20f831cce | fix(convention): map inputmode -> inputMode | [
{
"change_type": "MODIFY",
"diff": "@@ -63,6 +63,7 @@ describe('template-compiler.convention.spec.ts \\n\\thtml convention', function ()\n['input', 'formmethod', 'formMethod'],\n['input', 'formnovalidate', 'formNoValidate'],\n['input', 'formtarget', 'formTarget'],\n+ ['input', 'inputmode', 'inputMode'],\n['... | TypeScript | MIT License | aurelia/aurelia | fix(convention): map inputmode -> inputMode | 1 | fix | convention |
807,849 | 05.10.2019 15:49:04 | 25,200 | ff50e299aa990b121e1bd987548252376177c68a | feat(filter-options): Add `--exclude-dependents` option
Footguns abound.
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -290,6 +290,7 @@ describe(\"AddCommand\", () => {\nignore: undefined,\nprivate: undefined,\nsince: undefined,\n+ excludeDependents: undefined,\nincludeFilteredDependents: undefined,\nincludeFilteredDependencies: undefined,\n})\n",
"new_path": "commands/add/__tests_... | JavaScript | MIT License | lerna/lerna | feat(filter-options): Add `--exclude-dependents` option
Footguns abound.
Fixes #2198 | 1 | feat | filter-options |
807,849 | 05.10.2019 15:53:39 | 25,200 | 73badee5da06745ff58ee96f762d7240e9b4d6f1 | feat(filter-options): Use figgy-pudding in getFilteredPackages() | [
{
"change_type": "MODIFY",
"diff": "\"use strict\";\n-const log = require(\"npmlog\");\n+const npmlog = require(\"npmlog\");\n+const figgyPudding = require(\"figgy-pudding\");\nconst collectUpdates = require(\"@lerna/collect-updates\");\nconst filterPackages = require(\"@lerna/filter-packages\");\nmodule.ex... | JavaScript | MIT License | lerna/lerna | feat(filter-options): Use figgy-pudding in getFilteredPackages() | 1 | feat | filter-options |
807,849 | 05.10.2019 15:55:01 | 25,200 | f2c3a92fe41b6fdc5d11269f0f2c3e27761b4c85 | feat(filter-options): Rename `--include-filtered-*` options | [
{
"change_type": "MODIFY",
"diff": "@@ -21,7 +21,7 @@ If no `version` specifier is provided, it defaults to the `latest` dist-tag, jus\n## Options\n-`lerna add` respects the `--ignore`, `--scope` and `--include-filtered-dependencies` flags (see [Filter Flags](https://www.npmjs.com/package/@lerna/filter-opti... | JavaScript | MIT License | lerna/lerna | feat(filter-options): Rename `--include-filtered-*` options | 1 | feat | filter-options |
713,864 | 05.10.2019 17:41:13 | -19,080 | f94e3259d57531384cd5803681d04c100a1859bf | fix: fs.exists with other fileSystem alternatives
* chore: replace fs.existsSync with fs.accessSync
fs.exists is deprecated starting from node12.
* chore: replace fs.exists with fs.stat in memory-handler
fs.exists is deprecated starting from node 12
* revert: replacing fs.existsSync as it is not deprecated | [
{
"change_type": "MODIFY",
"diff": "@@ -106,8 +106,8 @@ class MemoryHandler implements IPackageStorageManager {\nconst temporalName = `/${name}`;\nprocess.nextTick(function() {\n- fs.exists(temporalName, function(exists) {\n- if (exists) {\n+ fs.stat(temporalName, function(fileError, stats) {\n+ if (!fileEr... | TypeScript | MIT License | verdaccio/monorepo | fix: fs.exists with other fileSystem alternatives (#159)
* chore: replace fs.existsSync with fs.accessSync
fs.exists is deprecated starting from node12.
* chore: replace fs.exists with fs.stat in memory-handler
fs.exists is deprecated starting from node 12
* revert: replacing fs.existsSync as it is not de... | 1 | fix | null |
471,572 | 05.10.2019 18:05:23 | 14,400 | 0d90f66ce87f5594031f4713ebeea5d898caccd9 | feat(building-rollup): add hash to legacy and modern config | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,7 @@ const resolve = require('rollup-plugin-node-resolve');\nconst { terser } = require('rollup-plugin-terser');\nconst babel = require('rollup-plugin-babel');\nconst indexHTML = require('rollup-plugin-index-html');\n+const entrypointHashmanifest = require('rol... | JavaScript | MIT License | open-wc/open-wc | feat(building-rollup): add hash to legacy and modern config (#838) | 1 | feat | building-rollup |
217,922 | 05.10.2019 19:16:11 | -7,200 | 693d239e935d3d03556da4264ee8f8176e25b9a1 | chore: fix for inventory update when no changes happened | [
{
"change_type": "MODIFY",
"diff": "@@ -68,7 +68,7 @@ export class UserInventoryService extends FirestoreRelationalStorage<UserInvento\n}\nupdate(uid: string, data: Partial<UserInventory>, uriParams?: any): Observable<void> {\n- const changes = diff(this.syncCache[uid], data);\n+ const changes = (diff(this.... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: fix for inventory update when no changes happened | 1 | chore | null |
217,922 | 05.10.2019 20:47:24 | -7,200 | 4a23fdb095fe81bf0ccaf5902fe91ea8cd66bcb3 | chore: fix for list reset bug | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,7 @@ import { diff } from 'deep-diff';\n@Injectable()\nexport class FirestoreListStorage extends FirestoreStorage<List> implements ListStore {\n- private static readonly PERSISTED_LIST_ROW_PROPERTIES = ['amount', 'done', 'amount_needed', 'used', 'id', 'icon',... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: fix for list reset bug | 1 | chore | null |
67,516 | 05.10.2019 21:07:29 | -7,200 | 94277513f3046ddef29b977358c1fc566bcdcb53 | chore(integration): failed attempt at compose | [
{
"change_type": "MODIFY",
"diff": "<text-input id=\"blurred-input-two-way\" value.two-way=\"inputBlrTw\" trigger=\"blur\"></text-input>\n<text-input id=\"blurred-input-from-view\" value.from-view=\"inputBlrFv\" trigger=\"blur\"></text-input>\n+\n+ <!-- <specs-viewer things.bind=\"things\"></specs-viewer> -... | TypeScript | MIT License | aurelia/aurelia | chore(integration): failed attempt at compose | 1 | chore | integration |
67,479 | 06.10.2019 00:10:37 | -36,000 | a201a32e359c7a03bb621d721ec9aeba8f4d8710 | fix(let): to-view-model -> to-binding-context | [
{
"change_type": "MODIFY",
"diff": "@@ -365,17 +365,17 @@ describe('template-compiler.spec.ts\\n [TemplateCompiler]', function () {\ndescribe('[to-view-model]', function () {\nit('understands [to-view-model]', function () {\nconst { instructions } = compileWith(`<template><let to-view-model></let></template... | TypeScript | MIT License | aurelia/aurelia | fix(let): to-view-model -> to-binding-context | 1 | fix | let |
67,479 | 06.10.2019 01:19:23 | -36,000 | ae806eb03ba2c2527a3ab262da7c1df5297ca538 | fix(let): minor left over | [
{
"change_type": "MODIFY",
"diff": "@@ -62,9 +62,9 @@ describe('custom-elements', function () {\n});\n- // //<let [to-view-model] />\n+ // //<let [to-binding-context] />\nit('04.', async function () {\n- const { tearDown, lifecycle, appHost, component } = setup<Person>('<template><let to-view-model full-nam... | TypeScript | MIT License | aurelia/aurelia | fix(let): minor left over | 1 | fix | let |
67,476 | 06.10.2019 02:02:27 | -7,200 | 4df10669308da4db3f7a3a7ae1e38096f356b0ff | chore(di): fix type inference issue with Resolved<K> | [
{
"change_type": "MODIFY",
"diff": "@@ -40,7 +40,11 @@ export interface IFactory<T extends Constructable = any> {\nexport interface IServiceLocator {\nhas<K extends Key>(key: K | Key, searchAncestors: boolean): boolean;\n+ get<K extends Key>(key: K): Resolved<K>;\n+ get<K extends Key>(key: Key): Resolved<K>... | TypeScript | MIT License | aurelia/aurelia | chore(di): fix type inference issue with Resolved<K> | 1 | chore | di |
67,476 | 06.10.2019 03:17:33 | -7,200 | d44d8fd48f1d65f8c585256e96504cc7894b4d3d | fix(template-binder): properly handle multiAttr binding edge cases | [
{
"change_type": "MODIFY",
"diff": "-import { hasMultipleBindings } from '@aurelia/jit-html';\n-import { assert } from '@aurelia/testing';\n-\n-describe.skip('has-multi-bindings.unit.spec.ts', function() {\n- type IHasMultipleBindingParserTestCase = [/* attr value */string, /* has multiple bindings? */boole... | TypeScript | MIT License | aurelia/aurelia | fix(template-binder): properly handle multiAttr binding edge cases | 1 | fix | template-binder |
67,476 | 06.10.2019 05:10:04 | -7,200 | 7cb8dd5428c2fd26a2be0def3fe5129580924f28 | test(custom-attribute): re-enable some tests | [
{
"change_type": "MODIFY",
"diff": "@@ -399,7 +399,7 @@ describe('template-compiler.primary-bindable.spec.ts', function() {\n});\n}\n- describe.skip('mimic vCurrent route-href', function() {\n+ describe('mimic vCurrent route-href', function() {\nclass $RouteHref$ {\npublic static readonly inject = [INode, I... | TypeScript | MIT License | aurelia/aurelia | test(custom-attribute): re-enable some tests | 1 | test | custom-attribute |
67,476 | 06.10.2019 05:40:08 | -7,200 | e296df77db2f59bec5b61a7843b59884a3a823dc | test(primary-bindable): disable tests for not yet implemented stuff | [
{
"change_type": "MODIFY",
"diff": "@@ -452,7 +452,7 @@ describe('template-compiler.primary-bindable.spec.ts', function() {\n}\n);\n- it('works correctly when binding only route name', async function() {\n+ it.skip('works correctly when binding only route name', async function() {\nconst ctx = TestContext.c... | TypeScript | MIT License | aurelia/aurelia | test(primary-bindable): disable tests for not yet implemented stuff | 1 | test | primary-bindable |
67,507 | 06.10.2019 10:14:43 | -7,200 | 81563f1f6e060b08ad723ab99dc9a975c29a1338 | chore: lint no-await-in-loop | [
{
"change_type": "MODIFY",
"diff": "@@ -169,6 +169,7 @@ module.exports = {\n'eol-last': ['warn', 'always'],\n'function-call-argument-newline': ['warn', 'consistent'],\n'max-lines-per-function': ['warn', 200],\n+ 'no-await-in-loop': 'warn',\n'no-case-declarations': 'warn',\n'no-cond-assign': 'warn',\n'no-con... | TypeScript | MIT License | aurelia/aurelia | chore: lint no-await-in-loop | 1 | chore | null |
217,922 | 06.10.2019 11:00:46 | -7,200 | b94f08280cddafb4fe09aa2770bf4e581dd19eaa | chore: fix for list deletion bug | [
{
"change_type": "MODIFY",
"diff": "@@ -9,17 +9,18 @@ import {\nDeleteList,\nLoadListCompact,\nLoadListDetails,\n- LoadSharedLists,\nLoadMyLists,\n+ LoadSharedLists,\nLoadTeamLists,\nNeedsVerification,\nOfflineListsLoaded,\nSelectList,\nSetItemDone,\n+ ToggleAutocompletion,\nUnloadListDetails,\nUpdateItem,\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: fix for list deletion bug | 1 | chore | null |
679,913 | 06.10.2019 11:51:31 | -3,600 | 0071df3c770d6f9de10301853cbd6ecb06df83fb | fix(hdom): fix update __skip diff handling & HDOMImplementation
when a previously skipped element is re-enabled, replace entire sub-tree,
but do NOT call lifecycle `init()` methods
add init arg/flag to HDOMImplementation.createTree() / replaceChild()
update DEFAULT_IMPL
update normalizeElement() | [
{
"change_type": "MODIFY",
"diff": "@@ -1223,6 +1223,10 @@ ignored during diffing. Therefore, if this attribute is enabled the\nelement should either have no children OR the children are the same\n(type) as when the attribute is disabled (i.e. when `__skip` is falsy).\n+Furthermore, once a previously skippe... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(hdom): fix #72, update __skip diff handling & HDOMImplementation
- when a previously skipped element is re-enabled, replace entire sub-tree,
but do NOT call lifecycle `init()` methods
- add init arg/flag to HDOMImplementation.createTree() / replaceChild()
- update DEFAULT_IMPL
- update normalizeElement() | 1 | fix | hdom |
67,507 | 06.10.2019 14:43:13 | -7,200 | e06b2155bdf87dbb74ac86d1427a9d966db7827a | chore: fix up some quotes | [
{
"change_type": "MODIFY",
"diff": "@@ -13,15 +13,15 @@ function combine(browsers, oses) {\nfor (const { versions: os_versions, name: os } of oses) {\nfor (const os_version of os_versions) {\ncapabilities.push({\n- \"browser\": browserName,\n+ 'browser': browserName,\nbrowserName,\nbrowser_version,\n- \"bro... | TypeScript | MIT License | aurelia/aurelia | chore: fix up some quotes | 1 | chore | null |
67,507 | 06.10.2019 14:47:47 | -7,200 | c599f5b62a07b405134f9ac18120f6bee360fa39 | chore: switch off jsdoc rules for now | [
{
"change_type": "MODIFY",
"diff": "@@ -136,23 +136,23 @@ module.exports = {\n'import/no-unassigned-import': 'warn',\n'import/no-useless-path-segments': ['warn', { noUselessIndex: true }],\n'import/order': ['warn', { 'newlines-between': 'never' }],\n- 'jsdoc/check-alignment': 'warn',\n- 'jsdoc/check-example... | TypeScript | MIT License | aurelia/aurelia | chore: switch off jsdoc rules for now | 1 | chore | null |
67,507 | 06.10.2019 15:06:46 | -7,200 | 2c6ba467f4ba2b536d02d5b4640a06b4916c47db | chore: switch off mocha/* linting warnings for now to reduce noise | [
{
"change_type": "MODIFY",
"diff": "@@ -20,16 +20,16 @@ module.exports = {\n'max-lines-per-function': 'off',\n'no-console': 'off',\n- // Things we maybe need to fix some day, so are marked as warnings for now:\n- 'mocha/max-top-level-suites': 'warn',\n- 'mocha/no-async-describe': 'warn',\n- 'mocha/no-exclus... | TypeScript | MIT License | aurelia/aurelia | chore: switch off mocha/* linting warnings for now to reduce noise | 1 | chore | null |
67,507 | 06.10.2019 16:06:14 | -7,200 | 156181aa75a5f4b1ef09f79f04a752aa05049dcd | chore: lint no-unused-expressions | [
{
"change_type": "MODIFY",
"diff": "@@ -126,6 +126,7 @@ module.exports = {\n'no-sequences': 'error',\n'no-throw-literal': 'error',\n'no-undef-init': 'error',\n+ 'no-unused-expressions': 'error',\n'no-useless-escape': 'error',\n'no-trailing-spaces': 'error',\n'prefer-object-spread': 'error',\n@@ -192,7 +193,... | TypeScript | MIT License | aurelia/aurelia | chore: lint no-unused-expressions | 1 | chore | null |
67,507 | 06.10.2019 16:33:54 | -7,200 | cf299e9edf3e80351b05e3fc5e56f6a699106626 | chore: lint no-multiple-empty-lines | [
{
"change_type": "MODIFY",
"diff": "@@ -111,6 +111,7 @@ module.exports = {\n'no-extra-bind': 'error',\n'no-extra-semi': 'error',\n'no-import-assign': 'error',\n+ 'no-multiple-empty-lines': 'error',\n'no-new-func': 'error',\n'no-new-wrappers': 'error',\n'no-octal-escape': 'error',\n@@ -191,7 +192,6 @@ module... | TypeScript | MIT License | aurelia/aurelia | chore: lint no-multiple-empty-lines | 1 | chore | null |
679,913 | 06.10.2019 18:42:04 | -3,600 | 26a1980b6cf00385728bced6aefdc4ae95d5acc1 | feat(examples): add hdom-skip-nested example | [
{
"change_type": "ADD",
"diff": "+.cache\n+out\n+node_modules\n+yarn.lock\n+*.js\n",
"new_path": "examples/hdom-skip-nested/.gitignore",
"old_path": null
},
{
"change_type": "ADD",
"diff": "+# hdom-skip-nested\n+\n+[Live demo](http://demo.thi.ng/umbrella/hdom-skip-nested/)\n+\n+Please re... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add hdom-skip-nested example | 1 | feat | examples |
67,507 | 06.10.2019 19:02:37 | -7,200 | d1f2f26490458f797cccddccdb62cfdd1498ebbc | chore: lint prefer-spread | [
{
"change_type": "MODIFY",
"diff": "@@ -134,6 +134,7 @@ module.exports = {\n'no-trailing-spaces': 'error',\n'prefer-object-spread': 'error',\n'prefer-regex-literals': 'error',\n+ 'prefer-spread': 'error',\n'quote-props': ['error', 'consistent'],\n'quotes': ['off'],\n'radix': 'error',\n@@ -200,7 +201,6 @@ mo... | TypeScript | MIT License | aurelia/aurelia | chore: lint prefer-spread | 1 | chore | null |
67,507 | 06.10.2019 19:03:02 | -7,200 | da25894766fe685228d72f542b1e66c901f09624 | chore: lint compat/compat | [
{
"change_type": "MODIFY",
"diff": "@@ -80,6 +80,7 @@ module.exports = {\n'@typescript-eslint/semi': 'error',\n'@typescript-eslint/triple-slash-reference': ['error', { path: 'never', types: 'always', lib: 'never' }],\n'@typescript-eslint/type-annotation-spacing': 'error',\n+ 'compat/compat': 'warn',\n'impor... | TypeScript | MIT License | aurelia/aurelia | chore: lint compat/compat | 1 | chore | null |
151,430 | 06.10.2019 19:23:13 | 25,200 | 1746c16d6b9658b5d62977bccc1f1051cbd5197c | refactor: remove commented console.log | [
{
"change_type": "MODIFY",
"diff": "export default function getPluginByMethod(method, plugins) {\nreturn Object.keys(plugins).reduce((arr, name) => {\nconst int = plugins[name]\n- // console.log('int', int)\nreturn (int[method]) ? arr.concat(int) : arr\n}, [])\n}\n",
"new_path": "packages/analytics-core... | JavaScript | MIT License | davidwells/analytics | refactor: remove commented console.log | 1 | refactor | null |
151,430 | 06.10.2019 19:23:26 | 25,200 | f9b6d978b66dfd33d5144b3f181b6928927a2d37 | refactor: shrink dotprop util | [
{
"change_type": "MODIFY",
"diff": "/* https://github.com/developit/dlv */\n-export default function get(obj, key, def, p) {\n- p = 0\n+export default function get(obj, key, def, p, undef) {\nkey = key.split ? key.split('.') : key\n- while (obj && p < key.length) obj = obj[key[p++]]\n- return (obj === undef... | JavaScript | MIT License | davidwells/analytics | refactor: shrink dotprop util | 1 | refactor | null |
151,430 | 06.10.2019 19:30:03 | 25,200 | d6367da5637b4363fdba451271a385bb5048e73c | docs: update crazy-egg package readme for migration to | [
{
"change_type": "MODIFY",
"diff": "# Crazy Egg Plugin for `analytics`\n+> Note: This package has moved to [@analytics/crazy-egg](https://www.npmjs.com/package/@analytics/crazy-egg)\n+\nIntegration with [crazy egg](https://www.crazyegg.com/) for [analytics](https://www.npmjs.com/package/analytics)\n+For mor... | JavaScript | MIT License | davidwells/analytics | docs: update crazy-egg package readme for migration to @analytics/crazy-egg | 1 | docs | null |
151,430 | 06.10.2019 19:33:58 | 25,200 | c4d747b3061eea559655a8240fc737c5ac241627 | docs: update package refs to new scoped package names | [
{
"change_type": "MODIFY",
"diff": "@@ -72,6 +72,8 @@ To add or remove an analytics provider adjust the `plugins` you load into `analy\n## Install\n+This module is distributed via [npm](https://npmjs.com/package/analytics) which is bundled with [node](https://nodejs.org/) and should be installed as one of y... | JavaScript | MIT License | davidwells/analytics | docs: update package refs to new scoped package names | 1 | docs | null |
151,430 | 06.10.2019 19:34:12 | 25,200 | e680f0ea358b20bb5b6e0948f3ad8ce9b195792c | docs: update customer.io docs | [
{
"change_type": "MODIFY",
"diff": "@@ -10,8 +10,7 @@ Integration with [customer.io](https://customer.io/) for [analytics](https://www\nInstall `analytics` and `@analytics/customerio` packages\n```bash\n-npm install analytics\n-npm install @analytics/customerio\n+npm install analytics @analytics/customerio\... | JavaScript | MIT License | davidwells/analytics | docs: update customer.io docs | 1 | docs | null |
151,430 | 06.10.2019 19:41:48 | 25,200 | 31d82c9e5e3ba75e754a3cba80b078ac2fa52fbd | chore: update crazy-egg pkg name to | [
{
"change_type": "MODIFY",
"diff": "# Crazy Egg Plugin for `analytics`\n-> Note: This package has moved to [@analytics/crazy-egg](https://www.npmjs.com/package/@analytics/crazy-egg)\n-\nIntegration with [crazy egg](https://www.crazyegg.com/) for [analytics](https://www.npmjs.com/package/analytics)\nFor more... | JavaScript | MIT License | davidwells/analytics | chore: update crazy-egg pkg name to @analytics/crazy-egg | 1 | chore | null |
151,430 | 06.10.2019 19:46:55 | 25,200 | c6498998ccc38867c4cae4610886a71cfa97835d | chore: bump version on crazy-egg | [
{
"change_type": "MODIFY",
"diff": "/**\n* Crazy egg plugin\n- * @link https://getanalytics.io/plugins/crazyegg/\n+ * @link https://getanalytics.io/plugins/crazyegg\n* @link https://help.crazyegg.com/article/43-crazy-egg-manual-installation\n* @param {object} pluginConfig - Plugin settings\n* @param {string... | JavaScript | MIT License | davidwells/analytics | chore: bump version on crazy-egg | 1 | chore | null |
67,507 | 06.10.2019 19:53:35 | -7,200 | cfe7e5ac463f8ce377fe0d2c5d5b2548fb5ff006 | chore: lint no-prototype-builtins | [
{
"change_type": "MODIFY",
"diff": "@@ -116,6 +116,7 @@ module.exports = {\n'no-new-func': 'error',\n'no-new-wrappers': 'error',\n'no-octal-escape': 'error',\n+ 'no-prototype-builtins': 'error',\n'no-restricted-properties': ['error',\n{ property: 'substr', message: '\"substr\" is considered a legacy functio... | TypeScript | MIT License | aurelia/aurelia | chore: lint no-prototype-builtins | 1 | chore | null |
67,507 | 06.10.2019 20:05:18 | -7,200 | 3e6ad186cdbd622ba489367c767234b546d71bdd | chore: lint (sonarjs/)no-useless-catch | [
{
"change_type": "MODIFY",
"diff": "@@ -103,6 +103,7 @@ module.exports = {\n'import/no-useless-path-segments': ['error'],\n'import/order': ['error', { 'groups': [], 'newlines-between': 'never' }],\n'import/no-deprecated': 'error',\n+ 'sonarjs/no-useless-catch': 'error',\n'eol-last': ['error', 'always'],\n'f... | TypeScript | MIT License | aurelia/aurelia | chore: lint (sonarjs/)no-useless-catch | 1 | chore | null |
67,507 | 06.10.2019 20:23:18 | -7,200 | 12e3545d1ce4739982fd0a19ee8f44cfc62995d7 | chore: lint prefer-rest-params | [
{
"change_type": "MODIFY",
"diff": "@@ -138,6 +138,7 @@ module.exports = {\n'no-trailing-spaces': 'error',\n'prefer-object-spread': 'error',\n'prefer-regex-literals': 'error',\n+ 'prefer-rest-params': 'error',\n'prefer-spread': 'error',\n'prefer-template': 'error',\n'quote-props': ['error', 'consistent'],\n... | TypeScript | MIT License | aurelia/aurelia | chore: lint prefer-rest-params | 1 | chore | null |
67,507 | 06.10.2019 20:51:22 | -7,200 | a442155c73d8db8bb133c370cb405bf44e619124 | chore: lint no-case-declarations | [
{
"change_type": "MODIFY",
"diff": "@@ -108,6 +108,7 @@ module.exports = {\n'function-call-argument-newline': ['error', 'consistent'],\n'new-parens': ['error', 'always'],\n'no-caller': 'error',\n+ 'no-case-declarations': 'error',\n'no-constant-condition': 'error',\n'no-eval': 'error',\n'no-extra-bind': 'err... | TypeScript | MIT License | aurelia/aurelia | chore: lint no-case-declarations | 1 | chore | null |
217,922 | 06.10.2019 21:01:31 | -7,200 | 7f83248b220f54af232602d98aae8f6bcb279e22 | feat(simulator): added starting quality input for when there's no ingredients data
closes | [
{
"change_type": "MODIFY",
"diff": "[nzActive]=\"custom || (loggedIn$ | async) === false\">\n<div fxLayout=\"row wrap\" fxLayoutGap=\"16px\" fxLayoutAlign=\"space-evenly\" fxLayout.lt-md=\"column\"\nfxLayoutGap.lt-md=\"16px\" fxLayoutAlign.lt-md=\"center center\">\n- <div [fxFlex]=\"custom?'1 1 48%':'1 0 30... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(simulator): added starting quality input for when there's no ingredients data
closes #1117 | 1 | feat | simulator |
67,516 | 06.10.2019 21:13:56 | -7,200 | dc99ec240fcea0fcf167e698a2da4edecd202d32 | chore(integration): tests for computed observer | [
{
"change_type": "MODIFY",
"diff": "<div frequent-mutations>\n<button id=\"staticTextChanger\" click.delegate=\"changeTexts()\">Change texts</button>\n- <read-only-text value=\"text0\"></read-only-text>\n- <read-only-text value.one-time=\"text1\"></read-only-text>\n- <read-only-text value.bind=\"text2\"></r... | TypeScript | MIT License | aurelia/aurelia | chore(integration): tests for computed observer | 1 | chore | integration |
67,507 | 06.10.2019 21:31:06 | -7,200 | 8bf3cd4aafec2a57fd2b1e036a87403a43fe846d | chore: lint mocha/no-async-describe | [
{
"change_type": "MODIFY",
"diff": "@@ -16,13 +16,13 @@ module.exports = {\n'@typescript-eslint/no-explicit-any': 'off',\n'import/no-nodejs-modules': 'off',\n'jsdoc/require-jsdoc': 'off',\n+ 'mocha/no-async-describe': 'error',\n'mocha/no-hooks-for-single-case': 'off', // Disabled to avoid duplicates, becaus... | TypeScript | MIT License | aurelia/aurelia | chore: lint mocha/no-async-describe | 1 | chore | null |
67,507 | 06.10.2019 22:01:10 | -7,200 | 2c7c9e1a9917422bfe2de8515b54f38f8eafac7f | chore: lint mocha/no-return-from-async | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,7 @@ module.exports = {\n'mocha/no-async-describe': 'error',\n'mocha/no-hooks-for-single-case': 'off', // Disabled to avoid duplicates, because 'no-hooks' is enabled\n'mocha/no-identical-title': 'error',\n+ 'mocha/no-return-from-async': 'error',\n'max-lines-p... | TypeScript | MIT License | aurelia/aurelia | chore: lint mocha/no-return-from-async | 1 | chore | null |
67,507 | 06.10.2019 22:43:52 | -7,200 | dbcbf588fa83dd88239c7b17c8e2c02f8790bbfd | chore: sort tsconfig.json | [
{
"change_type": "MODIFY",
"diff": "\"references\": [\n{ \"path\": \"__e2e__\" },\n{ \"path\": \"__tests__\" },\n+ { \"path\": \"aot\" },\n{ \"path\": \"aurelia\" },\n- { \"path\": \"kernel\" },\n- { \"path\": \"runtime\" },\n- { \"path\": \"runtime-html\" },\n- { \"path\": \"runtime-html-browser\" },\n- { ... | TypeScript | MIT License | aurelia/aurelia | chore: sort tsconfig.json | 1 | chore | null |
151,430 | 06.10.2019 22:49:10 | 25,200 | df920b0a50cb752c8ef9db9b1995f833b1208261 | chore: move segment to pkg | [
{
"change_type": "MODIFY",
"diff": "# Segment plugin for `analytics`\n+> Note: This package has moved to [@analytics/segment](https://www.npmjs.com/package/@analytics/segment)\n+\nIntegration with [segment](https://segment.com/) for [analytics](https://www.npmjs.com/package/analytics)\n+For more information... | JavaScript | MIT License | davidwells/analytics | chore: move segment to @analytics/segment pkg | 1 | chore | null |
151,430 | 06.10.2019 22:49:30 | 25,200 | 48e6592e21a55d686d8e254c5bebc164b24c5b6e | chore: move simple-analytics to pkg | [
{
"change_type": "MODIFY",
"diff": "/**\n* Simple Analytics plugin\n+ * @link https://getanalytics.io/plugins/simple-analytics/\n* @link https://simpleanalytics.com/\n* @return {object} Analytics plugin\n* @example\n",
"new_path": "packages/analytics-plugin-simple-analytics/src/browser.js",
"old_pat... | JavaScript | MIT License | davidwells/analytics | chore: move simple-analytics to @analytics/simple-analytics pkg | 1 | chore | null |
151,430 | 06.10.2019 22:49:59 | 25,200 | d751ae1509399bb8db74bc82dddd670942dbdc76 | chore: more gtm pkg to | [
{
"change_type": "MODIFY",
"diff": "-# Google analytics plugin for `analytics`\n+# Google Tag Manager plugin for `analytics`\n+\n+> Note: This package has moved to [@analytics/google-tag-manager](https://www.npmjs.com/package/@analytics/google-tag-manager)\nIntegration with google tag manager for [analytics... | JavaScript | MIT License | davidwells/analytics | chore: more gtm pkg to @analytics/google-tag-manager | 1 | chore | null |
151,430 | 06.10.2019 22:55:04 | 25,200 | 07514318476102e899ab6730999753e675c1e228 | chore: migrate to scoped packages under | [
{
"change_type": "MODIFY",
"diff": "{\n- \"name\": \"analytics-plugin-google-tag-manager\",\n+ \"name\": \"@analytics/google-tag-manager\",\n\"version\": \"0.1.5\",\n\"description\": \"Google tag manager plugin for 'analytics' module\",\n\"keywords\": [\n",
"new_path": "packages/analytics-plugin-google-... | JavaScript | MIT License | davidwells/analytics | chore: migrate to scoped packages under @analytics | 1 | chore | null |
151,430 | 06.10.2019 22:58:55 | 25,200 | 69f3225f71a2007990129b5fdba78257e3065ff5 | docs: remove migration from readme | [
{
"change_type": "MODIFY",
"diff": "# Google Tag Manager plugin for `analytics`\n-> Note: This package has moved to [@analytics/google-tag-manager](https://www.npmjs.com/package/@analytics/google-tag-manager)\n-\nIntegration with google tag manager for [analytics](https://www.npmjs.com/package/analytics)\nF... | JavaScript | MIT License | davidwells/analytics | docs: remove migration from readme | 1 | docs | null |
67,507 | 06.10.2019 22:59:36 | -7,200 | 2d9ee22ba1b9abb9049c8b656b5868cd8580b5ac | chore: lint mocha/no-top-level-hooks | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,7 @@ module.exports = {\n'mocha/no-identical-title': 'error',\n'mocha/no-mocha-arrows': 'error',\n'mocha/no-return-from-async': 'error',\n+ 'mocha/no-top-level-hooks': 'error',\n'max-lines-per-function': 'off',\n'no-console': 'off',\n@@ -29,7 +30,6 @@ module.... | TypeScript | MIT License | aurelia/aurelia | chore: lint mocha/no-top-level-hooks | 1 | chore | null |
67,507 | 06.10.2019 23:00:13 | -7,200 | 590b719277bb787e9f6a256127cf0e3cab8f6504 | chore: lint mocha/no-exclusive-tests | [
{
"change_type": "MODIFY",
"diff": "@@ -17,6 +17,7 @@ module.exports = {\n'import/no-nodejs-modules': 'off',\n'jsdoc/require-jsdoc': 'off',\n'mocha/no-async-describe': 'error',\n+ 'mocha/no-exclusive-tests': 'warn',\n'mocha/no-hooks-for-single-case': 'off', // Disabled to avoid duplicates, because 'no-hooks... | TypeScript | MIT License | aurelia/aurelia | chore: lint mocha/no-exclusive-tests | 1 | chore | null |
151,430 | 06.10.2019 23:02:12 | 25,200 | db44fa63e8ba940740eae16af5479ac59cdb75b5 | docs: update gtm link | [
{
"change_type": "MODIFY",
"diff": "@@ -8,7 +8,7 @@ export const config = {\n/**\n* Google tag manager plugin\n- * @link https://getanalytics.io/plugins/google-tag-manager/\n+ * @link https://getanalytics.io/plugins/google-tag-manager\n* @link https://developers.google.com/tag-manager/\n* @param {object} pl... | JavaScript | MIT License | davidwells/analytics | docs: update gtm link | 1 | docs | null |
151,430 | 06.10.2019 23:08:03 | 25,200 | f355b8c79f9fce7d5e3b8e95b11726c2afc13f4a | docs: update scoped package references | [
{
"change_type": "MODIFY",
"diff": "@@ -620,18 +620,18 @@ The `analytics` has a robust plugin system. Here is a list of currently availabl\n<!-- AUTO-GENERATED-CONTENT:START (PLUGINS) -->\n- [analytics-cli](https://github.com/DavidWells/analytics/tree/master/packages/analytics-cli) CLI for `analytics` pkg [... | JavaScript | MIT License | davidwells/analytics | docs: update scoped package references | 1 | docs | null |
67,507 | 06.10.2019 23:11:54 | -7,200 | 584c2bd67b74fb4471ddee6493950cbb2e678e0b | chore: drop codeclimate exclusion | [
{
"change_type": "MODIFY",
"diff": "@@ -22,8 +22,6 @@ checks:\n# Duplicate code which is syntactically identical (but may be formatted differently)\nidentical-code:\nenabled: true\n- exclude_patterns:\n- - \"packages/testing/src/each-cartesian-join.ts\"\n# Method complexity (= cognitive complexity)\n# Funct... | TypeScript | MIT License | aurelia/aurelia | chore: drop codeclimate exclusion | 1 | chore | null |
67,507 | 06.10.2019 23:15:12 | -7,200 | 5840b4efc7eb0c57c665898d4cf0b23e46e30454 | chore: lint max-lines-per-function | [
{
"change_type": "MODIFY",
"diff": "@@ -107,6 +107,7 @@ module.exports = {\n'sonarjs/no-useless-catch': 'error',\n'eol-last': ['error', 'always'],\n'function-call-argument-newline': ['error', 'consistent'],\n+ 'max-lines-per-function': ['error', 200],\n'new-parens': ['error', 'always'],\n'no-caller': 'error... | TypeScript | MIT License | aurelia/aurelia | chore: lint max-lines-per-function | 1 | chore | null |
67,507 | 06.10.2019 23:34:57 | -7,200 | 244413122e7ffee647cd9e3fc133a54f74677c59 | chore: lint jsdoc/check-indentation | [
{
"change_type": "MODIFY",
"diff": "@@ -104,6 +104,7 @@ module.exports = {\n'import/no-useless-path-segments': ['error'],\n'import/order': ['error', { 'groups': [], 'newlines-between': 'never' }],\n'import/no-deprecated': 'error',\n+ 'jsdoc/check-indentation': 'error',\n'jsdoc/require-hyphen-before-param-de... | TypeScript | MIT License | aurelia/aurelia | chore: lint jsdoc/check-indentation | 1 | chore | null |
67,507 | 06.10.2019 23:43:32 | -7,200 | e54f81e838b64bffe8a6ab09e3a75b165c6189d1 | chore: lint jsdoc/newline-after-description | [
{
"change_type": "MODIFY",
"diff": "@@ -105,6 +105,7 @@ module.exports = {\n'import/order': ['error', { 'groups': [], 'newlines-between': 'never' }],\n'import/no-deprecated': 'error',\n'jsdoc/check-indentation': 'error',\n+ 'jsdoc/newline-after-description': 'error',\n'jsdoc/require-hyphen-before-param-desc... | TypeScript | MIT License | aurelia/aurelia | chore: lint jsdoc/newline-after-description | 1 | chore | null |
67,507 | 07.10.2019 00:25:23 | -7,200 | a6de18e5c163c66129ada8753040703392f1a763 | chore: lint jsdoc/check-tag-names | [
{
"change_type": "MODIFY",
"diff": "@@ -105,6 +105,17 @@ module.exports = {\n'import/order': ['error', { 'groups': [], 'newlines-between': 'never' }],\n'import/no-deprecated': 'error',\n'jsdoc/check-indentation': 'error',\n+ 'jsdoc/check-tag-names': ['error', {\n+ definedTags: [\n+ 'chainable',\n+ 'internal... | TypeScript | MIT License | aurelia/aurelia | chore: lint jsdoc/check-tag-names | 1 | chore | null |
67,507 | 07.10.2019 00:29:25 | -7,200 | 6954f8afebe1cb8521dbfc7b0ce952410e63e535 | chore: lint jsdoc/check-syntax | [
{
"change_type": "MODIFY",
"diff": "@@ -116,6 +116,7 @@ module.exports = {\n'singleton()'\n]\n}],\n+ 'jsdoc/check-syntax': 'error',\n'jsdoc/newline-after-description': 'error',\n'jsdoc/require-hyphen-before-param-description': ['error', 'always'],\n'sonarjs/no-useless-catch': 'error',\n@@ -184,7 +185,6 @@ m... | TypeScript | MIT License | aurelia/aurelia | chore: lint jsdoc/check-syntax | 1 | chore | null |
67,507 | 07.10.2019 00:38:40 | -7,200 | 05fcc619e9ec4707bb89e0f5c2a4773f60e84ff2 | chore: lint jsdoc/check-alignment | [
{
"change_type": "MODIFY",
"diff": "@@ -104,6 +104,7 @@ module.exports = {\n'import/no-useless-path-segments': ['error'],\n'import/order': ['error', { 'groups': [], 'newlines-between': 'never' }],\n'import/no-deprecated': 'error',\n+ 'jsdoc/check-alignment': 'error',\n'jsdoc/check-indentation': 'error',\n'j... | TypeScript | MIT License | aurelia/aurelia | chore: lint jsdoc/check-alignment | 1 | chore | null |
471,603 | 07.10.2019 07:59:21 | -7,200 | ad99b179b676e0dc65b3c40ef1b7306bb3c64e4f | fix(create): use standard webpack mode notation | [
{
"change_type": "MODIFY",
"diff": "{\n\"scripts\": {\n\"start:build\": \"cd dist && es-dev-server --open\",\n- \"build\": \"webpack --mode production\"\n+ \"build\": \"webpack --mode=production\"\n},\n\"devDependencies\": {\n\"@open-wc/building-webpack\": \"^2.1.0\",\n",
"new_path": "packages/create/sr... | JavaScript | MIT License | open-wc/open-wc | fix(create): use standard webpack mode notation (#839) | 1 | fix | create |
807,829 | 07.10.2019 09:59:25 | 25,200 | 06b7a963ba2ac4ee07242da4a00d81cae9a41fec | docs: Fixed typo and remove trailing space | [
{
"change_type": "MODIFY",
"diff": "@@ -52,7 +52,7 @@ repositories with git and npm.**\nLerna can also reduce the time and space requirements for numerous\ncopies of packages in development and build environments - normally a\n-downside of dividing a project into many separate NPM package. See the\n+downsid... | JavaScript | MIT License | lerna/lerna | docs: Fixed typo and remove trailing space (#2273) | 1 | docs | null |
807,850 | 07.10.2019 10:11:25 | 25,200 | 85afdbae4da359bb758a51f0fcf9d1d07072cd90 | docs: add pull request section to CONTRIBUTING.md | [
{
"change_type": "MODIFY",
"diff": "@@ -106,3 +106,7 @@ $ open coverage/lcov-report/index.html\n# Linux\n$ xdg-open coverage/lcov-report/index.html\n```\n+\n+### Submitting Pull Requests\n+\n+This project follows [GitHub's standard forking model](https://guides.github.com/activities/forking/). Please fork t... | JavaScript | MIT License | lerna/lerna | docs: add pull request section to CONTRIBUTING.md (#2202) | 1 | docs | null |
807,849 | 07.10.2019 10:24:05 | 25,200 | afb04146796acf66611baefd06da4170ca1162b6 | docs(version): Correct global --conventional-prerelease example
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -144,8 +144,8 @@ When run with this flag, `lerna version` will graduate the specified packages (c\n```sh\nlerna version --conventional-commits --conventional-prerelease=package-2,package-4\n-# force all prerelease packages to be graduated\n-lerna version --conventional... | JavaScript | MIT License | lerna/lerna | docs(version): Correct global --conventional-prerelease example
Closes #2252 | 1 | docs | version |
730,416 | 07.10.2019 12:45:24 | 25,200 | 72a34296466be72eee382c3ca8c2151d92762cb3 | chore(circleci): add ci skip to release script | [
{
"change_type": "MODIFY",
"diff": "\"start:samples\": \"echo 'Deprecated. Please use npm run serve:samples'; npm run serve samples\",\n\"publish\": \"cross-env-shell NODE_ENV='' ./scripts/publish/index.js\",\n\"publish:components\": \"cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=2048 npm... | JavaScript | MIT License | webex/react-widgets | chore(circleci): add ci skip to release script | 1 | chore | circleci |
807,849 | 07.10.2019 12:56:39 | 25,200 | 5dbea327c1fa30deccebb486bc2f2c56a05377c3 | fix(child-process): Use Set to manage book-keeping instead of mutable integer | [
{
"change_type": "MODIFY",
"diff": "@@ -6,9 +6,9 @@ const execa = require(\"execa\");\nconst logTransformer = require(\"strong-log-transformer\");\n// bookkeeping for spawned processes\n-let children = 0;\n+const children = new Set();\n-// when streaming children are spawned, use this color for prefix\n+// ... | JavaScript | MIT License | lerna/lerna | fix(child-process): Use Set to manage book-keeping instead of mutable integer | 1 | fix | child-process |
807,849 | 07.10.2019 13:04:54 | 25,200 | dea9745f7eba81f7c551c1150890fb248b1b9eb6 | chore(windows): Debugging git-receive-pack errors (sigh) | [
{
"change_type": "MODIFY",
"diff": "@@ -60,6 +60,10 @@ before_install:\n\"windows\")\n# yarn isn't installed by default\nnpm install --global yarn\n+ # find out where git sub-programs are installed (e.g., git-receive-pack)\n+ git --exec-path\n+ # is it in the path?!\n+ echo $PATH\n;;\nesac\n",
"new_path... | JavaScript | MIT License | lerna/lerna | chore(windows): Debugging git-receive-pack errors (sigh) | 1 | chore | windows |
807,849 | 07.10.2019 13:29:28 | 25,200 | 6618da48192c4bd043cfa30d6bca8c51a4a0028e | chore(windows): Skip eslint in windows tests | [
{
"change_type": "MODIFY",
"diff": "@@ -29,7 +29,7 @@ matrix:\nnode_js: \"12\"\nname: \"Windows Unit Tests (publish)\"\nenv:\n- - LERNA_CI_SCRIPT=\"test -- --maxWorkers=2\"\n+ - LERNA_CI_SCRIPT=\"test:windows\"\n- LERNA_CI_TYPE=\"publish\"\n- os: windows\nnode_js: \"12\"\n@@ -43,7 +43,7 @@ matrix:\nnode_js:... | JavaScript | MIT License | lerna/lerna | chore(windows): Skip eslint in windows tests | 1 | chore | windows |
104,818 | 07.10.2019 13:34:34 | 18,000 | 3855fedd2c22c82f0b5425fad95f097cbc7ed3b0 | refactor(cardenderer): make the card renderer fetch its own data | [
{
"change_type": "MODIFY",
"diff": "-import React, { useMemo, useState, useCallback } from 'react';\n+import React, { useMemo, useState, useCallback, useEffect } from 'react';\nimport merge from 'lodash/merge';\nimport isEmpty from 'lodash/isEmpty';\nimport omit from 'lodash/omit';\n@@ -17,7 +17,6 @@ import... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | refactor(cardenderer): make the card renderer fetch its own data | 1 | refactor | cardenderer |
866,392 | 07.10.2019 13:36:00 | 18,000 | 7a6820af029a4d8a8d3ec34b034381c3a4305938 | feat(footer): loading in plex by default | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/.yarn/offline-mirror/@carbon-type-10.5.1.tgz differ\n",
"new_path": ".yarn/offline-mirror/@carbon-type-10.5.1.tgz",
"old_path": ".yarn/offline-mirror/@carbon-type-10.5.1.tgz"
},
{
"change_type": "MODIFY",
"diff": "\"@carbon/gr... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(footer): loading in plex by default | 1 | feat | footer |
807,849 | 07.10.2019 13:57:09 | 25,200 | deb25af4f604cce6065fdf8594aecabbbfc3f2d2 | test(integration): Assert on stable result of git status --porcelain | [
{
"change_type": "MODIFY",
"diff": "\"use strict\";\n-const execa = require(\"execa\");\n+const cp = require(\"child_process\");\nmodule.exports = gitStatus;\nfunction gitStatus(cwd) {\n- return execa(\"git\", [\"status\"], { cwd });\n+ return cp.spawnSync(\"git\", [\"status\", \"--porcelain\"], { cwd, enco... | JavaScript | MIT License | lerna/lerna | test(integration): Assert on stable result of git status --porcelain | 1 | test | integration |
679,913 | 07.10.2019 13:58:43 | -3,600 | 2d76fde6654e67b34d23ff68e4e51380498ffcfe | refactor(examples): update hdom-benchmark2 | [
{
"change_type": "MODIFY",
"diff": "@@ -72,21 +72,17 @@ const grid = <any>{\nfor (let i = 0; i < numChanges; i++) {\nconst idx = (Math.random() * num) | 0;\nchanged.add(idx);\n- changedRows.add(~~(idx / w));\n+ changedRows.add((idx / w) | 0);\ncells[idx] = (cells[idx] + 1) % 16;\n}\nconst body = transduce<n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): update hdom-benchmark2 | 1 | refactor | examples |
503,945 | 07.10.2019 14:04:28 | 14,400 | e1a6875e5682e434446b0f796ef3f8a08e2ee594 | chore(package): Bump versions to 2.33.8 | [
{
"change_type": "MODIFY",
"diff": "},\n\"homepage\": \"https://github.com/patternfly/patternfly-react#readme\",\n\"dependencies\": {\n- \"@patternfly/patternfly\": \"2.33.5\",\n+ \"@patternfly/patternfly\": \"2.33.8\",\n\"@patternfly/react-styles\": \"^3.5.28\",\n\"@patternfly/react-tokens\": \"^2.6.31\",\... | TypeScript | MIT License | patternfly/patternfly-react | chore(package): Bump @patternfly/patternfly versions to 2.33.8 (#3081) | 1 | chore | package |
730,416 | 07.10.2019 14:04:55 | 25,200 | 0db1333fa19cc2a3cc585577b9341a785d8bd461 | chore(circleci): update environment variables | [
{
"change_type": "MODIFY",
"diff": "@@ -74,11 +74,12 @@ jobs:\n- NODE_ENV: \"test\"\n- ACL_SERVICE_URL: \"https://acl-intb.ciscospark.com/acl/api/v1\"\n- ATLAS_SERVICE_URL: \"https://atlas-intb.ciscospark.com/admin/api/v1\"\n- - CONVERSATION_SERVICE: \"https://conversation-intb.ciscospark.com/conversation/a... | JavaScript | MIT License | webex/react-widgets | chore(circleci): update environment variables | 1 | chore | circleci |
807,849 | 07.10.2019 14:12:12 | 25,200 | da7d77d2ff83739a263446f7ecdf38493428b671 | chore(travis): Condense Windows matrix | [
{
"change_type": "MODIFY",
"diff": "@@ -27,29 +27,17 @@ matrix:\n# run publish/version tests first (slower, higher priority)\n- os: windows\nnode_js: \"12\"\n- name: \"Windows Unit Tests (publish)\"\n+ name: \"Windows Tests (publish)\"\nenv:\n- - LERNA_CI_SCRIPT=\"test:windows\"\n- - LERNA_CI_TYPE=\"publish... | JavaScript | MIT License | lerna/lerna | chore(travis): Condense Windows matrix | 1 | chore | travis |
679,913 | 07.10.2019 14:14:35 | -3,600 | de9508a85a656e83d5b4b8cfd57ac04f5a0af6d1 | refactor(examples): update webgl-multipass | [
{
"change_type": "MODIFY",
"diff": "@@ -123,6 +123,8 @@ new PackedBuffer(\n)\n).blitCanvas(canv.canvas);\n+toy.start();\n+\nif (process.env.NODE_ENV !== \"production\") {\nconst hot = (<any>module).hot;\nhot && hot.dispose(() => toy.stop());\n",
"new_path": "examples/webgl-multipass/src/index.ts",
"... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): update webgl-multipass | 1 | refactor | examples |
67,494 | 07.10.2019 14:20:57 | -7,200 | ba3365e2c31db0f004461f178e86240b57a310ec | refactor(router): update au-href value in binding | [
{
"change_type": "MODIFY",
"diff": "@@ -10,7 +10,7 @@ export class AuHrefCustomAttribute {\n@INode private readonly element: HTMLElement,\n) { }\n- public bound() {\n+ public binding(): void {\nthis.updateValue();\n}\n@@ -18,11 +18,10 @@ export class AuHrefCustomAttribute {\nthis.updateValue();\n}\n- privat... | TypeScript | MIT License | aurelia/aurelia | refactor(router): update au-href value in binding | 1 | refactor | router |
67,494 | 07.10.2019 14:22:12 | -7,200 | 87ebc815281a6e68267d21538ca47478a8ede492 | refactor(router): use target view model & rename href to instruction | [
{
"change_type": "MODIFY",
"diff": "@@ -26,9 +26,9 @@ export interface AnchorEventInfo {\n*/\nshouldHandleEvent: boolean;\n/**\n- * The href of the link or null if not-applicable.\n+ * The instruction (href) of the link or null if not-applicable.\n*/\n- href: string | null;\n+ instruction: string | null;\n/... | TypeScript | MIT License | aurelia/aurelia | refactor(router): use target view model & rename href to instruction | 1 | refactor | router |
67,494 | 07.10.2019 14:22:45 | -7,200 | 42429093947620da87d936ad2f65179b25480f79 | refactor(router): rename href to instruction | [
{
"change_type": "MODIFY",
"diff": "@@ -178,16 +178,16 @@ export class Router implements IRouter {\n}\npublic linkCallback = (info: AnchorEventInfo): void => {\n- let href = info.href || '';\n- if (href.startsWith('#')) {\n- href = href.slice(1);\n+ let instruction = info.instruction || '';\n+ if (typeof in... | TypeScript | MIT License | aurelia/aurelia | refactor(router): rename href to instruction | 1 | refactor | router |
67,494 | 07.10.2019 14:23:46 | -7,200 | 98f0f80077222caf34485fe7b2b073c2116e58ca | test(router): fix tear down order | [
{
"change_type": "MODIFY",
"diff": "@@ -34,9 +34,9 @@ describe('Configuration', function () {\nawait au.start().wait();\nasync function tearDown() {\n+ router.deactivate();\nawait au.stop().wait();\nctx.doc.body.removeChild(host);\n- router.deactivate();\n}\nreturn { au, container, lifecycle, host, router, ... | TypeScript | MIT License | aurelia/aurelia | test(router): fix tear down order | 1 | test | router |
104,857 | 07.10.2019 14:26:52 | -7,200 | 31c81016b85e5cf42784ffc39817cd5bd8b12c16 | chore(story): story explaining about new cards pattern | [
{
"change_type": "MODIFY",
"diff": "@@ -1156,4 +1156,70 @@ storiesOf('Dashboard (Experimental)', module)\n])}\n</div>\n);\n- });\n+ })\n+ .add(\n+ 'for custom card component',\n+ () => (\n+ <Dashboard\n+ title={text('title', 'Munich Building')}\n+ cards={originalCards}\n+ lastUpdated={Date()}\n+ isEditable=... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(story): story explaining about new cards pattern | 1 | chore | story |
67,494 | 07.10.2019 14:27:27 | -7,200 | 37a7a3294288e93411273a324de9c346df9a2e9c | test(router): add link handler instruction test | [
{
"change_type": "MODIFY",
"diff": "-import { AnchorEventInfo, LinkHandler } from '@aurelia/router';\n+import { AnchorEventInfo, LinkHandler, AuHrefCustomAttribute } from '@aurelia/router';\nimport { assert, createSpy, TestContext } from '@aurelia/testing';\n-import { Writable } from '@aurelia/kernel';\n+im... | TypeScript | MIT License | aurelia/aurelia | test(router): add link handler instruction test | 1 | test | router |
67,494 | 07.10.2019 14:28:43 | -7,200 | 617360b9d703f73b5f946cf49032c43568837e24 | test(router): rename instruction test | [
{
"change_type": "MODIFY",
"diff": "@@ -130,7 +130,7 @@ describe('LinkHandler', function () {\ntearDown();\n});\n- it('returns the right href', async function () {\n+ it('returns the right instruction', async function () {\nconst tests = [\n{ useHref: true, href: true, auHref: true, result: 'au-href' },\n{ ... | TypeScript | MIT License | aurelia/aurelia | test(router): rename instruction test | 1 | test | router |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.