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,494
19.11.2018 10:56:02
-3,600
343a33e2adefd0a0d5539de4a761d87d6c319fb9
refactor(router): cancel aborts earlier in router, test app update
[ { "change_type": "MODIFY", "diff": "@@ -49,6 +49,10 @@ export class Router {\nthis.options.reportCallback(entry, flags);\n}\n+ if (flags.isCancel) {\n+ return;\n+ }\n+\nconst route: IRoute = this.findRoute(entry);\nif (!route) {\nreturn;\n@@ -69,14 +73,14 @@ export class Router {\nlet cancel: boolean = fals...
TypeScript
MIT License
aurelia/aurelia
refactor(router): cancel aborts earlier in router, test app update
1
refactor
router
730,429
19.11.2018 11:32:56
18,000
3e46fbd9e6d3bf7a3a01c3962dfc560c5dec89c9
feat(widget-demo): add external control options
[ { "change_type": "ADD", "diff": "+import React, {Component} from 'react';\n+import PropTypes from 'prop-types';\n+\n+import {Radio, RadioGroup} from '@collab-ui/react';\n+\n+class ExternalControl extends Component {\n+ constructor(props) {\n+ super(props);\n+\n+ this.state = {\n+ activity: props.activity\n+...
JavaScript
MIT License
webex/react-widgets
feat(widget-demo): add external control options
1
feat
widget-demo
217,922
19.11.2018 11:39:59
-3,600
cb11388bde24fb2e3aae2653827c00da49e9aa6f
feat: contacts system in the profile editor page
[ { "change_type": "MODIFY", "diff": "@@ -9,6 +9,7 @@ export enum AuthActionTypes {\nAuthenticated = '[Auth] Authenticated',\nUserFetched = '[Auth] User fetched',\n+ UpdateUser = '[Auth] Update User',\nLoginAsAnonymous = '[Auth] Login as Anonymous',\nLoggedInAsAnonymous = '[Auth] Logged in as Anonymous',\n@@ ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: contacts system in the profile editor page #571
1
feat
null
730,429
19.11.2018 11:54:15
18,000
619511e015e89fd0a81d642eaf4f08a98bc6880e
test(journeys): add external control tests
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,9 @@ export const elements = {\ntoSpaceInput: 'input[aria-label=\"To Space ID\"]',\ntoPersonInput: 'input[aria-label=\"To User Email\"]',\nspaceWidgetContainer: '#my-ciscospark-space-widget',\n- recentsWidgetContainer: '#my-ciscospark-recents-widget'\n+ recen...
JavaScript
MIT License
webex/react-widgets
test(journeys): add external control tests
1
test
journeys
791,834
19.11.2018 12:18:01
28,800
b229a8fe574c1ecc8ce7820597b1c0e748ace8f1
report: use details-element-polyfill from node_modules
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ const REPORT_JAVASCRIPT = [\nfs.readFileSync(__dirname + '/renderer/dom.js', 'utf8'),\n// COMPAT: Remove when Microsoft Edge supports <details>/<summary>\n// https://developer.microsoft.com/en-us/microsoft-edge/platform/status/detailssummary/?q=details\n...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: use details-element-polyfill from node_modules (#6593)
1
report
null
791,723
19.11.2018 12:53:49
28,800
187c3a20f64d133ceb7f3a151aa1e16d1c1715e8
cli: exit and kill Chrome on unhandledRejection
[ { "change_type": "MODIFY", "diff": "@@ -157,6 +157,18 @@ function runLighthouse(url, flags, config) {\nconst shouldGather = flags.gatherMode || flags.gatherMode === flags.auditMode;\nlet chromeP = Promise.resolve();\n+ process.on('unhandledRejection', async (reason) => {\n+ process.stderr.write(`Unhandled R...
JavaScript
Apache License 2.0
googlechrome/lighthouse
cli: exit and kill Chrome on unhandledRejection (#6394)
1
cli
null
791,834
19.11.2018 12:55:43
28,800
33ba60cc2baa8704cb9dab92dab88407c25fdcb7
report: give passed-opportunities group an icon
[ { "change_type": "MODIFY", "diff": "@@ -188,7 +188,7 @@ class PerformanceCategoryRenderer extends CategoryRenderer {\ngroupEl.appendChild(headerEl);\nopportunityAudits.forEach((item, i) =>\ngroupEl.appendChild(this._renderOpportunity(item, i, scale)));\n- groupEl.classList.add('lh-audit-group--opportunities...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: give passed-opportunities group an icon (#6594)
1
report
null
67,494
19.11.2018 14:05:30
-3,600
4023de4aa25a3cc4399404d9d08b2ef8b09a8845
feat(router): add navigation methods to router
[ { "change_type": "MODIFY", "diff": "@@ -114,4 +114,24 @@ export class Router {\npublic addRoute(route: IRoute): void {\nthis.routes.push(route);\n}\n+\n+ public goto(path: string, title?: string, data?: Object): void {\n+ this.historyBrowser.goto(path, title, data);\n+ }\n+\n+ public replace(path: string, t...
TypeScript
MIT License
aurelia/aurelia
feat(router): add navigation methods to router
1
feat
router
791,834
19.11.2018 14:51:07
28,800
c78e7bfbf9b0a36f31bab390d35518cd7fb562db
report: import <detail> polyfill as string, not Buffer
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ const REPORT_JAVASCRIPT = [\nfs.readFileSync(__dirname + '/renderer/dom.js', 'utf8'),\n// COMPAT: Remove when Microsoft Edge supports <details>/<summary>\n// https://developer.microsoft.com/en-us/microsoft-edge/platform/status/detailssummary/?q=details\n...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report: import <detail> polyfill as string, not Buffer (#6607)
1
report
null
67,494
19.11.2018 15:17:26
-3,600
f26a0a57817f0b7661bb382fe90d11c4371512bd
feat(router): add INavigationInstruction and refresh
[ { "change_type": "MODIFY", "diff": "@@ -15,15 +15,18 @@ export interface INavigationFlags {\nisCancel?: boolean;\n}\n+export interface INavigationInstruction extends IHistoryEntry, INavigationFlags {}\n+\nexport class HistoryBrowser {\npublic currentEntry: IHistoryEntry;\npublic historyEntries: IHistoryEntr...
TypeScript
MIT License
aurelia/aurelia
feat(router): add INavigationInstruction and refresh
1
feat
router
67,507
19.11.2018 15:17:33
-3,600
87501c1dea575f6fd62f5f72fd7aabd7ef874931
refactor: partially revert renames due to no-reserved-keywords
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ const enum MessageType {\ninterface IMessageInfo {\nmessage: string;\n- messageType: MessageType;\n+ type: MessageType;\n}\nexport const Reporter: typeof RuntimeReporter = {...RuntimeReporter,\n@@ -17,7 +17,7 @@ export const Reporter: typeof RuntimeReporte...
TypeScript
MIT License
aurelia/aurelia
refactor: partially revert renames due to no-reserved-keywords
1
refactor
null
749,547
19.11.2018 15:20:39
-39,600
fc1d875e89ce30b2cd374aa2403b1609145eec54
chore(deps): remove some unused devDeps
[ { "change_type": "MODIFY", "diff": "\"html-webpack-plugin\": \"3.2.0\",\n\"husky\": \"1.1.2\",\n\"identity-obj-proxy\": \"3.0.0\",\n- \"inline-svg-react\": \"0.1.8\",\n\"inquirer\": \"6.2.0\",\n\"jest\": \"23.6.0\",\n\"jest-enzyme\": \"7.0.0\",\n\"react\": \"16.6.0\",\n\"react-dom\": \"16.6.0\",\n\"react-st...
TypeScript
Apache License 2.0
zendeskgarden/react-components
chore(deps): remove some unused devDeps (#206)
1
chore
deps
67,494
19.11.2018 15:28:00
-3,600
88d8860faf41005ff7e3f3c7f2ccf8255b4784e9
chore(router): clean up
[ { "change_type": "MODIFY", "diff": "@@ -229,8 +229,8 @@ export class HistoryBrowser {\n}\nthis.pathChanged();\n}\n- private callback(currentEntry: Object, navigationFlags: INavigationFlags) {\n- const instruction: INavigationInstruction = Object.assign({}, currentEntry, navigationFlags);\n+ private callback...
TypeScript
MIT License
aurelia/aurelia
chore(router): clean up
1
chore
router
743,863
19.11.2018 15:37:49
28,800
dc8d63f7fa933497be0405afbce8eb4d1c21c1ec
chore: explicit update to yargs-parser
[ { "change_type": "MODIFY", "diff": "\"string-width\": \"^2.0.0\",\n\"which-module\": \"^2.0.0\",\n\"y18n\": \"^3.2.1 || ^4.0.0\",\n- \"yargs-parser\": \"^11.1.0\"\n+ \"yargs-parser\": \"^11.1.1\"\n},\n\"devDependencies\": {\n\"chai\": \"^4.1.2\",\n", "new_path": "package.json", "old_path": "package....
JavaScript
MIT License
yargs/yargs
chore: explicit update to yargs-parser
1
chore
null
743,863
19.11.2018 15:38:13
28,800
8789bf4f56940248316c58997b107b029dbdb297
chore(release): 12.0.5
[ { "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=\"12.0.5\"></a>\n+## [12.0.5](https://github.com/yargs/yargs/compare/v12.0.4...v12.0.5)...
JavaScript
MIT License
yargs/yargs
chore(release): 12.0.5
1
chore
release
503,950
19.11.2018 15:55:06
-7,200
3307e9b575e0c3545d8c7293c70787b6ef1f9e3c
fix(LoginPage): Fix background-image style
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ const createProps = () => {\nconst { header, card } = englishMessages;\nreturn {\ncontainer: {\n+ backgroundUrl: '/some-background',\ntranslations: { en: englishMessages, fr: frenchMessages },\nalert: {\nmessage: header.alert,\n", "new_path": "packag...
TypeScript
MIT License
patternfly/patternfly-react
fix(LoginPage): Fix background-image style (#937)
1
fix
LoginPage
730,412
19.11.2018 15:58:32
0
60a42bb5199cd5bb097287d4a7c38073fa2c3e85
chore(release): 0.1.383
[ { "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.383\"></a>\n+## [0.1.383](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.383
1
chore
release
503,950
19.11.2018 16:15:39
-7,200
60c10675df6981d7c2380499020c7a9fb202c479
fix(LoginPage): Improve inputs validation.
[ { "change_type": "MODIFY", "diff": "@@ -142,7 +142,17 @@ class LoginCardWithValidation extends React.Component {\n!this.isPasswordShort() &&\nthis.isUserNameValid();\n- isPasswordShort = () => this.state.passwordField.value.length < this.props.passwordField.minLength;\n+ isPasswordShort = () => {\n+ const {...
TypeScript
MIT License
patternfly/patternfly-react
fix(LoginPage): Improve inputs validation. (#936)
1
fix
LoginPage
679,913
19.11.2018 16:57:47
28,800
143c47cd78b5e2cbfae053115263a302e679d6ee
fix(math): fix add range check for norm()
[ { "change_type": "MODIFY", "diff": "import { clamp01, clamp11 } from \"./interval\";\n+/**\n+ * Returns normalized value of `x` WRT to interval `a .. b`. If `a`\n+ * equals `b`, returns 0.\n+ *\n+ * @param x\n+ * @param a\n+ * @param b\n+ */\nexport const norm = (x: number, a: number, b: number) =>\n- (x - ...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(math): fix #60, add range check for norm()
1
fix
math
217,922
19.11.2018 17:54:20
-3,600
59e9ed1e7e6ceb059641a03d42c6de91e63487da
chore: WIP: comments system, not ready yet
[ { "change_type": "MODIFY", "diff": "@@ -13,56 +13,8 @@ export class NotificationService extends FirestoreRelationalStorage<AbstractNoti\nconstructor(protected firestore: AngularFirestore, protected serializer: NgSerializerService, protected zone: NgZone,\nprotected pendingChangesService: PendingChangesServi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: WIP: comments system, not ready yet
1
chore
null
217,922
19.11.2018 18:29:34
-3,600
41710bf3043d0594d4e2ddab74f615f8f60d8b31
feat: KO support in macro translator
[ { "change_type": "MODIFY", "diff": "-export type Language = 'fr' | 'en' | 'de' | 'ja';\n+export type Language = 'fr' | 'en' | 'de' | 'ja' | 'ko';\n", "new_path": "apps/client/src/app/core/data/language.ts", "old_path": "apps/client/src/app/core/data/language.ts" }, { "change_type": "MODIFY",...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: KO support in macro translator
1
feat
null
730,412
19.11.2018 18:35:35
0
f3bfb0d27b2cc9a5e2098a8791e5b125e7ff1fd2
chore(release): 0.1.384
[ { "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.384\"></a>\n+## [0.1.384](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.384
1
chore
release
217,922
19.11.2018 18:38:03
-3,600
dd69a7cd5270e00ad309b2aace6fc743144ccf5a
fix(macro-translator): force quotes for korean translations
[ { "change_type": "MODIFY", "diff": "@@ -52,7 +52,11 @@ export class MacroTranslatorComponent {\n// Push translated line to each language\nObject.keys(macroTranslated).forEach(key => {\n+ if (key === 'ko' && line.indexOf('\"') === -1) {\n+ macroTranslated[key].push(line.replace(skillName, `\"${translatedSkil...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(macro-translator): force quotes for korean translations
1
fix
macro-translator
67,494
19.11.2018 19:08:30
-3,600
92d9ccf4cb4dd0fb763abc6505655bfd9832ce4f
feat(router): add redirect on route, fix cancel replace issue
[ { "change_type": "MODIFY", "diff": "@@ -21,6 +21,7 @@ export class HistoryBrowser {\npublic currentEntry: IHistoryEntry;\npublic historyEntries: IHistoryEntry[];\npublic historyOffset: number;\n+ public replacedEntry: IHistoryEntry;\npublic history: any;\n@@ -32,6 +33,7 @@ export class HistoryBrowser {\npri...
TypeScript
MIT License
aurelia/aurelia
feat(router): add redirect on route, fix cancel replace issue
1
feat
router
217,922
19.11.2018 19:58:19
-3,600
0dd39af9c861f6e1ebddb68e98029b251a3ee6d6
chore: small tweaks to the comments popup
[ { "change_type": "MODIFY", "diff": "<div *ngIf=\"comments$ | async as comments\">\n- <nz-list [nzDataSource]=\"comments\" [nzRenderItem]=\"commentTemplate\">\n+ <nz-list [nzDataSource]=\"comments\" [nzRenderItem]=\"commentTemplate\" nzSize=\"small\">\n<ng-template #commentTemplate let-comment>\n<nz-list-ite...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small tweaks to the comments popup
1
chore
null
67,476
19.11.2018 23:14:28
-3,600
c3f82ffcb4308123f80a9126db88ee56c368dfd8
perf(all): shorten au-marker to au-
[ { "change_type": "MODIFY", "diff": "@@ -22,8 +22,8 @@ export const appConfig: ITemplateDefinition = {\ncache: \"*\",\ntemplate: `\n<tr>\n- <td class=\"dbname\"><au-marker class=\"au\"></au-marker> </td>\n- <td class=\"query-count\"><au-marker class=\"au\"></au-marker> </td>\n+ <td class=\"dbname\"><au- clas...
TypeScript
MIT License
aurelia/aurelia
perf(all): shorten au-marker to au-
1
perf
all
67,507
19.11.2018 23:36:19
-3,600
fc4018bd0ef669b30dac131acd3580f6d571d37a
refactor: fix no-floating-promises linting warnings
[ { "change_type": "MODIFY", "diff": "@@ -131,7 +131,7 @@ export class CustomSetterObserver implements CustomSetterObserver {\nif (oldValue !== newValue) {\nthat.oldValue = oldValue;\n- that.lifecycle.enqueueFlush(that);\n+ that.lifecycle.enqueueFlush(that).catch(error => { throw error; });\nthat.currentValue...
TypeScript
MIT License
aurelia/aurelia
refactor: fix no-floating-promises linting warnings
1
refactor
null
67,476
20.11.2018 02:29:42
-3,600
07f3790dec604da101c2fefc483072692d00fc9e
chore(all): rename au- to au-m
[ { "change_type": "MODIFY", "diff": "@@ -22,8 +22,8 @@ export const appConfig: ITemplateDefinition = {\ncache: \"*\",\ntemplate: `\n<tr>\n- <td class=\"dbname\"><au- class=\"au\"></au-> </td>\n- <td class=\"query-count\"><au- class=\"au\"></au-> </td>\n+ <td class=\"dbname\"><au-m class=\"au\"></au-m> </td>\...
TypeScript
MIT License
aurelia/aurelia
chore(all): rename au- to au-m
1
chore
all
217,927
20.11.2018 06:32:55
18,000
4f6183e73d6b2778e7cd52384f8a16586fa48307
fix: notification markdown Fixes the notification markdown which was rendering incorrectly on mobile devices. The ** must be outside of the links in order for them to render properly on mobile.
[ { "change_type": "MODIFY", "diff": "\"No_anonymous_join\": \"You have to create an account to be able to join a team\",\n\"Already_in_team\": \"You are already in this team\",\n\"NOTIFICATIONS\":{\n- \"Item_added\": \"{{amount}}x [**{{itemName}}**](http://garlandtools.org/db/#item/{{itemId}}) has been added...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: notification markdown Fixes the notification markdown which was rendering incorrectly on mobile devices. The ** must be outside of the links in order for them to render properly on mobile.
1
fix
null
217,922
20.11.2018 09:11:05
-3,600
4ca9f697ad2c4a7e29518febadb58ba76113471b
fix: fixes to the webhook system
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ import {\nUpdateList,\nUpdateListIndex\n} from './lists.actions';\n-import { catchError, debounceTime, distinctUntilChanged, filter, first, map, switchMap, withLatestFrom, tap } from 'rxjs/operators';\n+import { catchError, debounceTime, distinctUntilCha...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixes to the webhook system
1
fix
null
217,922
20.11.2018 09:20:55
-3,600
f09531b17fb9498786475a89efc6f3cf4fcc948c
chore: small fix following 5.0.0 merge
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,6 @@ import { TeamsFacade } from '../../../modules/teams/+state/teams.facade';\nimport { DiscordWebhookService } from '../../../core/discord/discord-webhook.service';\nimport { CommentsPopupComponent } from '../../../modules/comments/comments-popup/comments-p...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix following 5.0.0 merge
1
chore
null
217,922
20.11.2018 10:13:06
-3,600
7aa637dea0cbf41f54646c9acc954beb7ceb7364
feat: notifications badge is now a counter
[ { "change_type": "MODIFY", "diff": "</li>\n<li class=\"ant-menu-item\" nz-popover nzPlacement=\"bottomRight\" [nzContent]=\"notificationsTemplate\"\n*ngIf=\"notifications$ | async as notifications\">\n- <nz-badge [nzDot]=\"notifications.length > 0\">\n+ <nz-badge [nzCount]=\"notifications.length\" class=\"n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: notifications badge is now a counter
1
feat
null
504,026
20.11.2018 10:30:42
18,000
8341297d9c1d74eeef978930f30c29a824752bcd
fix(dropdown): address typescript issue with toggle prop Fixes
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ export interface DropdownProps extends HTMLProps<HTMLDivElement> {\nonSelect(event: React.SyntheticEvent<HTMLDivElement>): void;\nposition?: OneOf<typeof DropdownPosition, keyof typeof DropdownPosition>;\ndirection?: OneOf<typeof DropdownDirection, keyof...
TypeScript
MIT License
patternfly/patternfly-react
fix(dropdown): address typescript issue with toggle prop (#935) Fixes https://github.com/patternfly/patternfly-react/issues/933
1
fix
dropdown
791,704
20.11.2018 11:27:19
28,800
e45020b8d62a713f913b43659e4f6438749e43ba
core: remove protocol timeout for Page.navigate
[ { "change_type": "MODIFY", "diff": "@@ -259,6 +259,7 @@ class Driver {\n}\n/**\n+ * timeout is used for the next call to 'sendCommand'.\n* NOTE: This can eventually be replaced when TypeScript\n* resolves https://github.com/Microsoft/TypeScript/issues/5453.\n* @param {number} timeout\n@@ -268,7 +269,7 @@ cl...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: remove protocol timeout for Page.navigate (#6413)
1
core
null
67,494
20.11.2018 11:33:15
-3,600
472635a73d3698325fbd79404252033a53a142d4
chore(router): change setTimeout to Promise.resolve
[ { "change_type": "MODIFY", "diff": "@@ -59,10 +59,9 @@ export class HistoryBrowser {\n// console.log(\"location: \" + document.location + \", state: \" + JSON.stringify(event.state));\n// };\n- setTimeout(() => {\n+ Promise.resolve().then(() => {\nthis.setPath(this.getPath(), true);\n- }, 0);\n- // this.pat...
TypeScript
MIT License
aurelia/aurelia
chore(router): change setTimeout to Promise.resolve
1
chore
router
217,922
20.11.2018 13:24:38
-3,600
6a0c9a1c0ead0928109df60200aeffddf37d7326
feat: character verification in profile editor
[ { "change_type": "MODIFY", "diff": "@@ -26,6 +26,7 @@ export enum AuthActionTypes {\nNoLinkedCharacter = '[Auth] No linked character',\nLinkingCharacter = '[Auth] Linking character',\nAddCharacter = '[Auth] Add character',\n+ VerifyCharacter = '[Auth] Verify character',\nRemoveCharacter = '[Auth] Remove cha...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: character verification in profile editor
1
feat
null
217,922
20.11.2018 14:16:08
-3,600
f982a58b234bbfd9ac0e3b72231bb0da594c4676
feat: support for verification inside permissions system
[ { "change_type": "MODIFY", "diff": "@@ -93,14 +93,20 @@ export class ListsEffects {\nswitchMap(loggedIn => {\nreturn combineLatest(\nof(action.key),\n- this.authFacade.userId$,\n+ this.authFacade.user$,\nloggedIn ? this.authFacade.mainCharacter$.pipe(map(c => c.FreeCompanyId)) : of(null),\nthis.listService....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: support for verification inside permissions system
1
feat
null
503,951
20.11.2018 14:22:34
18,000
2b5bb71cca1bcd53611b047684037ccac9f431ca
fix(less): convert less variables from scss
[ { "change_type": "MODIFY", "diff": "padding-left: 10px;\n&.focus {\n- border: 1px solid $input-border-focus;\n+ border: 1px solid @input-border-focus;\n}\n}\ncursor: pointer;\n&:hover {\n- background-color: $dropdown-link-hover-bg;\n- border-color: $dropdown-link-hover-border-color;\n+ background-color: @dr...
TypeScript
MIT License
patternfly/patternfly-react
fix(less): convert less variables from scss (#948)
1
fix
less
76,605
20.11.2018 15:28:29
-3,600
3d60ab84359b664195fc3d6ba196026e3b32f0ed
fix: add normalization
[ { "change_type": "MODIFY", "diff": "@@ -60,7 +60,7 @@ const PorterStemmerNl = require('./stemmers/natural/porter-stemmer-nl');\nconst StemmerJa = require('./stemmers/natural/stemmer-ja');\nconst StemmerId = require('./stemmers/natural/indonesian/stemmer_id');\nconst {\n- AggressiveTokenizer,\n+ AggressiveTo...
JavaScript
MIT License
axa-group/nlp.js
fix: add normalization
1
fix
null
791,834
20.11.2018 16:02:36
28,800
d964d6673aa76494726b0c7160ddd3d949d46103
core(computed-artifacts): fix cache and add perf timing
[ { "change_type": "MODIFY", "diff": "'use strict';\nconst ArbitraryEqualityMap = require('../lib/arbitrary-equality-map.js');\n+const log = require('lighthouse-logger');\n/**\n* Decorate computableArtifact with a caching `request()` method which will\n@@ -25,18 +26,25 @@ function makeComputedArtifact(computa...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(computed-artifacts): fix cache and add perf timing (#6619)
1
core
computed-artifacts
67,507
20.11.2018 16:08:58
-3,600
8a66cee955c1340414063da44f9bd209633380d5
chore: add sonarts tslint ruleset
[ { "change_type": "MODIFY", "diff": "\"minimatch\": \"^3.0.4\"\n}\n},\n+ \"immutable\": {\n+ \"version\": \"3.8.2\",\n+ \"resolved\": \"https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz\",\n+ \"integrity\": \"sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=\",\n+ \"dev\": true\n+ },\n\"import-fresh\": {\n\"version...
TypeScript
MIT License
aurelia/aurelia
chore: add sonarts tslint ruleset
1
chore
null
791,834
20.11.2018 16:16:25
28,800
7715eda3c5debe85f1cb903606bea4a516d839db
core(service-worker): check that test page is in SW scope
[ { "change_type": "MODIFY", "diff": "*/\n'use strict';\n-const URL = require('../lib/url-shim');\n-const Audit = require('./audit');\n+const URL = require('../lib/url-shim.js');\n+const Audit = require('./audit.js');\nclass ServiceWorker extends Audit {\n/**\n@@ -29,17 +29,30 @@ class ServiceWorker extends A...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(service-worker): check that test page is in SW scope (#6609)
1
core
service-worker
815,601
20.11.2018 16:37:44
-28,800
6fcc0ff99d391e22755859bd31bfb533e44e8344
fix: temporarily give up timeout
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,7 @@ use timer_service::TimerService;\nuse tokio::io::{AsyncRead, AsyncWrite};\nuse transport::{new_transport, TransportOutput};\n-const WAIT_LOCK_TIMEOUT: u64 = 3;\n+// const WAIT_LOCK_TIMEOUT: u64 = 3;\nconst KBUCKETS_TIMEOUT: u64 = 600;\nconst DIAL_BOOTNOD...
Rust
MIT License
nervosnetwork/ckb
fix: temporarily give up timeout
1
fix
null
730,412
20.11.2018 18:38:10
0
87d0b3443ff7feba31e7d45b9b20da1571ce5354
chore(release): 0.1.385
[ { "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.385\"></a>\n+## [0.1.385](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.385
1
chore
release
67,476
20.11.2018 19:11:27
-3,600
fa2ba9c5709f32a19e8a3888f14b758f78332c76
fix(aurelia): add attach/detach flags to start/stop task
[ { "change_type": "MODIFY", "diff": "@@ -56,13 +56,13 @@ export class Aurelia {\n}\ncomponent.$bind(LifecycleFlags.fromStartTask | LifecycleFlags.fromBind);\n- component.$attach(LifecycleFlags.fromStartTask, host);\n+ component.$attach(LifecycleFlags.fromStartTask | LifecycleFlags.fromAttach, host);\n};\nthi...
TypeScript
MIT License
aurelia/aurelia
fix(aurelia): add attach/detach flags to start/stop task
1
fix
aurelia
67,476
20.11.2018 19:12:31
-3,600
551106223b555fd3bcd8beced497dacb3b2c9af8
chore(test): implement reusable test-builder for runtime integration tests
[ { "change_type": "ADD", "diff": "+import { TestBuilder } from './test-builder';\n+\n+describe.only('runtime', () => {\n+ it('1', () => {\n+\n+ const c = TestBuilder.app({\n+ items: ['a', 'b', 'c']\n+ },\n+ def => def.repeat(\n+ def => def.interpolation('item'),\n+ ins => ins.iterator('item', 'items')\n+ )\n...
TypeScript
MIT License
aurelia/aurelia
chore(test): implement reusable test-builder for runtime integration tests
1
chore
test
217,922
20.11.2018 19:36:17
-3,600
33322003211dd0a671cde4e3a55e0007d1758666
chore: fixes for the verification system
[ { "change_type": "MODIFY", "diff": "{{'COMMON.Anonymous' | translate}}\n</span>\n<ng-template #userLoggedIn>\n- <app-user-avatar [userId]=\"userId$ | async\" [width]=\"32\" [flex]=\"false\"></app-user-avatar>\n+ <app-user-avatar [userId]=\"userId$ | async\" [width]=\"32\" [flex]=\"false\"\n+ [ignoreVerifica...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fixes for the verification system
1
chore
null
503,950
20.11.2018 20:58:53
-7,200
769b67bd27fa4836a43aedae1bc974ff7a9e3ef5
fix(LoginPage): improve the submit UX
[ { "change_type": "MODIFY", "diff": "@@ -2,8 +2,9 @@ import React from 'react';\nimport PropTypes from 'prop-types';\nimport LoginCardInput from './LoginCardInput';\nimport LoginCardSettings from './LoginCardSettings';\n+import LoginCardSubmitButton from './LoginCardSubmitButton';\nimport LoginFormError from...
TypeScript
MIT License
patternfly/patternfly-react
fix(LoginPage): improve the submit UX (#944)
1
fix
LoginPage
76,605
20.11.2018 21:50:45
-3,600
6b7acb6feacbeb99f2bbdaac9b89398485fc727c
feat: Add utterance replacement with named entities
[ { "change_type": "MODIFY", "diff": "@@ -496,6 +496,28 @@ class NerManager {\nreturn this.similar.reduceEdges(this.splitEdges(edges), false);\n}\n+ findNamedEntities(utterance, language, whitelist) {\n+ const entityNames = whitelist || Object.keys(this.namedEntities);\n+ const wordPositions = this.similar.ge...
JavaScript
MIT License
axa-group/nlp.js
feat: Add utterance replacement with named entities
1
feat
null
76,605
20.11.2018 21:51:18
-3,600
7e8566763313f6ec9b3dc5a7fb8f4f22726ef717
feat: observation augmentation from entities
[ { "change_type": "MODIFY", "diff": "@@ -234,6 +234,13 @@ class NlpManager {\n}\nconst entities = this.nerManager.getEntitiesFromUtterance(utterance);\nthis.slotManager.addBatch(intent, entities);\n+ const optionalUtterance = this.nerManager.generateNamedEntityUtterance(\n+ utterance,\n+ locale\n+ );\n+ if (...
JavaScript
MIT License
axa-group/nlp.js
feat: observation augmentation from entities
1
feat
null
76,605
20.11.2018 21:51:56
-3,600
0052b893e940cf1cfbb840d3387b23f93c93fb47
feat: nlu-benchmark now trains entities for NLU
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,30 @@ async function scoreCorpus(corpus) {\nconst manager = new NlpManager({ languages: ['en'] });\nconst { sentences } = corpus;\nconst entities = {};\n+ for (let i = 0; i < sentences.length; i += 1) {\n+ const sentence = sentences[i];\n+ let { text } = sent...
JavaScript
MIT License
axa-group/nlp.js
feat: nlu-benchmark now trains entities for NLU
1
feat
null
76,605
20.11.2018 21:55:24
-3,600
60d5600e2c1d3d94fb1867f70e5bc27f696cc209
build: Version 2.2.3
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"node-nlp\",\n- \"version\": \"2.1.7\",\n+ \"version\": \"2.2.2\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n\"balanced-match\": {\n\"version\": \"1.0.0\",\n\"bundled\": true,\n- \"dev\": true\n+ \"dev\": true,\n+ \"optional\": true...
JavaScript
MIT License
axa-group/nlp.js
build: Version 2.2.3
1
build
null
503,950
20.11.2018 22:00:01
-7,200
c828b0481bd40708ae41c625579f566957fd9282
fix(LoginPage): improve form's error style and behavior
[ { "change_type": "ADD", "diff": "+.login-form-error {\n+ color: @color-pf-red-100;\n+ margin-bottom: 10px;\n+}\n", "new_path": "packages/patternfly-3/patternfly-react/less/login-page.less", "old_path": null }, { "change_type": "MODIFY", "diff": "@import 'treeview';\n@import 'pagination';...
TypeScript
MIT License
patternfly/patternfly-react
fix(LoginPage): improve form's error style and behavior (#942)
1
fix
LoginPage
273,683
20.11.2018 22:01:37
-3,600
36e49326f6ca7517864057d31d45598ceb42c769
feat(webpack): transpileDependencies config
[ { "change_type": "MODIFY", "diff": "@@ -75,6 +75,10 @@ class PluginAPI {\nthis._entry.clientOptions = options\n}\n+ transpileDependencies (list) {\n+ this._app.config.transpileDependencies.push(...list)\n+ }\n+\nloadSource (handler) {\nthis._on('loadSource', handler)\n}\n", "new_path": "gridsome/lib/app...
JavaScript
MIT License
gridsome/gridsome
feat(webpack): transpileDependencies config
1
feat
webpack
273,683
20.11.2018 22:32:50
-3,600
cdb676f4f276b054118e6094d1dec2c3bf4d6d7b
feat(webpack): runtimeCompiler config
[ { "change_type": "MODIFY", "diff": "@@ -63,6 +63,8 @@ module.exports = (context, options = {}, pkg = {}) => {\nconfig.maxImageWidth = localConfig.maxImageWidth || 1920\nconfig.imageExtensions = SUPPORTED_IMAGE_TYPES\n+ config.runtimeCompiler = localConfig.runtimeCompiler || false\n+\nconfig.transpileDepende...
JavaScript
MIT License
gridsome/gridsome
feat(webpack): runtimeCompiler config
1
feat
webpack
217,922
20.11.2018 22:36:47
-3,600
8b718c7d3cf51ec168f3b6aa5623a92619297d99
fix: fixes for list progression checks
[ { "change_type": "MODIFY", "diff": "@@ -188,16 +188,16 @@ export class ListsEffects {\n@Effect()\nupdateItemDone$ = this.actions$.pipe(\nofType<SetItemDone>(ListsActionTypes.SetItemDone),\n- withLatestFrom(this.listsFacade.selectedList$, this.authFacade.mainCharacter$, this.teamsFacade.selectedTeam$, this.a...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixes for list progression checks
1
fix
null
67,476
20.11.2018 22:56:22
-3,600
c7b3373ffbaadedb3b5469e3c48962c2eec8d7f1
fix(runtime): enable LengthObserver
[ { "change_type": "MODIFY", "diff": "import {\nCollection, CollectionKind, CollectionObserver, IBindingTargetObserver,\n- ICollectionObserver, IndexMap, IPropertySubscriber, LifecycleFlags, MutationKind\n+ ICollectionObserver, IndexMap, IPatch, IPropertySubscriber, LifecycleFlags, MutationKind\n} from '../ob...
TypeScript
MIT License
aurelia/aurelia
fix(runtime): enable LengthObserver
1
fix
runtime
67,476
20.11.2018 22:56:56
-3,600
358c0680bce494f86e4a45a530b3f86ab5fe56e9
chore(test): various improvements to the test builder
[ { "change_type": "MODIFY", "diff": "-import { TestBuilder } from './test-builder';\n+import { TestBuilder as Test, DefinitionBuilder as D, InstructionBuilder as I } from './test-builder';\n-describe.only('runtime', () => {\n+describe('runtime', () => {\nit('1', () => {\n+ const appState = { show: true };\n+...
TypeScript
MIT License
aurelia/aurelia
chore(test): various improvements to the test builder
1
chore
test
217,922
20.11.2018 23:29:52
-3,600
a72260f6240c12b57003627ad44f3d7c7b248c5c
chore: changed translation files format
[ { "change_type": "MODIFY", "diff": "@@ -43,13 +43,10 @@ import { NotificationsModule } from './modules/notifications/notifications.modul\nimport { IconDefinition } from '@ant-design/icons-angular';\nimport * as AllIcons from '@ant-design/icons-angular/icons';\nimport { SimulatorModule } from './pages/simula...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: changed translation files format
1
chore
null
815,598
20.11.2018 23:49:39
-28,800
67bdf6e77cd35f00065067da93b0de5f7aae18de
doc: CHANGELOG Metion Conventional Commits in CONTRIBUTING.md, which is used to generate change logs in future. Build initial CHANGELOG.md from previous release notes.
[ { "change_type": "ADD", "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+## [v0.1.0-pre10](https://github.com/nervosnetwork/ckb/compare/v0.1.0-pre09...v0.1.0-pre10) (2018...
Rust
MIT License
nervosnetwork/ckb
doc: CHANGELOG (#8) - Metion Conventional Commits in CONTRIBUTING.md, which is used to generate change logs in future. - Build initial CHANGELOG.md from previous release notes.
1
doc
null
815,598
20.11.2018 23:55:08
-28,800
ae6b14d4ef3b6390e0b3ed6ce6f676a7538998cd
chore: Remove outdated script release.sh
[ { "change_type": "DELETE", "diff": "-#!/usr/bin/env bash\n-\n-set -e\n-set -u\n-[ -n \"${DEBUG:-}\" ] && set -x || true\n-\n-main() {\n- local last_tag=$(git describe --abbrev=0)\n- local last_version=\"${last_tag##*-}\"\n- local current_version=$(( last_version + 1 ))\n- local current_tag=\"${last_tag%-*}-...
Rust
MIT License
nervosnetwork/ckb
chore: Remove outdated script release.sh
1
chore
null
679,913
21.11.2018 00:00:02
28,800
4750e796852ff0cab65d23b6fea3e79b9ad4d5bc
feat(rstream): add worker tunnel() sub
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ export * from \"./stream-merge\";\nexport * from \"./stream-sync\";\nexport * from \"./subscription\";\nexport * from \"./trigger\";\n+export * from \"./tunnel\";\nexport * from \"./from/atom\";\nexport * from \"./from/event\";\n", "new_path": "package...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(rstream): add worker tunnel() sub
1
feat
rstream
679,913
21.11.2018 00:00:34
28,800
ef0fe42c8203078eba0bbe427c37f887d6f58c91
feat(rstream): add StreamSync.getSources() / getSourceForID()
[ { "change_type": "MODIFY", "diff": "@@ -208,7 +208,7 @@ export class StreamSync<A, B> extends Subscription<A, B> {\n}\nremoveID(id: string) {\n- const src = this.idSources.get(this.realSourceIDs.get(id));\n+ const src = this.getSourceForID(id);\nif (src) {\nreturn this.remove(src);\n}\n@@ -235,6 +235,18 @@ ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(rstream): add StreamSync.getSources() / getSourceForID()
1
feat
rstream
679,913
21.11.2018 00:01:21
28,800
80679d3c258bd4f92c7c379973cfa7c56d3eb4a9
feat(examples): add mandelbrot worker/tunnel example
[ { "change_type": "ADD", "diff": "+.cache\n+out\n+node_modules\n+yarn.lock\n+*.js\n", "new_path": "examples/mandelbrot/.gitignore", "old_path": null }, { "change_type": "ADD", "diff": "+# mandelbrot\n+\n+[Live demo](http://demo.thi.ng/umbrella/mandelbrot/)\n+\n+```bash\n+git clone https:/...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add mandelbrot worker/tunnel example
1
feat
examples
679,913
21.11.2018 00:02:21
28,800
4cab70805f179ee16e989d0b04f6cada8d2544b8
fix: upload-examples script (if multiple sources)
[ { "change_type": "MODIFY", "diff": "@@ -14,10 +14,8 @@ for m in $modules; do\nname=$(echo $m | cut -d '/' -f 2)\ndest=\"$target/$name\"\nsrc=$(ls $m/out/*.js.gz | cut -d '/' -f 4)\n- len=${#src}\n- src=\"${src:0:len-3}\"\necho \"------------------------------\"\n- echo \"uploading $m ($src)...\"\n+ echo \"u...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix: upload-examples script (if multiple sources)
1
fix
null
679,913
21.11.2018 00:50:32
28,800
a68b9f9add294744695d5c42da0afef35a77c056
refactor(examples): update mandelbrot demo
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,8 @@ import { push } from \"@thi.ng/transducers/rfn/push\";\nimport { transduce } from \"@thi.ng/transducers/transduce\";\nimport { map } from \"@thi.ng/transducers/xform/map\";\n+// see http://dev.thi.ng/gradients/\n+\nconst cosColor = (dc: number[], amp: numb...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): update mandelbrot demo
1
refactor
examples
679,913
21.11.2018 00:51:06
28,800
9549067eb84aa28a3f77aa9d15902a21ef39a393
fix: update build-examples script (multiple js outputs)
[ { "change_type": "MODIFY", "diff": "@@ -15,11 +15,13 @@ for e in $examples; do\n(cd $e && yarn build)\nif [ 0 -eq $? ]; then\nsrc=`ls $e/out/*.js`\n- node_modules/.bin/terser -c -m --ecma 6 -o $src $src\n- sed -i 's/Object\\.defineProperty([a-z]\\+,\"__esModule\",{value:\\!0});//g' $src\n- sed -i 's/Object\...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix: update build-examples script (multiple js outputs)
1
fix
null
273,683
21.11.2018 01:26:39
-3,600
3b1fb7c9d501c144511d66773d8b30927f931845
fix(graphql): do not use file type if no extension
[ { "change_type": "MODIFY", "diff": "@@ -179,7 +179,8 @@ test('resolve absolute file paths', () => {\nurl4: 'ftp://ftp.example.com',\nemail: 'email@example.com',\ntext: 'Lorem ipsum dolor sit amet.',\n- text2: 'example.com'\n+ text2: 'example.com',\n+ text3: 'md'\n},\ninternal: {\norigin: '/absolute/dir/to/a...
JavaScript
MIT License
gridsome/gridsome
fix(graphql): do not use file type if no extension
1
fix
graphql
217,922
21.11.2018 09:12:26
-3,600
647aa2366ae782eb824234f69e6e70047560358b
chore: translation files cleanup
[ { "change_type": "MODIFY", "diff": "\"Patreon_supporters\": \"Patreon supporters\",\n\"Contributors\": \"Contributors\"\n},\n- \"GIVEWAY\": {\n- \"Title\": \"10k lists Giveway\",\n- \"Body\": \"In order to thank you properly for the 10k lists created on the app, a 60 days timecard giveway has been created, ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: translation files cleanup
1
chore
null
217,922
21.11.2018 09:25:51
-3,600
3ea450bb1ba19af048dde2c2688479082e401cae
feat: add button to logout in the character association dialog box when it's mandatory
[ { "change_type": "MODIFY", "diff": "@@ -106,7 +106,8 @@ export class AuthFacade {\nnzTitle: this.translate.instant('Character_informations'),\nnzContent: CharacterLinkPopupComponent,\nnzComponentParams: {\n- useAsDefault: useAsDefault\n+ useAsDefault: useAsDefault,\n+ mandatory: disableClose\n},\nnzFooter: ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: add button to logout in the character association dialog box when it's mandatory
1
feat
null
76,605
21.11.2018 09:55:33
-3,600
d6f42667297026852c25ecd6873e65c0321c941e
fix: tokenizer version 2.2.4
[ { "change_type": "MODIFY", "diff": "@@ -44,7 +44,7 @@ class AggressiveTokenizerEn extends AggressiveTokenizer {\nif (contractionsBase[lowitem]) {\nresult.push(...contractionsBase[lowitem]);\n} else if (contractions[lowitem]) {\n- result.push(...contractions[lowitem]);\n+ result.push(contractions[lowitem]);\...
JavaScript
MIT License
axa-group/nlp.js
fix: tokenizer version 2.2.4
1
fix
null
679,913
21.11.2018 12:33:50
28,800
bab55c3c99600be1ed83d2a849212185f211423c
feat(rstream-gestures): add absZoom option (abs vs. relative)
[ { "change_type": "MODIFY", "diff": "@@ -43,6 +43,15 @@ export interface GestureStreamOpts extends IID<string> {\n* Initial zoom value. Default: 1\n*/\nzoom: number;\n+ /**\n+ * If true, the produced `zoom` values are considered absolute and\n+ * will be constrained to the `minZoom .. maxZoom` interval. If\n...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(rstream-gestures): add absZoom option (abs vs. relative)
1
feat
rstream-gestures
679,913
21.11.2018 12:34:18
28,800
70ea4bd689439d3e146e03703dda6a82d318dadc
feat(examples): add key controls & wheel zoom to mandelbrot demo
[ { "change_type": "MODIFY", "diff": "import { equiv } from \"@thi.ng/equiv\";\nimport { canvas2D } from \"@thi.ng/hdom-components/canvas\";\nimport { fit } from \"@thi.ng/math/fit\";\n+import { mix } from \"@thi.ng/math/mix\";\nimport { gestureStream, GestureType } from \"@thi.ng/rstream-gestures\";\nimport ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(examples): add key controls & wheel zoom to mandelbrot demo
1
feat
examples
815,590
21.11.2018 12:57:58
-28,800
bc9945293f2a077e7137c43f938af65e5c1b103d
fix: fix network kad discovery issue
[ { "change_type": "MODIFY", "diff": "@@ -109,7 +109,10 @@ where\nErr(err) => {\nreturn {\nerror!(target: \"network\", \"failed to upgrade ckb_protocol\");\n- future::err(IoError::new(IoErrorKind::Other, err))\n+ future::err(IoError::new(\n+ IoErrorKind::Other,\n+ format!(\"faild to upgrade ckb_protocol, erro...
Rust
MIT License
nervosnetwork/ckb
fix: fix network kad discovery issue
1
fix
null
815,598
21.11.2018 14:10:59
-28,800
e66c7bb8561b794c8b27f41693e3dbbc4bf2cf65
doc: Refactor README Prefer HTTPS Fix instructions Provide more instructions
[ { "change_type": "MODIFY", "diff": "<img src=\"https://raw.githubusercontent.com/poshboytl/tuchuang/master/nervos-logo-dark.png\" width=\"256\">\n-# [Nervos CKB](http://nervos.org) - The Common Knowledge Base\n+# [Nervos CKB](https://www.nervos.org/) - The Common Knowledge Base\n[![TravisCI](https://travis-...
Rust
MIT License
nervosnetwork/ckb
doc: Refactor README (#12) - Prefer HTTPS - Fix instructions - Provide more instructions
1
doc
null
815,598
21.11.2018 15:03:14
-28,800
77c216e909d1407df0de21d85285e1439546aa39
doc: Add missing subcommand `run` in README
[ { "change_type": "MODIFY", "diff": "@@ -125,8 +125,8 @@ curl -d '{\"id\": 2, \"jsonrpc\": \"2.0\", \"method\":\"send_transaction\",\"params\": [{\"ve\nRun multiple nodes in different `data-dir`:\n```shell\n-target/release/ckb --data-dir=/tmp/node1\n-target/release/ckb --data-dir=/tmp/node2\n+target/release/...
Rust
MIT License
nervosnetwork/ckb
doc: Add missing subcommand `run` in README
1
doc
null
815,601
21.11.2018 15:04:15
-28,800
1bbb3d0b520b15449402a227c1e30d39c01785c2
feat: command default print help
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,8 @@ name: ckb\nauthor: Nervos Core Dev <dev@nervos.org>\nabout: Nervos CKB - The Common Knowledge Base\n+settings:\n+ - ArgRequiredElseHelp\nsubcommands:\n- run:\nabout: Running ckb node\n@@ -78,6 +80,8 @@ subcommands:\nrequired: true\n- cli:\nabout: Running c...
Rust
MIT License
nervosnetwork/ckb
feat: command default print help (#13)
1
feat
null
815,598
21.11.2018 15:04:37
-28,800
60982627660d8fc490a328da1273b4b16dd10e92
doc: Improve README spelling
[ { "change_type": "MODIFY", "diff": "Nervos CKB is the layer 1 of Nervos Network, a public blockchain with PoW and cell model.\n-Nervos project defines a suite of scalable and interoperable blockchain protocols. Nervos CKB uses those protocols to create a self-evolving distributed network with novel economic...
Rust
MIT License
nervosnetwork/ckb
doc: Improve README spelling (#11)
1
doc
null
815,598
21.11.2018 15:05:55
-28,800
f598ae012d57f3ff482e354aaec149af3495b93d
doc: Refer to known issues in the wiki
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,8 @@ Please note we have a code of conduct, please follow it in all your interactions\n### Report Issue\n+* Read [known issues](https://github.com/nervosnetwork/ckb/wiki/Known-Issues) listed in wiki to see whether the issue is already addressed there.\n+\n* **D...
Rust
MIT License
nervosnetwork/ckb
doc: Refer to known issues in the wiki (#10)
1
doc
null
815,601
21.11.2018 15:09:39
-28,800
fea6688a07206177514adffbb6705446de67d8ed
feat: default port
[ { "change_type": "MODIFY", "diff": "@@ -114,11 +114,11 @@ target/release/ckb run\n### Send Transaction via RPC\n-Find RPC port in the log output, the following command assumes 3030 is used:\n+Find RPC port in the log output, the following command assumes 8114 is used:\n```shell\ncurl -d '{\"id\": 2, \"jsonr...
Rust
MIT License
nervosnetwork/ckb
feat: default port
1
feat
null
730,429
21.11.2018 15:37:52
18,000
abbbc8bfaeb7762b6fded356303026cb50d53a09
chore(recents-demo): remove unused token component
[ { "change_type": "DELETE", "diff": "-import React, {Component} from 'react';\n-import PropTypes from 'prop-types';\n-import {autobind} from 'core-decorators';\n-import RaisedButton from 'material-ui/RaisedButton';\n-import {Card, CardActions, CardTitle, CardText} from 'material-ui/Card';\n-\n-import style f...
JavaScript
MIT License
webex/react-widgets
chore(recents-demo): remove unused token component
1
chore
recents-demo
815,601
21.11.2018 16:29:50
-28,800
8310b39a133d628f3a845571728738a17622df8b
feat: default data dir
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,7 @@ The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md), an\n## Build dependencies\n-Nervos is currently tested mainly with `stable-1.29.2`.\n+CKB is currently tested mainly with `stable-1.29.2` on Linux and Mac OSX.\nWe recommend in...
Rust
MIT License
nervosnetwork/ckb
feat: default data dir
1
feat
null
730,429
21.11.2018 16:44:09
18,000
84a1d95ea0a6d4a1fb426ac99db7e7f4f8438c80
chore(circleci): add integration env vars to circle builds
[ { "change_type": "MODIFY", "diff": "@@ -66,6 +66,15 @@ jobs:\n<<: *job_common\nenvironment:\n- NODE_ENV: \"test\"\n+ - ACL_SERVICE_URL: \"https://acl-intb.ciscospark.com/acl/api/v1\"\n+ - ATLAS_SERVICE_URL: \"https://atlas-intb.ciscospark.com/admin/api/v1\"\n+ - CONVERSATION_SERVICE: \"https://conversation-...
JavaScript
MIT License
webex/react-widgets
chore(circleci): add integration env vars to circle builds
1
chore
circleci
730,429
21.11.2018 16:44:48
18,000
87c9f7067ceab14d998038d1377b9262d2c94820
chore(scripts): change build for journey to execSync webpack
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,7 @@ const path = require('path');\nconst fse = require('fs-extra');\nconst rimraf = require('rimraf');\n-const {exec} = require('../../utils/exec');\n+const {execSync} = require('../../utils/exec');\nmodule.exports = {\ncommand: 'journey <distPath>',\n@@ -28,1...
JavaScript
MIT License
webex/react-widgets
chore(scripts): change build for journey to execSync webpack
1
chore
scripts
67,507
21.11.2018 17:04:26
-3,600
d4a51a02d9dcb96b3d51c7fc9fa4a0086c775efd
refactor(kernel): linting fixes for di
[ { "change_type": "MODIFY", "diff": "@@ -185,7 +185,7 @@ export const DI = {\nreturn function(target: Injectable, key?: string, descriptor?: PropertyDescriptor | number): void {\nif (typeof descriptor === 'number') { // It's a parameter decorator.\nif (!target.hasOwnProperty('inject')) {\n- const types = DI....
TypeScript
MIT License
aurelia/aurelia
refactor(kernel): linting fixes for di
1
refactor
kernel
67,507
21.11.2018 17:35:40
-3,600
26e24310747ddf995248f48b932a973b9f0db101
refactor(runtime): fix no-http-string linting supression
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,6 @@ import { ILifecycle } from '../lifecycle';\nimport { IBindingTargetAccessor } from '../observation';\nimport { targetObserver } from './target-observer';\n-// tslint:disable-next-line:no-http-string\nconst xlinkAttributeNS = 'http://www.w3.org/1999/xlink';...
TypeScript
MIT License
aurelia/aurelia
refactor(runtime): fix no-http-string linting supression
1
refactor
runtime
76,605
21.11.2018 18:03:21
-3,600
fa440a28f36bb0e10131b9d31b99f8f8e96bca9e
fix: correction in NER augmentation
[ { "change_type": "MODIFY", "diff": "@@ -538,7 +538,7 @@ class NerManager {\nresult += left;\nresult += `%${entity.entity}%`;\n}\n- const right = utterance.slice(entities[entities.length - 1].end);\n+ const right = utterance.slice(entities[entities.length - 1].end + 1);\nresult += right;\nreturn result;\n}\n...
JavaScript
MIT License
axa-group/nlp.js
fix: correction in NER augmentation
1
fix
null
217,922
21.11.2018 18:13:22
-3,600
8ba6ecb7dfd588c0638b3b352a9df62068535d60
chore: translation fixes and lint fixes
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ const getLoaded = createSelector(\nconst getMainCharacter = createSelector(\ngetAuthState,\n(state: AuthState) => {\n- let character = state.characters.find(char => char.Character.ID === state.user.defaultLodestoneId);\n+ const character = state.characte...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: translation fixes and lint fixes
1
chore
null
217,922
21.11.2018 20:26:18
-3,600
7f050ac064ab7cb14860350ed24818be140951f3
feat: more skeleton parts for the simulator page
[ { "change_type": "MODIFY", "diff": "width: 100%;\nheight: 100%;\nposition: absolute;\n- top: -1px;\n- left: -1px;\n+ top: 0;\n+ left: 0;\nborder: solid 1px #303030;\nbox-shadow: inset 0 0 1px rgba(255, 255, 255, .4), inset 0 1px 0 rgba(255, 255, 255, .4), 0 1px 2px rgba(0, 0, 0, .3);\nborder-radius: 5px;\n"...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: more skeleton parts for the simulator page
1
feat
null
730,412
21.11.2018 21:11:46
0
0f28ec7880386681506a51ee6b1b00566483ba83
chore(release): 0.1.386
[ { "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.386\"></a>\n+## [0.1.386](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.386
1
chore
release
217,922
21.11.2018 21:54:42
-3,600
0142e5d221ff036afd30e2183357b479131e864a
fix: fixed an issue with list picker when not logged in
[ { "change_type": "MODIFY", "diff": "import { Component } from '@angular/core';\n-import { combineLatest, Observable } from 'rxjs';\n+import { combineLatest, Observable, of } from 'rxjs';\nimport { List } from '../../list/model/list';\nimport { ListsFacade } from '../../list/+state/lists.facade';\nimport { N...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed an issue with list picker when not logged in
1
fix
null
76,605
21.11.2018 22:29:32
-3,600
b4f3b53e363e342d9ab0b4f8895140b6d5c04fe0
fix: don't replace contractions if is not a contraction
[ { "change_type": "MODIFY", "diff": "const AggressiveTokenizer = require('./aggressive-tokenizer');\nclass AggressiveTokenizerEn extends AggressiveTokenizer {\n- replaceContractions(arr) {\n+ replaceContractions(arr, text) {\nconst contractionsBase = {\ncannot: ['can', 'not'],\ngonna: ['going', 'to'],\n@@ -4...
JavaScript
MIT License
axa-group/nlp.js
fix: don't replace contractions if is not a contraction
1
fix
null
67,476
21.11.2018 22:56:51
-3,600
59c86b76ce5139b825994d9c905983cbbb8bf5e6
feat(jit): implement replaceable compilation
[ { "change_type": "MODIFY", "diff": "@@ -390,16 +390,22 @@ export class AttributeSymbol implements IAttributeSymbol {\n}\n}\n+type NodeWithAttributes = Node & {\n+ hasAttribute(name: string): boolean;\n+ getAttribute(name: string): string;\n+ removeAttribute(name: string): void;\n+};\n+\nexport class Element...
TypeScript
MIT License
aurelia/aurelia
feat(jit): implement replaceable compilation
1
feat
jit
273,683
21.11.2018 23:40:26
-3,600
a0caa8402b361f0a1598d7a595147039a73cb4b2
fix(webpack): allow async chainWebpack
[ { "change_type": "MODIFY", "diff": "@@ -28,7 +28,7 @@ module.exports = async (context, args) => {\nserver.app.use(config.pathPrefix, express.static(config.staticDir))\nserver.app.use(require('connect-history-api-fallback')())\n- const webpackConfig = createWebpackConfig()\n+ const webpackConfig = await crea...
JavaScript
MIT License
gridsome/gridsome
fix(webpack): allow async chainWebpack
1
fix
webpack
217,927
21.11.2018 23:47:18
18,000
f1d8b40d486c640a6630be10dd1e28e1737bad7c
refactor: character link server Makes the server autocomplete in the character link popup case insensitive. Capitalizes "Korean Server" for consistency and ensures the servers are sorted alphabetically.
[ { "change_type": "MODIFY", "diff": "@@ -37,15 +37,15 @@ export class CharacterLinkPopupComponent {\nmap(servers => {\nreturn [\n...servers,\n- 'Korean server'\n- ];\n+ 'Korean Server'\n+ ].sort();\n})\n);\nthis.autoCompleteRows$ = combineLatest(this.servers$, this.selectedServer.valueChanges)\n.pipe(\nmap((...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
refactor: character link server Makes the server autocomplete in the character link popup case insensitive. Capitalizes "Korean Server" for consistency and ensures the servers are sorted alphabetically.
1
refactor
null
67,507
22.11.2018 00:39:32
-3,600
da211183d3a4a5ecacc2c603748a24785913b057
refactor(kernel): fix or suppress Sonart linting errors
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,7 @@ export interface IDisposable {\n}\nexport type Constructable<T = {}> = {\n- // tslint:disable-next-line:no-any\n+ // tslint:disable-next-line:no-any no-useless-intersection\nnew(...args: unknown[]): T & any; // this is a \"hack\" to stop typescript from na...
TypeScript
MIT License
aurelia/aurelia
refactor(kernel): fix or suppress Sonart linting errors
1
refactor
kernel
67,507
22.11.2018 00:39:43
-3,600
b4d182bfaa74430e16cd27edccca24742749343a
refactor(requirejs): fix or suppress Sonart linting errors
[ { "change_type": "MODIFY", "diff": "@@ -45,10 +45,11 @@ export function write(pluginName: string, moduleName: string, writer: (content:\nconst text = buildMap[moduleName];\nconst description = createTemplateDescription(text);\nconst depsToLoad = processImports(description.imports, moduleName);\n+ const deps...
TypeScript
MIT License
aurelia/aurelia
refactor(requirejs): fix or suppress Sonart linting errors
1
refactor
requirejs
67,507
22.11.2018 00:40:09
-3,600
7cdfaa3a082a6e1852486ed923420fd81947ed94
refactor(jit): fix or suppress Sonart linting errors
[ { "change_type": "MODIFY", "diff": "@@ -91,6 +91,14 @@ export function parseCore(input: string, bindingType?: BindingType): IExpression\n}\n/*@internal*/\n+// JUSTIFICATION: This is performance-critical code which follows a subset of the well-known ES spec.\n+// Knowing the spec, or parsers in general, will...
TypeScript
MIT License
aurelia/aurelia
refactor(jit): fix or suppress Sonart linting errors
1
refactor
jit
67,507
22.11.2018 00:40:28
-3,600
068174c631ce20f6ecfa1db7f34f7aac02f75d36
refactor(runtime): fix or suppress Sonart linting errors
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,8 @@ function observePush(this: IObservedArray): ReturnType<typeof nativePush> {\nthis.length = o.indexMap.length = len + argCount;\nlet i = len;\nwhile (i < this.length) {\n- this[i] = arguments[i - len]; o.indexMap[i] = - 2;\n+ this[i] = arguments[i - len];...
TypeScript
MIT License
aurelia/aurelia
refactor(runtime): fix or suppress Sonart linting errors
1
refactor
runtime
67,507
22.11.2018 00:40:52
-3,600
08a46795b36e7446650122506fa231ed8bb62168
refactor: suppress some Sonart linting errors globally
[ { "change_type": "MODIFY", "diff": "\"prefer-switch\": false, // more of a style preference\n\"prefer-type-cast\": false, // pick either type-cast format and use it consistently\n\"return-undefined\": false, // this actually affect the readability of the code\n- \"space-before-function-paren\": false // tur...
TypeScript
MIT License
aurelia/aurelia
refactor: suppress some Sonart linting errors globally
1
refactor
null