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
471,536
14.03.2019 18:46:55
-7,200
fabe13b863638b0e58cd20d52bd81975b8198c3b
docs(demoing-storybook): recommend bundling storybook-static
[ { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"site:build\": \"npm run storybook:build\",\n\"storybook\": \"start-storybook -p 9001\",\n- \"storybook:build\": \"build-storybook -o _site\"\n+ \"storybook:build\": \"build-storybook -o _site -s storybook-static\"\n},\n\"devDependencies\": {\n\"@open-wc/...
JavaScript
MIT License
open-wc/open-wc
docs(demoing-storybook): recommend bundling storybook-static
1
docs
demoing-storybook
217,922
14.03.2019 20:55:56
-3,600
e4f5db5d5c678872ce595a931a602182ff0a5ce3
feat(alarms): added support for weather inside alarms
[ { "change_type": "MODIFY", "diff": "@@ -24,6 +24,7 @@ import { AlarmGroupDisplay } from '../alarm-group-display';\nimport { AlarmGroup } from '../alarm-group';\nimport { SettingsService } from '../../../modules/settings/settings.service';\nimport { WeatherService } from '../../eorzea/weather.service';\n+imp...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(alarms): added support for weather inside alarms
1
feat
alarms
217,922
14.03.2019 21:25:59
-3,600
b309073be74de52f3e292e66892c1c0faa0e312b
fix(auth): fixed an issue with some data not loaded properly
[ { "change_type": "MODIFY", "diff": "-import { EMPTY, from, Observable } from 'rxjs';\n+import { EMPTY, from, Observable, of } from 'rxjs';\nimport { DataModel } from '../data-model';\nimport { DataStore } from '../data-store';\nimport { NgSerializerService } from '@kaiu/ng-serializer';\n@@ -24,7 +24,7 @@ ex...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(auth): fixed an issue with some data not loaded properly
1
fix
auth
217,922
14.03.2019 21:53:09
-3,600
22765b5d7053473a95001a4f85b543537cf02fa7
chore: small fix for weather handling
[ { "change_type": "MODIFY", "diff": "@@ -129,17 +129,18 @@ export class AlarmsFacade {\npublic createDisplay(alarm: Alarm, date: Date): AlarmDisplay {\nconst display = new AlarmDisplay(alarm);\n+ const nextSpawn = this.getNextSpawn(alarm, date);\ndisplay.spawned = this.isSpawned(alarm, date);\ndisplay.played...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for weather handling
1
chore
null
679,913
14.03.2019 21:56:44
0
00f4ba0bcb8abd328b804a5860ecec4dd10a6e35
docs: update main readme, add blog link (pt.4)
[ { "change_type": "MODIFY", "diff": "@@ -55,9 +55,10 @@ packages) in the [examples](./examples) directory.\n- [How to UI in 2018](https://medium.com/@thi.ng/how-to-ui-in-2018-ac2ae02acdf3)\n- \"Of umbrellas, transducers, reactive streams & mushrooms\" (ongoing series):\n- - [Part 1 - Overview](https://medium...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: update main readme, add blog link (pt.4)
1
docs
null
217,922
14.03.2019 22:18:22
-3,600
76b2d6b1b8c0c00c4b48abb672f90a735808577e
chore: small fix for auth
[ { "change_type": "MODIFY", "diff": "@@ -88,7 +88,7 @@ export class AuthEffects {\ndebounceTime(10000),\ntap((action: UserFetched) => {\nconst user = action.user;\n- if (!this.nickNameWarningShown && (user.patron || user.admin) && user.nickname === undefined) {\n+ if (!this.nickNameWarningShown && user !== n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for auth
1
chore
null
679,913
14.03.2019 23:06:58
0
0918c5bb8911974eb08e08481778e4fec9628bc5
perf(adjacency): update subsets() to use canonical()
[ { "change_type": "MODIFY", "diff": "@@ -85,10 +85,7 @@ export class DisjointSet {\nconst sets: Map<number, number[]> = new Map();\nconst roots = this.roots;\nfor (let i = roots.length; --i >= 0; ) {\n- let id = i;\n- while (id !== roots[id]) {\n- id = roots[roots[id]];\n- }\n+ const id = this.canonical(i);\...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(adjacency): update subsets() to use canonical()
1
perf
adjacency
679,913
14.03.2019 23:07:47
0
28e9898a18e538bcb409f837315529e56acfdb50
feat(math): add consts
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,10 @@ export const THIRD_PI = PI / 3;\nexport const QUARTER_PI = PI / 4;\nexport const SIXTH_PI = PI / 6;\n+export const INV_PI = 1 / PI;\n+export const INV_TAU = 1 / TAU;\n+export const INV_HALF_PI = 1 / HALF_PI;\n+\nexport const DEG2RAD = PI / 180;\nexport co...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(math): add consts
1
feat
math
679,913
14.03.2019 23:10:05
0
83dfcfad6e605e98c5b9750d8efe85386100c183
feat(examples): add OBJ point export for Wolfram demo
[ { "change_type": "ADD", "diff": "+/**\n+ * Helper function to trigger download of given `src` string as local\n+ * file with filename `name` and mime `type`. Wraps `src` as blob and\n+ * creates an object URL for download. By default, the URL auto-expires\n+ * after 10 seconds to free up memory.\n+ *\n+ * @...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add OBJ point export for Wolfram demo
1
feat
examples
815,573
14.03.2019 23:42:47
-28,800
b5a488068e1cab3a260efc5c809d64f1c1dd28bf
chore: Update tentacle version
[ { "change_type": "MODIFY", "diff": "@@ -483,8 +483,9 @@ dependencies = [\n\"serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)\",\n- ...
Rust
MIT License
nervosnetwork/ckb
chore: Update tentacle version
1
chore
null
217,929
14.03.2019 23:58:36
-7,200
17eb9baa4bf688d673b842b0a4f5743c6cf658c7
fix(simulator): dragging the last action doesn't make it immovable
[ { "change_type": "MODIFY", "diff": "<i nz-icon type=\"exclamation-circle\" theme=\"twotone\" [twoToneColor]=\"'#aa9400'\" class=\"warning-icon\"\nnz-tooltip [nzTitle]=\"'SIMULATOR.Unsaved_changes' | translate\" *ngIf=\"dirty\"></i>\n<div fxLayout=\"row wrap\" ngxDroppable=\"action\" fxLayoutGap=\"10px\" cla...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): dragging the last action doesn't make it immovable
1
fix
simulator
217,929
15.03.2019 00:10:15
-7,200
b559a1aa2103329a0b25d50f0c5055b8dd9faa0d
chore: Removing the console.log
[ { "change_type": "MODIFY", "diff": "@@ -503,7 +503,6 @@ export class SimulatorComponent implements OnInit, OnDestroy {\n}\naddAction(action: CraftingAction, index?: number) {\n- console.log(\"action added\");\nif (index === undefined) {\nthis.actions$.next([...this.actions$.value, action]);\n} else {\n", ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: Removing the console.log
1
chore
null
71,105
15.03.2019 04:46:51
21,600
1f2433689904d3c312f1df58277e8fca0ad1f00d
feat(aws-rds): ability to add an existing security group to RDS cluster
[ { "change_type": "MODIFY", "diff": "@@ -151,7 +151,8 @@ export class DatabaseCluster extends cdk.Construct implements IDatabaseCluster {\nsubnetIds: subnets.map(s => s.subnetId)\n});\n- const securityGroup = new ec2.SecurityGroup(this, 'SecurityGroup', {\n+ const securityGroup = props.instanceProps.security...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(aws-rds): ability to add an existing security group to RDS cluster (#2021)
1
feat
aws-rds
67,476
15.03.2019 06:09:10
-3,600
d779874be9908661a229f25cde6cf4baf83a0a5b
chore(test): fix jit tests
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ import {\nAttributePatternDefinition,\nIAttributePattern,\nISyntaxInterpreter\n-} from '../src/index';\n+} from '@aurelia/jit';\ndescribe('@attributePattern', function () {\nfor (const [defs, tests] of [\n", "new_path": "packages/__tests__/jit/attribut...
TypeScript
MIT License
aurelia/aurelia
chore(test): fix jit tests
1
chore
test
67,476
15.03.2019 07:56:44
-3,600
02b6d16d8aa1a423be61407e6576a6a03e451b54
feat(kernel): add InstanceProvider to public api
[ { "change_type": "MODIFY", "diff": "@@ -835,6 +835,29 @@ export const Registration = {\n}\n};\n+export class InstanceProvider<T> implements IResolver<T | null> {\n+ private instance: T | null;\n+\n+ constructor() {\n+ this.instance = null;\n+ }\n+\n+ public prepare(instance: T): void {\n+ this.instance = in...
TypeScript
MIT License
aurelia/aurelia
feat(kernel): add InstanceProvider to public api
1
feat
kernel
217,922
15.03.2019 08:16:13
-3,600
f34eb8bd9db5ca72080aa111ba6ac3f340508179
chore: fixed an issue with stats recording kinda breaking firebase pricing
[ { "change_type": "MODIFY", "diff": "@@ -70,16 +70,16 @@ exports.firestoreCountlistsDelete = functions.firestore.document('/lists/{uid}')\nexports.createListCompacts = functions.firestore.document('/lists/{uid}').onCreate((snap) => {\nconst compact = getCompact(snap.data.data());\n- registerItemsCreation(sna...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fixed an issue with stats recording kinda breaking firebase pricing
1
chore
null
722,013
15.03.2019 08:22:20
18,000
2a90af690eb96cdccb4237b67960266f7e8902f8
fix(lerna): force delivery of docgen after lerna breakdown lerna messed up a couple of times which resulted 3.9.0 not being deliveered to npm. this build adds a few comments to main.ts and forces recompile and changes to all files in order to deliver docgen to npm.
[ { "change_type": "DELETE", "diff": "-# Change Log\n-\n-All notable changes to this project will be documented in this file.\n-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n-\n-## [3.7.1](https://github.com/vue-styleguidist/vue-docgen-api/compare/v3.0.16...v3.7.1) (2019-...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix(lerna): force delivery of docgen after lerna breakdown lerna messed up a couple of times which resulted 3.9.0 not being deliveered to npm. this build adds a few comments to main.ts and forces recompile and changes to all files in order to deliver docgen to npm.
1
fix
lerna
217,922
15.03.2019 08:53:13
-3,600
ae1283e9e4a8bed8cc7178113dc861ff01728b1a
chore: fixes for the e2e tests
[ { "change_type": "MODIFY", "diff": "@@ -2,8 +2,8 @@ export const getPageTitle = () => cy.get('a.logo');\nexport const changeLanguage = (newLanguage: 'EN' | 'DE' | 'FR' | 'JA' | 'PT' | 'BR' | 'ES' | 'KO' | 'ZH') => {\nconst index = ['EN', 'DE', 'FR', 'JA', 'PT', 'BR', 'ES', 'KO', 'ZH'].indexOf(newLanguage) +...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fixes for the e2e tests
1
chore
null
104,818
15.03.2019 09:42:45
18,000
209f31f91aaa816b02b565abaa41fe8437a9e0d8
feat(navbar): first drop of nav bar
[ { "change_type": "ADD", "diff": "+import React from 'react';\n+import PropTypes from 'prop-types';\n+import styled from 'styled-components';\n+import { Tabs, Tab } from 'carbon-components-react';\n+\n+const StyledNavigationContainer = styled.div`\n+ display: flex;\n+ flex-flow: column nowrap;\n+`;\n+\n+cons...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(navbar): first drop of nav bar
1
feat
navbar
730,420
15.03.2019 10:03:16
25,200
2f31e606e00128fdb4d1f95654ed3df337899b01
bugfix(loading-screen): Loading the PNG file properly and some minor styling changes
[ { "change_type": "MODIFY", "diff": "@@ -4,12 +4,18 @@ exports[`LoadingScreen component renders properly 1`] = `\n<div\nclassName=\"webex-teams-loading loading\"\n>\n- <div\n+ <img\n+ alt=\"Webex Teams Logo\"\nclassName=\"webex-teams-spark-logo logo\"\n+ src={Object {}}\n/>\n+ <div\n+ className=\"webex-teams...
JavaScript
MIT License
webex/react-widgets
bugfix(loading-screen): Loading the PNG file properly and some minor styling changes
1
bugfix
loading-screen
217,922
15.03.2019 10:13:25
-3,600
6893cb9371e30d4af512697341e8a30fbc9bdb43
feat(lists): updated lists page display for more usability with teams
[ { "change_type": "MODIFY", "diff": "{{'LISTS.No_lists' | translate}}\n</app-fullpage-message>\n</div>\n- <div *ngFor=\"let teamDisplay of teamsDisplays$ | async;trackBy: trackByTeam\">\n- <div *ngIf=\"teamDisplay.lists.length > 0\">\n- <h3>{{teamDisplay.team.name}}</h3>\n- <div class=\"list-panel\" *ngFor=\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(lists): updated lists page display for more usability with teams
1
feat
lists
217,922
15.03.2019 10:16:17
-3,600
788d04024049589696640eba58578cbbf7ce7cea
feat(workshop): workshop panel now has list count shown
[ { "change_type": "MODIFY", "diff": "<ng-template #panelHeader>\n<div class=\"panel-header\" fxLayout=\"row wrap\" fxLayoutAlign=\"space-between center\">\n<div>\n- {{_workshop.name}}\n+ {{_workshop.name}} ({{lists.length}})\n</div>\n<div nz-col nzMd=\"4\" fxLayout=\"row\" fxLayoutGap=\"2px\" fxLayoutAlign=\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(workshop): workshop panel now has list count shown
1
feat
workshop
791,704
15.03.2019 10:31:37
25,200
9efe177e47fd0b8a4762c5b770b0fd4ef7f1f63f
clients(devtools): create standalone reportGenerator bundle
[ { "change_type": "ADD", "diff": "+/**\n+ * @license Copyright 2019 Google Inc. All Rights Reserved.\n+ * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/L...
JavaScript
Apache License 2.0
googlechrome/lighthouse
clients(devtools): create standalone reportGenerator bundle (#7421)
1
clients
devtools
531,793
15.03.2019 10:49:33
0
49257ec296c4529d4a69b20695d7fdc9fa451514
fix(api): correctly deduplicate silences Right now deduplication only works when there's a single silence for the entire group, but not if the group is silences with multiple silences. This change fixes the logic so that we look at silences covering the entire group and move those into shared namespace
[ { "change_type": "MODIFY", "diff": "@@ -38,7 +38,7 @@ type LabelsColorMap map[string]map[string]LabelColors\ntype APIAlertGroupSharedMaps struct {\nAnnotations Annotations `json:\"annotations\"`\nLabels map[string]string `json:\"labels\"`\n- Silences map[string]string `json:\"silences\"`\n+ Silences map[str...
TypeScript
Apache License 2.0
prymitive/karma
fix(api): correctly deduplicate silences Right now deduplication only works when there's a single silence for the entire group, but not if the group is silences with multiple silences. This change fixes the logic so that we look at silences covering the entire group and move those into shared namespace
1
fix
api
103,580
15.03.2019 11:17:11
-3,600
4a28c3e8a54b475c822634090abf2c3938506c23
feat: expose new prop to add custom color in Chip component
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,12 @@ class ChipExample extends React.Component<Props> {\n>\n<List.Section title=\"Flat chip\">\n<View style={styles.row}>\n- <Chip onPress={() => {}} style={styles.chip}>\n+ <Chip\n+ mode=\"outlined\"\n+ selected\n+ onPress={() => {}}\n+ style={styles.chip}\...
TypeScript
MIT License
callstack/react-native-paper
feat: expose new prop to add custom color in Chip component (#729)
1
feat
null
531,793
15.03.2019 11:25:30
0
a642dd7aff71a26014f7df605fe0fc7d2f6ac6e9
fix(ui): add margin around silence fallback
[ { "change_type": "MODIFY", "diff": "exports[`<Silence /> matches snapshot when data is not present in alertStore 1`] = `\n\"\n-<div>\n+<div class=\\\\\"m-1\\\\\">\n<small class=\\\\\"text-muted\\\\\">\nSilenced by default/4cf5fd82-1edd-4169-99d1-ff8415e72179\n</small>\n", "new_path": "ui/src/Components/...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): add margin around silence fallback
1
fix
ui
749,547
15.03.2019 11:26:10
-39,600
1606f4da1f4d3df7cb2c2a6b2f9b8c6f78183b23
fix(autocomplete): Pass through popperModifiers from high abstraction components
[ { "change_type": "MODIFY", "diff": "@@ -78,7 +78,11 @@ export default class Autocomplete extends Component {\nnoOptionsMessage: PropTypes.string,\nrenderOption: PropTypes.func,\nrenderDropdown: PropTypes.func,\n- optionFilter: PropTypes.func\n+ optionFilter: PropTypes.func,\n+ /**\n+ * Passes options to [Po...
TypeScript
Apache License 2.0
zendeskgarden/react-components
fix(autocomplete): Pass through popperModifiers from high abstraction components (#290)
1
fix
autocomplete
531,793
15.03.2019 11:26:46
0
4a751843fbc6feb867bb819a95a82775437e6f40
fix(ui): shared silences is now a list API changed, so UI needs to follow
[ { "change_type": "MODIFY", "diff": "@@ -49,22 +49,24 @@ const Alert = observer(\nBorderClassMap[alert.state] || \"border-warning\"\n];\n- let silences = {};\n- for (let am of alert.alertmanager) {\n+ const silences = {};\n+ for (const am of alert.alertmanager) {\nif (!silences[am.cluster]) {\nsilences[am.cl...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): shared silences is now a list API changed, so UI needs to follow
1
fix
ui
447,451
15.03.2019 12:42:19
14,400
23cef6da6811cce18e84cee7c637affe81b0927b
feat: add GitterChat to library
[ { "change_type": "ADD", "diff": "+import { Component } from 'react';\n+import PropTypes from 'prop-types';\n+import scriptLoader from 'react-async-script-loader';\n+\n+/** See: https://sidecar.gitter.im/ */\n+class GitterChat extends Component {\n+ componentDidMount() {\n+ const {\n+ room,\n+ targetElement,...
JavaScript
MIT License
nexxtway/react-rainbow
feat: add GitterChat to library (#623)
1
feat
null
447,440
15.03.2019 12:46:51
21,600
fb43453dd0af4421da2393f31eae6dd515951a6a
style: fix icon in chat
[ { "change_type": "ADD", "diff": "+<svg width=\"36px\" height=\"35px\" viewBox=\"0 0 36 35\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n+ <g>\n+ <path d=\"M33.1391555,24.9623665 C33.493755,28.8845612 34.4441537,31.7957573 35.8241519,33.1757554 C36.0065516,33.3575552 3...
JavaScript
MIT License
nexxtway/react-rainbow
style: fix icon in chat (#625)
1
style
null
217,922
15.03.2019 13:02:05
-3,600
66b587d4369578acdc4bdcef5db50693c367e6be
fix(search): fixed a possible issue with search input in some cases
[ { "change_type": "MODIFY", "diff": "@@ -131,7 +131,7 @@ export class SearchComponent implements OnInit {\nrelativeTo: this.route\n});\n}),\n- switchMap(([query, onlyRecipes, filters]) => this.data.searchItem(query, filters, onlyRecipes)),\n+ mergeMap(([query, onlyRecipes, filters]) => this.data.searchItem(q...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(search): fixed a possible issue with search input in some cases
1
fix
search
531,793
15.03.2019 13:27:03
0
003e2d88acfccfe60e614297204b0fb120ac73fa
fix(api): always sort shared silences Prevent different order between requests, which can also break random tests
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,7 @@ package models\nimport (\n\"fmt\"\n+ \"sort\"\n\"github.com/prymitive/karma/internal/slices\"\n)\n@@ -179,6 +180,8 @@ func (ag *APIAlertGroup) dedupSilences() {\nag.Shared.Silences[cluster] = []string{}\n}\nag.Shared.Silences[cluster] = append(ag.Shared.Si...
TypeScript
Apache License 2.0
prymitive/karma
fix(api): always sort shared silences Prevent different order between requests, which can also break random tests
1
fix
api
447,451
15.03.2019 13:28:21
14,400
1822395e6bf24d916bfd3c75de4451bd410d8890
fix: fix gitter room name
[ { "change_type": "MODIFY", "diff": "@@ -50,7 +50,7 @@ export default class StyleGuide extends React.Component {\n</RenderIf>\n</main>\n<Button label=\"Open Chat\" className=\"react-rainbow-styleguide-open-chat-button\" />\n- <GitterChat room=\"react-rainbow-components\" activationElement=\".react-rainbow-st...
JavaScript
MIT License
nexxtway/react-rainbow
fix: fix gitter room name (#624)
1
fix
null
127,940
15.03.2019 14:18:55
-7,200
54bc9aadb6b4d4941de1c8b76a7495dec42d4f2c
feat(tokens): add container
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ import {\nborder,\nbreakpoints,\ncolors,\n+ container\nspacing,\ntypography,\nzIndex,\n@@ -59,6 +60,12 @@ Ensuring consistent responsive design.\n| large | number | 1080 |\n| xlarge | number | 1200 |\n+## Container\n+\n+| Key | Type | Variants |\n+| :---...
TypeScript
MIT License
coingaming/moon-design
feat(tokens): add container
1
feat
tokens
127,940
15.03.2019 14:19:26
-7,200
1faee5992f1034a65d77eed1ac54a7a079bafef7
feat(utils): add container
[ { "change_type": "ADD", "diff": "+const package = require('./package.json');\n+const base = require('../../.config/jest/jest.config.base.js');\n+\n+module.exports = {\n+ ...base,\n+ roots: ['<rootDir>/design/utils'],\n+ name: package.name,\n+ displayName: package.name,\n+};\n", "new_path": "design/utils...
TypeScript
MIT License
coingaming/moon-design
feat(utils): add container
1
feat
utils
127,940
15.03.2019 14:22:09
-7,200
026e0aa4a1771471d8f4ec0bdefabc35effc5269
chore: integrate container
[ { "change_type": "DELETE", "diff": "-import { CSSObject } from '@emotion/core';\n-import { mq, spacing } from '@heathmont/sportsbet-utils';\n-import { breakpoints } from '@heathmont/sportsbet-tokens';\n-\n-export const container: CSSObject = {\n- maxWidth: '1600px',\n- padding: spacing('medium'),\n- [mq(bre...
TypeScript
MIT License
coingaming/moon-design
chore: integrate container
1
chore
null
815,598
15.03.2019 14:25:10
-28,800
76fc0edc10343aa8a5a989035bf66ec20827c0fc
test: setup integration test in Travis
[ { "change_type": "ADD", "diff": "+status = [\n+ \"continuous-integration/travis-ci/push\"\n+]\n+required_approvals = 1\n", "new_path": "bors.toml", "old_path": null }, { "change_type": "MODIFY", "diff": "#!/bin/bash\nset -ev\n+echo \"TRAVIS_BRANCH=$TRAVIS_BRANCH\"\n+\ncargo sweep -s\nif ...
Rust
MIT License
nervosnetwork/ckb
test: setup integration test in Travis
1
test
null
815,593
15.03.2019 14:26:55
-32,400
9fa25d4afd63768d91511edd4f076a4fa9ee3906
fix: use reference script in integration test
[ { "change_type": "MODIFY", "diff": "@@ -43,4 +43,5 @@ trace = 100\ntxs_verify_cache_size = 100000\n[block_assembler]\n+# value is from spec#always_success_type_hash test\ntype_hash = \"0x8954a4ac5e5c33eb7aa8bb91e0a000179708157729859bd8cf7e2278e1e12980\"\n", "new_path": "nodes_template/default.toml", ...
Rust
MIT License
nervosnetwork/ckb
fix: use reference script in integration test
1
fix
null
127,940
15.03.2019 14:28:12
-7,200
d225211ec7cfb4f8b03fffcf998dc5edb8295d4c
chore: remove completed whiteboard plan
[ { "change_type": "MODIFY", "diff": "@@ -96,9 +96,3 @@ Our project's style guide and documentation is built using [Gatsby](https://www.\n## Contributing\nSee the [Contributing Guidelines](CONTRIBUTING.md) for full info.\n-\n-## Plan\n-\n-Initial brainstorm of the project's requirements on Tuesday 8th January...
TypeScript
MIT License
coingaming/moon-design
chore: remove completed whiteboard plan
1
chore
null
531,793
15.03.2019 14:42:28
0
fc334ab4ac1fac67411bc6d73076c1fc35d39c25
feat(ui): add settings for controlling navbar autohide This allows to control if the navbar should hide on idle or not
[ { "change_type": "MODIFY", "diff": "@@ -103,7 +103,11 @@ const NavBar = observer(\nreturn (\n<IdleTimer\nonActive={this.activityStatus.setActive}\n- onIdle={this.activityStatus.setIdle}\n+ onIdle={() => {\n+ if (settingsStore.filterBarConfig.config.autohide) {\n+ this.activityStatus.setIdle();\n+ }\n+ }}\nt...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): add settings for controlling navbar autohide This allows to control if the navbar should hide on idle or not
1
feat
ui
531,793
15.03.2019 14:43:30
0
3974315ccc74082348e8fedd39ece024331074b9
feat(ui): add UI toggle for changing autohide settings This adds a checkbox in the settings form to control if navbar autohide is on or off Fixes
[ { "change_type": "MODIFY", "diff": "@@ -39,7 +39,7 @@ const AlertGroupConfiguration = observer(\nrender() {\nreturn (\n<div className=\"form-group text-center\">\n- <label className=\"mb-4\">\n+ <label className=\"mb-4 font-weight-bold\">\nDefault number of alerts to show per group\n</label>\n<InputRange\n"...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): add UI toggle for changing autohide settings This adds a checkbox in the settings form to control if navbar autohide is on or off Fixes #530
1
feat
ui
217,922
15.03.2019 14:46:06
-3,600
0053aa639870cdbbd188bf027e1cbef005914f38
fix(lists): lists and their content aren't reordered anymore when editing amounts (not retroactive)
[ { "change_type": "MODIFY", "diff": "@@ -48,13 +48,7 @@ export class ListsFacade {\nreturn compacts.filter(c => c.authorId === userId);\n}),\nmap(lists => {\n- return lists.sort((a, b) => {\n- let res = a.index - b.index;\n- if (res === 0) {\n- res = new Date(a.createdAt).getTime() > new Date(b.createdAt).ge...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(lists): lists and their content aren't reordered anymore when editing amounts (not retroactive)
1
fix
lists
104,818
15.03.2019 14:53:58
18,000
9b29944a110cef5cb6ce01108e46cdb49835e0be
docs(navigationbar): better documentation for the props
[ { "change_type": "MODIFY", "diff": "@@ -31,7 +31,6 @@ const StyledActions = styled.div`\nconst propTypes = {\n/** Array of props to pass through to the tabs */\n-\ntabs: PropTypes.arrayOf(\nPropTypes.shape({\nid: PropTypes.string.isRequired,\n@@ -48,18 +47,28 @@ const propTypes = {\nonClick: PropTypes.func,...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
docs(navigationbar): better documentation for the props
1
docs
navigationbar
127,940
15.03.2019 15:11:01
-7,200
1c0ba7b9127f14f19e8cf36b944a74ec1fb84e67
chore: update heading sizes
[ { "change_type": "MODIFY", "diff": "@@ -206,9 +206,6 @@ exports[`Banner Closable renders with horizontal layout 1`] = `\n.emotion-0 {\ncolor: inherit;\n- font-weight: 700;\n- font-size: 2.0625rem;\n- line-height: 2.5625rem;\n}\n.emotion-3 {\n@@ -353,9 +350,6 @@ exports[`Banner renders correctly with maxWidt...
TypeScript
MIT License
coingaming/moon-design
chore: update heading sizes
1
chore
null
815,601
15.03.2019 15:16:10
-28,800
5393c68cd5fc9edda9fe2e0936f9ca366e77755b
feat: version verification
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,8 @@ use std::fmt;\npub use crate::{BlockNumber, Version};\n+pub const HEADER_VERSION: Version = 0;\n+\n#[derive(Clone, Serialize, Deserialize, PartialEq, Eq, Default)]\npub struct Seal {\nnonce: u64,\n", "new_path": "core/src/header.rs", "old_path": "c...
Rust
MIT License
nervosnetwork/ckb
feat: version verification
1
feat
null
127,940
15.03.2019 15:54:24
-7,200
4681ae90fd869ae80e38bcc068e98f3be94cde24
chore: remove old heading size references
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ Banners are generic containers for displaying important information to the user.\n```jsx react-live\n<Banner maxWidth=\"400px\">\nSomething\n- <Heading size=\"foxtrot\" element=\"h2\">\n+ <Heading size=\"bravo\" element=\"h2\">\nNeed help?\n</Heading>\n<...
TypeScript
MIT License
coingaming/moon-design
chore: remove old heading size references
1
chore
null
815,601
15.03.2019 16:32:58
-28,800
eb1539d83632e68ec6e035e00f2bb38d9fb9163d
feat: enforce `type` field of a cellbase output cell must be absent
[ { "change_type": "MODIFY", "diff": "@@ -18,8 +18,6 @@ use std::collections::HashSet;\n//TODO: cellbase, witness\n#[derive(Clone)]\npub struct BlockVerifier<P> {\n- // Verify if the committed transactions is empty\n- empty: EmptyVerifier,\n// Verify if the committed and proposed transactions contains duplica...
Rust
MIT License
nervosnetwork/ckb
feat: enforce `type` field of a cellbase output cell must be absent
1
feat
null
503,945
15.03.2019 16:41:14
14,400
e11af239d765ba44fa3ced58960bbe2fbdbb2e18
chore(package): Bump versions to 1.0.240
[ { "change_type": "MODIFY", "diff": "\"victory-core\": \"^31.1.0\"\n},\n\"devDependencies\": {\n- \"@patternfly/patternfly\": \"1.0.239\",\n+ \"@patternfly/patternfly\": \"1.0.240\",\n\"@patternfly/react-tokens\": \"^2.1.0\",\n\"css\": \"^2.2.3\",\n\"fs-extra\": \"^6.0.1\",\n", "new_path": "packages/patt...
TypeScript
MIT License
patternfly/patternfly-react
chore(package): Bump @patternfly/patternfly versions to 1.0.240 (#1590)
1
chore
package
217,922
15.03.2019 19:13:07
-3,600
7b49c60f89816bcbfe570a2c30d84f34f3cd6305
chore: fix for the weather prediction system
[ { "change_type": "MODIFY", "diff": "@@ -136,7 +136,7 @@ export class AlarmsFacade {\nnextSpawn.hours = (nextSpawn.hours + alarm.duration) % 24;\ndisplay.remainingTime = this.getMinutesBefore(date, nextSpawn);\n} else {\n- display.remainingTime = this.getMinutesBefore(date, this.getNextSpawn(alarm, date));\n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for the weather prediction system
1
chore
null
217,922
15.03.2019 19:55:16
-3,600
90a51dfd1df853a529c5888ce34580e44392bec1
feat(alarms): show more details about timed nodes for other items on same node closes
[ { "change_type": "MODIFY", "diff": "<div>{{row.remainingTime | timer}}</div>\n<img *ngIf=\"row.weather\" [src]=\"row.weather | weatherIcon\" alt=\"{{row.weather | weatherName | i18n}}\" nz-tooltip\n[nzTitle]=\"row.weather | weatherName | i18n\">\n+ <div *ngIf=\"row.alarm.nodeContent\" nz-popover\n+ [nzTitle...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(alarms): show more details about timed nodes for other items on same node closes #751
1
feat
alarms
815,569
15.03.2019 22:30:11
-28,800
37e7cb7d0223ae627a8ffca9ccfc598bd04bd6fc
feature: index whether a tx is a cellbase in the chain, prepare for the cellbase outputs maturity checking
[ { "change_type": "MODIFY", "diff": "@@ -16,17 +16,33 @@ impl From<BitVecSerde> for BitVec {\n#[derive(Default, Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]\npub struct TransactionMeta {\n+ block_number: u64,\n+ /// first bit indicate if transaction is a cellbase transaction\n+ /// next bits indicat...
Rust
MIT License
nervosnetwork/ckb
feature: index whether a tx is a cellbase in the chain, prepare for the cellbase outputs maturity checking
1
feature
null
730,412
15.03.2019 22:33:27
0
e96ed8625481db4c34e32b0cde4bcf615f7a306d
chore(release): 0.1.434
[ { "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.434\"></a>\n+## [0.1.434](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.434
1
chore
release
447,447
16.03.2019 00:01:07
14,400
65944794cc5cca29539090e9abc949c224866f98
fix: fix scrolling in background behind the Modal when more than one Modal.
[ { "change_type": "MODIFY", "diff": "@@ -39,13 +39,15 @@ export default class Modal extends Component {\n}\n}\n- componentDidUpdate() {\n+ componentDidUpdate(prevProps) {\nconst { isOpen } = this.props;\n- enableScroll();\n- if (isOpen) {\n+ const { isOpen: prevIsOpen } = prevProps;\n+ if (isOpen && !prevIsO...
JavaScript
MIT License
nexxtway/react-rainbow
fix: fix scrolling in background behind the Modal when more than one Modal. (#626)
1
fix
null
67,476
16.03.2019 01:38:59
-3,600
7bd35a9af6a4b6628f043283e76e2e95de199483
chore(test): add remaining core packages to build
[ { "change_type": "MODIFY", "diff": "\"include\": [\".\"],\n\"exclude\": [\n\"router\",\n- \"runtime-html-browser\",\n- \"runtime-html-jsdom\",\n- \"jit-html-browser\",\n- \"jit-html-jsdom\",\n\"fetch-client\",\n\"dist\"\n]\n", "new_path": "packages/__tests__/tsconfig.json", "old_path": "packages/__t...
TypeScript
MIT License
aurelia/aurelia
chore(test): add remaining core packages to build
1
chore
test
71,169
16.03.2019 05:48:44
25,200
a57c6d559ab2cd7ce716738e9a337768777c334d
chore(acm): update docs Update class name in docs, remove outdated paragraph.
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ can be used in CloudFront and ELB.\n### DNS-validated certificates\n-The `DNSValidatedCertificateRequest` class provides a Custom Resource by which\n+The `DnsValidatedCertificateRequest` class provides a Custom Resource by which\nyou can request a TLS cert...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(acm): update docs (#2028) Update class name in docs, remove outdated paragraph.
1
chore
acm
573,195
16.03.2019 11:22:44
25,200
cb2e7177c8b735987aed1c0839747f9658c19bb0
fix: properly handle non-errors thrown in domains
[ { "change_type": "MODIFY", "diff": "@@ -1303,19 +1303,24 @@ Server.prototype._routeErrorResponse = function _routeErrorResponse(\nreturn;\n}\n- self._emitErrorEvents(req, res, null, err, function emitError(emitErr) {\n+ self._emitErrorEvents(req, res, null, err, function emitError() {\n// Prevent double han...
JavaScript
MIT License
restify/node-restify
fix: properly handle non-errors thrown in domains (#1757)
1
fix
null
217,922
16.03.2019 20:23:05
-3,600
dae54ee08dc562a700e6ac11174227920bef5ed0
feat(log-tracker): added a confirmation box for the "mark page as done" action
[ { "change_type": "MODIFY", "diff": "<nz-spin [nzSpinning]=\"userCompletion === {}\">\n<div fxLayout=\"column\" *ngIf=\"selectedPage === page.id\">\n<div class=\"toolbar\" fxLayout=\"row\" fxLayoutGap=\"5px\" fxLayout.lt-md=\"column\">\n- <button nz-button (click)=\"markPageAsDone(page)\">\n+ <button nz-butt...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(log-tracker): added a confirmation box for the "mark page as done" action
1
feat
log-tracker
217,922
16.03.2019 20:49:44
-3,600
79d165bab9ef4ec6cbadee775e4e96e7624d466f
chore(release): 5.0.39
[ { "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=\"5.0.39\"></a>\n+## [5.0.39](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.0.3...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 5.0.39
1
chore
release
273,683
17.03.2019 02:13:07
-3,600
8a7ae892377c33ecf05b8dc84e17fc663fc4d286
fix(g-image): increase max image width
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/gridsome/lib/__tests__/assets/2560x2560.png differ\n", "new_path": "gridsome/lib/__tests__/assets/2560x2560.png", "old_path": "gridsome/lib/__tests__/assets/2560x2560.png" }, { "change_type": "MODIFY", "diff": "@@ -163,6 +163,...
JavaScript
MIT License
gridsome/gridsome
fix(g-image): increase max image width (#286)
1
fix
g-image
217,922
17.03.2019 10:35:30
-3,600
f6d037e5f51cda2cfc214df940142009129ebfb6
fix(lists): "You have no lists" message isn't draggable anymore
[ { "change_type": "MODIFY", "diff": "[model]=\"list\">\n<app-list-panel [list]=\"list\" [hideAvatar]=\"true\"></app-list-panel>\n</div>\n+ </div>\n<app-fullpage-message *ngIf=\"lists.otherLists.length === 0 && !(loading$ | async)\" height=\"150px\">\n{{'LISTS.No_lists' | translate}}\n</app-fullpage-message>\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(lists): "You have no lists" message isn't draggable anymore
1
fix
lists
471,536
17.03.2019 10:40:14
-7,200
9c97d8f38978e8351654288ee349432280e7d37b
fix(demoing-storybook): allow untyped properties properties do not need a type field.
[ { "change_type": "MODIFY", "diff": "@@ -52,7 +52,7 @@ export function withClassPropertiesKnobs(Klass, { overrides: overrideFunction, t\ngroup = override.group; // eslint-disable-line prefer-destructuring\n}\nconst prop = isElProperty ? Klass.properties[propName] : Klass._classProperties.get(propName);\n- if...
JavaScript
MIT License
open-wc/open-wc
fix(demoing-storybook): allow untyped properties properties do not need a type field.
1
fix
demoing-storybook
217,922
17.03.2019 10:45:35
-3,600
723b57b72ae90b4629000b3da84ccbcbe4fa9545
fix(search): fixed an issue with korean and chinese search filters
[ { "change_type": "MODIFY", "diff": "@@ -44,7 +44,7 @@ export class DataService {\n*/\npublic searchItem(query: string, filters: SearchFilter[], onlyCraftable: boolean): Observable<SearchResult[]> {\nlet lang = this.i18n.currentLang;\n- const isKoOrZh = ['ko', 'zh'].indexOf(this.i18n.currentLang.toLowerCase(...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(search): fixed an issue with korean and chinese search filters
1
fix
search
217,922
17.03.2019 10:52:57
-3,600
9182ba8f3d3b484447effcd00fa316c83fe15f5e
fix(custom-items): fixed korean and chinese search for item picker
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,7 @@ import { HtmlToolsService } from '../../../core/tools/html-tools.service';\nimport { debounceTime, filter, map, startWith, switchMap, tap } from 'rxjs/operators';\nimport { SearchResult } from '../../../model/search/search-result';\nimport { CustomItemsFac...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(custom-items): fixed korean and chinese search for item picker
1
fix
custom-items
217,922
17.03.2019 13:09:06
-3,600
70d8676943417bfbad590f47f7b8f6f43b1ebdeb
fix(rotations): fixed an issue duplicating the rotation panel when using drag and drop
[ { "change_type": "MODIFY", "diff": "<nz-collapse-panel [nzHeader]=\"panelHeader\">\n<div class=\"ngx-dnd-container rotations-container\" ngxDroppable=\"rotation\" [removeOnSpill]=\"true\"\n(remove)=\"removeCraftingRotation($event.value)\"\n- (drop)=\"onCraftingRotationDrop($event.value, $event.dropIndex)\" ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(rotations): fixed an issue duplicating the rotation panel when using drag and drop
1
fix
rotations
67,476
17.03.2019 14:40:26
-3,600
29e67440fe973822408029d51b592b3bcf495aee
chore(test): get the node tests to run
[ { "change_type": "MODIFY", "diff": "\"build\": \"tsc -b\"\n},\n\"dependencies\": {\n+ \"@types/chai\": \"^4.1.7\",\n+ \"@types/jsdom\": \"^12.2.2\",\n+ \"@types/karma\": \"^3.0.2\",\n+ \"@types/mocha\": \"^5.2.6\",\n+ \"@types/node\": \"^10.12.27\",\n+ \"@types/sinon\": \"^7.0.6\",\n+ \"@types/sinon-chai\":...
TypeScript
MIT License
aurelia/aurelia
chore(test): get the node tests to run
1
chore
test
722,013
17.03.2019 14:56:26
18,000
7ed3cba1398da183d2a3d86419e210fe3a98dc22
ci(travis): force git version
[ { "change_type": "MODIFY", "diff": "@@ -29,9 +29,9 @@ script:\n- yarn test:jest --runInBand\nstages:\n- - lint\n- - test\n- - integration\n+ #- lint\n+ #- test\n+ #- integration\n- name: release\nif: type != pull_request AND branch = master\n- name: documentation\n@@ -88,7 +88,7 @@ jobs:\n- git reset --hard...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
ci(travis): force git version
1
ci
travis
722,013
17.03.2019 15:01:53
18,000
12a38215f345993dcff8924b6c2e18725907b59e
fix(assets): move logo back to root
[ { "change_type": "MODIFY", "diff": "<div align=\"center\" markdown=\"1\" style=\"text-align:center\">\n- <img src=\"packages/vue-styleguidist/assets/logo-withtext.png\" alt=\"Vue Styleguidist\" width=\"400\">\n+ <img src=\"assets/logo-withtext.png\" alt=\"Vue Styleguidist\" width=\"400\">\n**Isolated Vue co...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix(assets): move logo back to root
1
fix
assets
76,660
17.03.2019 15:06:52
-28,800
b13d4b228c87bf59fdd8b5d8e15265a7e79f40b7
docs(ner-manager): change default threshold to 0.8
[ { "change_type": "MODIFY", "diff": "The Named Entity Recognition manager is able to store an structure of entities and options of the entity for each language.\nThen, given an utterance and the language, is able to search the options of the entity inside the utterance, and return a list\n-of the bests subst...
JavaScript
MIT License
axa-group/nlp.js
docs(ner-manager): change default threshold to 0.8
1
docs
ner-manager
67,476
17.03.2019 15:08:19
-3,600
248995fa8c942e30163e733b373bf0f1d3b8603d
chore(test): try to run tests in circleci again
[ { "change_type": "MODIFY", "diff": "@@ -154,7 +154,11 @@ jobs:\nsteps:\n- checkout_install_bootstrap\n- run: npm run build\n- - run: npm run << parameters.npm_command >>\n+ - run:\n+ name: \"Run unit tests\"\n+ command: |\n+ cd packages/__tests__\n+ npm run << parameters.npm_command >>\n- when:\ncondition: ...
TypeScript
MIT License
aurelia/aurelia
chore(test): try to run tests in circleci again
1
chore
test
67,476
17.03.2019 15:19:10
-3,600
b66c2da182afece7ea0de177a7ac1770c64202ef
chore(testing): fix FakeViewFactory registration
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ import {\nLifecycleFlags as LF\n} from '@aurelia/runtime';\nimport { expect } from 'chai';\n-import { AuNode, AuDOMConfiguration } from './au-dom';\n+import { AuNode, AuDOMConfiguration, AuNodeSequence, AuDOM } from './au-dom';\nimport { FakeView, FakeVi...
TypeScript
MIT License
aurelia/aurelia
chore(testing): fix FakeViewFactory registration
1
chore
testing
217,922
17.03.2019 18:11:13
-3,600
1983dee56deb91aa1e319f6b38fa4d1bdb7a0c31
fix(custom-items): fixed an issue preventing addition of multiple custom items inside a list
[ { "change_type": "MODIFY", "diff": "@@ -530,7 +530,7 @@ export class List extends DataWithPermissions {\nprivate add(array: ListRow[], data: ListRow, recipe = false): number {\nlet previousAmount = 0;\nlet row = array.find(r => {\n- return (r.id === data.id && r.recipeId === data.recipeId) || (r.$key !== un...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(custom-items): fixed an issue preventing addition of multiple custom items inside a list
1
fix
custom-items
531,793
17.03.2019 20:17:20
-3,600
9f2492d30ee917735c5f53575d31ee69430affda
chore(backend): switch jarcoal/httpmock imports to use github This is to use v1.0.0 that was just released, gopkg.in doesn't work anymore
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ require (\ngithub.com/go-bindata/go-bindata v1.0.0\ngithub.com/golangci/golangci-lint v1.15.0\ngithub.com/hansrodtang/randomcolor v0.0.0-20160512071917-d27108b3d7a5\n+ github.com/jarcoal/httpmock v1.0.0\ngithub.com/mcuadros/go-gin-prometheus v0.0.0-20181...
TypeScript
Apache License 2.0
prymitive/karma
chore(backend): switch jarcoal/httpmock imports to use github This is to use v1.0.0 that was just released, gopkg.in doesn't work anymore
1
chore
backend
821,228
17.03.2019 22:25:30
-19,080
5a9d30021749c4eec26516e535cf1d7b058640c3
feat: Added Travis CI Support
[ { "change_type": "MODIFY", "diff": "@@ -48,6 +48,7 @@ class App extends Generator {\ntslint: boolean\neslint: boolean\nyarn: boolean\n+ travisci: boolean\n}\nargs!: {[k: string]: string}\ntype: 'single' | 'multi' | 'plugin' | 'base'\n@@ -72,6 +73,7 @@ class App extends Generator {\ncircleci: boolean\nappvey...
TypeScript
MIT License
oclif/oclif
feat: Added Travis CI Support (#214)
1
feat
null
67,476
17.03.2019 22:49:30
-3,600
177d8de1be907c1a6f2e9e17c7492037504c70c5
chore(test): get more tests running in browser/nodejs
[ { "change_type": "MODIFY", "diff": "@@ -316,16 +316,17 @@ workflows:\n# Triggered by push to master or topic branches\nbuild_test:\njobs:\n- # - unit_test:\n- # <<: *filter_ignore_develop_release\n- # name: unit_test_chrome\n- # e: docker-aurelia\n- # - unit_test:\n- # <<: *filter_ignore_develop_release\n- ...
TypeScript
MIT License
aurelia/aurelia
chore(test): get more tests running in browser/nodejs
1
chore
test
67,476
17.03.2019 22:54:09
-3,600
37c5524364742c5e7fee879ce0e7b0b1cfbebfff
feat(di): list typing constraint on registration
[ { "change_type": "MODIFY", "diff": "@@ -55,12 +55,12 @@ export interface IRegistry {\n}\nexport interface IContainer extends IServiceLocator {\n- register(...params: IRegistry[]): IContainer;\n- register(...params: Record<string, Partial<IRegistry>>[]): IContainer;\n- register(...params: (IRegistry | Record...
TypeScript
MIT License
aurelia/aurelia
feat(di): list typing constraint on registration
1
feat
di
67,476
17.03.2019 23:38:56
-3,600
6aa1be985693f3241e5118d9a9be034cfc1df2c2
chore(test): include router tests again
[ { "change_type": "RENAME", "diff": "", "new_path": "packages/__tests__/router/README.md", "old_path": "packages/__tests__/router/unit/README.md" }, { "change_type": "RENAME", "diff": "", "new_path": "packages/__tests__/router/history-browser.spec.ts", "old_path": "packages/__test...
TypeScript
MIT License
aurelia/aurelia
chore(test): include router tests again
1
chore
test
71,169
18.03.2019 01:25:34
25,200
06b59d9bbbfb9fcc3df7bc8cdcc71aaf7834aac0
fix(stepfunctions): Actually perform rendering of NotCondition Without this fix, the `Not` condition would render as (notice that `variable`, `comparisonOperator` and `value` are not capitalized): ``` { Not: VariableComparison { variable: '$.a', comparisonOperator: 0, value: 'b' } } ```
[ { "change_type": "MODIFY", "diff": "@@ -221,7 +221,7 @@ class NotCondition extends Condition {\npublic renderCondition(): any {\nreturn {\n- Not: this.comparisonOperation\n+ Not: this.comparisonOperation.renderCondition()\n};\n}\n}\n", "new_path": "packages/@aws-cdk/aws-stepfunctions/lib/condition.ts", ...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(stepfunctions): Actually perform rendering of NotCondition Without this fix, the `Not` condition would render as (notice that `variable`, `comparisonOperator` and `value` are not capitalized): ``` { Not: VariableComparison { variable: '$.a', comparisonOperator: 0, value: 'b' } } ```
1
fix
stepfunctions
67,476
18.03.2019 01:39:19
-3,600
b479fca25f63f6d8a502e0e2e29a2af129870180
chore(test): re-enable fetch client tests
[ { "change_type": "MODIFY", "diff": "import { PLATFORM } from '@aurelia/kernel';\nimport { expect } from 'chai';\n-import { match, SinonStub, stub } from 'sinon';\n-import { HTMLTestContext, TestContext } from '../../../runtime-html/test/util';\n-import { HttpClient } from '../../src/http-client';\n-import {...
TypeScript
MIT License
aurelia/aurelia
chore(test): re-enable fetch client tests
1
chore
test
67,476
18.03.2019 02:29:33
-3,600
b35a4168aacad368600efaa7b75b474f3cefdbdf
chore(all): fix some lint errors
[ { "change_type": "MODIFY", "diff": "@@ -88,7 +88,7 @@ export class EventAggregator {\nif (typeof channelOrInstance === 'string') {\nconst channel: string = channelOrInstance;\nsubscribers = this.eventLookup[channel];\n- if (subscribers) {\n+ if (subscribers != null) {\nsubscribers = subscribers.slice();\ni ...
TypeScript
MIT License
aurelia/aurelia
chore(all): fix some lint errors
1
chore
all
67,476
18.03.2019 02:48:55
-3,600
7b9fa7bb735f44ff87cb4ef159a6c2bcb4f309f2
chore(test): fix some runtime tests
[ { "change_type": "MODIFY", "diff": "},\n\"scripts\": {\n\"test-node\": \"mocha --opts mocha.opts dist/build/__tests__/setup-node.js dist/build/__tests__/**/*.spec.js\",\n+ \"test-node:kernel\": \"mocha --opts mocha.opts dist/build/__tests__/setup-node.js dist/build/__tests__/kernel/**/*.spec.js\",\n+ \"test...
TypeScript
MIT License
aurelia/aurelia
chore(test): fix some runtime tests
1
chore
test
679,913
18.03.2019 04:22:43
0
5bb09d9f449828fa75738863d99136f39640b3ca
refactor(associative): re-implement SortedMap / skiplist, update tests
[ { "change_type": "MODIFY", "diff": "import {\nComparator,\nFn3,\n- ICompare,\n- ICopy,\n- IEmpty,\n- IEquiv,\nIObjectOf,\nPair,\nPredicate2,\nSEMAPHORE\n} from \"@thi.ng/api\";\n-import { isArray } from \"@thi.ng/checks\";\nimport { compare } from \"@thi.ng/compare\";\nimport { equiv } from \"@thi.ng/equiv\...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(associative): re-implement SortedMap / skiplist, update tests
1
refactor
associative
273,694
18.03.2019 07:09:20
14,400
2259f85de11f0b0139d2c0cfac87c6be0217ae35
fix(store): support repeated segments in dynamic routes
[ { "change_type": "MODIFY", "diff": "@@ -287,22 +287,34 @@ class ContentTypeCollection extends EventEmitter {\n// Param values are slugified but the original\n// value will be available with '_raw' suffix.\nfor (let i = 0; i < length; i++) {\n- const { name, path } = routeKeys[i]\n- const value = get(node, p...
JavaScript
MIT License
gridsome/gridsome
fix(store): support repeated segments in dynamic routes (#279)
1
fix
store
791,690
18.03.2019 09:17:37
18,000
468d92ff7bfca51499787feb56ad9838db7631f8
core(image-aspect-ratio): ignore css background images
[ { "change_type": "MODIFY", "diff": "@@ -72,10 +72,13 @@ class ImageAspectRatio extends Audit {\n/** @type {Array<{url: string, displayedAspectRatio: string, actualAspectRatio: string, doRatiosMatch: boolean}>} */\nconst results = [];\nimages.filter(image => {\n+ // - filter out css background images since w...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(image-aspect-ratio): ignore css background images (#7516)
1
core
image-aspect-ratio
503,933
18.03.2019 10:08:14
14,400
a2c6645a54be475764128ed5b067813eed9171ac
fix(Dropdown): fix d.ts file to make props optional
[ { "change_type": "MODIFY", "diff": "@@ -4,11 +4,11 @@ import { DropdownPosition, DropdownDirection } from './dropdownConstants';\nexport interface DropdownProps extends HTMLProps<HTMLDivElement> {\nchildren?: ReactNode;\n- dropdownItems: ReactNode[];\n+ dropdownItems?: ReactNode[];\nisPlain?: boolean;\nisOp...
TypeScript
MIT License
patternfly/patternfly-react
fix(Dropdown): fix d.ts file to make props optional (#1593) #1584
1
fix
Dropdown
679,913
18.03.2019 10:16:17
0
dcfe16ea8c88375b1f65bcc5811329a0f911f491
docs(transducers): add blog links to readme
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,7 @@ This project is part of the\n<!-- TOC depthFrom:2 depthTo:3 -->\n- [About](#about)\n+ - [Tutorial](#tutorial)\n- [5.0.0 release](#500-release)\n- [Related packages](#related-packages)\n- [Installation](#installation)\n@@ -62,6 +63,15 @@ transducer functi...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(transducers): add blog links to readme
1
docs
transducers
127,946
18.03.2019 10:30:16
-7,200
d0263a71deac3cd6d86beb0e0ae6e067d5604457
fix(user-portal): font loading paths were fixed
[ { "change_type": "MODIFY", "diff": "/**\n* Currently configured as assets in the Gatsby static directory.\n*/\n-export const cdnUrl: string = '/assets';\n+export const cdnUrl: string = '/assets/src/';\n", "new_path": "design/assets/src/cdn.ts", "old_path": "design/assets/src/cdn.ts" }, { "ch...
TypeScript
MIT License
coingaming/moon-design
fix(user-portal): font loading paths were fixed
1
fix
user-portal
104,927
18.03.2019 10:43:15
0
729c42c05a38e89cb82bcf1799095a8e7d000ba4
chore: correct pagination story
[ { "change_type": "MODIFY", "diff": "@@ -184,7 +184,7 @@ $component-padding: 40px;\nbackground-color: $alt-back-color;\n}\n- .bx--form-item {\n+ > .bx--form .bx--form-item {\n// only for\nmargin-bottom: 2rem;\n}\n", "new_path": "src/_storybook/views/sv-template-view/sv-template-view.vue", "old_path":...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
chore: correct pagination story
1
chore
null
127,946
18.03.2019 11:08:19
-7,200
b79d63bce5fa65c9216c6a6c9dd8cace0460f464
fix(assets): assets paths fix
[ { "change_type": "MODIFY", "diff": "/**\n* Currently configured as assets in the Gatsby static directory.\n*/\n-export const cdnUrl: string = '/assets/src/';\n+export const cdnUrl: string = '/assets/src';\n", "new_path": "design/assets/src/cdn.ts", "old_path": "design/assets/src/cdn.ts" }, { ...
TypeScript
MIT License
coingaming/moon-design
fix(assets): assets paths fix
1
fix
assets
679,913
18.03.2019 11:33:11
0
88133446fdf8ea307b220db2e0ffc3368ef5ee0d
feat(hdom): support more input el types in updateValueAttrib()
[ { "change_type": "MODIFY", "diff": "@@ -275,10 +275,16 @@ export const updateValueAttrib = (el: HTMLInputElement, v: any) => {\ncase \"text\":\ncase \"textarea\":\ncase \"password\":\n+ case \"search\":\n+ case \"number\":\ncase \"email\":\ncase \"url\":\ncase \"tel\":\n- case \"search\":\n+ case \"date\":\...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hdom): support more input el types in updateValueAttrib()
1
feat
hdom
679,913
18.03.2019 11:38:37
0
3fb26dded8e4eaa34984a6003caa9d8c79f77af5
docs(hdom): fix add value attrib notes to readme
[ { "change_type": "MODIFY", "diff": "@@ -49,6 +49,7 @@ This project is part of the\n- [createTree()](#createtree)\n- [hydrateTree()](#hydratetree)\n- [User context](#user-context)\n+ - [`value` attribute handling](#value-attribute-handling)\n- [Behavior control attributes](#behavior-control-attributes)\n- [B...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(hdom): fix #76, add value attrib notes to readme
1
docs
hdom
679,913
18.03.2019 11:39:53
0
dbcb9e6bb99e3f47dc6af7a06506909090adfcc4
build: add .prettierignore, minor update deps (format only)
[ { "change_type": "ADD", "diff": "+*.md\n\\ No newline at end of file\n", "new_path": ".prettierignore", "old_path": null }, { "change_type": "MODIFY", "diff": "],\n\"devDependencies\": {\n\"benchmark\": \"^2.1.4\",\n+ \"file-loader\": \"^3.0.1\",\n\"gzip-size\": \"^5.0.0\",\n\"lerna\": \...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: add .prettierignore, minor update deps (format only)
1
build
null
679,913
18.03.2019 11:45:57
0
78e0c396e31191cc333d87a0a4bac3cbc56bca1c
docs: add/update authors files
[ { "change_type": "MODIFY", "diff": "## Contributors\n- Gavin Cannizzaro (@gavinpc-mindgrub)\n-- Jay Zawrotny (@andrew8er)\n+- Jay Zawrotny (@eccentric-j)\n", "new_path": "packages/checks/AUTHORS.md", "old_path": "packages/checks/AUTHORS.md" }, { "change_type": "ADD", "diff": "+## Maintai...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: add/update authors files
1
docs
null
573,190
18.03.2019 12:31:29
25,200
7460064fc13e5b977a295a2c939e050129c47797
fix(cpuUsageThrottle): support breaking change in pidusage module
[ { "change_type": "MODIFY", "diff": "@@ -130,14 +130,14 @@ function cpuUsageThrottlePlugin(opts) {\n// plugin._timeoutDelta represents the amount of time between when we\n// _should_ have run updateReject and the actual time it was invoked.\n// This allows us to monitor lag caused by both the event loop\n- /...
JavaScript
MIT License
restify/node-restify
fix(cpuUsageThrottle): support breaking change in pidusage module
1
fix
cpuUsageThrottle
104,818
18.03.2019 12:34:53
18,000
4447863a119e58ef8fb0b2a73f19f70b8f7c5fcd
fix(navbar): add styles to match the mockup
[ { "change_type": "MODIFY", "diff": "@@ -3,14 +3,29 @@ import PropTypes from 'prop-types';\nimport styled from 'styled-components';\nimport { Tabs, Tab, Button } from 'carbon-components-react';\n+import { COLORS, PADDING, SIZES } from '../../styles/styles';\n+\nconst StyledNavigationContainer = styled.div`\n...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(navbar): add styles to match the mockup
1
fix
navbar
603,467
18.03.2019 12:37:08
0
5dfe0e540c7d0fb75043c7f8faf1f172b4466868
fix(local-server): More readable API for the ManageALocalServer ability
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,7 @@ describe('@serenity-js/local-server', () => {\nstageManager = createStubInstance(StageManager);\nconst nadia = new Actor('Nadia', stageManager as any, frozenClock).whoCan(\n- ManageALocalServer.using(function(request, response) {\n+ ManageALocalServer.ru...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(local-server): More readable API for the ManageALocalServer ability
1
fix
local-server
273,679
18.03.2019 12:56:25
-10,800
1828215e6278d6d8645ba8bcc551b11ac1de998b
chore(drupal): fix typo in the installation command
[ { "change_type": "MODIFY", "diff": "This is the source plugin for pulling in data from the Drupal content management system for Gridsome. The Drupal module [JSON:API](https://www.drupal.org/project/jsonapi) is required for this plugin to work correctly.\n### Install\n-* `yard add @gridsome/source-drupal`\n+...
JavaScript
MIT License
gridsome/gridsome
chore(drupal): fix typo in the installation command (#283)
1
chore
drupal
815,573
18.03.2019 13:14:24
-28,800
79e4277c5103cce40cc00dcbea05a309c6ccabea
feat: Add discovery service
[ { "change_type": "MODIFY", "diff": "@@ -483,10 +483,10 @@ dependencies = [\n\"serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)\",\n...
Rust
MIT License
nervosnetwork/ckb
feat: Add discovery service
1
feat
null
722,013
18.03.2019 13:15:10
18,000
82e011014bf4a4741c54616af1090db52b9fcd1e
docs(tocs): update all table of contents sections
[ { "change_type": "MODIFY", "diff": "<!-- toc -->\n- [Finding components](#finding-components)\n+- [Loading and exposing components](#loading-and-exposing-components)\n- [Sections](#sections)\n-- [Limitations](#limitations)\n<!-- tocstop -->\n", "new_path": "docs/Components.md", "old_path": "docs/Com...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs(tocs): update all table of contents sections
1
docs
tocs
127,946
18.03.2019 13:18:52
-7,200
a16a48b7be55199f2a08bccdd32bfd0c73ba4ab1
fix(docs): fix fonts paths fpr docs
[ { "change_type": "MODIFY", "diff": "{\n- \"private\": \"true\",\n+ \"private\": true,\n\"name\": \"docs\",\n\"version\": \"0.16.1\",\n\"repository\": \"https://github.com/coingaming/sportsbet-design\",\n\"build\": \"yarn prebuild && gatsby build\",\n\"serve\": \"gatsby serve\",\n\"clean:assets\": \"rimraf s...
TypeScript
MIT License
coingaming/moon-design
fix(docs): fix fonts paths fpr docs
1
fix
docs
573,190
18.03.2019 13:42:54
25,200
8178098d3e85ad9bd13c536b504adf940ef08563
feat(first): Handlers that execute ASAP in the req/res lifecycle
[ { "change_type": "MODIFY", "diff": "@@ -117,6 +117,7 @@ function Server(options) {\nthis.onceNext = !!options.onceNext;\nthis.strictNext = !!options.strictNext;\n+ this.firstChain = [];\nthis.preChain = new Chain({\nonceNext: this.onceNext,\nstrictNext: this.strictNext\n@@ -489,6 +490,73 @@ Server.prototype...
JavaScript
MIT License
restify/node-restify
feat(first): Handlers that execute ASAP in the req/res lifecycle (#1756)
1
feat
first