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 | 17.02.2019 16:54:48 | -3,600 | 7e43a9c1c7c9e0603631827c3bd805e7abd2e5d0 | refactor(router): implement instruction resolver in find viewports in scope | [
{
"change_type": "MODIFY",
"diff": "@@ -39,24 +39,32 @@ export class InstructionResolver {\n}\npublic parseViewportInstruction(instruction: string): ViewportInstruction {\n- let component, viewport, parameters;\n+ let component, viewport, parameters, scope;\nconst [componentPart, rest] = instruction.split(t... | TypeScript | MIT License | aurelia/aurelia | refactor(router): implement instruction resolver in find viewports in scope | 1 | refactor | router |
679,913 | 17.02.2019 17:03:31 | 0 | f227107446301df5fbb0873f4232ea92f01df5a6 | feat(bitfield): add/update resize() & setAt(), add doc strings | [
{
"change_type": "MODIFY",
"diff": "@@ -13,19 +13,46 @@ export class BitField {\nthis.data = new Uint32Array(this.n >>> 5);\n}\n+ /**\n+ * Resizes bitfield to new size given (aligned to multiples of 32).\n+ *\n+ * @param n\n+ */\n+ resize(n: number) {\n+ n = align(n, 32);\n+ const dest = new Uint32Array(n >... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(bitfield): add/update resize() & setAt(), add doc strings | 1 | feat | bitfield |
679,913 | 17.02.2019 17:21:45 | 0 | dae97ffb2d5d085b3f60995bd097d88c3b7efee4 | feat(adjacency): add bitmatrix edge counting, add/fix toDot() impls, add tests | [
{
"change_type": "MODIFY",
"diff": "@@ -25,11 +25,13 @@ export class AdjacencyBitMatrix implements\n}\nmat: BitMatrix;\n- undirected: boolean;\n+ protected undirected: boolean;\n+ protected numE: number;\nconstructor(n: number, undirected = false) {\nthis.mat = new BitMatrix(n);\nthis.undirected = undirecte... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(adjacency): add bitmatrix edge counting, add/fix toDot() impls, add tests | 1 | feat | adjacency |
67,494 | 17.02.2019 17:41:09 | -3,600 | 254dbe36aa82125868807173cf18c99856bc7c30 | refactor(router): remove IComponentViewport | [
{
"change_type": "MODIFY",
"diff": "@@ -5,7 +5,7 @@ import { InstructionResolver, IRouteSeparators } from './instruction-resolver';\nimport { AnchorEventInfo, LinkHandler } from './link-handler';\nimport { INavRoute, Nav } from './nav';\nimport { IParsedQuery, parseQuery } from './parser';\n-import { ChildC... | TypeScript | MIT License | aurelia/aurelia | refactor(router): remove IComponentViewport | 1 | refactor | router |
67,494 | 17.02.2019 17:43:50 | -3,600 | a6173db23e3105e26a0efc52797035c1527200a2 | refactor(router): clean up old find viewports in scope | [
{
"change_type": "MODIFY",
"diff": "@@ -82,13 +82,6 @@ export class Scope {\n// Configured viewport is ruling\nfor (const viewportPart in this.scopeViewportParts) {\nconst instruction = this.router.instructionResolver.parseViewportInstruction(viewportPart);\n-\n- // tslint:disable-next-line:no-commented-cod... | TypeScript | MIT License | aurelia/aurelia | refactor(router): clean up old find viewports in scope | 1 | refactor | router |
743,863 | 17.02.2019 18:45:33 | 28,800 | dfcaa688045562aaf85c0a07dd4ad7aedae61425 | test: slight edit to test wording | [
{
"change_type": "MODIFY",
"diff": "@@ -359,7 +359,7 @@ describe('Completion', () => {\n})\ndescribe('zsh', () => {\n- it('it returns a list of commands as completion suggestions', () => {\n+ it('returns a list of commands as completion suggestions', () => {\nprocess.env.SHELL = '/bin/zsh'\nconst r = checkU... | JavaScript | MIT License | yargs/yargs | test: slight edit to test wording | 1 | test | null |
67,494 | 17.02.2019 18:56:20 | -3,600 | 431a6203c02572ca39c98dcbce983ecb5868c6f8 | refactor(router): implement instruction resolver in scope | [
{
"change_type": "MODIFY",
"diff": "@@ -278,7 +278,7 @@ export class Scope {\n}\nparents.unshift(this.parent.scopeContext(full));\n- return parents.filter((value) => value && value.length).join(this.router.instructionResolver.separators.scope);\n+ return this.router.instructionResolver.stringifyScopedViewpo... | TypeScript | MIT License | aurelia/aurelia | refactor(router): implement instruction resolver in scope | 1 | refactor | router |
273,683 | 17.02.2019 20:55:15 | -3,600 | 7dafe6e4b5f6006f98f363e47d91749f0c507c5e | test: run tests serially in the current process | [
{
"change_type": "MODIFY",
"diff": "\"execa\": \"^1.0.0\",\n\"jest\": \"^23.1.0\",\n\"lerna\": \"^3.4.0\",\n- \"memfs\": \"^2.9.4\"\n+ \"memfs\": \"^2.9.4\",\n+ \"minimist\": \"^1.2.0\"\n},\n\"engines\": {\n\"node\": \">=8.3\",\n",
"new_path": "package.json",
"old_path": "package.json"
},
{
... | JavaScript | MIT License | gridsome/gridsome | test: run tests serially in the current process | 1 | test | null |
217,919 | 17.02.2019 20:56:14 | -28,800 | c1a80ebd7299e0a4050036dae395acefe7d09dd8 | fix: remove the unsupported zh search in garland and fix the wrong file name | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,7 @@ export class LocalizedDataService {\nconstructor(private http: HttpClient) {\nthis.http.get('./assets/data/items.json').subscribe(i => this.items = i);\n- this.http.get('./assets/data/zh-items-bk.json').subscribe(i => this.zhItems = i);\n+ this.http.get(... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: remove the unsupported zh search in garland and fix the wrong file name | 1 | fix | null |
679,913 | 17.02.2019 21:09:48 | 0 | a9b36405f70982650b5063ef3cf1685ead1cd843 | docs: update packae list (main readme) | [
{
"change_type": "MODIFY",
"diff": "@@ -100,9 +100,11 @@ packages) in the [examples](./examples) directory.\n| Project | Version | Changelog | Description |\n|-------------------------------------------------|---------------------------------------------------------------------------------------------------... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs: update packae list (main readme) | 1 | docs | null |
743,863 | 17.02.2019 21:19:48 | 28,800 | 545c7f15f67ece10ebd741427be2fac5a3e510e7 | test: slightly reworded one test | [
{
"change_type": "MODIFY",
"diff": "@@ -470,7 +470,8 @@ describe('Completion', () => {\nr.errors.length.should.equal(0)\nr.logs.should.include('--foo:bar')\n})\n- it('when using subcommands ensure early bailout if full command is typed', () => {\n+\n+ it('bails out early when full command matches', () => {\... | JavaScript | MIT License | yargs/yargs | test: slightly reworded one test | 1 | test | null |
679,913 | 17.02.2019 21:37:22 | 0 | 235b14fa92c3ed929ad33a6a65e049b40e227f21 | build(sparse): update tsconfig files | [
{
"change_type": "MODIFY",
"diff": "import * as assert from \"assert\";\n-import { SparseVec } from \"../src/vec\";\n-\n-import \"mocha\";\n+import { SparseVec } from \"../src\";\ndescribe(\"sparsevec\", function () {\nit(\"fromDense\", () => {\n",
"new_path": "packages/sparse/test/index.ts",
"old_p... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build(sparse): update tsconfig files | 1 | build | sparse |
679,913 | 17.02.2019 22:03:33 | 0 | 8414176d050292a9c9db10c5938fd1f4f7e1929d | test(adjacency): update tests | [
{
"change_type": "MODIFY",
"diff": "@@ -12,7 +12,6 @@ const edges: Pair<number, number>[] = [\ndescribe(\"adjacency (bitmatrix)\", () => {\nit(\"fromEdges, undirected\", () => {\nconst m = AdjacencyBitMatrix.fromEdges(6, edges, true);\n- console.log([...m.edges()]);\nassert.deepEqual(\nm.mat.data.slice(0, 6... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(adjacency): update tests | 1 | test | adjacency |
273,683 | 17.02.2019 22:07:41 | -3,600 | a26541aef4ca08cb3c7e00cf3a3273726ccb6319 | chore(filesystem): docs for references option | [
{
"change_type": "MODIFY",
"diff": "@@ -44,7 +44,28 @@ The GraphQL type and template name. A `.vue` file in `src/templates` must match\n- Type: `string`\n-Define a dynamic route if your source is able to have a certain pathname structure. This will generate only a single route for all nodes from this source... | JavaScript | MIT License | gridsome/gridsome | chore(filesystem): docs for references option | 1 | chore | filesystem |
67,494 | 17.02.2019 23:23:02 | -3,600 | bca6311e0eb82a5b537bf4d9c6715d782ec501a9 | feat(router): add route table & update extension points | [
{
"change_type": "ADD",
"diff": "+import { Router } from './router';\n+import { ViewportInstruction } from './viewport-instruction';\n+\n+/**\n+ * Class that handles routes configured into a route table\n+ */\n+export class RouteTable {\n+\n+ /**\n+ * Check a route against the route table and return the app... | TypeScript | MIT License | aurelia/aurelia | feat(router): add route table & update extension points | 1 | feat | router |
310,996 | 17.02.2019 23:39:24 | -3,600 | 679381499c0c7b04b639d5447a352233457def32 | docs(readme): mark v4 support as full | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ The Ionic command line interface (CLI) is your go-to tool for developing\n### CLI 4 is here! :tada:\n-- Ionic 4 support is **beta**. See [the docs](https://beta.ionicframework.com/docs/building/starting/) to get started (and don't forget `--type=angular`)!... | TypeScript | MIT License | ionic-team/ionic-cli | docs(readme): mark v4 support as full (#3868) | 1 | docs | readme |
67,494 | 17.02.2019 23:52:29 | -3,600 | 5d14750405cb3e6ab4e3e0c4b241b148c36d29a4 | chore(router): update comments | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ import { Router } from './router';\nimport { ViewportInstruction } from './viewport-instruction';\n/**\n- * Class that handles routes configured into a route table\n+ * Class that handles routes configured in a route table\n*/\nexport class RouteTable {\n@... | TypeScript | MIT License | aurelia/aurelia | chore(router): update comments | 1 | chore | router |
679,913 | 18.02.2019 00:04:25 | 0 | 5d6379ecfa0d98779d209cbd3e28468d13a6e4cc | build: add generate-doc-table script, update/fix upload-docs
update `sed` call in upload-docs to work w/ OSX 10.14.x | [
{
"change_type": "ADD",
"diff": "+#!/usr/bin/env node\n+const fs = require(\"fs\");\n+const h = require(\"@thi.ng/hiccup\");\n+const tx = require(\"@thi.ng/transducers\");\n+\n+const baseDir = \"./packages/\";\n+\n+const xform = tx.comp(\n+ tx.map((f) => baseDir + f),\n+ tx.filter((f) => f.indexOf(\".DS_Sto... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: add generate-doc-table script, update/fix upload-docs
- update `sed` call in upload-docs to work w/ OSX 10.14.x | 1 | build | null |
71,302 | 18.02.2019 02:05:39 | 28,800 | f78295885f1cedcf199d31e1b088986ef5c957d7 | feat(cfnspec): manually add VPCEndpointService
Fixes | [
{
"change_type": "ADD",
"diff": "+{\n+ \"ResourceTypes\": {\n+ \"AWS::EC2::VPCEndpointService\": {\n+ \"Documentation\": \"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html\",\n+ \"Properties\": {\n+ \"AcceptanceRequired\": {\n+ \"Documentation\": \"http... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(cfnspec): manually add VPCEndpointService (#1734)
Fixes #1659 | 1 | feat | cfnspec |
127,940 | 18.02.2019 09:42:43 | -7,200 | bbb45bbe94b6a0b1b22e7a7b2efa3d9ba04325be | chore(docs): implement wrapRootElement on SSR and browser | [
{
"change_type": "MODIFY",
"diff": "+import { wrapRootElement as wrap } from './src/wrap-root-element';\n+export const wrapRootElement = wrap;\n",
"new_path": "docs/gatsby-browser.js",
"old_path": "docs/gatsby-browser.js"
},
{
"change_type": "MODIFY",
"diff": "@@ -37,13 +37,9 @@ module.e... | TypeScript | MIT License | coingaming/moon-design | chore(docs): implement wrapRootElement on SSR and browser | 1 | chore | docs |
127,940 | 18.02.2019 10:15:02 | -7,200 | 5a1479902cd92188a52c7eb81edd1bb632b55c31 | feat(docs): add font preloading | [
{
"change_type": "MODIFY",
"diff": "\"dependencies\": {\n\"@emotion/core\": \"10.0.6\",\n\"@emotion/styled\": \"10.0.6\",\n+ \"@heathmont/sportsbet-assets\": \"^0.4.0\",\n\"@heathmont/sportsbet-components\": \"^0.4.0\",\n\"@heathmont/sportsbet-global\": \"^0.4.0\",\n\"@heathmont/sportsbet-tokens\": \"^0.4.0... | TypeScript | MIT License | coingaming/moon-design | feat(docs): add font preloading | 1 | feat | docs |
127,940 | 18.02.2019 10:26:02 | -7,200 | 4f46ffd69f2099ba29c19259b67f95cc7daed4f8 | fix(page): switch text-rendering method
Fixes bug on iOS not rendering fonts | [
{
"change_type": "MODIFY",
"diff": "@@ -18,6 +18,6 @@ export const page = css`\nfont-display: swap;\n-moz-osx-font-smoothing: grayscale; /* [2] */\n-webkit-font-smoothing: antialiased; /* [2] */\n- text-rendering: geometricPrecision;\n+ text-rendering: optimizeLegibility;\n}\n`;\n",
"new_path": "package... | TypeScript | MIT License | coingaming/moon-design | fix(page): switch text-rendering method
Fixes bug on iOS not rendering fonts | 1 | fix | page |
815,601 | 18.02.2019 10:31:54 | -28,800 | b058f12c04f197e78bfcaa1c8707476d1d4e591e | chore(deps): bump jsonrpc from 10.0.1 to 10.1.0 | [
{
"change_type": "MODIFY",
"diff": "@@ -572,11 +572,10 @@ dependencies = [\n\"faster-hex 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"flatbuffers 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)\... | Rust | MIT License | nervosnetwork/ckb | chore(deps): bump jsonrpc from 10.0.1 to 10.1.0 | 1 | chore | deps |
127,946 | 18.02.2019 11:21:23 | -7,200 | 1eccfc8c893ccc9918a2f4eb20fe1792ea966582 | build(docs): Run 'yarn build' for 'docs:build' | [
{
"change_type": "MODIFY",
"diff": "\"cashier\": \"yarn build && lerna run --scope @heathmont/sportsbet-wip-cashier --stream\",\n\"components\": \"lerna run --scope @heathmont/sportsbet-components --stream\",\n\"docs:dev\": \"concurrently -kill-others \\\"yarn build -w\\\" \\\"lerna run --scope docs --strea... | TypeScript | MIT License | coingaming/moon-design | build(docs): Run 'yarn build' for 'docs:build' | 1 | build | docs |
127,940 | 18.02.2019 11:39:26 | -7,200 | 3a1853eb4346f3e5d26c443d153289c14f93fbb8 | feat(form): create Form and FormItem components | [
{
"change_type": "ADD",
"diff": "+---\n+name: Form\n+menu: Components\n+route: /components/form\n+---\n+\n+import { Form } from '@heathmont/sportsbet-components';\n+import { PropsTable } from 'docs';\n+\n+# Form\n+\n+Handling user-submitted information.\n+\n+## Anatomy\n+\n+1. **Form**\n+\n+ The main form e... | TypeScript | MIT License | coingaming/moon-design | feat(form): create Form and FormItem components | 1 | feat | form |
679,913 | 18.02.2019 12:02:01 | 0 | 844106b0ddf025fae418caa9694efdee33f4f885 | refactor(sparse): extract common CSC/CSR ops & update class impls | [
{
"change_type": "ADD",
"diff": "+export const compress =\n+ (m: number, n: number, dense: ArrayLike<number>) => {\n+ const major: number[] = [0];\n+ const minor: number[] = [];\n+ const data: number[] = [];\n+ for (let i = 0, col = 0; col < n; col++) {\n+ let nnz = 0;\n+ for (let row = 0; row < m; i++ , ro... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(sparse): extract common CSC/CSR ops & update class impls | 1 | refactor | sparse |
679,913 | 18.02.2019 13:09:06 | 0 | ede28425a57b04831a4d94e223c9b4a1e7ad1f94 | feat(hiccup): add support for XML/DTD proc tags, update readme, tests | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,8 @@ This project is part of the\n- [Stateful component](#stateful-component)\n- [Component objects](#component-objects)\n- [Behavior control attributes](#behavior-control-attributes)\n+ - [Comments](#comments)\n+ - [XML / DTD processing instructions](#xml--d... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(hiccup): add support for XML/DTD proc tags, update readme, tests | 1 | feat | hiccup |
679,913 | 18.02.2019 13:10:03 | 0 | 2bd4f8c5a586f31170d2241deca0924b060d978a | build: update generate-doc-table script | [
{
"change_type": "MODIFY",
"diff": "@@ -37,8 +37,9 @@ const xform = tx.comp(\nconst packages = tx.transduce(xform, tx.push(), fs.readdirSync(baseDir));\n-fs.writeFileSync(\"docs.html\", \"<!DOCTYPE html>\\n\" + h.serialize(\n+fs.writeFileSync(\"docs.html\", h.serialize(\n[\n+ [\"!DOCTYPE\", \"html\"],\n[\"h... | TypeScript | Apache License 2.0 | thi-ng/umbrella | build: update generate-doc-table script | 1 | build | null |
127,946 | 18.02.2019 13:39:29 | -7,200 | 8fd75d464ec512bdbddda5a5e2ef30db4874ebb7 | build: rm -rf -> rimraf
Rimraf removes stuff asynchronously | [
{
"change_type": "MODIFY",
"diff": "\"dev\": \"yarn prebuild && gatsby develop\",\n\"build\": \"yarn prebuild && gatsby build\",\n\"serve\": \"gatsby serve\",\n- \"clean:assets\": \"rm -rf static/assets\",\n+ \"clean:assets\": \"rimraf static/assets\",\n\"build:assets\": \"mkdir -p static/assets/fonts && cp... | TypeScript | MIT License | coingaming/moon-design | build: rm -rf -> rimraf
Rimraf removes stuff asynchronously | 1 | build | null |
217,922 | 18.02.2019 13:54:06 | -3,600 | 1d501927673ae4df8cab00193b70d885307f5b8e | fix(vendors): fixed an issue with vendors extractor and some items | [
{
"change_type": "MODIFY",
"diff": "@@ -15,6 +15,7 @@ export class Item implements I18nData {\nid: number;\npatch: number;\n+ price?: number;\npatchCategory: number;\nilvl: number;\ncategory: number;\n",
"new_path": "apps/client/src/app/model/garland-tools/item.ts",
"old_path": "apps/client/src/app/... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(vendors): fixed an issue with vendors extractor and some items | 1 | fix | vendors |
127,946 | 18.02.2019 15:11:05 | -7,200 | 5887e7ba58c2e280db24f23481adba2023879c6f | fix(banner): banner component was fixed for docs | [
{
"change_type": "MODIFY",
"diff": "@@ -40,7 +40,6 @@ module.exports = {\n'**/(lib|node_modules)',\n'**/(__tests__|.cache)',\n'**/*.(ts|tsx|json)',\n- '**/banner',\n],\n},\n},\n",
"new_path": "docs/gatsby-config.js",
"old_path": "docs/gatsby-config.js"
},
{
"change_type": "MODIFY",
"diff... | TypeScript | MIT License | coingaming/moon-design | fix(banner): banner component was fixed for docs | 1 | fix | banner |
273,683 | 18.02.2019 15:19:22 | -3,600 | 424e6783d22abb0571ab7581d683740fe9111e6f | fix(build): create new Vue instance before each route | [
{
"change_type": "MODIFY",
"diff": "@@ -11,9 +11,6 @@ import Link from './components/Link'\nimport Image from './components/Image'\nimport ClientOnly from './components/ClientOnly'\n-const isServer = process.isServer\n-const isClient = process.isClient\n-\nVue.component('g-link', Link)\nVue.component('g-ima... | JavaScript | MIT License | gridsome/gridsome | fix(build): create new Vue instance before each route | 1 | fix | build |
815,590 | 18.02.2019 15:30:46 | -28,800 | cbd80b22c18b405cb4ddea431ff17452ffaad074 | feat: allow disable txs_verify_cache | [
{
"change_type": "MODIFY",
"diff": "@@ -11,7 +11,7 @@ use ckb_shared::error::SharedError;\nuse ckb_shared::index::ChainIndex;\nuse ckb_shared::shared::{ChainProvider, ChainState, Shared};\nuse ckb_shared::txo_set::TxoSetDiff;\n-use ckb_verification::{verify_transactions, BlockVerifier, Verifier};\n+use ckb_... | Rust | MIT License | nervosnetwork/ckb | feat: allow disable txs_verify_cache | 1 | feat | null |
503,965 | 18.02.2019 16:28:01 | 18,000 | e572db2642ea7ab0a0fd479e44ebaf82c78b0744 | build(fixes): Fix TravisCI PF3 doc deploys | [
{
"change_type": "MODIFY",
"diff": "-language: node_js\ndist: xenial\n+language: node_js\nnode_js:\n- \"8\" # Also included in .nvmrc, but this saves a few seconds\ncache:\nyarn: false\ndirectories:\n- node_modules # God help us...\n- - packages/patternfly-4/react-core/node_modules # PR docs\n- - packages/p... | TypeScript | MIT License | patternfly/patternfly-react | build(fixes): Fix TravisCI PF3 doc deploys (#1400) | 1 | build | fixes |
730,412 | 18.02.2019 16:42:32 | 0 | 3a07504291b0ba97c25e6ad9c12eb73904c3c9ba | chore(release): 0.1.420 | [
{
"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.420\"></a>\n+## [0.1.420](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.420 | 1 | chore | release |
815,601 | 18.02.2019 16:49:41 | -28,800 | 9ce0a6baadabc1d73a6db1fc9543cc7d91d25554 | refactor: tx proposal verification | [
{
"change_type": "MODIFY",
"diff": "@@ -392,6 +392,7 @@ dependencies = [\n\"numext-fixed-uint 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"occupied-capacity 0.7.0-pre\",\n\"serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)\",\n+ \"serde_bytes 0.10.4 (registry+https:... | Rust | MIT License | nervosnetwork/ckb | refactor: tx proposal verification | 1 | refactor | null |
127,940 | 18.02.2019 17:02:11 | -7,200 | 03a258bc7cd4d92962e96cbcce4de66eafd908fa | chore(label): implement Form in Label example | [
{
"change_type": "MODIFY",
"diff": "@@ -31,7 +31,8 @@ On larger screens, Labels and inputs can be displayed alongside eachother via th\nThe input's [`flex-grow`](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow) value can be modified via `inputGrow`.\n```jsx react-live\n-<div>\n+<Form legend=\"Fle... | TypeScript | MIT License | coingaming/moon-design | chore(label): implement Form in Label example | 1 | chore | label |
127,940 | 18.02.2019 17:03:09 | -7,200 | 5342832f776f85c041402449adafd6b43edfab26 | feat(global): implement vertical and horizontal rhythm | [
{
"change_type": "MODIFY",
"diff": "},\n\"dependencies\": {\n\"@emotion/core\": \"10.0.7\",\n+ \"@heathmont/sportsbet-assets\": \"^0.6.0\",\n\"@heathmont/sportsbet-tokens\": \"^0.6.0\",\n+ \"@heathmont/sportsbet-utils\": \"^0.6.0\",\n\"polished\": \"2.3.3\"\n}\n}\n",
"new_path": "packages/global/package... | TypeScript | MIT License | coingaming/moon-design | feat(global): implement vertical and horizontal rhythm | 1 | feat | global |
127,940 | 18.02.2019 17:15:52 | -7,200 | 5770a6f1023eac71d749e72e5247df77a4a236b0 | chore: integrate vertical rhythm | [
{
"change_type": "MODIFY",
"diff": "@@ -39,9 +39,9 @@ const codeWrapper = css([\n]);\nconst liveCodePreview = css({\n- fontFamily: typography.fontFamily,\npadding: Utils.spacing('large'),\nminHeight: Utils.spacing('xlarge'),\n+ fontFamily: typography.fontFamily,\nborderBottom: codeBorder,\n});\n",
"new_... | TypeScript | MIT License | coingaming/moon-design | chore: integrate vertical rhythm | 1 | chore | null |
815,590 | 18.02.2019 18:06:51 | -28,800 | a0b5b301da2193db448477b0b63d59ab7f94560e | refactor: use Option to represent PoolEntry cycles field | [
{
"change_type": "MODIFY",
"diff": "@@ -217,7 +217,7 @@ impl<CI: ChainIndex + 'static> BlockAssembler<CI> {\nTransactionTemplate {\nhash: tx.transaction.hash(),\nrequired,\n- cycles: Some(tx.cycles),\n+ cycles: tx.cycles,\ndepends,\ndata: (&tx.transaction).into(),\n}\n",
"new_path": "miner/src/block_ass... | Rust | MIT License | nervosnetwork/ckb | refactor: use Option to represent PoolEntry cycles field | 1 | refactor | null |
217,922 | 18.02.2019 18:48:38 | -3,600 | eaab1e5e7c1848ecfee7feef221300a693cf222e | fix(list-merge): added an information about big lists not being mergeable | [
{
"change_type": "MODIFY",
"diff": "@@ -427,7 +427,7 @@ export class List extends DataWithPermissions {\n}\npublic isLarge(): boolean {\n- return this.items.length >= 150;\n+ return this.items.length >= 100 || this.finalItems.length > 80;\n}\n/**\n",
"new_path": "apps/client/src/app/modules/list/model/l... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(list-merge): added an information about big lists not being mergeable | 1 | fix | list-merge |
815,590 | 18.02.2019 20:46:52 | -28,800 | e1affac0ee4db1f34753fe6ea16ee603cc430645 | refactor: fix clippy warning | [
{
"change_type": "MODIFY",
"diff": "@@ -462,10 +462,7 @@ impl<CI: ChainIndex + 'static> ChainService<CI> {\nlet mut found_error = false;\n// verify transaction\nfor (ext, b) in fork.open_exts.iter_mut().zip(fork.new_blocks.iter()).rev() {\n- if !found_error\n- || skip_verify\n- || txs_verifier\n- .verify(&m... | Rust | MIT License | nervosnetwork/ckb | refactor: fix clippy warning | 1 | refactor | null |
273,683 | 18.02.2019 21:09:37 | -3,600 | 7ffe88f3a3f0941e19d81956e44abd5c65e2bd86 | refactor: use mozjpeg to compress jpeg images | [
{
"change_type": "MODIFY",
"diff": "@@ -4,8 +4,8 @@ const sharp = require('sharp')\nconst imagemin = require('imagemin')\nconst colorString = require('color-string')\nconst imageminWebp = require('imagemin-webp')\n+const imageminMozjpeg = require('imagemin-mozjpeg')\nconst imageminPngquant = require('imagem... | JavaScript | MIT License | gridsome/gridsome | refactor: use mozjpeg to compress jpeg images (#199) | 1 | refactor | null |
217,922 | 18.02.2019 21:13:56 | -3,600 | f53fc0b3c96235fc975425c594fb10938b0d1762 | fix(favorites): fixed an issue with favorites not loading in desktop app
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -38,12 +38,12 @@ export class RotationFoldersFacade {\nfavoriteRotationFolders$: Observable<{ folder: CraftingRotationsFolder, rotations: CraftingRotation[] }[]> =\ncombineLatest(this.allRotationFolders$, this.authFacade.favorites$, this.rotationsFacade.allRotations$).... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(favorites): fixed an issue with favorites not loading in desktop app
closes #768 | 1 | fix | favorites |
217,922 | 18.02.2019 21:19:02 | -3,600 | bb00b670a1ec3aeb5c2b2e3d38432606b30efc62 | chore(release): 5.0.30 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"5.0.30\"></a>\n+## [5.0.30](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.0.2... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(release): 5.0.30 | 1 | chore | release |
67,494 | 18.02.2019 21:34:13 | -3,600 | e8198937f825de7c2845e3e4a319c1d305ea6f3d | chore(router): fix linting | [
{
"change_type": "MODIFY",
"diff": "@@ -45,7 +45,7 @@ export class Router {\nprivate processingNavigation: INavigationInstruction = null;\nprivate lastNavigation: INavigationInstruction = null;\n- private routeTable: RouteTable;\n+ private readonly routeTable: RouteTable;\nconstructor(public container: ICon... | TypeScript | MIT License | aurelia/aurelia | chore(router): fix linting | 1 | chore | router |
67,494 | 18.02.2019 21:47:37 | -3,600 | 8401aab59badc1afccf2a251998ae0ff63e43dff | refactor(router): rename viewport instruction scope to ownsScope | [
{
"change_type": "MODIFY",
"diff": "@@ -103,7 +103,7 @@ export class Scope {\nif (!name || !name.length || name.startsWith('?')) {\ncontinue;\n}\n- const newScope = instruction.scope;\n+ const newScope = instruction.ownsScope;\nif (!this.getEnabledViewports()[name]) {\nthis.addViewport(name, null, null, { s... | TypeScript | MIT License | aurelia/aurelia | refactor(router): rename viewport instruction scope to ownsScope | 1 | refactor | router |
217,922 | 18.02.2019 22:14:08 | -3,600 | b7df9d545812566ca70138a9e6d94f65928e063c | chore: e2e tests fixes for 5.0.30 | [
{
"change_type": "MODIFY",
"diff": "@@ -5,6 +5,8 @@ describe('Basic UI tests', () => {\nbefore(() => {\nindexedDB.deleteDatabase('firebaseLocalStorageDb');\ncy.visit('/');\n+ // Let's wait for the anonymous warning to hide.\n+ cy.wait(20000);\nchangeLanguage('EN');\n});\n",
"new_path": "apps/client-e2e/... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: e2e tests fixes for 5.0.30 | 1 | chore | null |
67,494 | 18.02.2019 22:27:50 | -3,600 | 40da70c09572a791ccf696e3a839b01b766a4ef9 | refactor(router): add nextScopeInstruction to viewport instruction and parse/stringify | [
{
"change_type": "MODIFY",
"diff": "@@ -39,39 +39,22 @@ export class InstructionResolver {\n}\npublic parseViewportInstruction(instruction: string): ViewportInstruction {\n- let component, viewport, parameters, scope;\n- const [componentPart, rest] = instruction.split(this.separators.viewport);\n- if (rest ... | TypeScript | MIT License | aurelia/aurelia | refactor(router): add nextScopeInstruction to viewport instruction and parse/stringify | 1 | refactor | router |
217,922 | 18.02.2019 22:39:40 | -3,600 | ba13b360435aa0ece21a96483b461a1ce58576dd | chore: removed anonymous warning as it's not really useful | [
{
"change_type": "MODIFY",
"diff": "@@ -232,21 +232,6 @@ export class AuthEffects {\nmap(() => new UserPersisted())\n);\n- @Effect()\n- warningOnAnonymousAccount$ = this.actions$.pipe(\n- ofType(AuthActionTypes.LoggedInAsAnonymous),\n- debounceTime(10000),\n- tap(() => {\n- this.notificationService.config({... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: removed anonymous warning as it's not really useful | 1 | chore | null |
67,494 | 18.02.2019 23:13:02 | -3,600 | 171f4152ff726f297e517a1bca6022302f3259af | refactor(router): rename viewportInstructionsTo/FromString to parse/stringifyViewportInstructions | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,10 @@ export class InstructionResolver {\nreturn this.separators.clear;\n}\n+ public parseViewportInstructions(instructions: string): ViewportInstruction[] {\n+ return instructions.split(this.separators.sibling).map((instruction) => this.parseViewportInstruct... | TypeScript | MIT License | aurelia/aurelia | refactor(router): rename viewportInstructionsTo/FromString to parse/stringifyViewportInstructions | 1 | refactor | router |
531,793 | 18.02.2019 23:17:47 | 0 | 397bbe5783302c09c8949415e3456447c4726bd9 | feat(config): allow configuring label value mapping for sorting
This feature solves the problem of sorting by label when values have special meaning and alphabetic sort doesn't make sense for it. | [
{
"change_type": "MODIFY",
"diff": "@@ -30,6 +30,16 @@ labels:\ninfo: \"#87c4e0\"\nwarning: \"#ffae42\"\ncritical: \"#ff220c\"\n+ sorting:\n+ valueMapping:\n+ cluster:\n+ prod: 1\n+ staging: 2\n+ dev: 3\n+ severity:\n+ critical: 1\n+ warning: 2\n+ info: 3\nlog:\nconfig: false\nlevel: warning\n",
"new_pa... | TypeScript | Apache License 2.0 | prymitive/karma | feat(config): allow configuring label value mapping for sorting
This feature solves the problem of sorting by label when values have special meaning and alphabetic sort doesn't make sense for it. | 1 | feat | config |
531,793 | 18.02.2019 23:18:38 | 0 | f52f215f2d11344b6a7da746bc754443c176bdb1 | fix(docs): uppercase yaml in markdown to make the linter happy | [
{
"change_type": "MODIFY",
"diff": "@@ -29,7 +29,7 @@ pair of Alertmanager instances running in\n[HA mode](https://prometheus.io/docs/alerting/alertmanager/#high-availability).\nSyntax:\n-```yaml\n+```YAML\nalertmanager:\ninterval: duration\nservers:\n@@ -97,7 +97,7 @@ alertmanager:\nExample with two produc... | TypeScript | Apache License 2.0 | prymitive/karma | fix(docs): uppercase yaml in markdown to make the linter happy | 1 | fix | docs |
273,683 | 19.02.2019 00:31:50 | -3,600 | 48bf6004de6ee578eeea40871a0dbedb034a923a | fix(remark): improve time to read calculation | [
{
"change_type": "MODIFY",
"diff": "@@ -2,8 +2,8 @@ const LRU = require('lru-cache')\nconst unified = require('unified')\nconst parse = require('gray-matter')\nconst remarkHtml = require('remark-html')\n-const htmlToText = require('html-to-text')\nconst remarkParse = require('remark-parse')\n+const sanitize... | JavaScript | MIT License | gridsome/gridsome | fix(remark): improve time to read calculation | 1 | fix | remark |
217,922 | 19.02.2019 08:09:48 | -3,600 | 3db11b463b6eba9766c49c69ce98282c54c17299 | chore: first try to fix e2e tests with language swap | [
{
"change_type": "MODIFY",
"diff": "export const getPageTitle = () => cy.get('a.logo');\n-export const changeLanguage = (newLanguage: string) => {\n+export const changeLanguage = (newLanguage: 'EN' | 'DE' | 'FR' | 'JA' | 'PT' | 'BR' | 'ES' | 'KO' | 'ZH') => {\ncy.get('.language-swap > .ant-select-selection'... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: first try to fix e2e tests with language swap | 1 | chore | null |
217,922 | 19.02.2019 08:18:45 | -3,600 | 41988ed4f64aacf7ccf480a9f3e98f4e95b541ea | fix: fixed an issue breaking display after zh items addition | [
{
"change_type": "MODIFY",
"diff": "@@ -17,13 +17,13 @@ export class LocalizedDataService {\nindentRegexp = new RegExp('<Indent/>', 'i');\nconstructor(private lazyData: LazyDataService) {\n-\n}\npublic getItem(id: number): I18nName {\nconst zhRow = this.getRow(this.lazyData.zhItems, id);\nconst row = this.g... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: fixed an issue breaking display after zh items addition | 1 | fix | null |
217,922 | 19.02.2019 10:10:20 | -3,600 | a3054c2050f002780dc3d444a935dba79082a895 | chore: fixed e2e tests and connected them back into CI flow | [
{
"change_type": "MODIFY",
"diff": "@@ -153,6 +153,7 @@ workflows:\nrequires:\n- lint\n- test\n+ - e2e\n- deploy-web:\nrequires:\n- build\n",
"new_path": ".circleci/config.yml",
"old_path": ".circleci/config.yml"
},
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ export const getPage... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: fixed e2e tests and connected them back into CI flow | 1 | chore | null |
217,922 | 19.02.2019 10:29:20 | -3,600 | 88860e0723cf7bd1d19388d29126e859c490fe6a | chore(release): 5.0.31 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"5.0.31\"></a>\n+## [5.0.31](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.0.3... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(release): 5.0.31 | 1 | chore | release |
679,913 | 19.02.2019 10:40:27 | 0 | 6617a6e86aac0386a928c006336abfd4a7af46b8 | test(matrices): add identity tests | [
{
"change_type": "MODIFY",
"diff": "-// import * as assert from \"assert\";\n-// import * as m from \"../src/index\";\n+import * as assert from \"assert\";\n+import * as m from \"../src/index\";\n+import { range } from \"@thi.ng/transducers\";\ndescribe(\"matrices\", () => {\n- it(\"tests pending\");\n+\n+ ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | test(matrices): add identity tests | 1 | test | matrices |
679,913 | 19.02.2019 10:48:17 | 0 | 35918999c9947ded946494384aae831b3ca19353 | refactor(matrices): freeze IDENT* consts | [
{
"change_type": "MODIFY",
"diff": "@@ -25,26 +25,26 @@ export interface MultiMatOpMN extends MatOpMN, MultiMatOp<MatOpMN> { }\nexport interface MultiVecOpM extends VecOpM, MultiMatOp<VecOpM> { }\nexport interface MultiVecOpMN extends VecOpMN, MultiMatOp<VecOpMN> { }\n-export const IDENT22 = [\n+export cons... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(matrices): freeze IDENT* consts | 1 | refactor | matrices |
127,940 | 19.02.2019 10:54:11 | -7,200 | b20e1376eb5b0a1814c402e1260a446f4ac41e1f | fix(button): prevent props leaking to HTML | [
{
"change_type": "MODIFY",
"diff": "@@ -131,8 +131,6 @@ exports[`Banner Closable renders with default vertical layout 1`] = `\n>\n<button\nclassName=\"emotion-1\"\n- fullWidth={true}\n- modifier=\"secondary\"\n>\nBuy bitcoins\n</button>\n@@ -313,8 +311,6 @@ exports[`Banner Closable renders with horizontal l... | TypeScript | MIT License | coingaming/moon-design | fix(button): prevent props leaking to HTML | 1 | fix | button |
273,683 | 19.02.2019 11:01:45 | -3,600 | f283526bbe83730102bb950d9f60bd5ab5bc4e23 | fix(store): allow regex wildcard route param | [
{
"change_type": "MODIFY",
"diff": "@@ -91,7 +91,9 @@ class Source extends EventEmitter {\nroute: options.route,\nfields: options.fields || {},\ntypeName: options.typeName,\n- routeKeys: routeKeys.map(key => {\n+ routeKeys: routeKeys\n+ .filter(key => typeof key.name === 'string')\n+ .map(key => {\nconst na... | JavaScript | MIT License | gridsome/gridsome | fix(store): allow regex wildcard route param | 1 | fix | store |
127,940 | 19.02.2019 11:05:25 | -7,200 | a4cf3f67f2941537246717fde75fb2a32425bb5c | fix(docs): add keys to menu items | [
{
"change_type": "MODIFY",
"diff": "@@ -54,7 +54,7 @@ const SubMenu = ({ items, title }: MenuListProps & MenuProps) => (\n{title && <span css={[listItem, listSection]}>{title}</span>}\n<MenuList nested>\n{items.map(item => (\n- <MenuItem route={item.route} name={item.name} />\n+ <MenuItem key={item.name} ro... | TypeScript | MIT License | coingaming/moon-design | fix(docs): add keys to menu items | 1 | fix | docs |
127,940 | 19.02.2019 11:07:37 | -7,200 | 447f34ae76bc6d9a49bac72f1cdaeac2e3b81f91 | chore(docs): switch use of hideVisually to polished | [
{
"change_type": "MODIFY",
"diff": "/** @jsx jsx */ jsx;\nimport { jsx, css } from '@emotion/core';\nimport { Link } from 'gatsby';\n-import { rem } from 'polished';\n+import { hideVisually, rem } from 'polished';\nimport { colors } from '@heathmont/sportsbet-tokens';\nconst logoLink = css({\n@@ -9,18 +9,6 ... | TypeScript | MIT License | coingaming/moon-design | chore(docs): switch use of hideVisually to polished | 1 | chore | docs |
127,940 | 19.02.2019 11:10:56 | -7,200 | 9679fb91a412cde970e757f8cd6bfd0c5a060932 | fix(docs): switch SVG sizing to avoid react-dom errors | [
{
"change_type": "MODIFY",
"diff": "@@ -14,8 +14,8 @@ export const Logo = () => (\n<span css={hideVisually}>Home</span>\n<svg\nviewBox=\"0 0 188 39\"\n- width=\"auto\"\n- height=\"auto\"\n+ width=\"100%\"\n+ height=\"100%\"\nxmlns=\"http://www.w3.org/2000/svg\"\n>\n<path\n",
"new_path": "docs/src/compon... | TypeScript | MIT License | coingaming/moon-design | fix(docs): switch SVG sizing to avoid react-dom errors | 1 | fix | docs |
815,590 | 19.02.2019 11:14:17 | -28,800 | d2aa7e302d95db7e02fa49dcfeced155d2c9ff68 | fix: some trivial mistakes | [
{
"change_type": "MODIFY",
"diff": "@@ -32,4 +32,3 @@ pub const COLUMN_EXT: Col = Some(7);\npub const COLUMN_BLOCK_TRANSACTION_ADDRESSES: Col = Some(9);\npub const COLUMN_BLOCK_TRANSACTION_IDS: Col = Some(10);\npub const COLUMN_BLOCK_PROPOSAL_IDS: Col = Some(11);\n-pub const COLUMN_TRANSACTION_CYCLES: Col =... | Rust | MIT License | nervosnetwork/ckb | fix: some trivial mistakes | 1 | fix | null |
815,590 | 19.02.2019 11:28:09 | -28,800 | 6ffc3232c169d7ffc178d87fd79e817699ef53ad | refactor: use verify_transaction | [
{
"change_type": "MODIFY",
"diff": "@@ -361,31 +361,17 @@ where\n}\n//readd txs\n- let mut txs_verify_cache = self.shared.txs_verify_cache().write();\n+ let mut txs_cache = self.shared.txs_verify_cache().write();\nfor tx in b.commit_transactions().iter().rev() {\nif tx.is_cellbase() {\ncontinue;\n}\n- let t... | Rust | MIT License | nervosnetwork/ckb | refactor: use verify_transaction | 1 | refactor | null |
127,940 | 19.02.2019 11:38:04 | -7,200 | d032149a34a0142599f6724996e04fe3cca6d35f | fix(docs): extend font preload links | [
{
"change_type": "MODIFY",
"diff": "@@ -35,9 +35,27 @@ export default ({ children }: Children) => (\n<html lang=\"en\" />\n<meta charSet=\"utf-8\" />\n<title>Sportsbet.io Design</title>\n- <link rel=\"preload\" href={fontUrls.AvertaStd.regular} as=\"font\" />\n- <link rel=\"preload\" href={fontUrls.AvertaSt... | TypeScript | MIT License | coingaming/moon-design | fix(docs): extend font preload links | 1 | fix | docs |
503,942 | 19.02.2019 11:41:13 | 18,000 | 79b4f20f949c85fe01449a4e7169a7cc4ef07440 | fix(login): Add union types for backgroundImgSrc | [
{
"change_type": "MODIFY",
"diff": "import { FunctionComponent, HTMLProps, ReactNode } from 'react';\nimport { OneOf } from '../../typeUtils';\n+import { BackgroundImageSrcMap } from '../BackgroundImage';\nexport const LoginListVariant: {\ngrid: 'grid';\n@@ -11,7 +12,7 @@ export interface LoginPageProps ext... | TypeScript | MIT License | patternfly/patternfly-react | fix(login): Add union types for backgroundImgSrc (#1373) | 1 | fix | login |
603,467 | 19.02.2019 12:46:43 | 0 | ba9c3db17e5625608597623ff56eb55881515b39 | fix(rest): Providing an invalid Axios configuration results in a ConfigurationError instead of Logic | [
{
"change_type": "MODIFY",
"diff": "import 'mocha';\n-import { LogicError, TestCompromisedError } from '@serenity-js/core';\n+import { ConfigurationError, LogicError, TestCompromisedError } from '@serenity-js/core';\nimport axios from 'axios';\nimport MockAdapter from 'axios-mock-adapter';\nimport { given }... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(rest): Providing an invalid Axios configuration results in a ConfigurationError instead of Logic | 1 | fix | rest |
603,467 | 19.02.2019 12:51:08 | 0 | b8f95c85c1fd9c328ae99a1132677c400899fb03 | feat(protractor): Targets can be nested within one another
Closes closes | [
{
"change_type": "MODIFY",
"diff": "@@ -36,8 +36,8 @@ describe('Press', () => {\nit('allows the actor to enter keys individually into a field', () => Bernie.attemptsTo(\nNavigate.to(page),\n- Press.the('a').into(Form.Text_Field),\n- Press.the('A').into(Form.Text_Field),\n+ Press.the('a').in(Form.Text_Field)... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | feat(protractor): Targets can be nested within one another
Closes #187, closes #143 | 1 | feat | protractor |
217,922 | 19.02.2019 13:08:33 | -3,600 | 38d60e1df38901ccb4ccf1f635d9298d10741a80 | fix: final fix for external languages system | [
{
"change_type": "MODIFY",
"diff": "@@ -22,10 +22,10 @@ export class LocalizedDataService {\npublic getItem(id: number): I18nName {\nconst zhRow = this.getRow(this.lazyData.zhItems, id);\nconst row = this.getRow(this.lazyData.items, id);\n- // If an item doesn't exist yet inside zh items, use english name i... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix: final fix for external languages system | 1 | fix | null |
217,922 | 19.02.2019 13:30:10 | -3,600 | b5374d646c3f26eeedc8ab5b469e1ebefbf5536c | fix(vendors): fixed an issue with vendors extraction not being done properly in some cases | [
{
"change_type": "MODIFY",
"diff": "@@ -47,7 +47,7 @@ export class VendorsExtractor extends AbstractExtractor<Vendor[]> {\n// Else, simply bind the obj property to the effective partial\nitemPartial = itemPartial.obj;\n}\n- if (itemPartial !== undefined) {\n+ if (itemPartial !== undefined && vendor.price ==... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(vendors): fixed an issue with vendors extraction not being done properly in some cases | 1 | fix | vendors |
815,590 | 19.02.2019 13:42:46 | -28,800 | a2c403ad342d996f7a8f471a1b36f6cf737fed8b | refactor: remove hard coded cache size | [
{
"change_type": "MODIFY",
"diff": "@@ -448,7 +448,7 @@ impl<CI: ChainIndex> BlockMedianTimeContext for Shared<CI> {\npub struct SharedBuilder<DB: KeyValueDB> {\ndb: Option<DB>,\nconsensus: Option<Consensus>,\n- txs_verify_cache_size: usize,\n+ txs_verify_cache_size: Option<usize>,\n}\nimpl<DB: KeyValueDB> ... | Rust | MIT License | nervosnetwork/ckb | refactor: remove hard coded cache size | 1 | refactor | null |
217,922 | 19.02.2019 13:54:48 | -3,600 | 289a54e509ce508cae89143a68e660ad084c930a | chore(release): 5.0.32 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"5.0.32\"></a>\n+## [5.0.32](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.0.3... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(release): 5.0.32 | 1 | chore | release |
503,965 | 19.02.2019 14:01:57 | 18,000 | 5637c03fc7969787635b7a0e1a354e3928ddf5b8 | chore(build): Remove some unused dependencies
chore(build): Remove some unused dependencies | [
{
"change_type": "MODIFY",
"diff": "\"lerna\": \"^3.11.0\",\n\"lerna-changelog\": \"^0.8.2\",\n\"local-web-server\": \"^2.6.1\",\n- \"lodash\": \"^4.17.0\",\n\"minimist\": \"^1.2.0\",\n\"mutation-observer\": \"^1.0.3\",\n\"node-sass\": \"^4.8.3\",\n- \"npmlog\": \"^4.1.2\",\n\"plop\": \"^2.0.0\",\n\"prettie... | TypeScript | MIT License | patternfly/patternfly-react | chore(build): Remove some unused dependencies (#1405)
chore(build): Remove some unused dependencies | 1 | chore | build |
273,683 | 19.02.2019 14:03:26 | -3,600 | 0dad5804dd5cf2f45b144db967e093873a294ae7 | fix(graphql): improved error handling | [
{
"change_type": "MODIFY",
"diff": "@@ -39,7 +39,7 @@ function wrapCommand (fn) {\nreturn (...args) => {\nreturn fn(...args).catch(err => {\n- console.error(chalk.red(err.stack))\n+ console.error(chalk.red(err.stack || err))\nprocess.exitCode = 1\n})\n}\n",
"new_path": "gridsome/index.js",
"old_path... | JavaScript | MIT License | gridsome/gridsome | fix(graphql): improved error handling | 1 | fix | graphql |
730,429 | 19.02.2019 14:04:07 | 18,000 | 57eaae7a07590d1df689f003e0b2f90a2315a046 | chore: upgrade to node v8.15.0 | [
{
"change_type": "MODIFY",
"diff": "version: 2\nbase_image: &base_image\n- image: circleci/node:8.11.3\n+ image: circleci/node:8.15.0\njob_common: &job_common\ndocker:\n",
"new_path": ".circleci/config.yml",
"old_path": ".circleci/config.yml"
},
{
"change_type": "MODIFY",
"diff": "-v8.11... | JavaScript | MIT License | webex/react-widgets | chore: upgrade to node v8.15.0 | 1 | chore | null |
730,412 | 19.02.2019 15:03:18 | 0 | cfd69ede473346c0851b03cbf577d70ff4e6cffd | chore(release): 0.1.421 | [
{
"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.421\"></a>\n+## [0.1.421](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.421 | 1 | chore | release |
127,946 | 19.02.2019 16:59:37 | -7,200 | eaf37b21861f90e74292488bd2659863d1f2026b | feat(banner): set a 'minWidth' for a banner instead of 'width' | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,7 @@ import { PropsTable } from 'docs';\nBanners are generic containers for displaying important information to the user. They usually contain a heading, descriptive text and a call to action.\n```jsx react-live\n-<Banner width=\"600px\">\n+<Banner minWidth=\... | TypeScript | MIT License | coingaming/moon-design | feat(banner): set a 'minWidth' for a banner instead of 'width' | 1 | feat | banner |
127,946 | 19.02.2019 17:01:35 | -7,200 | a296fa91b166310d109a322fc103ed768ecf94e8 | feat(cashier): basic grid layout for cashier | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,7 @@ import { PropsTable } from 'docs';\nBanners are generic containers for displaying important information to the user. They usually contain a heading, descriptive text and a call to action.\n```jsx react-live\n-<Banner minWidth=\"600px\">\n+<Banner maxWidt... | TypeScript | MIT License | coingaming/moon-design | feat(cashier): basic grid layout for cashier | 1 | feat | cashier |
103,448 | 19.02.2019 17:31:27 | -18,000 | 53e3bae7e3891249a724f63cfea41ec549ca26dd | feat: add a `contentStyle` prop to `Button` | [
{
"change_type": "MODIFY",
"diff": "@@ -9,8 +9,8 @@ import Text from './Typography/Text';\nimport TouchableRipple from './TouchableRipple';\nimport { black, white } from '../styles/colors';\nimport { withTheme } from '../core/theming';\n-import type { Theme } from '../types';\nimport type { IconSource } fro... | TypeScript | MIT License | callstack/react-native-paper | feat: add a `contentStyle` prop to `Button` | 1 | feat | null |
127,946 | 19.02.2019 18:28:08 | -7,200 | 189b81ba05f43002f9c18d2efa59a9ec790f1823 | fix(global): fix referencing font static assets | [
{
"change_type": "MODIFY",
"diff": "import { Fragment } from 'react';\nimport { css, jsx, Global } from '@emotion/core';\nimport styled from '@emotion/styled';\n-import { Helmet } from 'react-helmet';\n-import { fontUrls } from '@heathmont/sportsbet-assets';\nimport { styles } from '@heathmont/sportsbet-glo... | TypeScript | MIT License | coingaming/moon-design | fix(global): fix referencing font static assets | 1 | fix | global |
273,683 | 19.02.2019 18:39:28 | -3,600 | 8d920fc8a8a02f69134088465c6cad864bb92c1e | fix(graphql): return null for missing references | [
{
"change_type": "MODIFY",
"diff": "@@ -260,9 +260,7 @@ test('get nodes by path regex', async () => {\n})\ntest('create node reference', async () => {\n- const authors = api.store.addContentType({\n- typeName: 'TestAuthor'\n- })\n+ const authors = api.store.addContentType('TestAuthor')\nconst posts = api.st... | JavaScript | MIT License | gridsome/gridsome | fix(graphql): return null for missing references | 1 | fix | graphql |
273,683 | 19.02.2019 19:58:54 | -3,600 | 70698e07dda1b44d510839cd1ca9241c20bf5534 | fix(build): ensure 404 route for /404 page | [
{
"change_type": "MODIFY",
"diff": "@@ -4,9 +4,14 @@ runMain()\nexport default context => new Promise((resolve, reject) => {\nconst { app, router } = createApp()\n+ let { url } = context\n+\n+ if (url === '/404') {\n+ url = { name: '404' }\n+ }\ncontext.meta = app.$meta()\n- router.push(context.url)\n+ rout... | JavaScript | MIT License | gridsome/gridsome | fix(build): ensure 404 route for /404 page | 1 | fix | build |
67,479 | 19.02.2019 20:06:08 | -39,600 | 4384a2fec86d96be787d7dda835578488c32bff3 | chore(hjsx): add child array support | [
{
"change_type": "MODIFY",
"diff": "@@ -94,7 +94,7 @@ const eventCmds = { delegate: 1, capture: 1, call: 1 };\n/**\n* jsx with aurelia binding command friendly version of h\n*/\n-export const hJsx = function(name: string, attrs: Record<string, string> | null, ...children: (Node | string)[]) {\n+export const... | TypeScript | MIT License | aurelia/aurelia | chore(hjsx): add child array support | 1 | chore | hjsx |
730,412 | 19.02.2019 20:34:10 | 0 | fb939e316283a969424b31b8e872605c11139415 | chore(release): 0.1.422 | [
{
"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.422\"></a>\n+## [0.1.422](https://github.com/webex/react-ciscospark/compare/v0.1.... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.1.422 | 1 | chore | release |
469,438 | 19.02.2019 21:33:24 | 28,800 | 966cea0f11b040580fbfe23cb67afbfce6b6abfd | feat: add oneOf to the spec | [
{
"change_type": "MODIFY",
"diff": "@@ -946,6 +946,29 @@ Relative Documents With Embedded Schema Example:\n}\n```\n+#### oneOf Object\n+\n+a simple object allowing for conditional content descriptors. It MUST only be used in place of a content descriptor. It specifices that the content descriptor in questio... | JavaScript | Apache License 2.0 | open-rpc/spec | feat: add oneOf to the spec | 1 | feat | null |
469,438 | 19.02.2019 21:36:06 | 28,800 | 824cd615a3bd4ec20ca70b5baecb87fba5be19cd | feat: ref oneOf throughout the spec | [
{
"change_type": "MODIFY",
"diff": "@@ -47,6 +47,7 @@ This document is licensed under [The Apache License, Version 2.0](https://www.ap\n- [Tag Object](#tag-object)\n- [External Documentation Object](#externalDocumentationObject)\n- [Reference Object](#reference-object)\n+ - [OneOf Object](#oneof-object)\n- ... | JavaScript | Apache License 2.0 | open-rpc/spec | feat: ref oneOf throughout the spec | 1 | feat | null |
217,922 | 19.02.2019 22:31:45 | -3,600 | e4eed0b4fda40aefcba83e80632f626f70fe8bbd | fix(alarms): fixed an issue with alarms spawning at 12AM | [
{
"change_type": "MODIFY",
"diff": "@@ -220,7 +220,7 @@ export class AlarmsFacade {\nif (hours === 0) {\nhours = 24;\n}\n- const resHours = hours - currentTime.getUTCHours();\n+ const resHours = (hours - currentTime.getUTCHours()) % 24;\nlet resMinutes = resHours * 60 + minutes - currentTime.getUTCMinutes()... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): fixed an issue with alarms spawning at 12AM | 1 | fix | alarms |
679,913 | 19.02.2019 23:49:44 | 0 | 7f6e17486fe8dee6e88d05828e355600df45a623 | docs: update geom readme's / pkg keywords | [
{
"change_type": "MODIFY",
"diff": "@@ -40,8 +40,11 @@ yarn add @thi.ng/geom-accel\n## Dependencies\n- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/master/packages/api)\n+- [@thi.ng/arrays](https://github.com/thi-ng/umbrella/tree/master/packages/arrays)\n+- [@thi.ng/geom-api](https://github.com/thi... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs: update geom readme's / pkg keywords
(cherry picked from commit 20a9d5dbe6243d81940273012aac23b2f09b1f50) | 1 | docs | null |
679,913 | 20.02.2019 00:28:09 | 0 | 9f2b8aeea1353f91f40e64d7c878e9d728cc41e0 | fix(bencode): string list val decoding, add tests, update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -21,8 +21,8 @@ This project is part of the\n## About\n-Binary [Bencode](https://en.wikipedia.org/wiki/Bencode) encoder\n-(currently no decoding yet) for structured data.\n+Binary [Bencode](https://en.wikipedia.org/wiki/Bencode) encoder &\n+decoder for structured data. ... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(bencode): string list val decoding, add tests, update readme | 1 | fix | bencode |
67,479 | 20.02.2019 01:00:11 | -39,600 | d175ac3f765aad2c4fb6fe50dc00abf3e7197270 | chore(test): add replacement yieled replaceable test | [
{
"change_type": "ADD",
"diff": "+import { Aurelia, CustomElementResource, ICustomElement } from '@aurelia/runtime';\n+import { expect, assert } from 'chai';\n+import { TestContext, HTMLTestContext } from '../util';\n+import { hJsx } from './util';\n+\n+// IMPORTANT:\n+// JSX is used to eliminate space betw... | TypeScript | MIT License | aurelia/aurelia | chore(test): add replacement yieled replaceable test | 1 | chore | test |
67,479 | 20.02.2019 01:12:39 | -39,600 | 2aed3643ac1ee68b3b64bb554ef39b650c5d5f31 | chore(tests): add test for custom element in replacement | [
{
"change_type": "MODIFY",
"diff": "@@ -10,8 +10,7 @@ import { hJsx } from './util';\ndescribe.only('replaceable', function () {\ndescribe('Difficult cases', function() {\n- describe('+ scope altering template controllers', function() {\n- describe('+ [repeat]', function() {\n+ describe('+ replacement yield... | TypeScript | MIT License | aurelia/aurelia | chore(tests): add test for custom element in replacement | 1 | chore | tests |
71,663 | 20.02.2019 02:04:30 | 28,800 | f6aea1bcdde06fbd02401dd660daf9747d30a197 | fix(codepipeline): allow providing Tokens as the physical name of the Pipeline.
Fixes | [
{
"change_type": "MODIFY",
"diff": "+import cdk = require('@aws-cdk/cdk');\nimport { ActionCategory } from \"./action\";\nimport { Artifact } from \"./artifact\";\n@@ -44,6 +45,11 @@ const VALID_IDENTIFIER_REGEX = /^[a-zA-Z0-9.@_-]{1,100}$/;\n* This can be used to validate the name of all components of a pi... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(codepipeline): allow providing Tokens as the physical name of the Pipeline. (#1800)
Fixes #1788 | 1 | fix | codepipeline |
217,922 | 20.02.2019 10:11:36 | -3,600 | e3b1ce1f14573c96ba61d56fd07c095296e5c76d | feat: added banner announcement for 1k discord members giveaway | [
{
"change_type": "MODIFY",
"diff": "</nz-sider>\n<nz-content>\n<div class=\"page-container\" [class.overlay]=\"overlay\">\n- <nz-alert nzType=\"info\" [nzMessage]=\"message\" *ngIf=\"newVersionAvailable$ | async\" class=\"new-version-alert\"\n+ <nz-alert nzType=\"info\" nzBanner [nzMessage]=\"message\" *ngI... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat: added banner announcement for 1k discord members giveaway | 1 | feat | null |
815,601 | 20.02.2019 11:35:30 | -28,800 | ca59ca202c7d73857e2fedd94071d9ccd6e94157 | fix: cli type_hash arg matches | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ fn main() {\nmatch matches.subcommand() {\n(\"cli\", Some(cli_matches)) => match cli_matches.subcommand() {\n- (\"type_hash\", _) => cli::type_hash(&setup(&cli_matches)),\n+ (\"type_hash\", Some(type_hash_matches)) => cli::type_hash(&setup(&type_hash_mat... | Rust | MIT License | nervosnetwork/ckb | fix: cli type_hash arg matches | 1 | fix | null |
503,965 | 20.02.2019 13:37:57 | 18,000 | 6c3f28d1e6405b67154932994a8bd1a43edf12c2 | style(lint): fix camelcase errors | [
{
"change_type": "MODIFY",
"diff": "@@ -6,8 +6,8 @@ import {\nglobal_spacer_3xl as spacer3Xl,\nglobal_Color_dark_100 as itemColor,\nglobal_BackgroundColor_300 as bgColorHover,\n- global_BackgroundColor_200,\n- global_FontSize_xs,\n+ global_BackgroundColor_200 as bgColorHover2,\n+ global_FontSize_xs as fontS... | TypeScript | MIT License | patternfly/patternfly-react | style(lint): fix camelcase errors (#1412) | 1 | style | lint |
217,922 | 20.02.2019 14:05:13 | -3,600 | 760933a6f0fce36504a46764bc938f4205f9cb2e | fix(auth): character association popup showing up after each login
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,6 @@ import { BehaviorSubject, combineLatest, EMPTY, from, of } from 'rxjs';\nimport { UserService } from '../core/database/user.service';\nimport {\nAddCharacter,\n- AnonymousWarningShown,\nAuthActionTypes,\nAuthenticated,\nCharactersLoaded,\n@@ -123,8 +122,... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(auth): character association popup showing up after each login
closes #777 | 1 | fix | auth |
503,965 | 20.02.2019 14:15:40 | 18,000 | 0ef4608c1c111274b70e320628d3be15898e0614 | docs(update): remove semantic-release and update getting started | [
{
"change_type": "MODIFY",
"diff": "@@ -62,7 +62,7 @@ Since the components in patternfly-react are based on patternfly, we want to mak\n- `css approved` - The issue has been reviewed and approved by a member of the css team.\n- `ux approved` - The issue has been reviewed and approved by a member of the ux t... | TypeScript | MIT License | patternfly/patternfly-react | docs(update): remove semantic-release and update getting started (#1411) | 1 | docs | update |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.