author int64 4.98k 943k | date stringdate 2017-04-15 16:45:02 2022-02-25 15:32:15 | timezone int64 -46,800 39.6k | hash stringlengths 40 40 | message stringlengths 8 468 | mods listlengths 1 16 | language stringclasses 9
values | license stringclasses 2
values | repo stringclasses 119
values | original_message stringlengths 12 491 | is_CCS int64 1 1 | commit_type stringclasses 129
values | commit_scope stringlengths 1 44 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
67,476 | 14.11.2019 03:26:09 | -3,600 | 23cf144d5c301e441798696767c19a9cd2d3f6be | chore(au-dom): fixup typings | [
{
"change_type": "MODIFY",
"diff": "@@ -157,6 +157,11 @@ export class AuNode implements INode {\nreturn node;\n}\n+ public static getEffectiveParentNode(node: AuNode): AuNode | null {\n+ // TODO: implement this properly (if we're going to keep AuDOM around)\n+ return node.parentNode;\n+ }\n+\npublic static ... | TypeScript | MIT License | aurelia/aurelia | chore(au-dom): fixup typings | 1 | chore | au-dom |
67,476 | 14.11.2019 03:40:36 | -3,600 | 8fbb643da95e1bc4879dcf2592c6d0ec6280164d | docs(dom): add api descriptions for getEffectiveParentNode | [
{
"change_type": "MODIFY",
"diff": "@@ -174,6 +174,18 @@ export class HTMLDOM implements IDOM {\nreturn this.document.createTextNode(text);\n}\n+ /**\n+ * Returns the effective parentNode according to Aurelia's component hierarchy.\n+ *\n+ * Used by Aurelia to find the closest parent controller relative to ... | TypeScript | MIT License | aurelia/aurelia | docs(dom): add api descriptions for getEffectiveParentNode | 1 | docs | dom |
67,476 | 14.11.2019 03:51:33 | -3,600 | 70cd4a6584616e20aa6be5b46853ca8a1622d28d | docs(custom-element): add api descriptions for CustomElement.for | [
{
"change_type": "MODIFY",
"diff": "@@ -56,9 +56,40 @@ export type PartialCustomElementDefinition = PartialResourceDefinition<{\nexport type CustomElementType<T extends Constructable = Constructable> = ResourceType<T, IViewModel & (T extends Constructable<infer P> ? P : {}), PartialCustomElementDefinition>;... | TypeScript | MIT License | aurelia/aurelia | docs(custom-element): add api descriptions for CustomElement.for | 1 | docs | custom-element |
67,476 | 14.11.2019 03:52:38 | -3,600 | f57df18dd9c0ae9863859045b4db646b6b6d8fb4 | chore(au-dom): fix slip-up | [
{
"change_type": "MODIFY",
"diff": "@@ -157,11 +157,6 @@ export class AuNode implements INode {\nreturn node;\n}\n- public static getEffectiveParentNode(node: AuNode): AuNode | null {\n- // TODO: implement this properly (if we're going to keep AuDOM around)\n- return node.parentNode;\n- }\n-\npublic static ... | TypeScript | MIT License | aurelia/aurelia | chore(au-dom): fix slip-up | 1 | chore | au-dom |
67,476 | 14.11.2019 04:02:53 | -3,600 | 6a6dd76d6ad0aa86dc8d94d793ad5c29d184a07d | fix(getEffectiveParentNode): skip over sibling containerless elements above the node | [
{
"change_type": "MODIFY",
"diff": "@@ -187,25 +187,29 @@ export class HTMLDOM implements IDOM {\n* @returns Either the closest parent node, the closest `IRenderLocation` (comment node that is the containerless host), or `null` if this is either the absolute document root or a disconnected node.\n*/\npublic... | TypeScript | MIT License | aurelia/aurelia | fix(getEffectiveParentNode): skip over sibling containerless elements above the node | 1 | fix | getEffectiveParentNode |
67,476 | 14.11.2019 05:41:54 | -3,600 | 5f40cd5d4273d2e526bc42c241b52aee9f2fd03b | feat(dom): add setEffectiveParentNode for portal-like components | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,8 @@ export const enum NodeType {\nNotation = 12\n}\n+const effectiveParentNodeOverrides = new WeakMap<Node, Node>();\n+\n/**\n* IDOM implementation for Html.\n*/\n@@ -179,34 +181,41 @@ export class HTMLDOM implements IDOM {\n*\n* Used by Aurelia to find the ... | TypeScript | MIT License | aurelia/aurelia | feat(dom): add setEffectiveParentNode for portal-like components | 1 | feat | dom |
866,393 | 14.11.2019 05:57:40 | -32,400 | 76ff3e57b17f5f1e2b9247f89ac60aab00b197be | chore(lint): introduce reviewdog
This change introduces `reviewdog` that can create PR comments upon
ESLint result. | [
{
"change_type": "ADD",
"diff": "+name: reviewdog\n+on: [pull_request]\n+jobs:\n+ eslint:\n+ name: runner / eslint\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v1\n+ - name: Use Node.js 12.x\n+ uses: actions/setup-node@v1\n+ with:\n+ node-version: '12.x'\n+ - name: Install dependencies\n+... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(lint): introduce reviewdog (#170)
This change introduces `reviewdog` that can create PR comments upon
ESLint result. | 1 | chore | lint |
67,476 | 14.11.2019 06:33:10 | -3,600 | 39f168fa6bff0dfde2a8d5fc740b90f2b3cb6c66 | ci: use verbose unit test logging | [
{
"change_type": "MODIFY",
"diff": "@@ -469,18 +469,18 @@ workflows:\n<<: *filter_ignore_develop_release\nname: unit_test_chrome\ne: docker-circleci\n- npm_command: \"test-chrome\"\n+ npm_command: \"test-chrome:verbose\"\n- unit_test:\n<<: *filter_ignore_develop_release\nname: unit_test_firefox\ne: docker-c... | TypeScript | MIT License | aurelia/aurelia | ci: use verbose unit test logging | 1 | ci | null |
866,393 | 14.11.2019 07:08:09 | -32,400 | b53b3788418e40efb19cf783bc6a1471d57dd11b | chore(dependencies): upgrade node-sass
This change upgrades `node-sass` to `4.12.x` or higher, that supports
Node 12. | [
{
"change_type": "MODIFY",
"diff": "\"mini-css-extract-plugin\": \"^0.5.0\",\n\"mkdirp\": \"^0.5.0\",\n\"morgan\": \"^1.8.0\",\n- \"node-sass\": \"^4.11.0\",\n+ \"node-sass\": \"^4.12.0\",\n\"null-loader\": \"^2.0.0\",\n\"polymer-webpack-loader\": \"^2.0.0\",\n\"postcss\": \"^7.0.0\",\n",
"new_path": "p... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(dependencies): upgrade node-sass (#172)
This change upgrades `node-sass` to `4.12.x` or higher, that supports
Node 12. | 1 | chore | dependencies |
866,393 | 14.11.2019 07:14:25 | -32,400 | 5f4751a49bdf519e7275d25b44f8c0c240c6020b | chore(build): ship sass code
Shipping our Sass code allows users to create custom `.css.js` files,
e.g. an optimized version that contains styles of all components
application uses and making `styles` of each components point to such
single `.css.js`. In this way duplicate styles can be eliminated by
`import-once`. | [
{
"change_type": "MODIFY",
"diff": "@@ -64,7 +64,7 @@ module.exports = {\n);\n},\n- async sass() {\n+ async css() {\nconst banner = await readFileAsync(path.resolve(__dirname, '../tools/license.js'), 'utf8');\nawait promisifyStream(() =>\ngulp\n@@ -189,4 +189,8 @@ module.exports = {\n.pipe(gulp.dest(config.... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(build): ship sass code (#164)
Shipping our Sass code allows users to create custom `.css.js` files,
e.g. an optimized version that contains styles of all components
application uses and making `styles` of each components point to such
single `.css.js`. In this way duplicate styles can be eliminated by
`impor... | 1 | chore | build |
67,507 | 14.11.2019 07:23:25 | -3,600 | c5d0affa79865264717cea220526294437022b8d | chore: downgrade chrome | [
{
"change_type": "MODIFY",
"diff": "},\n\"ignoreDeps\": [\n\"i18next\",\n- \"pixi.js\"\n+ \"pixi.js\",\n+ \"@types/pixi.js\"\n],\n\"packageRules\": [\n{\n},\n{\n\"packageNames\": [\"chromedriver\"],\n- \"allowedVersions\": \"^74.0.0\"\n+ \"allowedVersions\": \"^77.0.0\"\n},\n{\n\"packageNames\": [\"karma\"]... | TypeScript | MIT License | aurelia/aurelia | chore: downgrade chrome | 1 | chore | null |
67,476 | 14.11.2019 07:39:34 | -3,600 | 26114ea33822051c962749501166877534fec18c | perf(collection-observation): store observers in weakmaps | [
{
"change_type": "MODIFY",
"diff": "@@ -121,7 +121,6 @@ export type PropertyObserver = IPropertyObserver<IIndexable, string>;\n*/\nexport type Collection = unknown[] | Set<unknown> | Map<unknown, unknown>;\ninterface IObservedCollection<T extends CollectionKind = CollectionKind> {\n- $observer?: ICollection... | TypeScript | MIT License | aurelia/aurelia | perf(collection-observation): store observers in weakmaps | 1 | perf | collection-observation |
217,922 | 14.11.2019 08:02:08 | -3,600 | 85239fc4ffb1327f59ba9fc65393de2d1d240c3c | fix(optimizer): fixed an issue with inventory optimizer not loading properly | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ import { beastTribeNpcs } from '../../../core/data/sources/beast-tribe-npcs';\nexport class CanBeBought extends InventoryOptimizer {\n_getOptimization(item: InventoryItem, inventory: UserInventory, data: ListRow): { [p: string]: number | string } | null {\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(optimizer): fixed an issue with inventory optimizer not loading properly | 1 | fix | optimizer |
217,922 | 14.11.2019 08:02:30 | -3,600 | a96abb845e66bbc2a9749482f5d986cf5dc9abaa | fix(list): smaller lists will now be more reactive | [
{
"change_type": "MODIFY",
"diff": "@@ -45,6 +45,9 @@ export class FirestoreListStorage extends FirestoreRelationalStorage<List> imple\n}\npublic update(uid: string, data: Partial<List>, uriParams?: any): Observable<void> {\n+ if (!data.isLarge()) {\n+ return super.update(uid, data);\n+ }\nconst preparedCac... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(list): smaller lists will now be more reactive | 1 | fix | list |
722,013 | 14.11.2019 08:14:03 | 21,600 | 98ae04cc17781e57f610a8a770eb8919bae2a66a | feat: review the style of default functions | [
{
"change_type": "MODIFY",
"diff": "@@ -20,6 +20,33 @@ export default {\nname: 'Button',\nmixins: [loggerMixin],\nprops: {\n+ /**\n+ * A test for default function Object\n+ */\n+ propObjectDefault: {\n+ type: Object,\n+ default: () => ({})\n+ },\n+ /**\n+ * A test for default function Array\n+ */\n+ propArr... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | feat: review the style of default functions | 1 | feat | null |
722,013 | 14.11.2019 08:14:48 | 21,600 | 4161ff233e340befdecafe1db520e0918858d640 | fix: mixed scoped and non-scoped slots render | [
{
"change_type": "MODIFY",
"diff": "@@ -28,7 +28,11 @@ export function propsToArray(props) {\n}\nexport function renderBindings({ bindings }) {\n- return <Arguments args={bindings.map(b => ({ block: true, ...b }))} />\n+ return bindings && bindings.length ? (\n+ <Arguments args={bindings.map(b => ({ block: ... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | fix: mixed scoped and non-scoped slots render | 1 | fix | null |
104,857 | 14.11.2019 08:58:47 | 10,800 | 65aa7a1d0aad92555c8124f2e55d16118f1a02ab | fix(tvt): updates on support i18n for cards | [
{
"change_type": "MODIFY",
"diff": "@@ -238,7 +238,7 @@ const TableCard = ({\nid,\ntitle,\nisExpanded,\n- content: { columns = [], showHeader, expandedRows, sort, thresholds, emptyMessage },\n+ content: { columns = [], showHeader, expandedRows, sort, thresholds },\nsize,\nonCardAction,\nvalues: data,\n@@ -3... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(tvt): updates on support i18n for cards | 1 | fix | tvt |
67,476 | 14.11.2019 09:14:16 | -3,600 | ebf237dcf5df3cf4f3857fd802912e7d656af1cb | fix(repeat): unsubscribe from array observer when unbinding | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ import { compareNumber, nextId } from '@aurelia/kernel';\nimport { ForOfStatement } from '../../binding/ast';\nimport { PropertyBinding } from '../../binding/property-binding';\nimport { INode, IRenderLocation } from '../../dom';\n-import { LifecycleFlags ... | TypeScript | MIT License | aurelia/aurelia | fix(repeat): unsubscribe from array observer when unbinding | 1 | fix | repeat |
67,476 | 14.11.2019 09:20:54 | -3,600 | 42a18a85f3487af9931cc8ab720c7cb4b5d8f3d4 | chore(test): fix test-node:verbose script | [
{
"change_type": "MODIFY",
"diff": "\"test-node:webpack-loader\": \"mocha --opts mocha.opts dist/esnext/__tests__/setup-node.js dist/esnext/__tests__/webpack-loader/**/*.spec.js --watch\",\n\"test-chrome\": \"karma start karma.conf.js --browsers=ChromeHeadlessOpt --single-run --coverage\",\n\"test-firefox\"... | TypeScript | MIT License | aurelia/aurelia | chore(test): fix test-node:verbose script | 1 | chore | test |
711,597 | 14.11.2019 10:00:07 | -3,600 | 74c96335b981c36623b619d6a505f1c03d009667 | refactor(core): Use a single root Collection for all Channels
Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -51,7 +51,7 @@ import { FacetValueService } from './facet-value.service';\nimport { JobService } from './job.service';\nexport class CollectionService implements OnModuleInit {\n- private rootCollections: { [channelCode: string]: Collection } = {};\n+ private rootColle... | TypeScript | MIT License | vendure-ecommerce/vendure | refactor(core): Use a single root Collection for all Channels
Relates to #188 | 1 | refactor | core |
304,866 | 14.11.2019 10:28:01 | 28,800 | b0135fd3970aedb94500b4cef464176db43047e7 | ci: build libflux wasm target in CI | [
{
"change_type": "MODIFY",
"diff": "@@ -36,6 +36,7 @@ jobs:\n- run: make vet\n- run: make staticcheck\n- run: make checkgenerate\n+ - run: make libflux-wasm\n- run: make test GO_TEST_FLAGS='-coverprofile=coverage.txt -covermode=atomic'\n- run:\nname: Uploading coverage report\n",
"new_path": ".circleci/... | Go | MIT License | influxdata/flux | ci: build libflux wasm target in CI (#2153) | 1 | ci | null |
67,476 | 14.11.2019 10:32:29 | -3,600 | 8aa73411111b56ea50f146151ff474c730edb994 | chore(test): fix node and ff verbose scripts | [
{
"change_type": "MODIFY",
"diff": "\"test-node:webpack-loader\": \"mocha --opts mocha.opts dist/esnext/__tests__/setup-node.js dist/esnext/__tests__/webpack-loader/**/*.spec.js --watch\",\n\"test-chrome\": \"karma start karma.conf.js --browsers=ChromeHeadlessOpt --single-run --coverage\",\n\"test-firefox\"... | TypeScript | MIT License | aurelia/aurelia | chore(test): fix node and ff verbose scripts | 1 | chore | test |
865,926 | 14.11.2019 10:38:14 | -3,600 | bf6a0d5d79287abf5029a141aa7065ec288ec274 | chore(project): skip notarization for pull request | [
{
"change_type": "MODIFY",
"diff": "},\n\"devDependencies\": {\n\"archiver\": \"^3.0.3\",\n+ \"builder-util\": \"^22.1.0\",\n\"chai\": \"^4.2.0\",\n\"cpx\": \"^1.5.0\",\n\"decompress\": \"^4.2.0\",\n",
"new_path": "package.json",
"old_path": "package.json"
}
] | JavaScript | MIT License | camunda/camunda-modeler | chore(project): skip notarization for pull request | 1 | chore | project |
104,857 | 14.11.2019 10:44:04 | 10,800 | d2e4e0beabed8a6b8605fcc635ac827cd28c5e02 | fix(rollback): rollback emptyMessage | [
{
"change_type": "MODIFY",
"diff": "@@ -238,7 +238,7 @@ const TableCard = ({\nid,\ntitle,\nisExpanded,\n- content: { columns = [], showHeader, expandedRows, sort, thresholds },\n+ content: { columns = [], showHeader, expandedRows, sort, thresholds, emptyMessage },\nsize,\nonCardAction,\nvalues: data,\n@@ -7... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(rollback): rollback emptyMessage | 1 | fix | rollback |
503,970 | 14.11.2019 10:47:49 | 18,000 | 913daeb7ee936421d78ecbd0ab8857f5f8a6956e | fix(Select): remove form typeahead and checkbox selects | [
{
"change_type": "MODIFY",
"diff": "@@ -432,7 +432,6 @@ class Select extends React.Component<SelectProps & InjectedOuiaProps, SelectStat\n<React.Fragment>\n<div className={css(styles.selectToggleWrapper)}>\n{toggleIcon && <span className={css(styles.selectToggleIcon)}>{toggleIcon}</span>}\n- <form onSubmit=... | TypeScript | MIT License | patternfly/patternfly-react | fix(Select): remove form typeahead and checkbox selects (#3298) | 1 | fix | Select |
104,827 | 14.11.2019 10:50:25 | 21,600 | 3abb0b2e5a15eabb2b9ea68c345409776bb3a171 | refactor(cardrenderer): pull out common props | [
{
"change_type": "MODIFY",
"diff": "@@ -157,6 +157,22 @@ const CardRenderer = React.memo(\n[card, onFetchData, timeGrain]\n);\n+ const commonCardProps = {\n+ key: card.id,\n+ availableActions: cachedActions,\n+ dataSource,\n+ isExpanded,\n+ type,\n+ i18n,\n+ isEditable,\n+ onCardAction: cachedOnCardAction,\... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | refactor(cardrenderer): pull out common props | 1 | refactor | cardrenderer |
531,793 | 14.11.2019 11:17:28 | 0 | 3b2534e0f0f192af50f98202896bb5d869034714 | feat(backend): add /health endpoint for healthcheck probes
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -98,6 +98,7 @@ func setupRouter(router *gin.Engine) {\n}))\nrouter.GET(getViewURL(\"/\"), index)\n+ router.GET(getViewURL(\"/health\"), pong)\nrouter.GET(getViewURL(\"/alerts.json\"), alerts)\nrouter.GET(getViewURL(\"/autocomplete.json\"), autocomplete)\nrouter.GET(get... | TypeScript | Apache License 2.0 | prymitive/karma | feat(backend): add /health endpoint for healthcheck probes
Fixes #1155 | 1 | feat | backend |
730,416 | 14.11.2019 11:31:27 | 28,800 | 6dcae3586690145f55b3b8d3fd4c5851358ec005 | chore(jenkins): remove jenkinsfile | [
{
"change_type": "DELETE",
"diff": "-#!groovy\n-def cleanup = { ->\n- // cleanup can't be a stage because it'll throw off the stage-view on the job's main page\n- if (currentBuild.result != 'SUCCESS') {\n- withCredentials([usernamePassword(\n- credentialsId: '386d3445-b855-40e4-999a-dc5801336a69',\n- passwo... | JavaScript | MIT License | webex/react-widgets | chore(jenkins): remove jenkinsfile | 1 | chore | jenkins |
103,617 | 14.11.2019 11:47:10 | -3,600 | 53e1eca810e24e7c8cd07416a7f7b4f790a229f0 | fix: animation speed for checkbox on Android | [
{
"change_type": "MODIFY",
"diff": "@@ -37,6 +37,9 @@ type State = {\nscaleAnim: Animated.Value;\n};\n+// From https://material.io/design/motion/speed.html#duration\n+const ANIMATION_DURATION = 100;\n+\n/**\n* Checkboxes allow the selection of multiple options from a set.\n* This component follows platform ... | TypeScript | MIT License | callstack/react-native-paper | fix: animation speed for checkbox on Android (#1471) | 1 | fix | null |
103,534 | 14.11.2019 11:59:01 | -3,600 | c669d51a21097875d854225bd7afb5962c7f63ca | fix: fix text input disappearing value on blur when in uncontrolled mode | [
{
"change_type": "MODIFY",
"diff": "@@ -409,6 +409,7 @@ class TextInput extends React.Component<TextInputProps, State> {\nreturn mode === 'outlined' ? (\n<TextInputOutlined\n{...rest}\n+ value={this.state.value}\nparentState={this.state}\ninnerRef={ref => {\nthis.root = ref;\n@@ -421,6 +422,7 @@ class TextI... | TypeScript | MIT License | callstack/react-native-paper | fix: fix text input disappearing value on blur when in uncontrolled mode (#1434) | 1 | fix | null |
531,793 | 14.11.2019 12:14:40 | 0 | 10e179fbd53fc820715ad0343712a809f766cd3a | fix(docs): mention /health endpoint in the README | [
{
"change_type": "MODIFY",
"diff": "@@ -194,6 +194,11 @@ apply as with `make run`. Example:\nmake PORT=5000 ALERTMANAGER_URI=https://alertmanager.example.com run-docker\n+### Health checks\n+\n+`/health` endpoint can be used for health check probes, it always responds with\n+`200 OK` code and `Pong` respons... | TypeScript | Apache License 2.0 | prymitive/karma | fix(docs): mention /health endpoint in the README | 1 | fix | docs |
531,793 | 14.11.2019 13:20:45 | 0 | 09f31e172b2ee3f007ef88a533fd76de38038d50 | fix(ui): follow redirects when fetching alerts from the UI | [
{
"change_type": "MODIFY",
"diff": "import merge from \"lodash.merge\";\nconst FetchWithCredentials = async (uri, options) =>\n- await fetch(uri, merge({}, { credentials: \"include\" }, options));\n+ await fetch(\n+ uri,\n+ merge({}, { credentials: \"include\", redirect: \"follow\" }, options)\n+ );\nexport... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): follow redirects when fetching alerts from the UI | 1 | fix | ui |
304,887 | 14.11.2019 13:46:54 | 28,800 | d32b8ce48b976cfb5ea1122938abde0e829c6459 | docs(README.md): Expanded getting started with the starter commands that allowed me to be progressive | [
{
"change_type": "MODIFY",
"diff": "@@ -22,6 +22,23 @@ $ go build ./cmd/flux\n$ ./flux repl\n```\n+If you create or change any flux functions, you will need to rebuild the stdlib:\n+```\n+$ go generate ./stdlib\n+```\n+\n+Your new Flux's code should be formatted to coexist nicely with the existing codebase ... | Go | MIT License | influxdata/flux | docs(README.md): Expanded getting started with the starter commands that allowed me to be progressive (#2160) | 1 | docs | README.md |
103,534 | 14.11.2019 13:47:00 | -3,600 | e5cd6fb6029396f35c7a6ca0f6ded2bb6526b64b | feat: add RadioButton.Item to enable pressing the whole row | [
{
"change_type": "MODIFY",
"diff": "@@ -32,6 +32,7 @@ import TextExample from './Examples/TextExample';\nimport TextInputExample from './Examples/TextInputExample';\nimport ToggleButtonExample from './Examples/ToggleButtonExample';\nimport TouchableRippleExample from './Examples/TouchableRippleExample';\n+i... | TypeScript | MIT License | callstack/react-native-paper | feat: add RadioButton.Item to enable pressing the whole row (#1468) | 1 | feat | null |
730,416 | 14.11.2019 13:57:05 | 28,800 | f2874c072a08285ccee930186280eda35d7b7bac | chore(circleci): move tap test to circleci | [
{
"change_type": "MODIFY",
"diff": "@@ -319,6 +319,34 @@ jobs:\nname: 'Push tag to upstream/master'\ncommand: git push --tags upstream\n+ tap_test:\n+ executor: main-executor\n+ environment:\n+ SAUCE: true\n+ steps:\n+ - checkout\n+ - run: |\n+ git remote add upstream git@github.com:webex/react-widgets.git\... | JavaScript | MIT License | webex/react-widgets | chore(circleci): move tap test to circleci | 1 | chore | circleci |
711,597 | 14.11.2019 14:03:38 | -3,600 | a883620ab3f2c9f65a8cf6c93764c201c852d4d4 | chore: Publish v0.6.0 | [
{
"change_type": "MODIFY",
"diff": "+## 0.6.0 (2019-11-14)\n+\n+\n+#### Fixes\n+\n+* **admin-ui** Correctly display HttpErrorResponse messages ([8cc6885](https://github.com/vendure-ecommerce/vendure/commit/8cc6885))\n+* **admin-ui** Correctly specify channels when creating a Role ([34a6a3e](https://github.c... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Publish v0.6.0 | 1 | chore | null |
815,593 | 14.11.2019 14:11:23 | -28,800 | 189ce2040adea69cae6d50113b960127a46ce883 | test: add relay / submit chain tx integration test | [
{
"change_type": "MODIFY",
"diff": "@@ -302,6 +302,8 @@ fn all_specs() -> SpecMap {\nBox::new(SendLowFeeRateTx),\nBox::new(SendLargeCyclesTxInBlock::new()),\nBox::new(SendLargeCyclesTxToRelay::new()),\n+ Box::new(SubmitOrphanTx),\n+ Box::new(RelayChainTx),\nBox::new(SendArrowTxs),\nBox::new(FeeEstimate),\nB... | Rust | MIT License | nervosnetwork/ckb | test: add relay / submit chain tx integration test | 1 | test | null |
366,937 | 14.11.2019 14:17:32 | -32,400 | 20fdf3ff11b761f8a4def324beaeba650b7ae728 | fix: fix for reviews
use dl,dt,dd tag instead of div
change props names to to specify that it is a DefinitionList | [
{
"change_type": "MODIFY",
"diff": "@@ -7,24 +7,24 @@ import { DefinitionList } from './DefinitionList'\nconst DefinitionListItems = [\n{\n- label: 'label 1',\n- children: 'content 1',\n+ term: 'term 1',\n+ description: 'description 1',\n},\n{\n- label: 'label 2',\n- children: 'content 2',\n+ term: 'term 2'... | TypeScript | MIT License | kufu/smarthr-ui | fix: fix for reviews
use dl,dt,dd tag instead of div
change props names to to specify that it is a DefinitionList | 1 | fix | null |
866,390 | 14.11.2019 14:39:18 | 18,000 | 954beef7d74847ac0511458c1747481f0515d3db | feat(pattern): use cases pattern | [
{
"change_type": "MODIFY",
"diff": "@@ -33,9 +33,17 @@ export const LISTSECTION =\nprocess.env.LISTSECTION === 'true' || DDS_FLAGS_ALL || false;\n/**\n- * This determines if the leadspace will be rendered or not\n+ * This determines if the simplelongform will be rendered or not\n*\n* @type {string | boolean... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(pattern): use cases pattern | 1 | feat | pattern |
104,818 | 14.11.2019 15:18:31 | 21,600 | 3496b8510b5530f6111f550ae4a441d629cdc28e | feat(card): support raw data with no aggregators | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,7 @@ import {\nvalidateDashboardJSON,\nvalidateValueCard,\nvalidateTimeSeriesCard,\n+ validateTableCard,\nvalidateCard,\nvalidateAggregators,\n} from '../validators';\n@@ -151,6 +152,34 @@ describe('validators', () => {\nexpect(validateCard.errors).not.toHave... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(card): support raw data with no aggregators | 1 | feat | card |
699,204 | 14.11.2019 15:55:17 | 28,800 | 9049c5f8953b8ebee68596fedbcd58f6054ef166 | feat(card): card component | [
{
"change_type": "ADD",
"diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`Card it should render CardFooter 1`] = `\n+.emotion-1 {\n+ font-family: 'Whitney SSm A','Whitney SSm B','Helvetica Neue',Helvetica,Arial,sans-serif;\n+ font-size: 0.875rem;\n+ line-height: 1.5rem;\n+ color: #282a2b;\n... | TypeScript | MIT License | twilio-labs/paste | feat(card): card component (#145) | 1 | feat | card |
866,395 | 14.11.2019 15:59:36 | 18,000 | 5b34952327229774b64666b426a140e5b30a9018 | fix(css): update back link color | [
{
"change_type": "MODIFY",
"diff": "> .#{$prefix}--side-nav__link-text {\n@include carbon--type-style(body-short-01, true);\n- color: $text-01;\n+ color: $icon-02;\n}\nsvg {\n",
"new_path": "packages/styles/scss/components/masthead/_masthead-leftnav.scss",
"old_path": "packages/styles/scss/component... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(css): update back link color | 1 | fix | css |
866,395 | 14.11.2019 16:00:09 | 18,000 | 4b4c11f8dee362812a628d069a14f15337b4ae96 | fix(css): update ibm logo padding | [
{
"change_type": "MODIFY",
"diff": "@@ -77,6 +77,10 @@ $search-transition-timing: 95ms;\nborder-color: $focus;\nbackground-color: $ui-01;\n}\n+\n+ @include carbon--breakpoint-down(lg) {\n+ padding: 0 $spacing-05;\n+ }\n}\n}\n",
"new_path": "packages/styles/scss/components/masthead/_masthead.scss",
"... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(css): update ibm logo padding | 1 | fix | css |
866,395 | 14.11.2019 16:04:37 | 18,000 | 6ebbd8064a829d46b39040be1c2b0537e5f63c6b | fix(masthead): fixes masthead link render from json; fixes #634' | [
{
"change_type": "MODIFY",
"diff": "@@ -36,7 +36,7 @@ const MastheadLeftNav = ({ navigation, isSideNavExpanded }) => {\n* @returns {*} Left side navigation\n*/\nconst sideNav = navigation.map((link, i) => {\n- if (link.hasMenu && link.hasMegapanel) {\n+ if (link.hasMenu) {\nreturn (\n<SideNavMenu title={lin... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(masthead): fixes masthead link render from json; fixes #634' | 1 | fix | masthead |
104,827 | 14.11.2019 16:10:34 | 21,600 | 633d06bfd4fd5e9fe57bc6ca646e86fe1391ede8 | chore(storybook): remove console logs from stories | [
{
"change_type": "MODIFY",
"diff": "@@ -75,9 +75,8 @@ storiesOf('Watson IoT|ImageCard', module)\nvalues={object('values', values)}\nbreakpoint=\"lg\"\nsize={size}\n- renderIcon={(name, props = {}) => {\n- console.log('renderIcon', name, props);\n- return name === 'arrowDown' ? (\n+ renderIcon={(name, props ... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(storybook): remove console logs from stories | 1 | chore | storybook |
815,598 | 14.11.2019 16:23:00 | -28,800 | 6e12f23595bf8d4279f760114436c5087dba9b78 | chore: use ckb-cli v0.25.0 | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ git:\nenv:\nglobal:\n- RUST_BACKTRACE=full\n- - CKB_CLI_VERSION=v0.24.0\n+ - CKB_CLI_VERSION=v0.25.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.25.0 | 1 | chore | null |
531,793 | 14.11.2019 16:25:17 | 0 | 159bcc4e8a4a49da8e9e76229a8deeb576c21d98 | fix(ui): use mode:no-cors for fetch GET requests
This should play better with auth middlewares that uses redirects since CORS will no longer break the redirect chain | [
{
"change_type": "MODIFY",
"diff": "import merge from \"lodash.merge\";\n-const FetchWithCredentials = async (uri, options) =>\n+const CommonOptions = {\n+ credentials: \"include\",\n+ redirect: \"follow\"\n+};\n+\n+const FetchGet = async (uri, options) =>\nawait fetch(\nuri,\n- merge({}, { credentials: \"i... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): use mode:no-cors for fetch GET requests
This should play better with auth middlewares that uses redirects since CORS will no longer break the redirect chain | 1 | fix | ui |
815,598 | 14.11.2019 16:25:34 | -28,800 | 364ee5690b4da37391d93dd69114a9752e5957f5 | chore: CHANGELOG for v0.25.0 and v0.25.1 | [
{
"change_type": "MODIFY",
"diff": "+# [v0.25.1](https://github.com/nervosnetwork/ckb/compare/v0.25.0...v0.25.1) (2019-11-15)\n+\n+Embed lina chain spec\n+\n+# [v0.25.0](https://github.com/nervosnetwork/ckb/compare/v0.24.0...v0.25.0) (2019-11-14)\n+\n+### Features\n+\n+* #1785: Upgrade system script for mod... | Rust | MIT License | nervosnetwork/ckb | chore: CHANGELOG for v0.25.0 and v0.25.1 | 1 | chore | null |
866,395 | 14.11.2019 16:43:17 | 18,000 | 65ae9bd4ca5a09f7ab13825b912ce80736944134 | chore(readme): update readme with new stable selector name | [
{
"change_type": "MODIFY",
"diff": "@@ -74,17 +74,17 @@ const topNavProps = {\n## Stable selectors\n| Name | Description |\n-| ------------------------------------------- | ----------- |\n+| ---------------------------------------------------------- | ----------- |\n| `dds--masthead` | Component |\n| `dds--... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | chore(readme): update readme with new stable selector name | 1 | chore | readme |
866,398 | 14.11.2019 17:36:30 | 10,800 | 961501f25c6e1be05716ec4969feb3d7af681b69 | fix(masthead): use contextual selector for short l1 | [
{
"change_type": "MODIFY",
"diff": "@@ -27,25 +27,14 @@ const MastheadL1 = ({ isShort }) => {\n[`${prefix}--masthead__l1--short`]: isShort,\n});\n- const nameShortL1 = cx({\n- [`${prefix}--masthead__l1-name--shortl1`]: isShort,\n- });\n- const eyebrowShortL1 = cx({\n- [`${prefix}--masthead__l1-name-eyebrow-... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(masthead): use contextual selector for short l1 | 1 | fix | masthead |
471,570 | 14.11.2019 17:36:35 | -3,600 | 84c360762cdf2248d8e96258b074d6dcaf4dae33 | fix(create): rename directory of page-main test
This was forgotten remnant of renaming packages to components
fixes issue
fix: improve test coverage
test: update snapshot | [
{
"change_type": "MODIFY",
"diff": "@@ -14,6 +14,18 @@ describe('<%= className %>', () => {\n`);\n});\n+ it('renders default fallback content', async () => {\n+ const el = await fixture(html`\n+ <<%= tagName %>></<%= tagName %>>\n+ `);\n+ el.page = undefined;\n+\n+ expect(el.page).to.equal(undefined);\n+ ex... | JavaScript | MIT License | open-wc/open-wc | fix(create): rename directory of page-main test
This was forgotten remnant of renaming packages to components (#945)
fixes issue #987
fix: improve test coverage
test: update snapshot | 1 | fix | create |
866,393 | 14.11.2019 18:04:36 | -32,400 | a3f160cec1d699ddbed4cb27a3e444932375be3f | feat(date-picker): propagate error from Flatpickr
With this change, `<bx-date-picker>` emits
`bx-date-picker-flatpickr-error` event when Flatpickr calls its error
callback. With this event, application can detect if user commits a
date with a wrong date format, etc. | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,7 @@ const createProps = () => ({\nopen: boolean('Open (open)', false),\nvalue: text('Value in ISO8601 date format, separated by `/` (value)', ''),\nonAfterChanged: action('bx-date-picker-changed'),\n+ onFlatpickrError: action('bx-date-picker-flatpickr-error'... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(date-picker): propagate error from Flatpickr (#171)
With this change, `<bx-date-picker>` emits
`bx-date-picker-flatpickr-error` event when Flatpickr calls its error
callback. With this event, application can detect if user commits a
date with a wrong date format, etc. | 1 | feat | date-picker |
866,398 | 14.11.2019 18:42:23 | 10,800 | 7a6d57148616c948014256542f0a772d63bc56aa | fix(masthead): have eyebrow link + title as props | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\nimport { storiesOf } from '@storybook/react';\n-import { withKnobs, select, boolean } from '@storybook/addon-knobs';\n+import { withKnobs, select, boolean, text } from '@storybook/addon-knobs';\nimport DotcomShell from '../DotcomShell';\nimport... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(masthead): have eyebrow link + title as props | 1 | fix | masthead |
104,857 | 14.11.2019 19:10:54 | 10,800 | 2dd2974d3c83068e811457df7f35410c2b667a19 | feat(gallery): new components and tests for tile gallery | [
{
"change_type": "ADD",
"diff": "+import React from 'react';\n+import PropTypes from 'prop-types';\n+\n+import PageTitleBar from '../PageTitleBar';\n+import Button from '../Button';\n+\n+import TileGallery from './TileGallery';\n+import TileGallerySection from './TileGallerySection';\n+import TileGalleryIte... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(gallery): new components and tests for tile gallery | 1 | feat | gallery |
815,745 | 14.11.2019 19:27:36 | -7,200 | e78818e5b6e83681b351de69f3ec0041b592779b | fix(appearance): apply styles correctly
closes | [
{
"change_type": "MODIFY",
"diff": "<div class=\"form-row\">\n<div class=\"form-group col-md-6\">\n<label for=\"yesno\">Not searchable</label>\n- <ng-select #agreeSelect labelForId=\"yesno\" [searchable]=\"false\" formControlName=\"agree\">\n+ <ng-select appearance=\"outline\" #agreeSelect labelForId=\"yesn... | TypeScript | MIT License | ng-select/ng-select | fix(appearance): apply styles correctly
closes #1422 | 1 | fix | appearance |
730,428 | 14.11.2019 19:44:42 | 0 | 8ebb65d2b5a7add4d479ed36511adf5b278ee66f | chore(release): 0.2.61 [skip ci] | [
{
"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+### [0.2.61](https://github.com/webex/react-widgets/compare/v0.2.60...v0.2.61) (2019-11-14)\n+\... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.2.61 [skip ci] | 1 | chore | release |
67,507 | 14.11.2019 19:44:50 | -3,600 | 800a698ffd4c7c62ca34d9dc7810e6b83b568714 | chore(browserstack): no unneeded npm i on circleci | [
{
"change_type": "MODIFY",
"diff": "@@ -319,7 +319,6 @@ jobs:\nname: \"Install e2e tests\"\ncommand: |\ncd test/browserstack\n- npm i\nnpm run build\n- run:\nname: \"Serve e2e app in the background\"\n",
"new_path": ".circleci/config.yml",
"old_path": ".circleci/config.yml"
}
] | TypeScript | MIT License | aurelia/aurelia | chore(browserstack): no unneeded npm i on circleci | 1 | chore | browserstack |
531,793 | 14.11.2019 19:46:21 | 0 | 94b91c3a47034afe514d08d0d5203e0a9e2b044e | fix(ui): revert use mode:no-cors for fetch GET requests
responses for mode:no-cors requests have no body, which we need | [
{
"change_type": "MODIFY",
"diff": "@@ -6,18 +6,7 @@ const CommonOptions = {\n};\nconst FetchGet = async (uri, options) =>\n- await fetch(\n- uri,\n- merge(\n- {},\n- {\n- method: \"GET\",\n- mode: \"no-cors\"\n- },\n- CommonOptions,\n- options\n- )\n- );\n+ await fetch(uri, merge({}, { method: \"GET\" }, C... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): revert use mode:no-cors for fetch GET requests
responses for mode:no-cors requests have no body, which we need | 1 | fix | ui |
815,590 | 14.11.2019 20:19:39 | -28,800 | 6486bd6a21056b8a31a3e4a1184d3e108af7ded5 | fix: fix SortedTxMap inconsistent descendants links error | [
{
"change_type": "MODIFY",
"diff": "@@ -228,6 +228,7 @@ impl SortedTxMap {\npub fn remove_entry_and_descendants(&mut self, id: &ProposalShortId) -> Vec<TxEntry> {\nlet mut queue = VecDeque::new();\nlet mut removed = Vec::new();\n+ let tx_link = self.links.get(&id).map(ToOwned::to_owned);\nqueue.push_back(id... | Rust | MIT License | nervosnetwork/ckb | fix: fix SortedTxMap inconsistent descendants links error | 1 | fix | null |
711,597 | 14.11.2019 21:07:33 | -3,600 | cbe116c2ed4274895bed243f22cb7bd60b4339e9 | chore: Fix links to plugin docs | [
{
"change_type": "MODIFY",
"diff": "`npm install @vendure/admin-ui-plugin`\n-For documentation, see [www.vendure.io/docs/plugins/admin-ui-plugin](https://www.vendure.io/docs/plugins/admin-ui-plugin)\n+For documentation, see [www.vendure.io/docs/typescript-api/admin-ui-plugin/](https://www.vendure.io/docs/ty... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Fix links to plugin docs | 1 | chore | null |
67,476 | 14.11.2019 21:26:09 | -3,600 | 88b9cbe9d7bc6477c26089070bdcc3c1ea250096 | chore(aot): setup some initial virtual file system stuff | [
{
"change_type": "ADD",
"diff": "+// NOTE: These tests are not meant to be even close to exhaustive. That's what the 262 test suite is for.\n+// These tests exist solely for having an easy way to quickly test some high-level things when a feature is not yet ready for exposure to the 262 test suite.\n+\n+des... | TypeScript | MIT License | aurelia/aurelia | chore(aot): setup some initial virtual file system stuff | 1 | chore | aot |
67,476 | 14.11.2019 21:26:50 | -3,600 | a6e7fcd65643041aced728698164a26e00d17b8c | test(aot): add some debuggable mocha tests | [
{
"change_type": "MODIFY",
"diff": "\"cwd\": \"${workspaceRoot}\",\n\"internalConsoleOptions\": \"openOnSessionStart\"\n},\n+ {\n+ \"type\": \"node\",\n+ \"request\": \"launch\",\n+ \"name\": \"Launch mocha aot tests\",\n+ \"program\": \"${workspaceRoot}/node_modules/mocha/bin/_mocha\",\n+ \"env\": {\n+ \"T... | TypeScript | MIT License | aurelia/aurelia | test(aot): add some debuggable mocha tests | 1 | test | aot |
67,476 | 14.11.2019 21:27:26 | -3,600 | bf994eea0245e43dce207fdaa07dc93b48e6b384 | chore(aot): fix some basic wireup for test evaluation | [
{
"change_type": "MODIFY",
"diff": "@@ -7,6 +7,8 @@ export {\nIFile,\nIFileSystem,\nIOptions,\n+ IDirent,\n+ IStats,\n} from './system/interfaces';\nexport {\n",
"new_path": "packages/aot/src/index.ts",
"old_path": "packages/aot/src/index.ts"
},
{
"change_type": "MODIFY",
"diff": "@@ -68... | TypeScript | MIT License | aurelia/aurelia | chore(aot): fix some basic wireup for test evaluation | 1 | chore | aot |
815,601 | 14.11.2019 21:52:11 | -28,800 | ff0b13e64c5e2402e4650b8836d7812a1ebf8438 | fix: tx-pool should cache orphan tx | [
{
"change_type": "MODIFY",
"diff": "@@ -179,7 +179,7 @@ impl<'a> TransactionsProcess<'a> {\n} else {\ndebug_target!(\ncrate::LOG_TARGET_RELAY,\n- \"peer {} relay a conflict or missing input, error: {:?}\",\n+ \"peer {} relay a conflict or missing input, error: {}\",\npeer_index,\nerr\n);\n",
"new_path":... | Rust | MIT License | nervosnetwork/ckb | fix: tx-pool should cache orphan tx | 1 | fix | null |
815,601 | 14.11.2019 22:00:58 | -28,800 | 8273d0c11e6f8d5ced089fe3c7ea58fcb1d107a4 | fix: relay tx should keep order | [
{
"change_type": "MODIFY",
"diff": "@@ -468,6 +468,7 @@ impl Relayer {\n})\n.take(MAX_RELAY_TXS_NUM_PER_BATCH)\n.collect::<Vec<_>>();\n+\nif !tx_hashes.is_empty() {\ndebug_target!(\ncrate::LOG_TARGET_RELAY,\n",
"new_path": "sync/src/relayer/mod.rs",
"old_path": "sync/src/relayer/mod.rs"
},
{
... | Rust | MIT License | nervosnetwork/ckb | fix: relay tx should keep order | 1 | fix | null |
273,631 | 14.11.2019 22:19:39 | -3,600 | 77a9a2803840910c295eb45d557c240b755986d1 | chore(deps): update sharp to 0.23 | [
{
"change_type": "MODIFY",
"diff": "\"portfinder\": \"^1.0.20\",\n\"postcss-loader\": \"^3.0.0\",\n\"probe-image-size\": \"^4.0.0\",\n- \"sharp\": \"^0.22.1\",\n+ \"sharp\": \"^0.23.2\",\n\"slash\": \"^2.0.0\",\n\"sockjs\": \"^0.3.19\",\n\"sockjs-client\": \"^1.3.0\",\n",
"new_path": "gridsome/package.j... | JavaScript | MIT License | gridsome/gridsome | chore(deps): update sharp to 0.23 (#803) | 1 | chore | deps |
67,507 | 14.11.2019 23:53:24 | -3,600 | cfcc68e0d8050129385d207d71a6adaa6a067a59 | chore: remove obsolete jsdoc/check-tag-names lint workaround | [
{
"change_type": "MODIFY",
"diff": "@@ -119,12 +119,7 @@ module.exports = {\n'jsdoc/check-tag-names': ['error', {\ndefinedTags: [\n'chainable',\n- 'internal',\n- // JSDoc gets confused about decorators, so add them as exclusions here\n- // for now. Adding parenthesis to differentiate them from JSDoc tags.\n... | TypeScript | MIT License | aurelia/aurelia | chore: remove obsolete jsdoc/check-tag-names lint workaround | 1 | chore | null |
815,598 | 15.11.2019 05:55:31 | -28,800 | bd3dd48c2339fdaf3b42ca4e45031507be28943c | test(ci): share travis cache between jobs | [
{
"change_type": "MODIFY",
"diff": "@@ -67,7 +67,6 @@ matrix:\nscript: make CKB_TEST_SEC_COEFFICIENT=5 CKB_TEST_ARGS=\"--max-time 1200 -c 4\" integration\n- name: Linters\nif: 'tag IS NOT present AND (type = pull_request OR branch in (master, staging, trying) OR repo != nervosnetwork/ckb)'\n- env: CACHE_NAM... | Rust | MIT License | nervosnetwork/ckb | test(ci): share travis cache between jobs | 1 | test | ci |
104,827 | 15.11.2019 07:29:43 | 21,600 | 1e57cfb0f3460f569fc33f4dda987b2b7a758e0c | refactor(dashboard): renderIcon --> renderIconByName | [
{
"change_type": "MODIFY",
"diff": "@@ -70,7 +70,7 @@ const CardRenderer = React.memo(\nbreakpoint, // eslint-disable-line\nonFetchData, // eslint-disable-line\nonSetupCard, // eslint-disable-line\n- renderIcon, // eslint-disable-line\n+ renderIconByName, // eslint-disable-line\ntimeGrain, // eslint-disable... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | refactor(dashboard): renderIcon --> renderIconByName | 1 | refactor | dashboard |
815,598 | 15.11.2019 08:49:22 | -28,800 | 45373c24f739228b1a600675218345835c34ce9e | chore: use the same genesis allocation in all chain specs | [
{
"change_type": "MODIFY",
"diff": "@@ -45,128 +45,128 @@ index = 1\n# Spec: ckb_testnet\n[ckb_testnet]\n-genesis = \"0xf938ad6f48ca78c622a505343e02feda19e67bb7cdc5bf09efd3000949899def\"\n-cellbase = \"0xa8bcffc8fe3256b98be15fdfba22da8027eb22a0aaa207164b130e654884575f\"\n+genesis = \"0x28ab92a897d99b20e9541... | Rust | MIT License | nervosnetwork/ckb | chore: use the same genesis allocation in all chain specs | 1 | chore | null |
699,191 | 15.11.2019 09:18:49 | 28,800 | ab6d18140818063032e9f10aec30070efdc4fd06 | chore: add the accessibilty plugin to storyboook | [
{
"change_type": "MODIFY",
"diff": "@@ -4,3 +4,4 @@ import '@storybook/addon-knobs/register';\nimport './addons/theme-switcher-addon/register';\nimport 'storybook-readme/register';\nimport '@storybook/addon-actions/register';\n+import '@storybook/addon-a11y/register';\n",
"new_path": ".storybook/addons.... | TypeScript | MIT License | twilio-labs/paste | chore: add the accessibilty plugin to storyboook (#188) | 1 | chore | null |
722,013 | 15.11.2019 09:53:41 | 21,600 | 523f8567669e23006da742bffd5b649fa792fbb8 | docs: update url of homesite | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,7 @@ if(pkg.description){ %>\n<%= pkg.description %><%\n} %>\n-- <a href=\"<%= process.env.DEPLOY_PRIME_URL || 'https://vue-styleguidist.github.com' %>/<%= exampleName %>/\">Live Demo</a>\n+- <a href=\"<%= process.env.DEPLOY_PRIME_URL || 'https://vue-stylegui... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | docs: update url of homesite | 1 | docs | null |
104,827 | 15.11.2019 10:14:10 | 21,600 | 2408789f5d0d506e62d4bea0e4f2e13f259ea8b6 | chore(dashboard): update comment for renderIconByName prop with usage | [
{
"change_type": "MODIFY",
"diff": "@@ -89,7 +89,9 @@ const propTypes = {\nonBreakpointChange: PropTypes.func,\n/** Callback called when an action is clicked. The id of the action is passed to the callback */\nonDashboardAction: PropTypes.func,\n- /** Callback called when a card determines what icon render ... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(dashboard): update comment for renderIconByName prop with usage | 1 | chore | dashboard |
889,109 | 15.11.2019 10:25:29 | 28,800 | 687fc815c572adbab2611d3f08f7259bb91de8e6 | fix(docs): snippets are now replaced in jsdoc comments | [
{
"change_type": "MODIFY",
"diff": "@@ -26,7 +26,8 @@ module.exports = {\ndestination: './docs/'\n},\nplugins: [\n- 'plugins/markdown'\n+ 'plugins/markdown',\n+ 'jsdoc-region-tag'\n],\nsource: {\nexcludePattern: '(^|\\\\/|\\\\\\\\)[._]',\n",
"new_path": ".jsdoc.js",
"old_path": ".jsdoc.js"
},
{
... | TypeScript | Apache License 2.0 | googleapis/nodejs-logging | fix(docs): snippets are now replaced in jsdoc comments (#634) | 1 | fix | docs |
815,601 | 15.11.2019 13:03:31 | -28,800 | df66633b8fc36d4e49416e817e98ece71b648e54 | fix: common header should be updated when block received | [
{
"change_type": "MODIFY",
"diff": "@@ -53,12 +53,6 @@ impl BlockFetcher {\n.snapshot\n.last_common_ancestor(&last_common_header, &best.inner())?;\n- if fixed_last_common_header != last_common_header {\n- self.synchronizer\n- .peers()\n- .set_last_common_header(self.peer, fixed_last_common_header.clone());\... | Rust | MIT License | nervosnetwork/ckb | fix: common header should be updated when block received | 1 | fix | null |
503,945 | 15.11.2019 13:26:42 | 18,000 | 2746a89dfe69359ca623bfc24bf888cab33380db | chore(package): Bump versions to 2.41.0 | [
{
"change_type": "MODIFY",
"diff": "\"develop\": \"yarn build:babel:esm --skip-initial-build --watch --verbose --source-maps\"\n},\n\"dependencies\": {\n- \"@patternfly/patternfly\": \"2.40.13\",\n+ \"@patternfly/patternfly\": \"2.41.0\",\n\"@patternfly/react-core\": \"^3.120.11\",\n\"@patternfly/react-styl... | TypeScript | MIT License | patternfly/patternfly-react | chore(package): Bump @patternfly/patternfly versions to 2.41.0 (#3300) | 1 | chore | package |
504,038 | 15.11.2019 14:01:05 | -3,600 | 4b5b538052c1b6dac5d5aa392f811a120ac6bad5 | fix(DateTimePicker): Properly import formatTime to DateTimePicker
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -5,6 +5,7 @@ import DateInput from './DateComponents/DateInput';\nimport TodayButton from './DateComponents/TodayButton';\nimport TimeInput from './TimeComponents/TimeInput';\nimport { MONTH } from './DateComponents/DateConstants';\n+import { formatTime } from './TimeH... | TypeScript | MIT License | patternfly/patternfly-react | fix(DateTimePicker): Properly import formatTime to DateTimePicker (#3303)
Fixes https://github.com/patternfly/patternfly-react/issues/3302 | 1 | fix | DateTimePicker |
699,191 | 15.11.2019 14:20:15 | 28,800 | 57a46f41acb8987243917cd31fdb1449c69e89e7 | fix: card code example spacing and formatting | [
{
"change_type": "MODIFY",
"diff": "@@ -82,22 +82,19 @@ A card is a box with default attributes defined above. The purpose of the card i\n### Examples\n<LivePreview scope={{Card, Text, CardFooter, Heading}} language=\"jsx\">\n- {`\n- <Card>\n+ {`<Card>\n<Heading as=\"h2\">With a heading</Heading>\n- <Text>B... | TypeScript | MIT License | twilio-labs/paste | fix: card code example spacing and formatting (#187) | 1 | fix | null |
104,848 | 15.11.2019 14:28:45 | 21,600 | c29897ac21e580c72b8dd55b2da2dd9bbbebe309 | fix(dashboard): fix merge | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ import React from 'react';\nimport { text, boolean } from '@storybook/addon-knobs';\nimport { storiesOf } from '@storybook/react';\nimport { action } from '@storybook/addon-actions';\n-import { FavoriteFilled16, ErrorFilled16, CopyFile16, Application32, Gr... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(dashboard): fix merge | 1 | fix | dashboard |
866,396 | 15.11.2019 14:39:02 | 18,000 | 0f881870d14d27e20b403d11aa24e09930305ea8 | fix(buttongroup): adding columns to the story | [
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,7 @@ import React from 'react';\nimport { storiesOf } from '@storybook/react';\nimport { withKnobs, text, select } from '@storybook/addon-knobs';\nimport { ArrowRight20, ArrowDown20, Pdf20 } from '@carbon/icons-react';\n+import '@carbon/grid/scss/grid.scss';\ni... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(buttongroup): adding columns to the story | 1 | fix | buttongroup |
304,868 | 15.11.2019 14:41:45 | 25,200 | 9069dfa5c313c023dfab0a3a21ee85bff5ebf09f | test(libflux/semantic): add test case for psuedo query | [
{
"change_type": "MODIFY",
"diff": "@@ -857,6 +857,23 @@ mod tests {\nassert_eq!(Ok(output), parse(text));\n}\n+ #[test]\n+ fn parse_array_row_test() {\n+ let parse_text = \"forall [t0] [{foo: int | t0}]\";\n+\n+ let output = PolyType {\n+ vars: vec![Tvar(0)],\n+ cons: HashMap::new(),\n+ expr: MonoType::Arr... | Go | MIT License | influxdata/flux | test(libflux/semantic): add test case for psuedo query | 1 | test | libflux/semantic |
67,494 | 15.11.2019 15:00:43 | -3,600 | 55ecd2cf08580b7634213b60eefad9aa553c3e9a | feat(router): add hooks | [
{
"change_type": "ADD",
"diff": "+// tslint:disable:max-line-length\n+import { Hook } from './hook';\n+import { INavigatorInstruction, ComponentAppellation, IComponentAndOrViewportOrNothing } from './interfaces';\n+import { ViewportInstruction } from './viewport-instruction';\n+import { Viewport } from './v... | TypeScript | MIT License | aurelia/aurelia | feat(router): add hooks | 1 | feat | router |
67,494 | 15.11.2019 15:01:06 | -3,600 | 17ef2a7dd9e70a03e44f54534598208b978b919e | test(router): add tests for hooks | [
{
"change_type": "ADD",
"diff": "+import { HookManager, HookTypes, INavigatorInstruction, ViewportInstruction, RouterConfiguration, IRouter } from '@aurelia/router';\n+import { assert, TestContext } from '@aurelia/testing';\n+import { CustomElement, Aurelia } from '@aurelia/runtime';\n+import { DebugConfigu... | TypeScript | MIT License | aurelia/aurelia | test(router): add tests for hooks | 1 | test | router |
67,494 | 15.11.2019 15:03:36 | -3,600 | a8665fc9ceccae9e68860024b17502fb61743412 | feat(router): add hooks as configuration option | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,7 @@ import { arrayRemove, closestController } from './utils';\nimport { IViewportOptions, Viewport } from './viewport';\nimport { ViewportInstruction } from './viewport-instruction';\nimport { FoundRoute } from './found-route';\n+import { HookManager, HookTy... | TypeScript | MIT License | aurelia/aurelia | feat(router): add hooks as configuration option | 1 | feat | router |
104,848 | 15.11.2019 15:13:10 | 21,600 | cfc5da9b31bd1d56947ae7dbafb5e89eb7d489c0 | fix(dashboard): clickable tiles for dashboard story | [
{
"change_type": "MODIFY",
"diff": "@@ -3,6 +3,7 @@ import { text, boolean } from '@storybook/addon-knobs';\nimport { storiesOf } from '@storybook/react';\nimport { action } from '@storybook/addon-actions';\nimport { Application32, Group32 } from '@carbon/icons-react';\n+import { ClickableTile } from 'carbo... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(dashboard): clickable tiles for dashboard story | 1 | fix | dashboard |
67,476 | 15.11.2019 15:20:27 | -3,600 | 5a515059fa7bb4c7049e4ccaa1c14798a209f3f3 | docs(logger): add example tag | [
{
"change_type": "MODIFY",
"diff": "@@ -37,7 +37,7 @@ export interface ILogConfig {\n*\n* To customize what data is sent to the sinks, replace the implementation for this interface with your own.\n*\n- * Example:\n+ * @example\n*\n* ```ts\n* export class MyLogEventFactory {\n@@ -77,7 +77,8 @@ export interfa... | TypeScript | MIT License | aurelia/aurelia | docs(logger): add example tag | 1 | docs | logger |
815,601 | 15.11.2019 16:02:06 | -28,800 | 958049444043ae47e412df961a95e759c9417725 | docs: last_common_header | [
{
"change_type": "MODIFY",
"diff": "@@ -41,6 +41,8 @@ impl BlockFetcher {\nlet last_common_header = {\nif let Some(header) = self.synchronizer.peers().get_last_common_header(self.peer) {\nSome(header)\n+ // Bootstrap quickly by guessing a parent of our best tip is the forking point.\n+ // Guessing wrong in ... | Rust | MIT License | nervosnetwork/ckb | docs: last_common_header | 1 | docs | null |
471,536 | 15.11.2019 16:09:36 | -7,200 | 369a7031e0536c8dd0ded5f9ab320fdf1eaef311 | docs: fix broken links to custom-elements.json | [
{
"change_type": "ADD",
"diff": "+{\n+ \"version\": 2,\n+ \"tags\": [\n+ {\n+ \"name\": \"demo-wc-card\",\n+ \"description\": \"This is a container looking like a card with a back and front side you can switch\",\n+ \"properties\": [\n+ {\n+ \"name\": \"header\",\n+ \"type\": \"String\",\n+ \"attribute\": \... | JavaScript | MIT License | open-wc/open-wc | docs: fix broken links to custom-elements.json (#978) | 1 | docs | null |
67,494 | 15.11.2019 16:19:10 | -3,600 | e4db4c27bb34ec72ecb016ff2de9221f74e9f730 | feat(router): add hooks api | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,7 @@ import { arrayRemove, closestController } from './utils';\nimport { IViewportOptions, Viewport } from './viewport';\nimport { ViewportInstruction } from './viewport-instruction';\nimport { FoundRoute } from './found-route';\n-import { HookManager, HookTy... | TypeScript | MIT License | aurelia/aurelia | feat(router): add hooks api | 1 | feat | router |
67,494 | 15.11.2019 16:19:40 | -3,600 | 67a66c483c192b9272a3ec6c4b9fdf5b4c5bb7c7 | test(router): add hooks api tests | [
{
"change_type": "MODIFY",
"diff": "@@ -25,6 +25,7 @@ describe('HookManager', function () {\nasync function tearDown() {\nrouter.deactivate();\n+ RouterConfiguration.customize();\nawait au.stop().wait();\n}\n@@ -64,6 +65,16 @@ describe('HookManager', function () {\nawait tearDown();\n});\n+ it('works with n... | TypeScript | MIT License | aurelia/aurelia | test(router): add hooks api tests | 1 | test | router |
866,394 | 15.11.2019 16:30:10 | 18,000 | b16e40ddcdf112385f1c9db1a44407cb6b75d5a6 | fix(typeahead): dynamically set lc/cc from getLang for search typeahead | [
{
"change_type": "MODIFY",
"diff": "@@ -21,8 +21,8 @@ const _proxy = process.env.CORS_PROXY || '';\n* @private\n*/\nconst _localeDefault = {\n- lc: 'us',\n- cc: 'en',\n+ lc: 'en',\n+ cc: 'us',\n};\n/**\n@@ -114,8 +114,8 @@ class LocaleAPI {\nconst lang = root.document.documentElement.lang.toLowerCase();\nco... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(typeahead): dynamically set lc/cc from getLang for search typeahead | 1 | fix | typeahead |
104,871 | 15.11.2019 16:41:11 | 21,600 | abefd184c09b7327f55a98c544b06c2ce2b539c8 | fix(pagewizard): add bottom padding for sticky footer | [
{
"change_type": "MODIFY",
"diff": "@@ -175,7 +175,9 @@ const PageWizard = ({\n});\nreturn (\n- <div className={['page-wizard', className].join(' ')}>\n+ <div\n+ className={['page-wizard', className, hasStickyFooter ? 'page-wizard--sticky' : ''].join(' ')}\n+ >\n{steps.length > 1 ? (\n<div className=\"page-... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(pagewizard): add bottom padding for sticky footer | 1 | fix | pagewizard |
67,507 | 15.11.2019 17:02:52 | -3,600 | cf06a6a60741cfe95b8e5bbd101bdd621c5e590e | chore: lint space-before-function-paren | [
{
"change_type": "MODIFY",
"diff": "@@ -175,6 +175,11 @@ module.exports = {\n'quotes': ['off'],\n'radix': 'error',\n'sort-keys': ['off'],\n+ 'space-before-function-paren': ['error', {\n+ anonymous: 'always',\n+ named: 'never',\n+ asyncArrow: 'always'\n+ }],\n'space-in-parens': 'error',\n'spaced-comment': ['... | TypeScript | MIT License | aurelia/aurelia | chore: lint space-before-function-paren | 1 | chore | null |
679,913 | 15.11.2019 17:03:36 | 0 | 541e9c8bdf95ece80b74e630eeb428876b7d7bc9 | feat(api): add ISeq, ISeqable | [
{
"change_type": "ADD",
"diff": "+/**\n+ * Lisp-like sequence abstraction for arbitrary types using `first` &\n+ * `next` operations only.\n+ *\n+ * @remarks\n+ * Unlike ES6 iterators this approach does not conflate both operations\n+ * and `first()` can be called any number of times to obtain the current\n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(api): add ISeq, ISeqable | 1 | feat | api |
679,913 | 15.11.2019 17:04:07 | 0 | d94df5786dddf6ef6915af79c3fbf0331ddfd2bd | feat(arrays): add arraySeq(), arrayIterator() & tests | [
{
"change_type": "MODIFY",
"diff": "@@ -5,8 +5,10 @@ export * from \"./ensure-iterable\";\nexport * from \"./find\";\nexport * from \"./fuzzy-match\";\nexport * from \"./is-sorted\";\n+export * from \"./iterator\";\nexport * from \"./peek\";\nexport * from \"./quicksort\";\n+export * from \"./seq\";\nexport... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(arrays): add arraySeq(), arrayIterator() & tests | 1 | feat | arrays |
67,494 | 15.11.2019 17:19:33 | -3,600 | 5f4e3f998ffbec3aba606192983ac2d58f5f6e2a | feat(router): implement BeforeNavigation hook | [
{
"change_type": "MODIFY",
"diff": "@@ -345,6 +345,14 @@ export class Router implements IRouter {\nif (typeof outcome !== 'boolean') {\nviewportInstructions = outcome;\n}\n+\n+ const hooked = this.hookManager.invokeBeforeNavigation(viewportInstructions, instruction);\n+ if (hooked === false) {\n+ return thi... | TypeScript | MIT License | aurelia/aurelia | feat(router): implement BeforeNavigation hook | 1 | feat | router |
67,494 | 15.11.2019 17:20:16 | -3,600 | 2d1842fa6eba988b9fdd2cad1b72bfed69ac4e0d | test(router): add BeforeNavigation tests | [
{
"change_type": "MODIFY",
"diff": "import { HookManager, HookTypes, INavigatorInstruction, ViewportInstruction, RouterConfiguration, IRouter } from '@aurelia/router';\nimport { assert, TestContext } from '@aurelia/testing';\n-import { CustomElement, Aurelia } from '@aurelia/runtime';\n+import { CustomEleme... | TypeScript | MIT License | aurelia/aurelia | test(router): add BeforeNavigation tests | 1 | test | router |
67,494 | 15.11.2019 17:37:07 | -3,600 | 8ba832d41c5f98ca2e9ea39a32472149c3ca7de5 | feat(router): add hook overloads | [
{
"change_type": "MODIFY",
"diff": "@@ -51,8 +51,8 @@ export class HookManager {\nprivate lastIdentity: number = 0;\npublic addHook(beforeNavigationHookFunction: BeforeNavigationHookFunction, options?: IHookOptions): HookIdentity;\n- public addHook(transformFromHookFunction: TransformFromUrlHookFunction, op... | TypeScript | MIT License | aurelia/aurelia | feat(router): add hook overloads | 1 | feat | router |
438,921 | 15.11.2019 17:50:33 | -32,400 | 6ce784afb01d53b4758e255f50f5d2f8ebc9c0a8 | fix(shape): Fix shape position on multiple xs
The shape indices were handling only one level of Axis, which brought
miscalculation on shape positions.
When is given multiple xs, make shape indices to be handle for each xs
value.
Fix | [
{
"change_type": "MODIFY",
"diff": "@@ -291,6 +291,72 @@ describe(\"SHAPE BAR\", () => {\nexpect(() => util.fireEvent(bar, \"click\")).to.not.throw();\n});\n+\n+ it(\"set options\", () => {\n+ args = {\n+ data: {\n+ xs: {\n+ \"Sep\": \"x1\",\n+ \"Aug\": \"x2\",\n+ \"Jul\": \"x2\"\n+ },\n+ type: \"bar\",\n+ ... | TypeScript | MIT License | naver/billboard.js | fix(shape): Fix shape position on multiple xs
The shape indices were handling only one level of Axis, which brought
miscalculation on shape positions.
When is given multiple xs, make shape indices to be handle for each xs
value.
Fix #1115 | 1 | fix | shape |
67,476 | 15.11.2019 18:15:12 | -3,600 | 419f2ca002ca8a75c6ebc80a0b6e74c1ceaac7c1 | chore(test): disable invalid test | [
{
"change_type": "MODIFY",
"diff": "@@ -418,7 +418,7 @@ describe('templating-compiler.ref.spec.ts', function() {\n// just to complete the assertion\n...[\n'view',\n- 'controller',\n+ // 'controller', // why would this be invalid? @bigopon\n'view-model',\n'rando'\n].map(refTarget => {\n",
"new_path": "pa... | TypeScript | MIT License | aurelia/aurelia | chore(test): disable invalid test | 1 | chore | test |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.