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
269,451
01.02.2019 17:09:23
-3,600
3387ffeadab741ed8df7318a1d78e66c101e2801
fix: warning when no config file could be found
[ { "change_type": "MODIFY", "diff": "@@ -159,8 +159,8 @@ func loadConfig(path string) (config.Project, error) {\n}\nreturn proj, err\n}\n- // the user didn't specified a config file and the known possible file names\n+ // the user didn't specify a config file and the known possible file names\n// don't exist...
Go
MIT License
goreleaser/goreleaser
fix: warning when no config file could be found (#948)
1
fix
null
471,566
01.02.2019 19:02:59
18,000
32b0b0080ba61107d702c8f258b66105e4cfaf5b
fix(testing-karma): show file/line number of failing tests on terminal
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,7 @@ module.exports = config => ({\n},\n},\n- frameworks: ['mocha', 'webpack'],\n+ frameworks: ['mocha', 'source-map-support', 'webpack'],\nmiddleware: ['static'],\n", "new_path": "packages/testing-karma/default-settings.js", "old_path": "packages/tes...
JavaScript
MIT License
open-wc/open-wc
fix(testing-karma): show file/line number of failing tests on terminal
1
fix
testing-karma
679,913
01.02.2019 20:26:59
0
e30b2111a138de4a7586b7300324d27c3dacd012
feat(geom-isoline): import package (ported from clojure)
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/assets/geom-isoline.png differ\n", "new_path": "assets/geom-isoline.png", "old_path": "assets/geom-isoline.png" }, { "change_type": "ADD", "diff": "+.meta\n+.nyc_output\n+*.html\n+*.tgz\n+build\n+coverage\n+dev\n+doc\n+export\...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(geom-isoline): import package (ported from clojure)
1
feat
geom-isoline
679,913
01.02.2019 20:36:54
0
6d15686acb790a197e75179b7156070952ac28b0
refactor(malloc): update MemPoolOpts & MemPool ctor args BREAKING CHANGE: update MemPoolOpts & MemPool ctor args
[ { "change_type": "MODIFY", "diff": "@@ -64,7 +64,7 @@ import { MemPool, Type } from \"@thi.ng/malloc\";\n// create memory w/ optional start allocation address\n// (start address can't be zero, reserved for malloc/calloc failure)\n-const pool = new MemPool(new ArrayBuffer(0x1000), { start: 8 });\n+const pool...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(malloc): update MemPoolOpts & MemPool ctor args BREAKING CHANGE: update MemPoolOpts & MemPool ctor args
1
refactor
malloc
679,913
01.02.2019 20:41:08
0
d7ccc8879d3c2b4b209048930b9cf45e9cceabe7
refactor(vector-pools): update AttribPool & VecPool ctors
[ { "change_type": "MODIFY", "diff": "-import { IRelease, TypedArray } from \"@thi.ng/api\";\n-import { Type, MemPoolOpts } from \"@thi.ng/malloc\";\n-import { StridedVec, Vec, ReadonlyVec } from \"@thi.ng/vectors\";\n+import { IObjectOf, IRelease, TypedArray } from \"@thi.ng/api\";\n+import { MemPool, MemPoo...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(vector-pools): update AttribPool & VecPool ctors
1
refactor
vector-pools
67,475
01.02.2019 22:30:47
-36,000
b07832b141feab4cb70dd71865eebf787b7ee990
refactor(store): comment out broken tests, clean up testing setup
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@aurelia/kernel\": \"0.3.0\",\n+ \"@aurelia/runtime\": \"^0.3.0\",\n\"rxjs\": \"^6.4.0\"\n},\n\"devDependencies\": {\n\"@types/chai\": \"^4.1.7\",\n- \"@types/chai-as-promised\": \"^7.1.0\",\n\"@types/karma\": \"^3.0.1\",\n\"@types/mocha\": \"^5...
TypeScript
MIT License
aurelia/aurelia
refactor(store): comment out broken tests, clean up testing setup
1
refactor
store
679,913
01.02.2019 23:16:56
0
4bde37e1ddb0a98ac85599ec5a9897de372e58fb
feat(geom-api): add ISpatialAccel.selectVals()
[ { "change_type": "MODIFY", "diff": "@@ -9,4 +9,5 @@ export interface ISpatialAccel<K, V> {\nhas(k: K, eps?: number): boolean;\nselect(q: K, maxNum: number, maxDist?: number): Pair<K, V>[];\nselectKeys(q: K, maxNum: number, maxDist?: number): K[];\n+ selectVals(q: K, maxNum: number, maxDist?: number): V[];\n...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(geom-api): add ISpatialAccel.selectVals()
1
feat
geom-api
679,913
01.02.2019 23:17:42
0
bd1754d57f526c4c67757176f2311a2b5a8a4665
feat(geom-accel): add selectVals() impl
[ { "change_type": "MODIFY", "diff": "@@ -186,6 +186,22 @@ export class KdTree<K extends ReadonlyVec, V> implements\nreturn res;\n}\n+ selectVals(q: Readonly<K>, maxNum: number, maxDist?: number): V[] {\n+ if (!this.root) return [];\n+ const res: V[] = [];\n+ if (maxNum === 1) {\n+ const sel = nearest1(q, [ma...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(geom-accel): add selectVals() impl
1
feat
geom-accel
603,467
01.02.2019 23:23:33
0
f1e67df65d9af5bde5bfb922eea76b5b68932b9a
chore(deps): Make sure all packages use the same version number
[ { "change_type": "MODIFY", "diff": "\"@serenity-js/core\": \"2.0.1-alpha.2\",\n\"@serenity-js/cucumber\": \"2.0.1-alpha.2\",\n\"@serenity-js/local-server\": \"2.0.1-alpha.2\",\n+ \"@serenity-js/protractor\": \"2.0.1-alpha.2\",\n\"@serenity-js/rest\": \"2.0.1-alpha.2\",\n\"cheerio\": \"1.0.0-rc.2\",\n\"clean...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(deps): Make sure all @serenity-js packages use the same version number
1
chore
deps
603,467
01.02.2019 23:43:52
0
aefe5211d883bccba670c22ae99c410979eb1222
chore(deps): Corrected the peerDependencies version range to accept any 2.x
[ { "change_type": "MODIFY", "diff": "\"npm\": \">= 3\"\n},\n\"peerDependencies\": {\n- \"@serenity-js/core\": \"2.0.1-alpha.2\",\n+ \"@serenity-js/core\": \"2.x\",\n\"tiny-types\": \"^1.11.3\"\n},\n\"devDependencies\": {\n", "new_path": "packages/assertions/package.json", "old_path": "packages/assert...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(deps): Corrected the peerDependencies version range to accept any 2.x
1
chore
deps
679,913
02.02.2019 02:07:59
0
37fb295fbc6db0571b61b000c633df754e2aaf11
feat(examples): add iso-plasma demo
[ { "change_type": "ADD", "diff": "+.cache\n+out\n+node_modules\n+yarn.lock\n+*.js\n", "new_path": "examples/iso-plasma/.gitignore", "old_path": null }, { "change_type": "ADD", "diff": "+# iso-plasma\n+\n+[Live demo](http://demo.thi.ng/umbrella/iso-plasma/)\n+\n+Please refer to the [exampl...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add iso-plasma demo
1
feat
examples
679,913
02.02.2019 02:14:58
0
678c3ff0b74bf795878786710901c5572ad8790c
refactor(examples): update iso-plasma
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"latest\",\n- \"@thi.ng/rstream\": \"latest\",\n- \"@thi.ng/transducers-hdom\": \"latest\"\n+ \"@thi.ng/geom\": \"latest\",\n+ \"@thi.ng/geom-isoline\": \"latest\",\n+ \"@thi.ng/hdom\": \"latest\",\n+ \"@thi.ng/hdom-canvas\": \"l...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): update iso-plasma
1
refactor
examples
471,527
02.02.2019 15:27:12
-3,600
be84d36cb2875e8dcb1176e2b7bd8795c585ebcf
fix: update/insert readme open-wc header via script
[ { "change_type": "MODIFY", "diff": "# Demoing via storybook\n-> Part of Open Web Component Recommendation [open-wc](https://github.com/open-wc/open-wc/)\n-\n-Open Web Components provides a set of defaults, recommendations and tools to help facilitate your web component project. Our recommendations include: ...
JavaScript
MIT License
open-wc/open-wc
fix: update/insert readme open-wc header via script
1
fix
null
603,467
02.02.2019 15:29:10
0
7f558f002a1824529b450e8d802801472c0917ce
fix(protractor): Corrected the Text.of and Text.ofAll questions
[ { "change_type": "MODIFY", "diff": "exports.config = {\nchromeDriver: require(`chromedriver/lib/chromedriver`).path,\n- // SELENIUM_PROMISE_MANAGER: false,\n+ SELENIUM_PROMISE_MANAGER: false,\nonPrepare: function() {\nreturn browser.waitForAngularEnabled(false);\n", "new_path": "packages/protractor/spec...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(protractor): Corrected the Text.of and Text.ofAll questions
1
fix
protractor
471,527
02.02.2019 18:20:23
-3,600
1428d3a14b9dff99a15090facee9459d47e1bf09
chore: adjust loader tests to work in latest webpack version
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ import MemoryFs from 'memory-fs';\nexport default (fixture, rules = [{}]) => {\nconst compiler = webpack({\n+ mode: 'development',\ncontext: __dirname,\nentry: `./${fixture}`,\noutput: {\n", "new_path": "packages/webpack-import-meta-loader/test/compile...
JavaScript
MIT License
open-wc/open-wc
chore: adjust loader tests to work in latest webpack version
1
chore
null
471,527
02.02.2019 18:45:32
-3,600
fc479c58d1d27f46fab3593e36c7a6dd0b24e2bf
chore: workaround for wrong edit urls
[ { "change_type": "MODIFY", "diff": "@@ -136,3 +136,15 @@ module.exports = merge(defaultConfig, {\nWe recommend extending the config only to make small additions.\nIf your configuration deviates too much from our default setup, simply copy paste what we have and use it as a starting point.\nIt will keep your...
JavaScript
MIT License
open-wc/open-wc
chore: workaround for wrong edit urls
1
chore
null
471,527
02.02.2019 20:32:04
-3,600
1e1e6346bf3e94a032e31a386b4b26f6471c0738
docs: set vuepress mode to develop to work around terser bug
[ { "change_type": "MODIFY", "diff": "@@ -120,4 +120,10 @@ module.exports = {\n['meta', { name: 'twitter:card', content: 'summary' }],\n['meta', { name: 'twitter:title', content: 'Open Web Components' }],\n],\n+ // temporary set to develop mode as Terser seems to have a problem :/\n+ configureWebpack: (config...
JavaScript
MIT License
open-wc/open-wc
docs: set vuepress mode to develop to work around terser bug
1
docs
null
603,467
02.02.2019 23:22:22
0
5c8a25c3d83cc0aa42c5058b186f2c2315d3d029
feat(protractor): Interaction: Clear
[ { "change_type": "ADD", "diff": "+import { endsWith, Ensure, equals } from '@serenity-js/assertions';\n+import { Actor } from '@serenity-js/core';\n+import { by, protractor } from 'protractor';\n+\n+import { BrowseTheWeb, Clear, Navigate, Target, Value } from '../../../src';\n+import { pageFromTemplate } fr...
TypeScript
Apache License 2.0
serenity-js/serenity-js
feat(protractor): Interaction: Clear
1
feat
protractor
603,467
02.02.2019 23:45:00
0
8e39c0ba7e07c93722f02273a8bd50ff1c7e76be
docs(protractor): Corrected the name of the class the test is referring to
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,8 @@ describe('Clear', () => {\nField: Target.the('name field').located(by.id('name')),\n};\n- /** @test {Enter} */\n+ /** @test {Clear} */\n+ /** @test {Clear.theValueOf} */\nit('allows the actor to clear the value of a field', () => Bernie.attemptsTo(\nNavi...
TypeScript
Apache License 2.0
serenity-js/serenity-js
docs(protractor): Corrected the name of the class the test is referring to
1
docs
protractor
273,683
02.02.2019 23:54:40
-3,600
8ff869943b8282d060ae9633db1d6cc0da3e1b0b
chore(test): update build tests
[ { "change_type": "MODIFY", "diff": "module.exports = {\nsiteName: 'Gridsome',\n- pathPrefix: '/subdir',\n+ pathPrefix: '/sub/-/dir',\nplugins: []\n}\n", "new_path": "gridsome/__tests__/__fixtures__/project-path-prefix/gridsome.config.js", "old_path": "gridsome/__tests__/__fixtures__/project-path-pre...
JavaScript
MIT License
gridsome/gridsome
chore(test): update build tests
1
chore
test
471,470
03.02.2019 12:51:24
0
8f2979c17851cf531989a42d748428bbe77dcfb4
fix(generator-open-wc): add building-webpack generator
[ { "change_type": "MODIFY", "diff": "@@ -49,6 +49,18 @@ yo open-wc:scaffold-vanilla\n</details>\n<br/>\n+- `yo open-wc:scaffold-building`<br/>\n+ This generator scaffolds a webpack configuration for you with examples to your existing project.\n+ <details>\n+ <summary>More info</summary>\n+ <br/>\n+ This gene...
JavaScript
MIT License
open-wc/open-wc
fix(generator-open-wc): add building-webpack generator
1
fix
generator-open-wc
471,527
03.02.2019 13:17:42
-3,600
db69557610e9323c3005289879d78b15550dc580
fix(building-webpack): defaultOptions indexJS is not an array
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ const developmentEs5 = !!process.argv.find(arg => arg.includes('es5'));\nconst defaultOptions = {\nindexHTML: './index.html',\n- indexJS: ['./index.js'],\n+ indexJS: './index.js',\n};\nconst es6Target = {\n", "new_path": "packages/building-webpack/defa...
JavaScript
MIT License
open-wc/open-wc
fix(building-webpack): defaultOptions indexJS is not an array
1
fix
building-webpack
67,476
03.02.2019 18:09:16
-3,600
aa840e7eb92b7d7f913e8a838034953a314689f4
feat(kernel): migrate aurelia-path functions
[ { "change_type": "MODIFY", "diff": "@@ -56,6 +56,13 @@ export {\nValuesOf,\nWritable\n} from './interfaces';\n+export {\n+ relativeToFile,\n+ join,\n+ buildQueryString,\n+ parseQueryString,\n+ IQueryParams\n+} from './path';\nexport { PLATFORM } from './platform';\nexport {\nITraceInfo,\n", "new_path": ...
TypeScript
MIT License
aurelia/aurelia
feat(kernel): migrate aurelia-path functions
1
feat
kernel
67,476
03.02.2019 18:09:40
-3,600
13ea52eb5752bda3a93d135fb97d25efef7200cc
feat(router): migrate route-recognizer
[ { "change_type": "MODIFY", "diff": "export * from './history-browser';\nexport * from './link-handler';\nexport * from './nav';\n+export * from './route-recognizer';\nexport * from './router';\nexport * from './scope';\nexport * from './viewport';\n", "new_path": "packages/router/src/index.ts", "old...
TypeScript
MIT License
aurelia/aurelia
feat(router): migrate route-recognizer
1
feat
router
67,476
03.02.2019 18:39:18
-3,600
28dd8bab0655753a00f28c167b48b131a9066606
chore(router): cleanup tests a bit
[ { "change_type": "MODIFY", "diff": "import { expect } from 'chai';\n-import { RouteRecognizer } from '../../src/index';\n+import { ConfigurableRoute, RouteRecognizer } from '../../src/index';\n+import { eachCartesianJoin } from '../util';\nconst staticRoute = {'path': 'static', 'handler': {'name': 'static'}...
TypeScript
MIT License
aurelia/aurelia
chore(router): cleanup tests a bit
1
chore
router
447,440
03.02.2019 20:18:36
21,600
b09d6728ec75ec756b810796941c2a62ede38406
style: fix button icon effect
[ { "change_type": "MODIFY", "diff": ".rainbow-button-icon:hover, .rainbow-button-icon:focus, .rainbow-button-icon:active {\ncolor: #009acf; }\n.rainbow-button-icon:active {\n- transform: scale(0.9);\n- transition: all 0.2s ease; }\n+ transform: scale(0.7);\n+ transition: all 0.3s ease; }\n.rainbow-button-ico...
JavaScript
MIT License
nexxtway/react-rainbow
style: fix button icon effect (#596)
1
style
null
273,683
03.02.2019 21:51:55
-3,600
db7dde13bb4a4b281eb7d9cd88abe9d1fd1e6957
fix(remark): resolve image urls like front matter paths
[ { "change_type": "MODIFY", "diff": "@@ -32,8 +32,9 @@ class RemarkTransformer {\nreturn ['text/markdown', 'text/x-markdown']\n}\n- constructor (options, { localOptions, queue }) {\n+ constructor (options, { localOptions, resolveNodeFilePath, queue }) {\nthis.options = defaultsDeep(localOptions, options)\n+ ...
JavaScript
MIT License
gridsome/gridsome
fix(remark): resolve image urls like front matter paths
1
fix
remark
273,683
03.02.2019 21:55:27
-3,600
6164464319c29ec11048e04c227025bc8e3dca09
fix(store): pass resolveAbsolutePaths correctly
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,7 @@ class JSONTransformer {\nfileField: {\ntype: GraphQLString,\nresolve: node => {\n- return this.resolveNodeFilePath(node, './image.png')\n+ return this.resolveNodeFilePath(node, '/assets/image.png')\n}\n}\n}\n", "new_path": "gridsome/__tests__/__fixtu...
JavaScript
MIT License
gridsome/gridsome
fix(store): pass resolveAbsolutePaths correctly
1
fix
store
469,409
03.02.2019 22:53:20
28,800
a0c31eee036c28657243b6b7ca9410ddb17b3bea
feature: build target file names + release order
[ { "change_type": "MODIFY", "diff": "@@ -40,31 +40,22 @@ For small documentation changes and fixes, these can be done quickly following t\n### Submitting changes\n1. Review & Test changes\n-\n-If the code changed, then test it. If documentation changed, then preview the rendered Markdown.\n-\n+ * If the code...
JavaScript
Apache License 2.0
open-rpc/spec
feature: build target file names + release order
1
feature
null
273,683
03.02.2019 23:38:50
-3,600
5ce01068b3a69e88e27b508f3ea1f642c237a1db
fix(webpack): remove duplicate style links (163) Some stylesheet links was added twice when using global components in page templates.
[ { "change_type": "MODIFY", "diff": "import TestClass from './test-class'\nimport Layout from './layouts/Default.vue'\n+import './styles/main.css'\n+\nexport default function (Vue, { head }) {\nVue.component('Layout', Layout)\n", "new_path": "gridsome/__tests__/__fixtures__/project-basic/src/main.js", ...
JavaScript
MIT License
gridsome/gridsome
fix(webpack): remove duplicate style links (163) Some stylesheet links was added twice when using global components in page templates.
1
fix
webpack
471,527
04.02.2019 00:17:59
-3,600
c442f21a07b2c30a806e30545d78735ee5f5ba0e
fix(testing-helpers): add `await elementUpdated(el)` supports stencil
[ { "change_type": "MODIFY", "diff": "@@ -64,18 +64,37 @@ expect(el.bar).to.equal('baz');\n```\n## Timings\n-If you need to wait for multiple elements to update you can use `nextFrame`.\n+By default fixture awaits the elements \"update complete\" Promise.\n+- for [lit-element](https://github.com/polymer/lit-e...
JavaScript
MIT License
open-wc/open-wc
fix(testing-helpers): add `await elementUpdated(el)` supports stencil
1
fix
testing-helpers
67,476
04.02.2019 00:46:31
-3,600
211499c0a2ef7bbd1d8ea8da69f0268832790eda
chore(kernel): rename durandal to aurelia
[ { "change_type": "MODIFY", "diff": "@@ -10,17 +10,17 @@ describe('relativeToFile', () => {\n});\nit('can make a dot path relative to an absolute file', () => {\n- const file = 'http://durandal.io/some/file.html';\n+ const file = 'http://aurelia.io/some/file.html';\nconst path = './other/module';\n- expect(r...
TypeScript
MIT License
aurelia/aurelia
chore(kernel): rename durandal to aurelia
1
chore
kernel
67,476
04.02.2019 00:51:55
-3,600
2b074eb7b4ae102df898b1b8a3b9247a90195c4d
chore(path): linting fixes
[ { "change_type": "MODIFY", "diff": "@@ -124,7 +124,7 @@ type SimpleQueryParams = string | IQueryParams | (string | IQueryParams)[];\n* @return Array with serialized parameter(s)\n*/\nfunction buildParam(key: string, value: ComplexQueryParams, traditional?: boolean): string[] {\n- let result = [];\n+ let res...
TypeScript
MIT License
aurelia/aurelia
chore(path): linting fixes
1
chore
path
273,733
04.02.2019 03:17:06
-19,080
c7f6dfa3a265b709d4dd36f5fb0a9b2fbaf11607
fix(app): add key to viewport meta
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ const head = {\nmeta: [\n{ charset: 'utf-8' },\n{ name: 'generator', content: `Gridsome v${config.version}` },\n- { name: 'viewport', content: 'width=device-width, initial-scale=1, viewport-fit=cover' },\n+ { key:'viewport', name: 'viewport', content: 'w...
JavaScript
MIT License
gridsome/gridsome
fix(app): add key to viewport meta (#169)
1
fix
app
71,210
04.02.2019 07:24:54
0
428a812c08bfffa451f13c8996f895954663e631
docs(apigateway): add missing word "unless" in README I can see from the reference docs [1] that `cloudWatchRole` defaults to `true`, so I'm pretty sure my change is correct. [1]:
[ { "change_type": "MODIFY", "diff": "@@ -177,8 +177,8 @@ The following example will configure API Gateway to emit logs and data traces to\nAWS CloudWatch for all API calls:\n> By default, an IAM role will be created and associated with API Gateway to\n-allow it to write logs and metrics to AWS CloudWatch `cl...
TypeScript
Apache License 2.0
aws/aws-cdk
docs(apigateway): add missing word "unless" in README (#1658) I can see from the reference docs [1] that `cloudWatchRole` defaults to `true`, so I'm pretty sure my change is correct. [1]: https://awslabs.github.io/aws-cdk/refs/_aws-cdk_aws-apigateway.html#@aws-cdk/aws-apigateway.RestApiProps.cloudWatchRole
1
docs
apigateway
791,690
04.02.2019 10:20:56
21,600
2fc73125302b1ea0fb0a2d8b018e57d4fe043318
core(metrics): do not fail if TTI fails
[ { "change_type": "MODIFY", "diff": "@@ -39,13 +39,25 @@ class Metrics extends Audit {\nconst devtoolsLog = artifacts.devtoolsLogs[Audit.DEFAULT_PASS];\nconst metricComputationData = {trace, devtoolsLog, settings: context.settings};\n+\n+ /**\n+ * @template TArtifacts\n+ * @template TReturn\n+ * @param {{req...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(metrics): do not fail if TTI fails (#7132)
1
core
metrics
67,494
04.02.2019 10:25:28
-3,600
f955ef01e4565f3af5de54fa70f7f8dc5f2e3174
refactor(router): make scope viewports a list & add repeat navigation & element vm
[ { "change_type": "MODIFY", "diff": "@@ -23,6 +23,7 @@ export interface INavigationFlags {\nisBack?: boolean;\nisReplace?: boolean;\nisCancel?: boolean;\n+ isRepeat?: boolean;\n}\nexport interface INavigationInstruction extends IHistoryEntry, INavigationFlags {\n", "new_path": "packages/router/src/histor...
TypeScript
MIT License
aurelia/aurelia
refactor(router): make scope viewports a list & add repeat navigation & element vm
1
refactor
router
807,849
04.02.2019 10:50:09
28,800
15b75c3f5789f812b9e0c238bb7f8b5798f8c998
chore: bump devDependencies
[ { "change_type": "MODIFY", "diff": "}\n},\n\"eslint\": {\n- \"version\": \"5.9.0\",\n- \"resolved\": \"https://registry.npmjs.org/eslint/-/eslint-5.9.0.tgz\",\n- \"integrity\": \"sha512-g4KWpPdqN0nth+goDNICNXGfJF7nNnepthp46CAlJoJtC5K/cLu3NgCM3AHu1CkJ5Hzt9V0Y0PBAO6Ay/gGb+w==\",\n+ \"version\": \"5.13.0\",\n+...
JavaScript
MIT License
lerna/lerna
chore: bump devDependencies
1
chore
null
67,494
04.02.2019 11:08:50
-3,600
da040377a36a9ae618d05052f660e9cd91a895e0
test(router): add test for stateful
[ { "change_type": "MODIFY", "diff": "@@ -429,26 +429,58 @@ describe('Router', () => {\nawait goto('/grault@left', router);\nexpect(host.textContent).to.contain('toggle');\nexpect(host.textContent).to.not.contain('Viewport: graul');\n- expect(host.textContent).to.not.contain('Viewport: corge');\n+ expect(host...
TypeScript
MIT License
aurelia/aurelia
test(router): add test for stateful
1
test
router
127,940
04.02.2019 11:34:35
-7,200
5f8378c8ce147442a8b1fa1193fda105b62a3d88
fix(prettier): use .prettierrc to support IDE plugins
[ { "change_type": "ADD", "diff": "+{\n+ \"trailingComma\": \"es5\",\n+ \"singleQuote\": true\n+}\n", "new_path": ".prettierrc", "old_path": null }, { "change_type": "MODIFY", "diff": "\"build\": \"tsc -b\",\n\"clean\": \"rm -rf ./packages/*/lib ./packages/*/dist ./packages/*/.cache\",\n\"...
TypeScript
MIT License
coingaming/moon-design
fix(prettier): use .prettierrc to support IDE plugins
1
fix
prettier
807,849
04.02.2019 12:03:17
28,800
c5e128dfa0666faa2051ef8b7c833f700a5935de
chore(helpers): Don't use '*' as a dependency specifier
[ { "change_type": "MODIFY", "diff": "\"private\": true,\n\"license\": \"MIT\",\n\"dependencies\": {\n- \"expect\": \"*\",\n- \"jest-diff\": \"*\",\n- \"jest-matcher-utils\": \"*\"\n+ \"expect\": \"^23.6.0\",\n+ \"jest-diff\": \"^23.6.0\",\n+ \"jest-matcher-utils\": \"^23.6.0\"\n}\n}\n", "new_path": "help...
JavaScript
MIT License
lerna/lerna
chore(helpers): Don't use '*' as a dependency specifier
1
chore
helpers
807,849
04.02.2019 12:11:05
28,800
a83c487cb7557b21135a015851e337042327c9ed
fix(deps): Explicit npm-registry-fetch ^3.9.0
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n-jest.mock(\"libnpm/fetch\");\n+jest.mock(\"npm-registry-fetch\");\n-const fetch = require(\"libnpm/fetch\");\n+const fetch = require(\"npm-registry-fetch\");\nconst loggingOutput = require(\"@lerna-test/logging-output\");\nconst getNpmUsername = require(...
JavaScript
MIT License
lerna/lerna
fix(deps): Explicit npm-registry-fetch ^3.9.0
1
fix
deps
807,849
04.02.2019 12:36:28
28,800
44d05bf56897d7b3fb6a291230f1468ad1be91f0
fix(deps): Explicit pacote ^9.4.1
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,7 @@ const dedent = require(\"dedent\");\nconst npa = require(\"npm-package-arg\");\nconst pMap = require(\"p-map\");\nconst path = require(\"path\");\n-const getManifest = require(\"libnpm/manifest\");\n+const getManifest = require(\"pacote/manifest\");\nconst...
JavaScript
MIT License
lerna/lerna
fix(deps): Explicit pacote ^9.4.1
1
fix
deps
807,849
04.02.2019 12:38:43
28,800
6ba3d1dbc6b0d709555f3fe2f3b36f9d88f689fc
fix(deps): Explicit libnpmaccess ^3.0.1
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n-jest.mock(\"libnpm/access\");\n+jest.mock(\"libnpmaccess\");\n-const access = require(\"libnpm/access\");\n+const access = require(\"libnpmaccess\");\nconst { getPackages } = require(\"@lerna/project\");\nconst loggingOutput = require(\"@lerna-test/loggi...
JavaScript
MIT License
lerna/lerna
fix(deps): Explicit libnpmaccess ^3.0.1
1
fix
deps
807,849
04.02.2019 12:40:56
28,800
506ad6d26a9869679cd1457ccb0942e967ee353d
fix(deps): Explicit npm-lifecycle ^2.1.0
[ { "change_type": "MODIFY", "diff": "\"requires\": {\n\"@lerna/npm-conf\": \"file:utils/npm-conf\",\n\"figgy-pudding\": \"^3.5.1\",\n- \"libnpm\": \"^2.0.1\"\n+ \"libnpm\": \"^2.0.1\",\n+ \"npm-lifecycle\": \"^2.1.0\"\n}\n},\n\"@lerna/run-parallel-batches\": {\n", "new_path": "package-lock.json", "ol...
JavaScript
MIT License
lerna/lerna
fix(deps): Explicit npm-lifecycle ^2.1.0
1
fix
deps
807,849
04.02.2019 12:55:39
28,800
2695a906c3a92e3045b7dee9ac2d0a940d4ad6ef
fix(deps): Explicit read-package-json ^2.0.13
[ { "change_type": "MODIFY", "diff": "\"@lerna/run-lifecycle\": \"file:utils/run-lifecycle\",\n\"figgy-pudding\": \"^3.5.1\",\n\"fs-extra\": \"^7.0.0\",\n- \"libnpm\": \"^2.0.1\"\n+ \"libnpm\": \"^2.0.1\",\n+ \"pify\": \"^3.0.0\",\n+ \"read-package-json\": \"^2.0.13\"\n}\n},\n\"@lerna/npm-run-script\": {\n", ...
JavaScript
MIT License
lerna/lerna
fix(deps): Explicit read-package-json ^2.0.13
1
fix
deps
807,849
04.02.2019 13:01:08
28,800
a506d96eecf26873c819ee63f1530b9bfd582609
fix(deps): Explicit libnpmpublish ^1.1.1
[ { "change_type": "MODIFY", "diff": "@@ -72,7 +72,7 @@ class PublishCommand extends Command {\nthis.gitReset = this.options.gitReset !== false;\nthis.verifyAccess = this.options.verifyAccess !== false;\n- // npmSession and user-agent are consumed by npm-registry-fetch (via libnpm/publish)\n+ // npmSession an...
JavaScript
MIT License
lerna/lerna
fix(deps): Explicit libnpmpublish ^1.1.1
1
fix
deps
791,834
04.02.2019 13:13:37
28,800
21cd806978e6825c126d293348052e58ef3ad5fe
core: optimize tap-targets audit
[ { "change_type": "MODIFY", "diff": "const Audit = require('../audit');\nconst ViewportAudit = require('../viewport');\nconst {\n+ rectsTouchOrOverlap,\ngetRectOverlapArea,\ngetRectAtCenter,\nallRectsContainedWithinEachOther,\ngetLargestRect,\n+ getBoundingRectWithPadding,\n} = require('../../lib/rect-helper...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: optimize tap-targets audit (#7130)
1
core
null
531,793
04.02.2019 13:18:47
0
9e4abbd42b7f2ebf6564a9fe0acfe816a855289e
feat(backend): allow setting custom colors for labels This allows to have a user defined color (rgb or hex) for label values configured in the config file
[ { "change_type": "MODIFY", "diff": "@@ -25,6 +25,7 @@ require (\ngithub.com/spf13/pflag v1.0.3\ngithub.com/spf13/viper v1.3.1\ngithub.com/terinjokes/bakelite v0.2.0 // indirect\n+ gopkg.in/go-playground/colors.v1 v1.2.0\ngopkg.in/jarcoal/httpmock.v1 v1.0.0-20181117152235-275e9df93516\ngopkg.in/yaml.v2 v2.2....
TypeScript
Apache License 2.0
prymitive/karma
feat(backend): allow setting custom colors for labels This allows to have a user defined color (rgb or hex) for label values configured in the config file
1
feat
backend
531,793
04.02.2019 13:19:11
0
8f068f2cade5ac7681872940551142d3101896c0
feat(demo): add severity labels with custom colors
[ { "change_type": "MODIFY", "diff": "@@ -136,7 +136,8 @@ class AlwaysOnAlert(AlertGenerator):\ndef alerts(self):\ndef _gen(size, cluster):\nreturn [newAlert(\n- self._labels(instance=\"server{}\".format(i), cluster=cluster),\n+ self._labels(instance=\"server{}\".format(i), cluster=cluster,\n+ severity=\"info...
TypeScript
Apache License 2.0
prymitive/karma
feat(demo): add severity labels with custom colors
1
feat
demo
531,793
04.02.2019 13:27:18
0
0fdb6274cdbcbc87c7d05fb7c0b9b9ea01c93524
feat(docs): document custom label colors
[ { "change_type": "MODIFY", "diff": "@@ -263,6 +263,7 @@ labels:\ncolor:\nstatic: []\nunique: []\n+ custom: {}\nkeep: list of strings\nstrip: list of strings\n```\n@@ -274,6 +275,13 @@ labels:\nquickly learn which instance is affected by given alert.\n- `color:unique` - list of label names that should have u...
TypeScript
Apache License 2.0
prymitive/karma
feat(docs): document custom label colors
1
feat
docs
807,849
04.02.2019 13:31:03
28,800
f1dc3fcfa2ff5c13034f5ed3746753bc702d3721
fix(publish): Correct silly log heading
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,7 @@ function getNpmUsername(_opts) {\nreturn getProfileData(opts).then(success, failure);\nfunction success(result) {\n- opts.log.silly(\"npm whoami\", \"received %j\", result);\n+ opts.log.silly(\"npm profile get\", \"received %j\", result);\nif (!result.us...
JavaScript
MIT License
lerna/lerna
fix(publish): Correct silly log heading
1
fix
publish
807,849
04.02.2019 14:11:27
28,800
abe3afe26a903ec86ff92e2c2940fc19d5f5bad1
chore(deps): Add some root dev deps to influence the graph
[ { "change_type": "MODIFY", "diff": "\"@lerna-test/silence-logging\": \"file:helpers/silence-logging\",\n\"@lerna-test/update-lerna-config\": \"file:helpers/update-lerna-config\",\n\"camelcase\": \"^4.1.0\",\n+ \"debug\": \"^4.1.1\",\n\"eslint\": \"^5.13.0\",\n\"eslint-config-airbnb-base\": \"^13.1.0\",\n\"e...
JavaScript
MIT License
lerna/lerna
chore(deps): Add some root dev deps to influence the graph
1
chore
deps
807,849
04.02.2019 14:25:59
28,800
fa2b6d7f13dbbcd138797766c1b3a0680988496d
chore(test): Add workaround for bad Jest caching behavior
[ { "change_type": "MODIFY", "diff": "\"use strict\";\nmodule.exports = {\n+ // workaround https://github.com/facebook/jest/pull/5862\n+ name: \"lerna-unit\",\nclearMocks: true,\n// windows ci is terribly slow, so let's not burden it with coverage\ncollectCoverage: process.env.CI && process.env.TRAVIS_OS_NAME...
JavaScript
MIT License
lerna/lerna
chore(test): Add workaround for bad Jest caching behavior
1
chore
test
531,793
04.02.2019 14:29:13
0
1c673f2c361ef786aea45c285aead4d5dff5bdf1
fix(ci): fix tag condition for travis Still not building dockers on new release, looks like 'tag IS present' is the correct syntax for this condition after all
[ { "change_type": "MODIFY", "diff": "@@ -131,7 +131,7 @@ jobs:\ntags: true\n- stage: Deploy docker image\n- if: repo = prymitive/karma AND ((type = push AND branch = master) OR tag = true)\n+ if: repo = prymitive/karma AND ((type = push AND branch = master) OR tag IS present)\nlanguage: generic\naddons:\napt...
TypeScript
Apache License 2.0
prymitive/karma
fix(ci): fix tag condition for travis Still not building dockers on new release, looks like 'tag IS present' is the correct syntax for this condition after all
1
fix
ci
807,849
04.02.2019 14:37:41
28,800
e58a1d0654f1f253b7f77943871dbc0b19efb2e4
fix(create): Bump camelcase
[ { "change_type": "MODIFY", "diff": "\"@lerna/command\": \"file:../../core/command\",\n\"@lerna/npm-conf\": \"file:../../utils/npm-conf\",\n\"@lerna/validation-error\": \"file:../../core/validation-error\",\n- \"camelcase\": \"^4.1.0\",\n+ \"camelcase\": \"^5.0.0\",\n\"dedent\": \"^0.7.0\",\n\"fs-extra\": \"...
JavaScript
MIT License
lerna/lerna
fix(create): Bump camelcase
1
fix
create
71,101
04.02.2019 14:43:19
-3,600
7cdbcec51471ba100a693963d0cf421f2910aedb
fix(apig): Move 'selectionPattern` to `integrationResponses` The property was modeled in the wrong place, rendering it unusable. Moved it to the correct location instead, and added a validation test. Fixes
[ { "change_type": "MODIFY", "diff": "@@ -86,15 +86,6 @@ export interface IntegrationOptions {\n*/\nintegrationResponses?: IntegrationResponse[];\n- /**\n- * The templates that are used to transform the integration response body.\n- * Specify templates as key-value pairs (string-to-string mappings), with a\n-...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(apig): Move 'selectionPattern` to `integrationResponses` (#1636) The property was modeled in the wrong place, rendering it unusable. Moved it to the correct location instead, and added a validation test. Fixes #1608
1
fix
apig
807,849
04.02.2019 14:48:19
28,800
86017d769bb83dfd1abb88f4cf560f73651ad494
chore: livin' on the edge...
[ { "change_type": "MODIFY", "diff": "}\n},\n\"@babel/generator\": {\n- \"version\": \"7.3.0\",\n- \"resolved\": \"https://registry.npmjs.org/@babel/generator/-/generator-7.3.0.tgz\",\n- \"integrity\": \"sha512-dZTwMvTgWfhmibq4V9X+LMf6Bgl7zAodRn9PvcPdhlzFMbvUutx74dbEv7Atz3ToeEpevYEJtAwfxq/bDCzHWg==\",\n+ \"ve...
JavaScript
MIT License
lerna/lerna
chore: livin' on the edge...
1
chore
null
217,922
04.02.2019 14:50:13
-3,600
0dbeb2895ac9215ed9cfff3d2c09dd5dd1900443
chore: new tests to ensure non regression of list generation
[ { "change_type": "MODIFY", "diff": "@@ -2,9 +2,9 @@ import { changeLanguage } from '../support/app.po';\nimport { customCommand } from '../support/commands';\nfunction expectItem(name: string, amount: number) {\n- cy.get(' nz-collapse > .ant-collapse > .ant-collapse-item > .ant-collapse-content > .ant-colla...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: new tests to ensure non regression of list generation
1
chore
null
815,593
04.02.2019 15:10:47
-32,400
d50d8c7d5842c0cf25a4a44939312373d446f802
test: skip verification in sync testing code
[ { "change_type": "MODIFY", "diff": "@@ -766,7 +766,9 @@ mod tests {\nlet shared = builder.build();\nlet notify = notify.unwrap_or_else(|| NotifyService::default().start::<&str>(None));\n- let chain_service = ChainBuilder::new(shared.clone(), notify.clone()).build();\n+ let chain_service = ChainBuilder::new(...
Rust
MIT License
nervosnetwork/ckb
test: skip verification in sync testing code
1
test
null
743,919
04.02.2019 15:39:29
28,800
5be206ac9ecd096531ed1726032484e7884293a8
feat: add applyBeforeValidation, for applying sync middleware before validation
[ { "change_type": "MODIFY", "diff": "@@ -945,7 +945,7 @@ To submit a new translation for yargs:\n*The [Microsoft Terminology Search](http://www.microsoft.com/Language/en-US/Search.aspx) can be useful for finding the correct terminology in your locale.*\n-<a name=\"middleware\"></a>.middleware(callbacks)\n+<a...
JavaScript
MIT License
yargs/yargs
feat: add applyBeforeValidation, for applying sync middleware before validation
1
feat
null
273,731
04.02.2019 16:27:02
-3,600
6fa118c7d74ebffd9976308a94880a423b419833
feat(app): siteDescription as description meta tag
[ { "change_type": "MODIFY", "diff": "module.exports = {\nsiteName: 'Gridsome',\n+ siteDescription: 'My super site',\npathPrefix: '/sub/-/dir',\nplugins: []\n}\n", "new_path": "gridsome/__tests__/__fixtures__/project-path-prefix/gridsome.config.js", "old_path": "gridsome/__tests__/__fixtures__/project...
JavaScript
MIT License
gridsome/gridsome
feat(app): siteDescription as description meta tag (#70)
1
feat
app
273,683
04.02.2019 16:32:18
-3,600
59988e587c7abf46031721ba80c6c0c3a0730fd1
feat(build): generate 404.html file
[ { "change_type": "ADD", "diff": "+<template>\n+ <div>\n+ <h1>Custom 404 - not found</h1>\n+ <span>{{ $page.customRootValue }}</span>\n+ </div>\n+</template>\n+\n+<page-query>\n+query Page404 {\n+ customRootValue\n+}\n+</page-query>\n", "new_path": "gridsome/__tests__/__fixtures__/project-basic/src/pages...
JavaScript
MIT License
gridsome/gridsome
feat(build): generate 404.html file (#75)
1
feat
build
503,970
04.02.2019 16:56:31
18,000
a932004f63771fc7126e3b5fdc0502b8d374fc59
chore(react-styled-system, react-table): Replace SFC syntax with FunctionComponent
[ { "change_type": "MODIFY", "diff": "import { FunctionComponent, HTMLProps } from 'react';\n-export interface AboutMoalBoxHeroProps extends HTMLProps<HTMLImageElement> {}\n-declare const AboutMoalBoxHero: FunctionComponent<AboutMoalBoxHeroProps>;\n-export default AboutMoalBoxHero;\n+export interface AboutMod...
TypeScript
MIT License
patternfly/patternfly-react
chore(react-styled-system, react-table): Replace SFC syntax with FunctionComponent (#1276)
1
chore
react-styled-system, react-table
503,922
04.02.2019 17:06:42
-3,600
42b20e609138bc4ac6820fd868c36133bc6194dd
fix(Table): Use direct imports for styles
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport PropTypes from 'prop-types';\nimport { css } from '@patternfly/react-styles';\n-import { tableExpandableRowContent } from '@patternfly/patternfly-next/components/Table/table.css';\n+import styles from '@patternfly/patternfly-next/compone...
TypeScript
MIT License
patternfly/patternfly-react
fix(Table): Use direct imports for styles (#1314)
1
fix
Table
273,683
04.02.2019 17:14:02
-3,600
b41cc1f7616b23666aeffb4e14bf41be2bb8f86b
test(app): custom index.html template
[ { "change_type": "ADD", "diff": "+<!DOCTYPE html>\n+<html ${htmlAttrs}>\n+ <head>\n+ ${head}\n+ </head>\n+ <body ${bodyAttrs}>\n+ <div>custom html template</div>\n+ ${app}\n+ ${scripts}\n+ </body>\n+</html>\n", "new_path": "gridsome/__tests__/__fixtures__/project-basic/src/index.html", "old_path": n...
JavaScript
MIT License
gridsome/gridsome
test(app): custom index.html template
1
test
app
217,922
04.02.2019 17:22:03
-3,600
8b0ff5a1d9485313e417713baa9dbde54bee4f71
feat: added opensearch to the website
[ { "change_type": "ADD", "diff": "+<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n+<OpenSearchDescription xmlns:moz=\"http://www.mozilla.org/2006/browser/search/\"\n+ xmlns=\"http://a9.com/-/spec/opensearch/1.1/\">\n+ <ShortName>FFXIV Teamcraft</ShortName>\n+ <Description>Search for an item on FFXIV Teamcraft</...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: added opensearch to the website
1
feat
null
67,476
04.02.2019 17:24:40
-3,600
cc4c9c0705b76893ac64ded28ecf842f447eafde
chore(all): improve resource types
[ { "change_type": "MODIFY", "diff": "@@ -21,6 +21,7 @@ export {\nexport {\nClass,\nConstructable,\n+ ConstructableClass,\nDiff,\nICallable,\nIDisposable,\n", "new_path": "packages/kernel/src/index.ts", "old_path": "packages/kernel/src/index.ts" }, { "change_type": "MODIFY", "diff": "@@ -7...
TypeScript
MIT License
aurelia/aurelia
chore(all): improve resource types
1
chore
all
67,476
04.02.2019 17:24:55
-3,600
fc85b8ac682dc636ab4dbfc4d970ac032175dd54
chore(test): fix test type
[ { "change_type": "MODIFY", "diff": "@@ -99,6 +99,8 @@ export class FakeView implements IView {\nthis.$state |= State.isBound;\n}\n+ public $patch(flags: LifecycleFlags): void { /* do nothing */ }\n+\npublic $unbind(): void {\nthis.$state &= ~State.isBound;\n}\n", "new_path": "packages/runtime-html/test/...
TypeScript
MIT License
aurelia/aurelia
chore(test): fix test type
1
chore
test
807,849
04.02.2019 17:24:58
28,800
1bb152105f793e33eee37067ee7834c4e6adff1e
test(integration): Always turn of chalk colors to avoid snapshot pollution
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,14 @@ module.exports = runner;\nfunction runner(cwd, env) {\nconst opts = {\ncwd,\n- env: Object.assign({ CI: \"true\" }, env),\n+ env: Object.assign(\n+ {\n+ CI: \"true\",\n+ // always turn off chalk\n+ FORCE_COLOR: \"0\",\n+ },\n+ env\n+ ),\n// when debugging...
JavaScript
MIT License
lerna/lerna
test(integration): Always turn of chalk colors to avoid snapshot pollution
1
test
integration
273,683
04.02.2019 17:25:34
-3,600
b88690210d8ac10e0f1e3c77b43338ec88f23bf6
test(webpack): custom css loader options
[ { "change_type": "MODIFY", "diff": "@@ -71,44 +71,44 @@ test('setup webpack server config', async () => {\nexpect(config.resolve.alias['gridsome$']).toEqual(path.resolve(__dirname, '../app/index.js'))\n})\n-// test('setup style loader options', async () => {\n-// const app = await createApp(context, {\n-// ...
JavaScript
MIT License
gridsome/gridsome
test(webpack): custom css loader options
1
test
webpack
127,940
04.02.2019 17:26:43
-7,200
3e0e7859b81b291332273d9260893433191cae0e
chore: switch to React FC from SFC
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ type ButtonProps = {\n/**\n* Styles\n*/\n-const buttonBase = css([\n+const button = css([\n{\npadding: `${spacing('small')} ${spacing('medium')}`,\ndisplay: 'inline-block',\n@@ -50,7 +50,7 @@ const buttonSpaced = css({\n/**\n* Component\n*/\n-const Butto...
TypeScript
MIT License
coingaming/moon-design
chore: switch to React FC from SFC https://stackoverflow.com/questions/53885993/react-16-7-react-sfc-is-now-deprecated
1
chore
null
127,940
04.02.2019 17:27:33
-7,200
8a7c9b2e398f51178c1b3681b249ea10e51fca20
chore: switch to Styled from SFC
[ { "change_type": "MODIFY", "diff": "-import * as React from 'react';\nimport { css } from '@emotion/core';\nimport styled from '@emotion/styled';\nimport { padding, rem } from 'polished';\n@@ -8,14 +7,13 @@ import { cardGradient } from './utils';\ntype CardProps = {\ntemplate: 'front' | 'back' | 'outline';\...
TypeScript
MIT License
coingaming/moon-design
chore: switch to Styled from SFC https://stackoverflow.com/questions/53885993/react-16-7-react-sfc-is-now-deprecated
1
chore
null
730,429
04.02.2019 17:32:26
18,000
bb5cb6e1479526c97747fdd0dc2f0b32b8600c48
fix(widget-recents): fetch proper to user avatar in direct spaces
[ { "change_type": "MODIFY", "diff": "@@ -16,20 +16,31 @@ import {\nimport {updateSpaceTypeFilter, updateWidgetStatus} from '../actions';\nimport getRecentsWidgetProps from '../selector';\n-function getSpaceAvatar(s, props) {\n- const {sparkInstance} = props;\n+/**\n+ * Gets the avatar for a space\n+ * Will f...
JavaScript
MIT License
webex/react-widgets
fix(widget-recents): fetch proper to user avatar in direct spaces
1
fix
widget-recents
730,412
04.02.2019 22:49:10
0
924f0fcd8704f8aab3435e45914742aaebd3c19d
chore(release): 0.1.416
[ { "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.416\"></a>\n+## [0.1.416](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.416
1
chore
release
67,494
04.02.2019 22:49:55
-3,600
3ae294b0cd84825759d6951914e42d9072e1d96d
refactor(router): remove elementVM in viewport
[ { "change_type": "MODIFY", "diff": "@@ -96,7 +96,7 @@ export class ViewportCustomElement {\nif (this.element.hasAttribute('stateful')) {\noptions.stateful = true;\n}\n- this.viewport = this.router.addViewport(this.name, this.element, this.$context, this, options);\n+ this.viewport = this.router.addViewport(...
TypeScript
MIT License
aurelia/aurelia
refactor(router): remove elementVM in viewport
1
refactor
router
603,467
04.02.2019 23:13:25
0
0737f6f4255317a6eb7c9fb02b7c90a0f745c67b
chore(deps): Removed unused dependencies
[ { "change_type": "MODIFY", "diff": "\"engines\": {\n\"node\": \">= 6.9.x\",\n\"npm\": \">= 3\"\n- },\n- \"dependencies\": {\n- \"metalsmith-sass\": \"^1.5.1\",\n- \"metalsmith-uglify\": \"^2.3.0\"\n}\n}\n", "new_path": "documentation/esdoc-template/package.json", "old_path": "documentation/esdoc-tem...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(deps): Removed unused dependencies
1
chore
deps
67,494
04.02.2019 23:14:54
-3,600
b660421edf0dcf4e3b85606681c97ae133a285fa
chore(refactor): fix linting errors
[ { "change_type": "MODIFY", "diff": "@@ -108,6 +108,7 @@ export class QueuedBrowserHistory implements QueuedBrowserHistory {\n}\nthis.processingItem = this.queue.shift();\nconst method = this.processingItem.object[this.processingItem.method];\n+ // tslint:disable-next-line:no-console\nconsole.log('DEQUEUE', ...
TypeScript
MIT License
aurelia/aurelia
chore(refactor): fix linting errors
1
chore
refactor
67,494
05.02.2019 00:44:15
-3,600
299bf7c5f250a82a6438dca11e5d0b79d168089d
chore(router): remove unnecessary asyncs
[ { "change_type": "MODIFY", "diff": "@@ -192,7 +192,7 @@ export class HistoryBrowser {\nreturn state[key];\n}\n- public async setEntryTitle(title: string): Promise<void> {\n+ public setEntryTitle(title: string): Promise<void> {\nthis.currentEntry.title = title;\nthis.historyEntries[this.currentEntry.index] =...
TypeScript
MIT License
aurelia/aurelia
chore(router): remove unnecessary asyncs
1
chore
router
273,665
05.02.2019 00:51:46
-32,400
c236d8b1fa7fd74096562d3ddd816a43baedada7
feat(webpack): enviroment variables and support for dotenv files
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,7 @@ import Vue from 'vue'\nimport fetch from './fetch'\nimport SockJS from 'sockjs-client'\n-const sock = new SockJS(SOCKJS_ENDPOINT)\n+const sock = new SockJS(process.env.SOCKJS_ENDPOINT)\nconst active = {}\nsock.onmessage = message => {\n", "new_path": "...
JavaScript
MIT License
gridsome/gridsome
feat(webpack): enviroment variables and support for dotenv files (#123)
1
feat
webpack
71,371
05.02.2019 00:59:51
-3,600
299fb6a71ae94950c8d3c844d14779feb68e215f
feat(aws-s3): add option to specify block public access settings Adds option to enable all block public access settings on the bucket (`blockPublicAccess`). Also throws an error when trying to use grantPublicAccess if blockPublicAccess is set to true.
[ { "change_type": "MODIFY", "diff": "@@ -208,3 +208,33 @@ bucket.onEvent(s3.EventType.ObjectRemoved, myQueue, { prefix: 'foo/', suffix: '.\n```\n[S3 Bucket Notifications]: https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html\n+\n+\n+### Block Public Access\n+\n+Use `blockPublicAccess` to sp...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(aws-s3): add option to specify block public access settings (#1664) Adds option to enable all block public access settings on the bucket (`blockPublicAccess`). Also throws an error when trying to use grantPublicAccess if blockPublicAccess is set to true. https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html
1
feat
aws-s3
273,652
05.02.2019 03:08:09
-39,600
4cdd3268579e0ecd818af2c535f7210af10383b5
feat(app): override default index.html template Create a `src/index.html` file to override the default template.
[ { "change_type": "MODIFY", "diff": "@@ -18,9 +18,11 @@ module.exports = (context, options = {}, pkg = {}) => {\nconst resolve = (...p) => path.resolve(context, ...p)\nconst isProd = process.env.NODE_ENV === 'production'\nconst configPath = resolve('gridsome.config.js')\n+ const localIndex = resolve('src/ind...
JavaScript
MIT License
gridsome/gridsome
feat(app): override default index.html template (#162) Create a `src/index.html` file to override the default template.
1
feat
app
679,913
05.02.2019 05:05:48
0
8d61b710e34ada5adb13eda04bb1792aeb2f20a6
refactor(examples): minor update iso-plasma
[ { "change_type": "MODIFY", "diff": "@@ -59,7 +59,7 @@ const app =\nrange(-1, 1, 0.1)\n);\nreturn [canvas, { width: 600, height: 600 },\n- [\"g\", { scale: 600 / W, weight: 0.05, stroke: \"#000\" }, contours]\n+ [\"g\", { scale: 600 / W, weight: 0.05, __diff: false }, contours]\n];\n};\n", "new_path": "e...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): minor update iso-plasma
1
refactor
examples
679,913
05.02.2019 05:06:58
0
57d4488a2596a01f3b2326e53f9709fcbc41f297
feat(math): add PHI const
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,8 @@ export const SIXTH_PI = PI / 6;\nexport const DEG2RAD = PI / 180;\nexport const RAD2DEG = 180 / PI;\n+export const PHI = (1 + Math.sqrt(5)) / 2;\n+\nexport const SQRT2 = Math.SQRT2;\nexport const SQRT3 = Math.sqrt(3);\n", "new_path": "packages/math/src...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(math): add PHI const
1
feat
math
679,913
05.02.2019 05:07:47
0
ae83bb291c12b68016d7820012d8d1999272983e
fix(transducers): ensure all vals in hexDump iterator version
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import { U32, U8 } from \"@thi.ng/strings\";\nimport { Transducer } from \"../api\";\nimport { comp } from \"../func/comp\";\nimport { juxt } from \"../func/juxt\";\n-import { $iter } from \"../iterator\";\n+import { $iter, iterator } from \"../iterator\";...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers): ensure all vals in hexDump iterator version
1
fix
transducers
217,922
05.02.2019 08:17:08
-3,600
bf602ab7db361763cab3e5a827a9bef61812aef6
fix(simulator): fixed an issue resetting rotation to last saved state after you apply configuration
[ { "change_type": "MODIFY", "diff": "@@ -287,7 +287,9 @@ export class SimulatorComponent implements OnInit, OnDestroy {\ncombineLatest(this.rotation$, this.crafterStats$).pipe(\ntakeUntil(this.onDestroy$)\n).subscribe(([rotation, stats]) => {\n+ if (this.actions$.value.length === 0) {\nthis.actions$.next(thi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed an issue resetting rotation to last saved state after you apply configuration
1
fix
simulator
503,965
05.02.2019 09:07:04
18,000
f5b3b763063d9061fffd9fb692c5f1bcfcde2148
build(cross-var): use cross-env instead of cross-var to fix OSX 10.13.6 error
[ { "change_type": "MODIFY", "diff": "\"build:babel:cjs\": \"cross-env BABEL_ENV=production:cjs babel src --out-dir dist/js\",\n\"build:babel:esm\": \"cross-env BABEL_ENV=production:esm babel src --out-dir dist/esm\",\n\"build:less\": \"shx mkdir -p dist/less && shx cp -r less/* dist/less\",\n- \"build:sass\"...
TypeScript
MIT License
patternfly/patternfly-react
build(cross-var): use cross-env instead of cross-var to fix OSX 10.13.6 error (#1323)
1
build
cross-var
71,101
05.02.2019 09:24:23
-3,600
9858a64ca0324d87684333cb5ace47fb29c5e9e5
feat(ssm): Add L2 resource for SSM Parameters Specialized classes for StringParameter and StringListParameter, and their interface counterparts.
[ { "change_type": "MODIFY", "diff": "## The CDK Construct Library for AWS Systems Manager\nThis module is part of the [AWS Cloud Development Kit](https://github.com/awslabs/aws-cdk) project.\n+\n+### Installation\n+Install the module:\n+\n+```console\n+$ npm i @aws-cdk/aws-ssm\n+```\n+\n+Import it into your ...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(ssm): Add L2 resource for SSM Parameters (#1515) Specialized classes for StringParameter and StringListParameter, and their interface counterparts.
1
feat
ssm
67,507
05.02.2019 10:28:50
-3,600
e867c06839cc686c2532b77d12119d4747dc9d14
chore: mark linting violations as errors
[ { "change_type": "MODIFY", "diff": "\"**/examples/**\"\n]\n},\n- \"defaultSeverity\": \"warning\",\n+ \"defaultSeverity\": \"error\",\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
chore: mark linting violations as errors
1
chore
null
67,507
05.02.2019 10:29:20
-3,600
f692d1f2e43a31ef234f4fc7dc4240451f777d2f
refactor: minor linting refactor
[ { "change_type": "MODIFY", "diff": "@@ -89,6 +89,7 @@ export class RetryInterceptor implements Interceptor {\nif (doRetry) {\nretryConfig.counter++;\nconst delay = calculateDelay(retryConfig);\n+ // tslint:disable-next-line:no-string-based-set-timeout\nreturn new Promise(resolve => PLATFORM.global.setTimeou...
TypeScript
MIT License
aurelia/aurelia
refactor: minor linting refactor
1
refactor
null
603,467
05.02.2019 10:50:15
0
ae91f957168f085153e21f770066e15cd0e52279
fix(protractor): Corrected how Text.of(Target) is represented in the reports
[ { "change_type": "MODIFY", "diff": "+import { expect } from '@integration/testing-tools';\nimport { Ensure, equals } from '@serenity-js/assertions';\nimport { Actor } from '@serenity-js/core';\nimport { by, protractor } from 'protractor';\n@@ -13,6 +14,8 @@ describe('Text', function() {\ndescribe('of', () =...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(protractor): Corrected how Text.of(Target) is represented in the reports
1
fix
protractor
67,494
05.02.2019 11:09:37
-3,600
7e36eb8cf95fb71fcd0ce61e1350a8bd7abd1fbc
refactor(router): add viewport instruction
[ { "change_type": "ADD", "diff": "+import { IContainer } from '@aurelia/kernel';\n+import { CustomElementResource, ICustomElementType, IRenderContext } from '@aurelia/runtime';\n+import { Router } from './router';\n+import { Viewport } from './viewport';\n+import { IRouteableCustomElementType } from './viewp...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add viewport instruction
1
refactor
router
67,507
05.02.2019 11:16:39
-3,600
46e642bdefe949961c82a547ef976e6e4825f448
chore: tweak some linting supressions
[ { "change_type": "MODIFY", "diff": "@@ -323,7 +323,6 @@ export class FragmentNodeSequence implements INodeSequence {\n}\npublic insertBefore(refNode: IRenderLocation & Comment): void {\n- // tslint:disable-next-line:no-any\nrefNode.parentNode.insertBefore(this.fragment, refNode);\n// internally we could gen...
TypeScript
MIT License
aurelia/aurelia
chore: tweak some linting supressions
1
chore
null
807,849
05.02.2019 11:29:43
28,800
a2935417b07836324cf7c83f185c70e4c11abfdd
chore(deps): Jest 24.1.0
[ { "change_type": "MODIFY", "diff": "\"use strict\";\nmodule.exports = {\n- // workaround https://github.com/facebook/jest/pull/5862\n- name: \"lerna-unit\",\nclearMocks: true,\n// windows ci is terribly slow, so let's not burden it with coverage\ncollectCoverage: process.env.CI && process.env.TRAVIS_OS_NAME...
JavaScript
MIT License
lerna/lerna
chore(deps): Jest 24.1.0
1
chore
deps
807,849
05.02.2019 11:44:07
28,800
42e4a5c6bfd9fac6550b6b7d1efe796c3a8c39db
fix(collect-updates): Improve logging, making ignored globs explicit
[ { "change_type": "MODIFY", "diff": "@@ -9,15 +9,27 @@ const slash = require(\"slash\");\nmodule.exports = makeDiffPredicate;\nfunction makeDiffPredicate(committish, execOpts, ignorePatterns = []) {\n- const ignoreFilters = new Set(ignorePatterns.map(p => minimatch.filter(`!${p}`, { matchBase: true })));\n+ ...
JavaScript
MIT License
lerna/lerna
fix(collect-updates): Improve logging, making ignored globs explicit
1
fix
collect-updates
603,467
05.02.2019 12:06:48
0
5ebb30b0149c7dede566d8338c1c4deac9a7b2e7
fix(core): Path works on both Windows and *nix systems
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@serenity-js/core\",\n- \"version\": \"2.0.1-alpha.6\",\n+ \"version\": \"2.0.1-alpha.8\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n", "new_path": "packages/core/package-lock.json", "old_path": "packages/core/package-lock....
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(core): Path works on both Windows and *nix systems #142
1
fix
core
807,849
05.02.2019 12:21:05
28,800
043f1d4d9b2399b9a88ef081aa09ece2277019c4
refactor(fixtures): Rename normal-no-inter-dependencies -> no-interdependencies
[ { "change_type": "RENAME", "diff": "", "new_path": "commands/publish/__tests__/__fixtures__/no-interdependencies/lerna.json", "old_path": "commands/publish/__tests__/__fixtures__/normal-no-inter-dependencies/lerna.json" }, { "change_type": "ADD", "diff": "+{\n+ \"name\": \"no-interdepend...
JavaScript
MIT License
lerna/lerna
refactor(fixtures): Rename normal-no-inter-dependencies -> no-interdependencies
1
refactor
fixtures
791,690
05.02.2019 12:49:36
21,600
b073af568be0f3b96fe038a50f70e603437be286
core(network-analysis): set additional RTT to 0 not NaN
[ { "change_type": "MODIFY", "diff": "@@ -35,9 +35,8 @@ class NetworkAnalysis {\n/** @type {Map<string, number>} */\nconst serverResponseTimeByOrigin = new Map();\nfor (const [origin, summary] of responseTimeSummaries.entries()) {\n- /** @type {number} */\n- // @ts-ignore - satisfy the type checker that entry...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(network-analysis): set additional RTT to 0 not NaN (#7156)
1
core
network-analysis
603,467
05.02.2019 13:05:04
0
968494df9911b95ea7044feaa6a94475ae33a28c
chore(rest): Replaced my patched axios-mock-adapter with the official version as they've merged the
[ { "change_type": "MODIFY", "diff": "\"@serenity-js/assertions\": \"2.0.1-alpha.8\",\n\"@serenity-js/core\": \"2.0.1-alpha.8\",\n\"axios\": \"0.18.0\",\n- \"axios-mock-adapter\": \"https://github.com/jan-molak/axios-mock-adapter.git#master\"\n+ \"axios-mock-adapter\": \"^1.16.0\"\n},\n\"nyc\": {\n\"include\"...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(rest): Replaced my patched axios-mock-adapter with the official version as they've merged the
1
chore
rest
603,467
05.02.2019 14:04:41
0
7bd837da1ee2cf11e2d9658a0458bc3d39bcb658
fix(cucumber): AssertionErrors are reported as such
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ export class ErrorSerialiser {\n}, { name: error.name || error.constructor.name }) as SerialisedError;\n}\n- static deserialise(serialisedError: SerialisedError): Error {\n+ static deserialise<E extends Error>(serialisedError: SerialisedError): E {\n// t...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(cucumber): AssertionErrors are reported as such
1
fix
cucumber