author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
67,476
30.11.2019 18:24:54
-3,600
e082053a1655b7d7ed66888087c4babea23a303c
feat(aot): implement %Promise_all%
[ { "change_type": "ADD", "diff": "+export class $ValueRecord<T> {\n+ public '[[Value]]': T;\n+\n+ public constructor(\n+ value: T,\n+ ) {\n+ this['[[Value]]'] = value;\n+ }\n+}\n", "new_path": "packages/aot/src/vm/globals/_shared.ts", "old_path": null }, { "change_type": "MODIFY", "diff":...
TypeScript
MIT License
aurelia/aurelia
feat(aot): implement %Promise_all%
1
feat
aot
67,476
01.12.2019 03:21:42
-3,600
595096a279b4b90c657a7081ca23cef6d5215cfa
chore(aot): add missing properties for %Promise%
[ { "change_type": "MODIFY", "diff": "+import {\n+ $BuiltinFunction,\n+ $Function,\n+} from '../types/function';\n+import {\n+ $AnyNonEmptyNonError,\n+ $AnyNonEmpty,\n+} from '../types/_shared';\n+import {\n+ $List,\n+} from '../types/list';\n+import {\n+ Realm,\n+ ExecutionContext,\n+} from '../realm';\n+imp...
TypeScript
MIT License
aurelia/aurelia
chore(aot): add missing properties for %Promise%
1
chore
aot
67,516
01.12.2019 09:39:52
-3,600
c95ad21ca56f99e868a4d08aee5335eae3a1494b
test(validation): e2e wip
[ { "change_type": "MODIFY", "diff": "\"@aurelia/runtime\": \"0.5.0\",\n\"@aurelia/runtime-html\": \"0.5.0\",\n\"@aurelia/runtime-html-browser\": \"0.5.0\",\n+ \"@aurelia/validation\": \"0.5.0\",\n\"i18next-intervalplural-postprocessor\": \"^1.0.0\",\n\"relative-time-format\": \"^1.0.0\",\n\"i18next-fetch-bac...
TypeScript
MIT License
aurelia/aurelia
test(validation): e2e wip
1
test
validation
217,922
01.12.2019 13:04:32
-3,600
d6301939ae3e3fc65e56ce88cd376cd9e1ca69dc
chore: let's go back to beta env
[ { "change_type": "MODIFY", "diff": "@@ -8,16 +8,14 @@ import { version } from './version';\nexport const environment = {\nproduction: false,\nversion: version,\n- ssrHost: 'https://ffxivteamcraft.com',\n+ ssrHost: 'https://beta.ffxivteamcraft.com',\nstartTimestamp: Date.now(),\nfirebase: {\n- apiKey: 'AIzaS...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: let's go back to beta env Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
217,922
01.12.2019 13:11:20
-3,600
67e573711321e4838bab2c2271e17c5864517741
fix(lists): fixed an issue with small lists drag events not registering properly
[ { "change_type": "MODIFY", "diff": "@@ -228,6 +228,9 @@ export class ListsComponent {\nif (list.workshopId !== undefined) {\nthis.workshopsFacade.removeListFromWorkshop(list.$key, list.workshopId);\n}\n+ if (index === list.index) {\n+ return;\n+ }\n// Remove list from the array\nlists = lists.filter(l => l....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(lists): fixed an issue with small lists drag events not registering properly Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
lists
217,922
01.12.2019 13:17:57
-3,600
d2fbf3879f7a464a30d56afcc3878832de6facb3
fix(list): fixed an issue with item completion not being edited properly
[ { "change_type": "MODIFY", "diff": "@@ -37,7 +37,7 @@ export class List extends DataWithPermissions {\nnote = '';\n// noinspection JSUnusedGlobalSymbols\n- createdAt: firebase.firestore.Timestamp = firebase.firestore.Timestamp.fromDate(new Date());\n+ createdAt: firebase.firestore.Timestamp;\n// Should we d...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed an issue with item completion not being edited properly Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
list
217,922
01.12.2019 13:39:55
-3,600
943222261345af09c3849199a240d095e315c91c
feat(list): added a button to fill current list with inventory
[ { "change_type": "MODIFY", "diff": "@@ -34,11 +34,14 @@ export class UserInventory extends DataModel {\nlastZone: firebase.firestore.Timestamp;\n- getItem(itemId: number): InventoryItem[] {\n+ getItem(itemId: number, onlyUserInventory = false): InventoryItem[] {\nreturn [].concat.apply([],\nObject.keys(this...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(list): added a button to fill current list with inventory Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
feat
list
217,922
01.12.2019 15:33:42
-3,600
c6db630ec32bdb04bf11e5f6c665ac3164d5ae10
fix(db): hotfix for missing https cert in gubal API
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ export class ApolloInterceptor implements HttpInterceptor {\n}\nintercept(req: HttpRequest<any>, next: HttpHandler) {\n- if (req.url.indexOf('/graphql') > -1) {\n+ if (req.url.indexOf('/gubal') > -1) {\nreturn this.authFacade.idToken$\n.pipe(\nfilter(tok...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(db): hotfix for missing https cert in gubal API Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
db
217,922
01.12.2019 15:41:54
-3,600
fc71ae315e836064c4de1987f699ea7f618357b1
chore: fix for tug naming
[ { "change_type": "MODIFY", "diff": "@@ -216,7 +216,7 @@ export class FishComponent implements OnInit {\ntugs: result.data.tug_per_fish\n.sort((a, b) => b.occurences - a.occurences)\n.map(entry => {\n- entry.tugName = ['Medium', 'Light', 'Big'][entry.tug];\n+ entry.tugName = ['Medium', 'Big', 'Light'][entry....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for tug naming Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
217,922
01.12.2019 16:10:29
-3,600
72bd327e2147a6230f70728fbeb3973c8ef19836
chore: fix for display on fishes with no data
[ { "change_type": "MODIFY", "diff": "@@ -186,8 +186,8 @@ export class FishComponent implements OnInit {\n}\n],\ncurve: shape.curveBasisOpen,\n- min: sortedBiteTimes[0].biteTime / 10,\n- max: sortedBiteTimes[sortedBiteTimes.length - 1].biteTime / 10\n+ min: (sortedBiteTimes[0] || {biteTime: 0}).biteTime / 10,...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix for display on fishes with no data Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
217,922
01.12.2019 16:26:25
-3,600
85a51a8adf9ef1b030663868d47ea73bc79cd616
chore: avoid reporting data that isn't possible
[ { "change_type": "MODIFY", "diff": "@@ -221,6 +221,10 @@ export class FishingReporter implements DataReporter {\nfisherStats$,\nmooch$\n),\n+ filter(([fish, , , , , , , possibleMooch, , spot, , mooch]) => {\n+ return spot.fishes.indexOf(fish.id) > -1\n+ && (!mooch || spot.fishes.indexOf(possibleMooch) > -1)...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: avoid reporting data that isn't possible Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
217,922
01.12.2019 16:58:40
-3,600
ed9221dfd30890a66518baf62a352c6610c68bee
chore: consider weather when throwing for fishing data, not hooking
[ { "change_type": "MODIFY", "diff": "@@ -108,12 +108,16 @@ export class FishingReporter implements DataReporter {\nconst throw$ = eventPlay$.pipe(\nfilter(packet => packet.scene === 1),\n- withLatestFrom(this.eorzea.statuses$),\n- map(([packet, statuses]) => {\n+ withLatestFrom(this.eorzea.statuses$,\n+ this...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: consider weather when throwing for fishing data, not hooking Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
67,476
01.12.2019 23:33:38
-3,600
dc723c992e539a9c4d01faf92a0962420ad77d8f
chore(aot): some renames
[ { "change_type": "RENAME", "diff": "", "new_path": "packages/aot/src/vm/globals/async-generator-function.ts", "old_path": "packages/aot/src/vm/globals/async-generator.ts" }, { "change_type": "RENAME", "diff": "", "new_path": "packages/aot/src/vm/globals/generator-function.ts", "o...
TypeScript
MIT License
aurelia/aurelia
chore(aot): some renames
1
chore
aot
730,428
02.12.2019 00:02:26
0
7b2f5ad972b67f2d86128d11c2883b8f2a1860a0
chore(release): 0.2.63 [skip ci]
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+### [0.2.63](https://github.com/webex/react-widgets/compare/v0.2.62...v0.2.63) (2019-12-02)\n+\...
JavaScript
MIT License
webex/react-widgets
chore(release): 0.2.63 [skip ci]
1
chore
release
67,476
02.12.2019 00:55:03
-3,600
7b2d9691401d1b418b33c4e4916ac8c926799dd4
feat(aot): implement %AsyncFunction%, %AsyncFunctionPrototype%
[ { "change_type": "MODIFY", "diff": "@@ -620,6 +620,18 @@ export class ExecutionContext<TLex extends $EnvRec = $EnvRec, TVar extends ($Mod\nthis.activeTime += (Date.now() - this.activityTimestamp);\n}\n+ public makeCopy(): this {\n+ const ctx = new ExecutionContext(this.Realm);\n+ ctx.Function = this.Functio...
TypeScript
MIT License
aurelia/aurelia
feat(aot): implement %AsyncFunction%, %AsyncFunctionPrototype%
1
feat
aot
67,476
02.12.2019 06:05:40
-3,600
8951a1c59ed56280d14f71c116dd7790c4923da6
chore(aot): wireup some new intrinsics
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,7 @@ import {\n$Function,\n} from './types/function';\nimport {\n- $IteratorPrototype,\n+ $IteratorPrototype, $AsyncIteratorPrototype, $AsyncFromSyncIteratorPrototype,\n} from './globals/iteration';\nimport {\n$StringConstructor,\n@@ -96,7 +96,14 @@ import {\...
TypeScript
MIT License
aurelia/aurelia
chore(aot): wireup some new intrinsics
1
chore
aot
722,013
02.12.2019 07:47:06
21,600
56d675d906b4cf76861f7b6f819a6642a19f90cd
fix: make sections without examples pre-compile
[ { "change_type": "ADD", "diff": "+import { Example } from '../../types/Example'\n+\n+export default function(\n+ examples: string | { require: string; toAST: () => any } | Example[] | null | undefined\n+) {\n+ Array.isArray(examples) &&\n+ examples.forEach(ex => {\n+ if (ex.type === 'code') {\n+ if (ex.comp...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix: make sections without examples pre-compile
1
fix
null
711,580
02.12.2019 08:28:06
-3,600
e0bfa4d8198974bb15d6be7be1d32aa981e002b3
fix(admin-ui): Order detail - fix broken app when no featuredAsset
[ { "change_type": "MODIFY", "diff": "[class.ignore]=\"getUnfulfilledCount(line) === 0\"\n>\n<td class=\"align-middle thumb\">\n- <img [src]=\"line.featuredAsset.preview + '?preset=tiny'\" />\n+ <img *ngIf=\"line.featuredAsset\" [src]=\"line.featuredAsset.preview + '?preset=tiny'\" />\n</td>\n<td class=\"alig...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Order detail - fix broken app when no featuredAsset (#219)
1
fix
admin-ui
104,877
02.12.2019 09:07:38
-28,800
99644ce350d18e0051a1b745dcaf4f01b29daf78
fix(Breadcrumb): parameters defination follow eslint
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport PropTypes from 'prop-types';\n-import { Breadcrumb as CarbonBreadcrumb, OverflowMenu } from 'carbon-components-react';\n+import {\n+ Breadcrumb as CarbonBreadcrumb,\n+ OverflowMenu,\n+ OverflowMenuItem,\n+} from 'carbon-components-react'...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(Breadcrumb): parameters defination follow eslint #719
1
fix
Breadcrumb
217,922
02.12.2019 09:11:20
-3,600
8efe8cfabe918f3194fdaaadc0442e2e69783eae
fix(fish): avoid multiple reports for the same event
[ { "change_type": "MODIFY", "diff": "import { Inject, Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { IpcService } from '../electron/ipc.service';\n-import { mapTo, switchMap } from 'rxjs/operators';\n+import { first, mapTo, switchMap } from 'rxjs/operators';\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(fish): avoid multiple reports for the same event Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
fish
217,922
02.12.2019 09:11:47
-3,600
f88d2eb7d4c780698d22288430f0fbf54fa91633
chore: add debounceTime for data reports to avoid spam
[ { "change_type": "MODIFY", "diff": "import { Inject, Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { IpcService } from '../electron/ipc.service';\n-import { first, mapTo, switchMap } from 'rxjs/operators';\n+import { debounceTime, first, mapTo, switchMap } fr...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: add debounceTime for data reports to avoid spam Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
217,922
02.12.2019 09:21:16
-3,600
ee52017dc4aeb2e26563aed59542f8ef405d7bc4
feat(db): add usual details about fishes below graphs
[ { "change_type": "MODIFY", "diff": "</div>\n</div>\n+ <ng-container *ngIf=\"obtentionTpl\">\n+ <ng-container *ngTemplateOutlet=\"obtentionTpl\"></ng-container>\n+ </ng-container>\n+\n<ng-container *ngIf=\"usedForTpl\">\n<ng-container *ngTemplateOutlet=\"usedForTpl\"></ng-container>\n</ng-container>\n", ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): add usual details about fishes below graphs Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
feat
db
866,415
02.12.2019 09:36:14
18,000
dc594dd7ff92af53917957b171c432ab38351d8e
fix(leadspace-centered): use color token for gradient
[ { "change_type": "MODIFY", "diff": "&__gradient {\nbackground: linear-gradient(\nto bottom,\n- rgba(0, 0, 0, 0.8),\n- rgba(0, 0, 0, 0.6),\n+ rgba($ui-background, 0.8),\n+ rgba($ui-background, 0.6),\ntransparent 75%\n);\n}\n", "new_path": "packages/styles/scss/patterns/leadspace-centered/_leadspace-cente...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(leadspace-centered): use color token for gradient
1
fix
leadspace-centered
866,415
02.12.2019 09:43:55
18,000
b727547e6091e10d0d35ae1411c3e9fc260fe8b5
chore(leadspace-centered): update feature flag name
[ { "change_type": "MODIFY", "diff": "@@ -29,8 +29,8 @@ export const LEADSPACE =\n*\n* @type {string | boolean}\n*/\n-export const LEADSPACE_CENTERED =\n- process.env.LEADSPACE_CENTERED === 'true' || DDS_FLAGS_ALL || false;\n+export const DDS_LEADSPACE_CENTERED =\n+ process.env.DDS_LEADSPACE_CENTERED === 'tru...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(leadspace-centered): update feature flag name
1
chore
leadspace-centered
531,793
02.12.2019 10:08:15
0
0c77e763a015b900c475fba30441d85210b7f1f1
fix(docs): correct version number in docs
[ { "change_type": "MODIFY", "diff": "@@ -76,7 +76,7 @@ details.\n### Dark mode\n-Starting with `v0.51` release karma includes both light and dark themes.\n+Starting with `v0.52` release karma includes both light and dark themes.\nBy default it will follow browser preference using\n[prefers-color-scheme](http...
TypeScript
Apache License 2.0
prymitive/karma
fix(docs): correct version number in docs
1
fix
docs
866,415
02.12.2019 10:14:42
18,000
e928df192a5a09faa37ff87eff9c07accc3e1e9c
chore(test): leadspace centered unit test
[ { "change_type": "ADD", "diff": "+import React from 'react';\n+import { mount } from 'enzyme';\n+import LeadSpaceCentered from '../LeadSpaceCentered';\n+\n+require('../../../internal/FeatureFlags');\n+\n+jest.mock('../../../internal/FeatureFlags.js', () => ({\n+ DDS_LEADSPACE_CENTERED: true,\n+}));\n+\n+des...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(test): leadspace centered unit test
1
chore
test
866,390
02.12.2019 10:14:54
18,000
8bd660c8c3d64aee7de3cdfbd9581a094d0c1a01
fix: minor fix for readme
[ { "change_type": "MODIFY", "diff": "@@ -11,14 +11,14 @@ Import the package css into the top of your main CSS file.\n#### Elements\n| Class | Description |\n-| ---------------------------------------------- | ------------------------------------------- |\n+| ----------------------------------------------- | ...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix: minor fix for readme
1
fix
null
573,203
02.12.2019 10:36:08
28,800
703470ad82fd01e7f3b2197ebb7eb1b5b37975f8
feat(chain): use nextTick instead of setImmediate
[ { "change_type": "MODIFY", "diff": "@@ -112,7 +112,9 @@ Chain.prototype.run = function run(req, res, done) {\n// all done or request closed\nif (!handler || req.closed()) {\n- setImmediate(done, err, req, res);\n+ process.nextTick(function nextTick() {\n+ return done(err, req, res);\n+ });\nreturn;\n}\n", ...
JavaScript
MIT License
restify/node-restify
feat(chain): use nextTick instead of setImmediate (#1808)
1
feat
chain
551,636
02.12.2019 10:40:55
0
1cf87c7a40f036c386825883ac9922bb77cb6459
feat: 'alter table drop partition' SQL implementation. Fixed
[ { "change_type": "MODIFY", "diff": "@@ -634,6 +634,30 @@ public class TableWriter implements Closeable {\nLOG.info().$(\"REMOVED column '\").utf8(name).$(\"' from \").$(path).$();\n}\n+ public long partitionNameToTimestamp(CharSequence partitionName) {\n+ if (partitionDirFmt == null) {\n+ throw CairoExcepti...
Java
Apache License 2.0
questdb/questdb
feat: 'alter table drop partition' SQL implementation. Fixed #77
1
feat
null
815,593
02.12.2019 11:06:55
-32,400
9ee22194e3c762b15eaae2b9ea8d905b28f2f40f
test: add `customized_migration`
[ { "change_type": "MODIFY", "diff": "@@ -76,11 +76,13 @@ impl RocksDB {\n.map_err(|_| internal_error(\"failed to set database option\"))?;\n}\n- migrations.migrate(&db)?;\n-\n- Ok(RocksDB {\n+ let rocks_db = RocksDB {\ninner: Arc::new(db),\n- })\n+ };\n+\n+ migrations.migrate(&rocks_db)?;\n+\n+ Ok(rocks_db)\...
Rust
MIT License
nervosnetwork/ckb
test: add `customized_migration`
1
test
null
902,122
02.12.2019 11:07:42
0
e2f80ab65b44bae532c4e94781b53363e224c5ca
chore(release): v5.18.9
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.18.9](https://github.com/kikobeats/browserless/compare/v5.18.8...v5.18.9) (2019-12-02)\n+\n+**Note:** Version b...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.18.9
1
chore
release
217,922
02.12.2019 11:16:02
-3,600
697ff06de78b664c6b05e42857a7538e0aa73198
feat(db): add weather % chances and weather transition % chances when filtering on a spot
[ { "change_type": "MODIFY", "diff": "@@ -32,7 +32,8 @@ export class GubalService {\nvariables: {\ndata: {\n...data,\n- userId: userId\n+ userId: userId,\n+ date: new Date().toISOString()\n}\n}\n});\n", "new_path": "apps/client/src/app/core/api/gubal.service.ts", "old_path": "apps/client/src/app/core/...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): add weather % chances and weather transition % chances when filtering on a spot Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
feat
db
217,922
02.12.2019 11:17:54
-3,600
af28c8d79705076bb7803087e1bb491633c4d9cf
fix(resets): fixed icon in reset timers page for desktop app
[ { "change_type": "MODIFY", "diff": "<nz-list-item-meta\n[nzDescription]=\"('ALARMS.REALTIME.' + timer.label + '_DESCRIPTION') | translate\"\n[nzTitle]=\"('ALARMS.REALTIME.' + timer.label) | translate\"\n- nzAvatar=\"/assets/icons/notice.png\">\n+ nzAvatar=\"./assets/icons/notice.png\">\n</nz-list-item-meta>...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(resets): fixed icon in reset timers page for desktop app Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
resets
217,922
02.12.2019 11:22:00
-3,600
066e6f0f3119fe161916b7f69fcd3cfd32d2220d
fix(inventory): fixed an issue with inventory updating in database
[ { "change_type": "MODIFY", "diff": "@@ -51,14 +51,10 @@ export class InventoryEffects {\nofType<UpdateInventory>(InventoryActionTypes.UpdateInventory),\nauditTime(30000),\nswitchMap(action => {\n+ localStorage.setItem(INVENTORY_FEATURE_KEY, JSON.stringify(action.payload));\nif (this.settings.persistInventor...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(inventory): fixed an issue with inventory updating in database Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
inventory
104,848
02.12.2019 11:33:32
21,600
bbb666964a3764519655fff6724ef451c41e10f2
fix(listcard): update padding and add stories
[ { "change_type": "MODIFY", "diff": "@@ -90,8 +90,181 @@ class ListCardSimple extends Component {\n};\n}\n-storiesOf('Watson IoT Experimental|ListCard', module).add('basic', () => {\n+// eslint-disable-next-line react/no-multi-comp\n+class ListCardExtraContent extends Component {\n+ constructor(props) {\n+ s...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(listcard): update padding and add stories
1
fix
listcard
902,122
02.12.2019 11:57:25
-3,600
cda39668074ba777d433929cb5048f8fecbcee2d
build: add more useful report information
[ { "change_type": "MODIFY", "diff": "\"dependencies\": {\n\"lighthouse\": \"~5.6.0\",\n\"lodash\": \"~4.17.15\",\n+ \"pretty-bytes\": \"~5.3.0\",\n\"require-one-of\": \"~1.0.13\"\n},\n\"devDependencies\": {\n", "new_path": "packages/stats/package.json", "old_path": "packages/stats/package.json" }, ...
JavaScript
MIT License
microlinkhq/browserless
build: add more useful report information
1
build
null
815,593
02.12.2019 12:00:26
-32,400
c4b311bb6a5ee913d73268cf23158f2276dc88f7
test: rebase and tweak test
[ { "change_type": "MODIFY", "diff": "@@ -299,7 +299,11 @@ mod tests {\n}\n}\n+ #[test]\n+ fn test_customized_migration() {\nstruct CustomizedMigration;\n+ const COLUMN: &str = \"0\";\n+ const VERSION: &str = \"20191127101121\";\nimpl Migration for CustomizedMigration {\nfn migrate(&self, db: &RocksDB) -> Res...
Rust
MIT License
nervosnetwork/ckb
test: rebase and tweak test
1
test
null
866,415
02.12.2019 12:03:28
18,000
dab91a7e8210f5ca417b9ee17b2434dac2cba658
feat(leadspace-center): theme option implement
[ { "change_type": "MODIFY", "diff": "@@ -23,12 +23,17 @@ const { prefix } = settings;\n* renders the pattern classnames\n*\n* @param {string} image image url\n+ * @param {string} theme theme of the pattern\n* @returns {string} classnames\n*/\n-const className = image =>\n- classnames(`${prefix}--leadspace--c...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(leadspace-center): theme option implement
1
feat
leadspace-center
304,866
02.12.2019 12:11:09
28,800
4cc0db2a0cbcd05042041915da31f68e83123388
fix(libflux/semantic/parser): allow "_" in type expressions
[ { "change_type": "MODIFY", "diff": "@@ -41,6 +41,6 @@ BOOL = 'bool'\nDURATION = 'duration'\nTIME = 'time'\nREGEXP = 'regexp'\n-IDENTIFIER = [a-zA-Z] ([0-9a-zA-Z])*\n+IDENTIFIER = [a-zA-Z_] ([0-9a-zA-Z_])*\nWHITESPACE = [ \\t\\r\\n]+ -> skip\n```\n\\ No newline at end of file\n", "new_path": "libflux/src...
Go
MIT License
influxdata/flux
fix(libflux/semantic/parser): allow "_" in type expressions (#2210)
1
fix
libflux/semantic/parser
743,952
02.12.2019 12:16:20
-3,600
63b3dd31a455d428902220c1992ae930e18aff5c
fix: show 2 dashes on help for single digit option key or alias To be coherent with what yargs/parser considers as a single dash key
[ { "change_type": "MODIFY", "diff": "@@ -272,7 +272,7 @@ module.exports = function usage (yargs, y18n) {\n// for the special positional group don't\n// add '--' or '-' prefix.\nif (groupName === self.getPositionalGroupName()) return sw\n- else return (sw.length > 1 ? '--' : '-') + sw\n+ else return (/^[^0-9]...
JavaScript
MIT License
yargs/yargs
fix: show 2 dashes on help for single digit option key or alias (#1493) To be coherent with what yargs/parser considers as a single dash key
1
fix
null
447,451
02.12.2019 12:44:07
21,600
7a66e1e7ae0a5cb4694fdcc41e68934bb172d8a9
fix: style type and import MouseEvent
[ { "change_type": "MODIFY", "diff": "-import { ReactNode } from 'react';\n+import { ReactNode, MouseEvent } from 'react';\nimport { BaseProps, LookupValue } from '../types';\ninterface MatchedSubstringsShape {\n", "new_path": "src/components/GoogleAddressLookup/index.d.ts", "old_path": "src/component...
JavaScript
MIT License
nexxtway/react-rainbow
fix: style type and import MouseEvent (#1177)
1
fix
null
902,122
02.12.2019 13:09:18
0
3e981b13f3183e06285cf50516e7cc5fb1d64c9f
chore(release): v5.18.10
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.18.10](https://github.com/kikobeats/browserless/compare/v5.18.9...v5.18.10) (2019-12-02)\n+\n+**Note:** Version...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.18.10
1
chore
release
67,494
02.12.2019 13:23:40
-3,600
14ebf89d2305f000f71fe47ee12d3f485157ebea
refactor(router): use goto in nav
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,7 @@ export interface INavClasses {\n</nav>\n<ul if.bind=\"routes\" class=\"nav-level-\\${level} \\${classes.ul}\">\n<li repeat.for=\"route of routes\" if.bind=\"route.visible\" class=\"\\${route.active ? classes.liActive : ''} \\${route.hasChildren} \\${clas...
TypeScript
MIT License
aurelia/aurelia
refactor(router): use goto in nav
1
refactor
router
67,494
02.12.2019 13:25:20
-3,600
52d97c389ab1a89eb0b40ec574867d407bbbaee7
refactor(router): copy viewport scope when cloning
[ { "change_type": "MODIFY", "diff": "@@ -215,6 +215,7 @@ export class InstructionResolver {\nif (context) {\nclone.context = instruction.context;\n}\n+ clone.viewportScope = instruction.viewportScope;\nclone.scope = viewportInstances ? instruction.scope : null;\nif (instruction.nextScopeInstructions) {\nclon...
TypeScript
MIT License
aurelia/aurelia
refactor(router): copy viewport scope when cloning
1
refactor
router
67,494
02.12.2019 13:30:45
-3,600
fef7363f65b225c890faa92ef5f68f0e0293ff05
refactor(router): use scope instead of viewport scope
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,7 @@ import { INavigatorInstruction, IRoute } from './interfaces';\nimport { Queue, QueueItem } from './queue';\nimport { IRouter } from './router';\nimport { ViewportInstruction } from './viewport-instruction';\n-import { ViewportScope } from './viewport-scope...
TypeScript
MIT License
aurelia/aurelia
refactor(router): use scope instead of viewport scope
1
refactor
router
67,494
02.12.2019 13:31:52
-3,600
1e8f5ee9fd87e9cb47a4c71dd8b68225b3107166
refactor(router): add viewport scope
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ import { IRouter } from './router';\nimport { ComponentAppellationResolver } from './type-resolvers';\nimport { Viewport } from './viewport';\nimport { IComponentParameter, InstructionResolver } from './instruction-resolver';\n+import { Scope, IScopeOwner ...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add viewport scope
1
refactor
router
551,636
02.12.2019 13:33:50
0
2e2ac8ccca2b78ff07c73824d17fbfe1f23a3d4a
feat: on Linux platform server will use recvmmsg() for influx protocol
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,7 @@ package io.questdb;\nimport io.questdb.cairo.CairoEngine;\nimport io.questdb.cutlass.http.HttpServer;\nimport io.questdb.cutlass.line.udp.GenericLineProtoReceiver;\n+import io.questdb.cutlass.line.udp.LinuxLineProtoReceiver;\nimport io.questdb.cutlass.pg...
Java
Apache License 2.0
questdb/questdb
feat: on Linux platform server will use recvmmsg() for influx protocol
1
feat
null
551,636
02.12.2019 13:35:42
0
3a3feb77180a44324b825564fd8e535742639d0d
fix: use ParallelGC for better overall performance on Linux
[ { "change_type": "MODIFY", "diff": "@@ -138,12 +138,10 @@ function start {\nJAVA_OPTS=\"\n-D$QDB_PROCESS_LABEL\n- -ea -Dnoebug\n+ -da -Dnoebug\n-XX:+PrintGCApplicationStoppedTime\n-XX:+PrintSafepointStatistics\n-XX:PrintSafepointStatisticsCount=1\n- -XX:+UseParNewGC\n- -XX:+UseConcMarkSweepGC\n-XX:+PrintGCD...
Java
Apache License 2.0
questdb/questdb
fix: use ParallelGC for better overall performance on Linux
1
fix
null
67,494
02.12.2019 13:39:12
-3,600
dfb1344ef3d4a730582e2db6ca91c6a49b2ebd36
refactor(router): add scope (back)
[ { "change_type": "ADD", "diff": "+import { IViewportScopeOptions, ViewportScope } from './viewport-scope';\n+import { RouteRecognizer, RouteHandler, ConfigurableRoute, RecognizeResult } from './route-recognizer';\n+import { IContainer } from '@aurelia/kernel';\n+import { IRenderContext, CustomElement, Custo...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add scope (back)
1
refactor
router
67,494
02.12.2019 13:51:19
-3,600
202edf908244be0753afa7123cc1e1c56f7c1c26
refactor(router): add createViewportInstruction to type resolvers
[ { "change_type": "MODIFY", "diff": "import { Constructable } from '@aurelia/kernel';\n-import { CustomElement } from '@aurelia/runtime';\n+import { CustomElement, IViewModel } from '@aurelia/runtime';\nimport { ComponentAppellation, IRouteableComponent, RouteableComponentType, IViewportInstruction, Navigati...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add createViewportInstruction to type resolvers
1
refactor
router
217,922
02.12.2019 13:53:45
-3,600
ba420f8e35537881df851fa76fb7f05c6af491e3
fix(fishing-data): fixed statuses tracking and various issues
[ { "change_type": "MODIFY", "diff": "import { DataReporter } from './data-reporter';\nimport { BehaviorSubject, combineLatest, merge, Observable } from 'rxjs';\nimport { ofPacketType } from '../rxjs/of-packet-type';\n-import { debounceTime, filter, map, shareReplay, startWith, withLatestFrom } from 'rxjs/ope...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(fishing-data): fixed statuses tracking and various issues Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
fishing-data
67,494
02.12.2019 13:54:01
-3,600
853f52a6001a7b253c80160db64c49e3f18dc5f5
refactor(router): use scope as connecting scope
[ { "change_type": "MODIFY", "diff": "-import { RouteRecognizer, RouteHandler, ConfigurableRoute, RecognizeResult } from './route-recognizer';\n-import { IContainer } from '@aurelia/kernel';\n-import { IRenderContext, CustomElement, CustomElementType } from '@aurelia/runtime';\n-import { IRoute, RouteableComp...
TypeScript
MIT License
aurelia/aurelia
refactor(router): use scope as connecting scope
1
refactor
router
866,394
02.12.2019 13:54:09
18,000
64ed733265d64443e6f8ef60f445f358dd849cd9
fix(expressive): adding component level overrides (partial)
[ { "change_type": "ADD", "diff": "+//\n+// Copyright IBM Corp. 2016, 2018\n+//\n+// This source code is licensed under the Apache-2.0 license found in the\n+// LICENSE file in the root directory of this source tree.\n+//\n+\n+@import 'carbon-components/scss/globals/scss/typography';\n+\n+//------------------...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(expressive): adding component level overrides (partial)
1
fix
expressive
104,963
02.12.2019 13:54:54
-3,600
f881f5e912605a3c9414d5fabd9b8c0e20ffbd8a
test: add low contrast snapshot tests for cv toast notification
[ { "change_type": "MODIFY", "diff": "@@ -51,3 +51,55 @@ exports[`CvToastNotification should render correctly 4`] = `\n</button>\n</div>\n`;\n+\n+exports[`CvToastNotification should render correctly when low contrast is used 1`] = `\n+<div data-notification=\"\" role=\"alert\" class=\"cv-notifiation bx--toast...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
test: add low contrast snapshot tests for cv toast notification (#728)
1
test
null
551,636
02.12.2019 13:57:41
0
3c42d5c39bc6631deb2cdb73f3357178138a86fa
fix: use ParallelGC for better overall performance on Windows
[ { "change_type": "MODIFY", "diff": "Binary files a/core/src/main/bin/questdb.exe and b/core/src/main/bin/questdb.exe differ\n", "new_path": "core/src/main/bin/questdb.exe", "old_path": "core/src/main/bin/questdb.exe" }, { "change_type": "MODIFY", "diff": "@@ -62,8 +62,6 @@ void buildJava...
Java
Apache License 2.0
questdb/questdb
fix: use ParallelGC for better overall performance on Windows
1
fix
null
531,793
02.12.2019 14:15:42
0
ac6f8c0093062dd05b644a3a712a4b88e8ebafd3
fix(build): don't upgrade packages during docker builds
[ { "change_type": "MODIFY", "diff": "-FROM node:12.13.1-alpine3.9 as nodejs-builder\n-RUN apk update && apk upgrade && apk add --update make git\n+FROM node:12.13.1-alpine as nodejs-builder\n+RUN apk add make git\nCOPY Makefile /src/Makefile\nCOPY ui /src/ui\nRUN make -C /src ui\nFROM golang:1.13.4-alpine as...
TypeScript
Apache License 2.0
prymitive/karma
fix(build): don't upgrade packages during docker builds
1
fix
build
815,788
02.12.2019 14:16:37
18,000
44164228c533cf5a054014f9bf70421e1dccc7a2
feat: group selection no longer affects disabled items
[ { "change_type": "MODIFY", "diff": "@@ -79,6 +79,33 @@ describe('ItemsList', () => {\nexpect(list.selectedItems.length).toBe(2);\n});\n+\n+ it('should not select disabled items when selecting group', () => {\n+ cmp.groupBy = 'groupKey';\n+ list.setItems([\n+ { label: 'K1', val: 'V1', groupKey: 'G1' },\n+ { ...
TypeScript
MIT License
ng-select/ng-select
feat: group selection no longer affects disabled items (#1434) (#1437)
1
feat
null
104,848
02.12.2019 14:37:07
21,600
e9d826c27b7f07d27e44d14f9bd5ec2216dcbbf1
fix(listcard): remove extra slash
[ { "change_type": "MODIFY", "diff": "@@ -181,5 +181,5 @@ $deprecations--message: 'Deprecated code was found, this code will be removed be\n@import 'components/Dashboard/dashboard';\n@import 'components/Header/header';\n@import 'components/PageWizard/page-wizard';\n-@import 'components/ListCard//listCard';\n+...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(listcard): remove extra slash
1
fix
listcard
866,401
02.12.2019 14:46:25
10,800
61332d0053ef94541a84338dc5b4be33db23eaa8
feat(pattern): card array first implementation
[ { "change_type": "DELETE", "diff": "Binary files a/.yarn/offline-mirror/@carbon-ibmdotcom-react-1.1.1.tgz and /dev/null differ\n", "new_path": ".yarn/offline-mirror/@carbon-ibmdotcom-react-1.1.1.tgz", "old_path": ".yarn/offline-mirror/@carbon-ibmdotcom-react-1.1.1.tgz" }, { "change_type": "M...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(pattern): card array first implementation
1
feat
pattern
438,972
02.12.2019 14:55:54
-3,600
e45fb33147f7194bff6f5900d09d3b7a16e0ca0f
feat(line): Intent to ship bubble/line/scatter zerobased Implementation for bubble/line/scatter types zerobased option. Fix Close
[ { "change_type": "MODIFY", "diff": "@@ -35,3 +35,4 @@ Kimberly Baum <https://github.com/kimberlybaum>\nDylan Praul <dylan.praul@gmail.com>\nChristophe Coevoet <stof@notk.org>\nJung Hoon Park <jhpark@neurophet.com>\n+Kamil Michalski <Kamil.Michalski@hksinformatik.de>\n", "new_path": "AUTHORS.txt", "o...
TypeScript
MIT License
naver/billboard.js
feat(line): Intent to ship bubble/line/scatter zerobased Implementation for bubble/line/scatter types zerobased option. Fix #1149 Close #1150
1
feat
line
711,597
02.12.2019 15:01:41
-3,600
31ef93e73249e7a3f61739a1af38a2735544fedd
fix(docs): Fix typo Closes
[ { "change_type": "MODIFY", "diff": "@@ -150,7 +150,7 @@ export class RandomCatPlugin {}\n### Step 7: Extend the GraphQL API\n-Now that we've defined the new mutation and we have a resolver capable of handling it, we just need to tell Vendure to extend the API. This is done with the [`adminApiExtensions` met...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(docs): Fix typo Closes #220
1
fix
docs
276,946
02.12.2019 15:15:52
10,800
aa0ee25f77a5076a583581ba13f646fb27723197
refactor(yoga/doc): extract GlobalStyle component
[ { "change_type": "ADD", "diff": "+import { bool } from 'prop-types';\n+import { createGlobalStyle } from 'styled-components';\n+\n+const GlobalStyle = createGlobalStyle(\n+ ({ overflow }) => `\n+ #gatsby-focus-wrapper, #___gatsby {\n+ height: 100%;\n+ }\n+\n+ html, body {\n+ color: #666;\n+ font-family: 'ne...
JavaScript
MIT License
gympass/yoga
refactor(yoga/doc): extract GlobalStyle component
1
refactor
yoga/doc
276,946
02.12.2019 15:17:00
10,800
4d6006d9f778f583337158b9ec5d273b07e5163f
feat(yoga/doc): create yoga home page
[ { "change_type": "DELETE", "diff": "-<Home />\n", "new_path": null, "old_path": "packages/doc/content/index.mdx" }, { "change_type": "MODIFY", "diff": "@@ -12,7 +12,6 @@ import {\nInlineCode,\nTabbedView,\nTab,\n- Home,\n} from '..';\nconst customComponents = {\n@@ -34,12 +33,11 @@ const...
JavaScript
MIT License
gympass/yoga
feat(yoga/doc): create yoga home page
1
feat
yoga/doc
304,866
02.12.2019 15:18:12
28,800
a0ee02656b60321890e0084dd9fe8035599e65bc
fix(semantic): add bytes monotype to Rust semantic module
[ { "change_type": "MODIFY", "diff": "@@ -102,11 +102,12 @@ pub enum Type {\nDuration = 5,\nTime = 6,\nRegexp = 7,\n+ Bytes = 8,\n}\nconst ENUM_MIN_TYPE: u8 = 0;\n-const ENUM_MAX_TYPE: u8 = 7;\n+const ENUM_MAX_TYPE: u8 = 8;\nimpl<'a> flatbuffers::Follow<'a> for Type {\ntype Inner = Self;\n@@ -140,7 +141,7 @@ ...
Go
MIT License
influxdata/flux
fix(semantic): add bytes monotype to Rust semantic module (#2213)
1
fix
semantic
711,597
02.12.2019 15:23:50
-3,600
ba27360260bf6776bab9c92d221631cc0e1713cd
fix(admin-ui): Make Channel zones required in ChannelDetailComponent Closes
[ { "change_type": "MODIFY", "diff": "@@ -426,8 +426,8 @@ export type CreateChannelInput = {\ndefaultLanguageCode: LanguageCode,\npricesIncludeTax: Scalars['Boolean'],\ncurrencyCode: CurrencyCode,\n- defaultTaxZoneId?: Maybe<Scalars['ID']>,\n- defaultShippingZoneId?: Maybe<Scalars['ID']>,\n+ defaultTaxZoneId:...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Make Channel zones required in ChannelDetailComponent Closes #218
1
fix
admin-ui
277,000
02.12.2019 15:33:00
10,800
1c91ac6cf80e8e4ee7498208baa70860cb210e8d
fix(checkbox): removing accessibility role from checkbox
[ { "change_type": "MODIFY", "diff": "@@ -69,7 +69,6 @@ const Checkbox = ({\n<View>\n<TouchableWithoutFeedback\n{...rest}\n- accessibilityRole=\"checkbox\"\ndisabled={disabled}\nonPressIn={e => {\nsetPressed(true);\n", "new_path": "packages/yoga/src/Checkbox/native/Checkbox.jsx", "old_path": "packages...
JavaScript
MIT License
gympass/yoga
fix(checkbox): removing accessibility role from checkbox
1
fix
checkbox
276,946
02.12.2019 15:35:38
10,800
38b4c544f1987ec0b15520267bfe2d86e6f352fe
chore(yoga/doc): add github link on version number
[ { "change_type": "MODIFY", "diff": "@@ -89,7 +89,11 @@ export default () => (\n<Wrapper>\n<Header>\n<YogaLogo width={78} height={48} />\n- <Version href=\"#\" rel=\"noopener noreferrer\">\n+ <Version\n+ href=\"https://github.com/gympass/yoga\"\n+ rel=\"noopener noreferrer\"\n+ target=\"_blank\"\n+ >\nv{pkg....
JavaScript
MIT License
gympass/yoga
chore(yoga/doc): add github link on version number
1
chore
yoga/doc
866,415
02.12.2019 15:38:58
18,000
b99f4323061f6635920f6828c70e7fd1ed1f3c11
chore(readme): leadspace center readme
[ { "change_type": "MODIFY", "diff": "@@ -86,7 +86,7 @@ const LeadSpaceCentered = ({\nconst background =\nimage && !isMobile\n- ? { backgroundImage: `url(${image})` }\n+ ? { backgroundImage: `url(${image.url})` }\n: { backgroundImage: 'none' };\nreturn featureFlag(\n@@ -104,7 +104,7 @@ const LeadSpaceCentered...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(readme): leadspace center readme
1
chore
readme
276,989
02.12.2019 15:57:03
10,800
acf84ab289fc17e53bf89dd605775fb94096d610
refactor(prepublish): move prepublish file to scripts root folder
[ { "change_type": "MODIFY", "diff": "\"build:cjs\": \"NODE_ENV=cjs babel ./src --out-dir dist/cjs\",\n\"build:esm\": \"NODE_ENV=esm babel ./src --out-dir dist/esm\",\n\"prebuild\": \"rm -rf ./dist\",\n- \"prepublishOnly\": \"node ../../prepublish.js\"\n+ \"prepublishOnly\": \"node ../../scripts/prepublish.js...
JavaScript
MIT License
gympass/yoga
refactor(prepublish): move prepublish file to scripts root folder
1
refactor
prepublish
276,989
02.12.2019 15:58:36
10,800
e310f00cabde77c547623fbefa8451b5406ac8f4
refactor(slack): move notify script to scripts root folder
[ { "change_type": "MODIFY", "diff": "\"eslint-plugin-jsx-a11y\": \"^6.2.3\",\n\"eslint-plugin-prettier\": \"3.1.0\",\n\"fs-extra\": \"^8.1.0\",\n+ \"git-last-commit\": \"^1.0.0\",\n\"husky\": \"3.0.5\",\n\"jest\": \"^24.9.0\",\n\"jest-styled-components\": \"^6.3.3\",\n", "new_path": "package.json", "...
JavaScript
MIT License
gympass/yoga
refactor(slack): move notify script to scripts root folder
1
refactor
slack
276,989
02.12.2019 16:03:40
10,800
eac250b459d4fd48bb54d528ac70fda39c80c69c
refactor(yoga/package.json): fix npm notify script
[ { "change_type": "MODIFY", "diff": "\"build:native\": \"NODE_ENV=native babel ./src --out-dir dist/cjs\",\n\"prebuild\": \"rm -rf ./dist\",\n\"prepublishOnly\": \"node ../../scripts/prepublish.js\",\n- \"postpublish\": \"lerna run deploy --scope=@gympass/yoga-doc && node scripts/notify.js\"\n+ \"postpublish...
JavaScript
MIT License
gympass/yoga
refactor(yoga/package.json): fix npm notify script
1
refactor
yoga/package.json
711,597
02.12.2019 16:04:46
-3,600
8f2d034e97028dfd34bb52ef3f8a0cbda52b98d3
fix(core): Use "double precision" as column type for float custom fields "double precision" is an alias for "double" in MySQL and is also supported by Postgres. Closes
[ { "change_type": "MODIFY", "diff": "@@ -62,9 +62,7 @@ function registerCustomFieldsForEntity(\nconst length = customField.length || 255;\nif (MAX_STRING_LENGTH < length) {\nthrow new Error(\n- `ERROR: The \"length\" property of the custom field \"${\n- customField.name\n- }\" is greater than the maximum all...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Use "double precision" as column type for float custom fields "double precision" is an alias for "double" in MySQL and is also supported by Postgres. Closes #217
1
fix
core
866,415
02.12.2019 16:24:48
18,000
f12ab12be9c1264feda273bf2f2a9984ed8f167f
chore(readme): readme for leadspacecenter scss
[ { "change_type": "MODIFY", "diff": "@@ -55,11 +55,12 @@ DDS_LEADSPACE_CENTERED=true\n## Props\n| Name | Required | Data Type | Default Value | Description |\n-| --------- | -------- | --------- | -------------- | -------------------------- |\n+| ---------- | -------- | --------- | -------------- | ---------...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(readme): readme for leadspacecenter scss
1
chore
readme
866,415
02.12.2019 16:37:43
18,000
7b4f89e898b49017266ba5b876865439d48abc34
fix(leadspace): leadspace background theme
[ { "change_type": "MODIFY", "diff": "@@ -30,6 +30,7 @@ $btn-min-width: 26;\nbackground-color: rgba($ui-background, 0.75);\n@include carbon--breakpoint(md) {\n+ background-color: transparent;\nbackground-image: linear-gradient(\nto right,\nrgba($ui-background, 0.95),\n@@ -79,14 +80,8 @@ $btn-min-width: 26;\nm...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(leadspace): leadspace background theme
1
fix
leadspace
276,946
02.12.2019 16:53:58
10,800
618162b922e95314ceb40ba68a2c29e5376a7541
chore(yoga/doc): add /components redirect to /components/getting-started
[ { "change_type": "DELETE", "diff": "----\n-title: 'Components'\n-metaTitle: 'Components List Page'\n-metaDescription: 'This is the list of Components'\n----\n-\n-# Components List for Web Apps\n", "new_path": null, "old_path": "packages/doc/content/components/index.md" }, { "change_type": "A...
JavaScript
MIT License
gympass/yoga
chore(yoga/doc): add /components redirect to /components/getting-started
1
chore
yoga/doc
276,946
02.12.2019 16:59:11
10,800
379678011347e19d640fe70fd8fa4b1aeb542323
chore(yoga/doc): add redirect
[ { "change_type": "MODIFY", "diff": "@@ -4,4 +4,8 @@ metaTitle: 'Components List Page'\nmetaDescription: 'This is the list of Components'\n---\n-# Components List for Web Apps\n+<div style={{ display: 'none' }}>\n+ {typeof window != 'undefined'\n+ ? (window.location = '/components/getting-started')\n+ : ''}\...
JavaScript
MIT License
gympass/yoga
chore(yoga/doc): add redirect
1
chore
yoga/doc
217,922
02.12.2019 17:13:56
-3,600
a9f872eacf969f8b97b7ed955419136333f95330
feat(db): added fish links inside bait db pages
[ { "change_type": "MODIFY", "diff": "</ng-template>\n<ng-template #classicItemDetails>\n<app-db-comments *ngIf=\"settings.dbCommentsPosition === 'TOP'\" [id]=\"xivapiItem.ID\" type=\"item\"></app-db-comments>\n- <ng-container *ngTemplateOutlet=\"usedForTpl\"></ng-container>\n<ng-container *ngTemplateOutlet=\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(db): added fish links inside bait db pages Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
feat
db
276,946
02.12.2019 17:22:54
10,800
2a13a78c6227385f08b68571918905735df1f94d
chore(yoga/doc): create redirect through gatsby navigate function
[ { "change_type": "MODIFY", "diff": "@@ -4,8 +4,4 @@ metaTitle: 'Components List Page'\nmetaDescription: 'This is the list of Components'\n---\n-<div style={{ display: 'none' }}>\n- {typeof window != 'undefined'\n- ? (window.location = '/components/getting-started')\n- : ''}\n-</div>\n+<Redirect url=\"/compo...
JavaScript
MIT License
gympass/yoga
chore(yoga/doc): create redirect through gatsby navigate function
1
chore
yoga/doc
722,013
02.12.2019 17:33:56
21,600
5b2d77210091b7beec9c593356501e1da666a20f
refactor(docgen): add test and function for values
[ { "change_type": "MODIFY", "diff": "@@ -379,6 +379,38 @@ describe('propHandler', () => {\n})\n})\n+ describe('@values tag parsing', () => {\n+ it('should parse the @values tag as its own', () => {\n+ const src = `\n+ export default {\n+ props: {\n+ /**\n+ * color of the component\n+ * @values dark, light\n+...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
refactor(docgen): add test and function for values
1
refactor
docgen
217,922
02.12.2019 17:34:22
-3,600
b143e4b36cd86c0da3812c8fe62e6dbfb1a2a0a5
fix(desktop): fixed an issue with desktop app creating too many firewall entries
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,12 @@ module.exports.start = function(win, config, verbose, winpcap) {\nlog.info('elevated', elevated);\nif (elevated) {\nlet line = 0;\n+\nexec('netsh advfirewall firewall show rule name=\"FFXIVTeamcraft\"', (err, stdout) => {\n+ if ((stdout.match(/FFXIVTeam...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): fixed an issue with desktop app creating too many firewall entries Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
fix
desktop
276,946
02.12.2019 17:34:45
10,800
ee6b6721bdfa5b199d0254942564665b2e6f98e9
chore(yoga/doc): add a initial slash in navigation links
[ { "change_type": "MODIFY", "diff": "@@ -132,7 +132,7 @@ const ListItem = ({ title, url, childs, level, toggleMenu }) => {\nactive={typeof window !== 'undefined' && window.location.pathname === url}\n>\n<AnchorLink\n- to={[...new Set(url.split('/').filter(item => item))].join('/')}\n+ to={`/${[...new Set(url...
JavaScript
MIT License
gympass/yoga
chore(yoga/doc): add a initial slash in navigation links
1
chore
yoga/doc
217,922
02.12.2019 17:54:45
-3,600
e758882f5f2ff018e1a6dd9357a9763e9a06ea1a
feat(desktop): switching to nsis-web to enable differential updates (testing that)
[ { "change_type": "MODIFY", "diff": "\"icon\": \"./tools/build/icon.ico\",\n\"publisherName\": \"FFXIV Teamcraft\",\n\"requestedExecutionLevel\": \"highestAvailable\",\n+ \"target\": \"nsis-web\",\n\"publish\": {\n\"provider\": \"github\",\n\"releaseType\": \"release\"\n}\n},\n- \"nsis\": {\n+ \"nsisWeb\": {...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(desktop): switching to nsis-web to enable differential updates (testing that) Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
feat
desktop
722,013
02.12.2019 17:55:42
21,600
7d315e371d0356f2cf90d80d03eb5bfe36b7bcbc
refactor(docgen): finish previous refactor
[ { "change_type": "MODIFY", "diff": "@@ -54,7 +54,7 @@ export default async function propHandler(documentation: Documentation, path: No\npropDescriptor.tags = transformTagsIntoObject(jsDocTags)\n}\n- parseValuesFromTags(propDescriptor.tags)\n+ extractValuesFromTags(propDescriptor)\nif (bt.isArrayExpression(p...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
refactor(docgen): finish previous refactor
1
refactor
docgen
217,922
02.12.2019 18:16:36
-3,600
d6ea001c3a11b582117d878523f31eee8c3ab0d1
chore: change artifact name for nsis web target
[ { "change_type": "MODIFY", "diff": "\"include\": \"./tools/build/nsis/include.nsh\",\n\"allowToChangeInstallationDirectory\": true,\n\"oneClick\": false,\n- \"differentialPackage\": true\n+ \"differentialPackage\": true,\n+ \"artifactName\": \"${productName}-setup.${ext}\"\n}\n},\n\"scripts\": {\n", "ne...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: change artifact name for nsis web target Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
471,528
02.12.2019 18:45:23
-3,600
0083c8438d5ed699479f7c455bde1256c288508f
docs(publishing): update netlify deploy configuration
[ { "change_type": "MODIFY", "diff": "@@ -13,8 +13,8 @@ Head over to [netlify](https://www.netlify.com/) and register.\nSelect your github account and repository.\nIf you follow these recommendations all you need to do is\n-- Build command: `npm run site:build`\n-- Publish directory: `_site`\n+- Build command...
JavaScript
MIT License
open-wc/open-wc
docs(publishing): update netlify deploy configuration (#1035)
1
docs
publishing
104,963
02.12.2019 19:09:15
-3,600
8c86a1dda8c2fc4a0762c717a9a050ef612ea705
test: add tests for cv-text-input
[ { "change_type": "ADD", "diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`CvTextInput should render correctly 1`] = `\n+<div class=\"cv-text-input bx--form-item\"><label for=\"1\" class=\"bx--label\">test label</label>\n+ <!---->\n+ <div class=\"bx--text-input__field-wrapper\">\n+ <!----> <...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
test: add tests for cv-text-input (#730)
1
test
null
471,527
02.12.2019 19:36:33
-3,600
8c95d9779671e95a35efae55aab46084b74c4c1e
fix(demoing-storybook): typing in inputs shall not change storybook ui
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,7 @@ export default {\nexport const heading = () =>\nhtml`\n<h1>Hello World</h1>\n+ <input type=\"text\" />\n`;\nexport const card = () =>\n", "new_path": "packages/demoing-storybook/demo/stories/csf.stories.js", "old_path": "packages/demoing-storyboo...
JavaScript
MIT License
open-wc/open-wc
fix(demoing-storybook): typing in inputs shall not change storybook ui
1
fix
demoing-storybook
503,918
02.12.2019 20:40:56
-7,200
9ce7eff5b0a6e9d875d4b049409db2550199e03f
fix(select): make integration tests pass Add more options to show the "1 more" chip Update CSS selector to click the clearn button Workaround to Cypress unable to click the label option
[ { "change_type": "MODIFY", "diff": "@@ -25,29 +25,11 @@ describe('Select Test', () => {\n.should('exist');\n});\n- it('Verify Checkbox Select', () => {\n- cy.get('#check-select').click();\n- cy.get('.pf-c-form__fieldset > :nth-child(1)').click();\n- cy.get('#check-select')\n- .contains('1')\n- .should('exis...
TypeScript
MIT License
patternfly/patternfly-react
fix(select): make integration tests pass (#3359) - Add more options to show the "1 more" chip - Update CSS selector to click the clearn button - Workaround to Cypress unable to click the label option Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
1
fix
select
503,918
02.12.2019 21:00:00
-7,200
1e1ca741db3bcf31614365fa75ea1947abbccf8e
feat(textinput): support passing a ref
[ { "change_type": "MODIFY", "diff": "@@ -55,19 +55,12 @@ exports[`Renders ContextSelector open 1`] = `\nclassName=\"pf-c-context-selector__menu-input\"\n>\n<Component>\n- <TextInput\n- aria-label={null}\n+ <ForwardRef\naria-labelledby=\"pf-context-selector-search-button-id-0\"\n- className=\"\"\n- isDisabled...
TypeScript
MIT License
patternfly/patternfly-react
feat(textinput): support passing a ref (#3168) Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
1
feat
textinput
104,818
02.12.2019 21:03:51
21,600
23e87ffbacedd84cbdc0ae0a0e21434e3c9b9c1e
feat(card): support lazyLoading for large timeseries graphs
[ { "change_type": "MODIFY", "diff": "import React, { useState } from 'react';\nimport uuidv1 from 'uuid/v1';\nimport toClass from 'recompose/toClass';\n+import VisibilitySensor from 'react-visibility-sensor';\nimport {\nToolbar,\nToolbarItem,\n@@ -127,6 +128,8 @@ const defaultProps = {\n/** In editable mode ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(card): support lazyLoading for large timeseries graphs
1
feat
card
722,107
02.12.2019 22:14:54
-10,800
4b7f8b6e55d49cc5d27ca9c2c47abd18edcc965f
fix(docgen): support on classPropHandler
[ { "change_type": "MODIFY", "diff": "import * as bt from '@babel/types'\nimport { NodePath } from 'ast-types'\n-import Documentation, { BlockTag, DocBlockTags } from '../Documentation'\n+import Documentation, { BlockTag, DocBlockTags, ParamTag } from '../Documentation'\nimport getDocblock from '../utils/getD...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix(docgen): support @values on classPropHandler
1
fix
docgen
551,636
02.12.2019 22:29:21
0
806b1b6d1ef2dcfed399e35502423c3247340379
fix: NPE when reloading TableReader under some conditions
[ { "change_type": "MODIFY", "diff": "@@ -43,10 +43,10 @@ public class TableReader implements Closeable {\nprivate static final PartitionPathGenerator MONTH_GEN = TableReader::pathGenMonth;\nprivate static final PartitionPathGenerator DAY_GEN = TableReader::pathGenDay;\nprivate static final PartitionPathGener...
Java
Apache License 2.0
questdb/questdb
fix: NPE when reloading TableReader under some conditions
1
fix
null
217,885
02.12.2019 23:57:08
28,800
0ed9ab26a84cb09d14121ffd369fca4953930fb0
chore: Update node-machina-ffxiv to 2.29.1 Update KR support to 5.0
[ { "change_type": "MODIFY", "diff": "}\n},\n\"node-machina-ffxiv\": {\n- \"version\": \"2.28.11\",\n- \"resolved\": \"https://registry.npmjs.org/node-machina-ffxiv/-/node-machina-ffxiv-2.28.11.tgz\",\n- \"integrity\": \"sha512-uaOprP1yUe4tEq9fdRgiFz9/Tn3bz2/qAUNp49oTB0m+SDCiCjzv4bPJTDfnNPMOJH2c1tQzLECyHuW2yx...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: Update node-machina-ffxiv to 2.29.1 Update KR support to 5.0
1
chore
null
67,476
03.12.2019 00:00:04
-3,600
07caf5e842baad54de4c97a024ec97f819bf1d25
chore(aot): assign intrinsics to the correct properties
[ { "change_type": "MODIFY", "diff": "@@ -227,6 +227,13 @@ export class $AsyncGeneratorPrototype extends $Object<'%AsyncGeneratorPrototype%\n}\nexport class $AsyncGeneratorPrototype_next extends $BuiltinFunction<'AsyncGenerator.prototype.next'> {\n+ public constructor(\n+ realm: Realm,\n+ proto: $FunctionProt...
TypeScript
MIT License
aurelia/aurelia
chore(aot): assign intrinsics to the correct properties
1
chore
aot
67,476
03.12.2019 02:10:37
-3,600
27f0b29b012a1952986ab967638c9b7e41cc7030
feat(aot): add %Proxy% global
[ { "change_type": "MODIFY", "diff": "@@ -54,8 +54,8 @@ import {\n// http://www.ecma-international.org/ecma-262/#sec-proxy-object-internal-methods-and-internal-slots\nexport class $ProxyExoticObject extends $Object<'ProxyExoticObject'> {\n- public readonly '[[ProxyHandler]]': $AnyObject | $Null;\n- public rea...
TypeScript
MIT License
aurelia/aurelia
feat(aot): add %Proxy% global
1
feat
aot
67,494
03.12.2019 02:45:13
-3,600
bdfc9d767b9eb4b09a9424b43b170f6250a4662d
refactor(router): use scope, viewport scope and Closest in container
[ { "change_type": "MODIFY", "diff": "// tslint:disable:max-line-length\n// tslint:disable:comment-format\nimport { DI, IContainer, Key, Reporter, Registration, Metadata } from '@aurelia/kernel';\n-import { Aurelia, IController, IRenderContext, IViewModel, CustomElement, INode, DOM } from '@aurelia/runtime';\...
TypeScript
MIT License
aurelia/aurelia
refactor(router): use scope, viewport scope and Closest in container
1
refactor
router
67,494
03.12.2019 02:47:43
-3,600
f71a0a7dbff1b1434424e097f4a588a21bd28a2d
refactor(router): remove default viewports and add stale check
[ { "change_type": "MODIFY", "diff": "@@ -19,6 +19,7 @@ import { HookManager, IHookDefinition, HookIdentity, HookFunction, IHookOptions,\nimport { Scope, IScopeOwner } from './scope';\nimport { CustomElementType } from '@aurelia/runtime';\nimport { IViewportScopeOptions, ViewportScope } from './viewport-scope...
TypeScript
MIT License
aurelia/aurelia
refactor(router): remove default viewports and add stale check
1
refactor
router
67,494
03.12.2019 02:49:22
-3,600
3b1d3a678bf4097e2a9fb9d9ec4a52c385090180
refactor(router): add viewport instruction collection (unused)
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,6 @@ import { HookManager, IHookDefinition, HookIdentity, HookFunction, IHookOptions,\nimport { Scope, IScopeOwner } from './scope';\nimport { CustomElementType } from '@aurelia/runtime';\nimport { IViewportScopeOptions, ViewportScope } from './viewport-scope...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add viewport instruction collection (unused)
1
refactor
router
67,494
03.12.2019 02:56:49
-3,600
e7f4d7bcbd051e8ccac117aaf9188363f9d9a185
refactor(router): use creating and containers in custom elements
[ { "change_type": "MODIFY", "diff": "import {\nbindable,\n+ CustomElementType,\nIController,\nINode,\nIRenderContext,\n+ IRenderingEngine,\nLifecycleFlags,\ncustomElement,\nCustomElement,\n+ CustomElementDefinition,\n+ IDOM,\n+ ITemplate,\n} from '@aurelia/runtime';\nimport { IRouter } from '../router';\n-im...
TypeScript
MIT License
aurelia/aurelia
refactor(router): use creating and containers in custom elements
1
refactor
router
67,476
03.12.2019 02:59:19
-3,600
9c4a562a82b81e712ed6b68c7bfb0c8fba9a1f10
feat(aot): add %Reflect% global
[ { "change_type": "MODIFY", "diff": "@@ -122,8 +122,25 @@ import {\n$AsyncGeneratorPrototype_throw,\n} from './globals/async-generator-function';\nimport {\n- $ProxyConstructor, $Proxy_revocable,\n+ $ProxyConstructor,\n+ $Proxy_revocable,\n} from './globals/proxy';\n+import {\n+ $Reflect,\n+ $Reflect_apply,\...
TypeScript
MIT License
aurelia/aurelia
feat(aot): add %Reflect% global
1
feat
aot