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
815,595
08.10.2019 21:25:48
-28,800
93bf592e05aa41927bd7c7844f0125991781df42
fix(tx-pool): Remove descendants of committed txs from pending pool
[ { "change_type": "MODIFY", "diff": "@@ -47,6 +47,10 @@ impl PendingQueue {\nself.inner.remove_entry_and_descendants(id)\n}\n+ pub(crate) fn remove_entry(&mut self, id: &ProposalShortId) -> Option<TxEntry> {\n+ self.inner.remove_entry(id)\n+ }\n+\n/// find all ancestors from pool\npub(crate) fn get_ancestors...
Rust
MIT License
nervosnetwork/ckb
fix(tx-pool): Remove descendants of committed txs from pending pool
1
fix
tx-pool
67,495
08.10.2019 22:00:06
18,000
5caf072362e92cfc1d7f8fb04923eaf2eb9d33e1
chore(cleanup): Tidy up changes
[ { "change_type": "MODIFY", "diff": "\"html.format.endWithNewline\": true,\n\"eslint.validate\": [\n\"javascript\",\n- \"typescript\",\n+ {\n+ \"autoFix\": true,\n+ \"language\": \"typescript\"\n+ }\n],\n\"emmet.triggerExpansionOnTab\": true,\n\"prettier.printWidth\": 260,\n", "new_path": ".vscode/settin...
TypeScript
MIT License
aurelia/aurelia
chore(cleanup): Tidy up changes
1
chore
cleanup
531,793
08.10.2019 22:01:13
-3,600
65510acdf3c2b9760cad8b08de4a85e628531d35
chore(ui): tweak internal error message css
[ { "change_type": "MODIFY", "diff": "@@ -4,28 +4,41 @@ import PropTypes from \"prop-types\";\nimport * as Sentry from \"@sentry/browser\";\nimport { FontAwesomeIcon } from \"@fortawesome/react-fontawesome\";\n-import { faExclamationCircle } from \"@fortawesome/free-solid-svg-icons/faExclamationCircle\";\n+im...
TypeScript
Apache License 2.0
prymitive/karma
chore(ui): tweak internal error message css
1
chore
ui
815,595
08.10.2019 22:08:51
-28,800
ac694e724780101e9c12291336db84190446ed8e
chore(test): Adjust cellbase maturity format
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ impl Spec for FeeOfTransaction {\n// `block[i + 1 + FINALIZATION_DELAY_LENGTH]`\n// 5. Expect that the miner receives the committed reward of `tx` from\n// `block[i + 1 + PROPOSAL_WINDOW_CLOSEST + FINALIZATION_DELAY_LENGTH]`\n- fn run(&self, net: Net) {\...
Rust
MIT License
nervosnetwork/ckb
chore(test): Adjust cellbase maturity format
1
chore
test
815,595
08.10.2019 22:45:12
-28,800
b28f4019a028df1c2ba36db52fc430f212eb5100
fix(test): First 11 cellbases have not outputs
[ { "change_type": "MODIFY", "diff": "@@ -624,6 +624,11 @@ impl Spec for ForkedTransaction {\nlet node0 = &net.nodes[0];\nlet node1 = &net.nodes[1];\nlet finalization_delay_length = node0.consensus().finalization_delay_length();\n+ (0..=finalization_delay_length).for_each(|_| {\n+ let block = node0.new_block(...
Rust
MIT License
nervosnetwork/ckb
fix(test): First 11 cellbases have not outputs
1
fix
test
67,495
08.10.2019 23:02:51
18,000
2f92c795bf7971fac1b489fd377044584802b1b7
chore(clean): Clean up fixes and fix tests
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,10 @@ import { LifecycleFlags, CustomElement } from '@aurelia/runtime';\ntype CaseType = {\nexpected: number | string; expectedStrictMode?: number | string; expectedValueAfterChange?: number | string; changeFnc?: (val) => any; app: any; interpolation: string; i...
TypeScript
MIT License
aurelia/aurelia
chore(clean): Clean up fixes and fix tests
1
chore
clean
531,793
08.10.2019 23:47:15
-3,600
03b18403fa6f2b78a267258f718cbadb4033291d
fix(ci): don't push :latest docker image to GitHub Overwriting versions is not supported
[ { "change_type": "MODIFY", "diff": "@@ -153,7 +153,7 @@ jobs:\nname: Build docker image\n# we build and push docker image on merge and tag, so this should only\n# run for new branches, to test that they don't break docker builds\n- if: (repo = prymitive/karma AND type != pull_request AND branch != master) O...
TypeScript
Apache License 2.0
prymitive/karma
fix(ci): don't push :latest docker image to GitHub Overwriting versions is not supported
1
fix
ci
151,430
08.10.2019 23:58:17
25,200
abfe1d37f386a5f593136f39127fc21e09ac3c2e
refactor: remove redundant callback checks
[ { "change_type": "MODIFY", "diff": "@@ -68,7 +68,7 @@ function analytics(config = {}) {\nacc.pluginsArray = acc.pluginsArray.concat(p)\nif (acc.plugins[NAMESPACE]) {\n- throw new Error(`\"${NAMESPACE}\" plugin loaded twice!`)\n+ throw new Error(`\"${NAMESPACE}\" plugin loaded twice`)\n}\nacc.plugins[NAMESPA...
JavaScript
MIT License
davidwells/analytics
refactor: remove redundant callback checks
1
refactor
null
151,430
08.10.2019 23:58:49
25,200
4f4ad49d9e29c36925815953bbdfe75757c7bf67
test: add storage + dotprop tests
[ { "change_type": "ADD", "diff": "+import test from 'ava'\n+import { setItem, removeItem } from './storage'\n+\n+test('setItem action creator', (t) => {\n+ const action = setItem('key', 'value', { location: 'cookie' })\n+ delete action.timestamp\n+ t.deepEqual(action, {\n+ key: 'key',\n+ options: { location:...
JavaScript
MIT License
davidwells/analytics
test: add storage + dotprop tests
1
test
null
151,430
09.10.2019 00:00:49
25,200
2b7e7d3e15f1028681f5e12ba35bf2d1a8513c3a
tests: add value tests
[ { "change_type": "ADD", "diff": "+import test from 'ava'\n+import { ANON_ID, USER_ID, USER_TRAITS } from './constants'\n+\n+test('ANON_ID constant is set', (t) => {\n+ t.is(ANON_ID, '__anon_id')\n+})\n+\n+test('USER_ID constant is set', (t) => {\n+ t.is(USER_ID, '__user_id')\n+})\n+\n+test('USER_TRAITS cons...
JavaScript
MIT License
davidwells/analytics
tests: add value tests
1
tests
null
151,430
09.10.2019 00:02:06
25,200
efcc7acb2528e7dd3c304c70c67dd40f08915d12
docs: update contributing docs on how to get started
[ { "change_type": "MODIFY", "diff": "@@ -9,13 +9,12 @@ please read the [code of conduct](CODE_OF_CONDUCT.md).\n### Install dependencies\n-> Only required on the first run, subsequent runs can use `npm start` to both\n-bootstrap and run the development server.\n+> Only required when setting up the project\n``...
JavaScript
MIT License
davidwells/analytics
docs: update contributing docs on how to get started
1
docs
null
151,430
09.10.2019 00:02:24
25,200
8aa3c1801b7f9581372c6e17428227342fd70a9b
test: add getState test
[ { "change_type": "ADD", "diff": "+import test from 'ava'\n+import delay from './utils/delay'\n+import Analytics from '../src'\n+\n+test.cb('analytics.user(\"userId\") works', (t) => {\n+ const analytics = Analytics({\n+ app: 'appname',\n+ version: 100\n+ })\n+\n+ analytics.identify('xyz123', () => {\n+ cons...
JavaScript
MIT License
davidwells/analytics
test: add getState test
1
test
null
151,430
09.10.2019 00:03:06
25,200
2a2858d445f64d820d8c0fdaad8f73e2ca9b0d72
chore: prep customer.io plugin for typescript types
[ { "change_type": "MODIFY", "diff": "dist\nnode_modules\nlib\n+temp-types\n", "new_path": "packages/analytics-plugin-customerio/.gitignore", "old_path": "packages/analytics-plugin-customerio/.gitignore" }, { "change_type": "MODIFY", "diff": "\"license\": \"MIT\",\n\"scripts\": {\n\"docs\"...
JavaScript
MIT License
davidwells/analytics
chore: prep customer.io plugin for typescript types
1
chore
null
151,430
09.10.2019 00:03:21
25,200
d88dcacf2a0859480939a0c98d271c28f6cfdcac
docs: update auto gen doc output
[ { "change_type": "MODIFY", "diff": "@@ -146,7 +146,8 @@ import ${name} from '${pkg}'\nconst analytics = Analytics({\napp: 'awesome-app',\nplugins: [\n- ${example.replace(/^\\s+|\\s+$/g, '')}\n+ ${example.replace(/^\\s+|\\s+$/g, '')},\n+ // ...other plugins\n]\n})\n", "new_path": "packages/analytics-cli/...
JavaScript
MIT License
davidwells/analytics
docs: update auto gen doc output
1
docs
null
151,430
09.10.2019 00:26:49
25,200
61854f1cea062246b9dffbdf54a831408b1b7c40
chore: remove logs from test
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,6 @@ test('nonEvents should contain all non events keys as array', (t) => {\n})\ntest('coreEvents should contain all events as array', (t) => {\n- console.log(coreEvents)\nt.deepEqual(coreEvents, [\n'bootstrap',\n'params',\n", "new_path": "packages/analytic...
JavaScript
MIT License
davidwells/analytics
chore: remove logs from test
1
chore
null
151,430
09.10.2019 00:34:30
25,200
c3953751d7319b1ef333f8eb323763dcfba99821
docs: update react demo code
[ { "change_type": "MODIFY", "diff": "\"deploy\": \"netlify deploy --prod\"\n},\n\"dependencies\": {\n+ \"@analytics/segment\": \"^0.2.3\",\n\"@reach/router\": \"^1.2.1\",\n- \"analytics\": \"^0.1.16\",\n- \"analytics-plugin-segment\": \"^0.1.7\",\n+ \"analytics\": \"^0.1.20\",\n\"react\": \"^16.8.6\",\n\"rea...
JavaScript
MIT License
davidwells/analytics
docs: update react demo code
1
docs
null
151,430
09.10.2019 00:44:07
25,200
cd119c4a978ea76973cfdcd00de8fb779936962a
docs: update preact example
[ { "change_type": "MODIFY", "diff": "\"preact-render-spy\": \"^1.2.1\"\n},\n\"dependencies\": {\n- \"analytics\": \"^0.1.16\",\n- \"analytics-plugin-ga\": \"^0.1.4\",\n+ \"@analytics/google-analytics\": \"^0.2.0\",\n+ \"analytics\": \"^0.1.20\",\n\"preact\": \"^8.2.6\",\n\"preact-async-route\": \"^2.2.1\",\n...
JavaScript
MIT License
davidwells/analytics
docs: update preact example
1
docs
null
151,430
09.10.2019 00:50:19
25,200
52b9ac8f91b8e6ea22f44fe770446e292aca66ac
docs: update regular html example
[ { "change_type": "MODIFY", "diff": "<title>Using Analytics in HTML</title>\n<!-- Include `analytics` from CDN -->\n<script src=\"https://unpkg.com/analytics/dist/analytics.min.js\"></script>\n- <script src=\"https://unpkg.com/analytics-plugin-ga/dist/analytics-plugin-ga.min.js\"></script>\n+ <script type=\"...
JavaScript
MIT License
davidwells/analytics
docs: update regular html example
1
docs
null
151,430
09.10.2019 00:52:57
25,200
7dcd5fe7dea7a980dd1fcdab7ce1e8f8dc2fe6b5
docs: update vue demo site
[ { "change_type": "MODIFY", "diff": "\"deploy\": \"netlify deploy -p\"\n},\n\"dependencies\": {\n- \"analytics\": \"^0.1.16\",\n- \"analytics-plugin-ga\": \"^0.1.4\",\n+ \"@analytics/google-analytics\": \"^0.2.0\",\n+ \"analytics\": \"^0.1.20\",\n\"core-js\": \"^2.6.5\",\n\"vue\": \"^2.6.10\",\n\"vue-router\...
JavaScript
MIT License
davidwells/analytics
docs: update vue demo site
1
docs
null
67,494
09.10.2019 02:28:25
-7,200
ec9c336b63275cd5e4e12bffae287dabc4c202c2
refactor(router): rename au-href to goto
[ { "change_type": "MODIFY", "diff": "-import { AuHrefCustomAttribute } from './resources/au-href';\n+import { GotoCustomAttribute } from './resources/goto';\nimport { DI, IContainer, IRegistry } from '@aurelia/kernel';\nimport { StartTask } from '@aurelia/runtime';\nimport { NavCustomElement } from './resour...
TypeScript
MIT License
aurelia/aurelia
refactor(router): rename au-href to goto
1
refactor
router
67,494
09.10.2019 02:29:13
-7,200
661fbb3149414ad2aa68bf7866dc14399aaaedf9
test(router): rename au-href to goto
[ { "change_type": "MODIFY", "diff": "-import { AnchorEventInfo, LinkHandler, AuHrefCustomAttribute } from '@aurelia/router';\n+import { AnchorEventInfo, LinkHandler, GotoCustomAttribute } from '@aurelia/router';\nimport { assert, createSpy, TestContext } from '@aurelia/testing';\nimport { Writable, IRegistry...
TypeScript
MIT License
aurelia/aurelia
test(router): rename au-href to goto
1
test
router
67,494
09.10.2019 02:29:56
-7,200
56a31c81e25bca0985de0dfc7820ec4d91793fda
test(doc-example): rename au-href to goto
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ import { Author } from './author';\n<h3>Authors</h3>\n<ul>\n<li data-test=\"authors-element-item\" repeat.for=\"author of authors\">\n- <a data-test=\"authors-element-author-link\" href=\"\\${author.name}\" au-href.bind=\"{ component: Author, parameters:...
TypeScript
MIT License
aurelia/aurelia
test(doc-example): rename au-href to goto
1
test
doc-example
104,818
09.10.2019 08:15:16
18,000
b09a8cc6af4f6410d3385c2f866688db3a13b66c
test(imagecard): add image card testcases
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,6 @@ module.exports = function generateConfig(api) {\n'babel-plugin-lodash',\n'babel-plugin-styled-components',\n'babel-plugin-react-docgen',\n- '@babel/plugin-transform-modules-commonjs',\n'@babel/plugin-syntax-dynamic-import',\n'@babel/plugin-syntax-import-me...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(imagecard): add image card testcases
1
test
imagecard
730,429
09.10.2019 08:49:07
14,400
7b2b2be9d48d442dba31278bb01477d0762128a9
chore(circle): promote aws env vars
[ { "change_type": "MODIFY", "diff": "@@ -7,6 +7,10 @@ executors:\nworking_directory: ~/react-widgets\ndocker:\n- image: circleci/node:carbon-browsers\n+ # environment variables for all commands executed in the main-executor\n+ environment:\n+ AWS_BUCKET: code.s4d.io\n+ AWS_REGION: us-east-1\n# Orb to grab `s...
JavaScript
MIT License
webex/react-widgets
chore(circle): promote aws env vars
1
chore
circle
730,429
09.10.2019 08:54:30
14,400
07569d7b372424eb9adfcd1b562ea9704d8daa46
chore(circle): move to UTC time schedule
[ { "change_type": "MODIFY", "diff": "@@ -322,7 +322,8 @@ workflows:\npromotions:\ntriggers:\n- schedule:\n- cron: \"15 2 * * 3\"\n+ # Wednesdays @ 7AM UTC | 3AM EST | 12AM PST\n+ cron: \"0 7 * * 3\"\nfilters:\nbranches:\nonly:\n", "new_path": ".circleci/config.yml", "old_path": ".circleci/config.yml"...
JavaScript
MIT License
webex/react-widgets
chore(circle): move to UTC time schedule
1
chore
circle
306,385
09.10.2019 09:05:07
-7,200
093cfa090a09097cd6abcc3106ff3053ebc47423
fix(localize): use option.locale to get separator in formatNumberToParts
[ { "change_type": "MODIFY", "diff": "@@ -61,7 +61,7 @@ export function formatNumberToParts(number, options) {\nformattedParts.push({ type: 'integer', value: numberPart });\nnumberPart = '';\n}\n- const decimal = getDecimalSeparator();\n+ const decimal = getDecimalSeparator(computedLocale);\nif (formattedNumb...
JavaScript
MIT License
ing-bank/lion
fix(localize): use option.locale to get separator in formatNumberToParts
1
fix
localize
306,385
09.10.2019 09:06:49
-7,200
1f4025032f909ef7695e7a97db7619383006bff2
fix(localize): add tests for percent in formatNumberToParts
[ { "change_type": "MODIFY", "diff": "@@ -48,8 +48,8 @@ export function formatNumberToParts(number, options) {\nif (!regexCurrency.test(formattedNumber[i]) && !regexMinusSign.test(formattedNumber[i])) {\ncurrency += formattedNumber[i];\n}\n- // push when another character then currency or end of loop\n- if ((...
JavaScript
MIT License
ing-bank/lion
fix(localize): add tests for percent in formatNumberToParts
1
fix
localize
711,597
09.10.2019 09:37:16
-7,200
3c66cf8a3b0fa61d88c3e0ebf1fbe0cf698d5c34
fix(core): Fix OrderItem totals calculation logic
[ { "change_type": "MODIFY", "diff": "@@ -65,6 +65,9 @@ export class OrderItem extends VendureEntity {\n}\n}\n+ /**\n+ * Adjustments with promotion values adjusted to include tax.\n+ */\n@Calculated()\nget adjustments(): Adjustment[] {\nif (this.unitPriceIncludesTax) {\n@@ -108,7 +111,7 @@ export class OrderI...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Fix OrderItem totals calculation logic
1
fix
core
711,597
09.10.2019 09:40:55
-7,200
f6eb343f7b742963016959f846f57de4dbb07275
feat(core): Implement Promotion date range & coupon code checks Relates to BREAKING CHANGE: Removes `atLeastNOfProduct` from defaultPromotionConditions and `itemPercentageDiscount` & `buy1Get1Free` from defaultPromotionActions. They are either not useful or need to be re-implemented in a way that works correctly.
[ { "change_type": "ADD", "diff": "+name , slug , description , assets , facets , optionGroups , optionValues , sku , price , taxCategory , stockOnHand , trackInventory , variantAssets , variantFacets\n+item-1 , item-1 , , , , , , I1 , 1.00 , standard , 100 , false , ,\n+item-12 , item-12 , , , , , , I12 , 10...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(core): Implement Promotion date range & coupon code checks Relates to #174 BREAKING CHANGE: Removes `atLeastNOfProduct` from defaultPromotionConditions and `itemPercentageDiscount` & `buy1Get1Free` from defaultPromotionActions. They are either not useful or need to be re-implemented in a way that works correctly...
1
feat
core
815,569
09.10.2019 10:03:45
-28,800
0dc63c2c0cc947b0f1916579a15a27f3d2054421
fix: fix construct_uncle in integration test
[ { "change_type": "MODIFY", "diff": "@@ -274,6 +274,22 @@ impl Node {\nself.submit_block(&self.new_block(None, None, None).data())\n}\n+ // Convenient way to construct an uncle block\n+ pub fn construct_uncle(&self) -> BlockView {\n+ let block = self.new_block(None, None, None);\n+ // Make sure the uncle blo...
Rust
MIT License
nervosnetwork/ckb
fix: fix construct_uncle in integration test
1
fix
null
711,597
09.10.2019 10:08:48
-7,200
d4f0dc4e3ee64cf31483c3f66f030feae9a0fc2e
chore: Disable publish & install workflow The install step consistently fails for un-debuggable reasons.
[ { "change_type": "MODIFY", "diff": "name: Publish & Install\n-\n+# Temporarily disabled this workflow because the last step (installing from Verdaccio) is consistently\n+# failing and despite numerous attempts to stabilize, it still fails. Therefore this is not useful at\n+# the moment.\n+# on:\n+# push:\n+...
TypeScript
MIT License
vendure-ecommerce/vendure
chore: Disable publish & install workflow The install step consistently fails for un-debuggable reasons.
1
chore
null
711,597
09.10.2019 10:14:39
-7,200
d985dd386903e8480c6fe377d2bb39490b72651f
chore: Publish v0.3.4
[ { "change_type": "MODIFY", "diff": "+## <small>0.3.4 (2019-10-09)</small>\n+\n+\n+#### Features\n+\n+* **admin-ui** Add entity info to detail views ([cf604aa](https://github.com/vendure-ecommerce/vendure/commit/cf604aa)), closes [#179](https://github.com/vendure-ecommerce/vendure/issues/179)\n+\n+#### Fixes...
TypeScript
MIT License
vendure-ecommerce/vendure
chore: Publish v0.3.4
1
chore
null
865,925
09.10.2019 10:38:07
-7,200
3fe9fcfdc901dd2979d75832dbddb35045fd57bb
fix(app): complete editing on save Closes
[ { "change_type": "MODIFY", "diff": "@@ -1300,6 +1300,8 @@ export class App extends PureComponent {\nasync saveTab(tab, options) {\n+ this.triggerAction('saveTab.start');\n+\n// return early if no options provided, file not dirty and already saved\nif (!options && !this.isDirty(tab) && !this.isUnsaved(tab)) ...
JavaScript
MIT License
camunda/camunda-modeler
fix(app): complete editing on save Closes #1473
1
fix
app
366,933
09.10.2019 10:38:16
-32,400
54720defb23721a2716d0fb4f0d4da9ba2ebfa67
style: apply styles using functions provided by theme
[ { "change_type": "MODIFY", "diff": "@@ -39,12 +39,12 @@ export const NextPaginationItem = withTheme(NextPaginationItemComponent)\nconst Button = styled(ItemButton)`\n${({ theme }: InjectedProps) => css`\n- color: ${theme.palette.TEXT_GREY};\n+ color: ${theme.palette.TEXT_BLACK};\n&.paginationItem.s.square {...
TypeScript
MIT License
kufu/smarthr-ui
style: apply styles using functions provided by theme
1
style
null
366,933
09.10.2019 11:08:23
-32,400
6646784e19f424a5a71cbf6579dcf5c380a3aa87
refactor: add newly added Icos to Storybook and fixed their order
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,8 @@ const icons: Array<Props['name']> = [\n'fa-address-book',\n'fa-address-card',\n'fa-angle-double-down',\n+ 'fa-angle-double-left',\n+ 'fa-angle-double-right',\n'fa-angle-down',\n'fa-angle-left',\n'fa-angle-right',\n@@ -27,6 +29,8 @@ const icons: Array<Pro...
TypeScript
MIT License
kufu/smarthr-ui
refactor: add newly added Icos to Storybook and fixed their order
1
refactor
null
104,818
09.10.2019 11:14:03
18,000
8a737a4c52dd875f95e126b398072e8803d59260
fix(dashboard): proptypes error fix proptypes error
[ { "change_type": "MODIFY", "diff": "@@ -166,7 +166,7 @@ const propTypes = {\ntimeGrain: PropTypes.string,\nisLoading: PropTypes.bool,\n/** once all the cards have finished loading, update the bulk load */\n- setIsLoading: PropTypes.func.isRequired,\n+ setIsLoading: PropTypes.func,\n};\nconst defaultProps = ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(dashboard): proptypes error fix proptypes error
1
fix
dashboard
730,439
09.10.2019 11:17:50
14,400
efe66a755da0401cef966a679b20a3594497845f
docs: update Webex for Developers links
[ { "change_type": "MODIFY", "diff": "@@ -88,7 +88,7 @@ You'll need to create a file called `.env` that defines, at a minimum:\n- `WEBEX_SCOPE`\n- `WEBEX_ACCESS_TOKEN`\n-You can get these values by registering a new integration on the [developer portal](https://developer.ciscospark.com/add-integration.html).\...
JavaScript
MIT License
webex/react-widgets
docs: update Webex for Developers links
1
docs
null
366,933
09.10.2019 11:24:50
-32,400
d9405b65a098f6bcf4aeeea7eef3f6544af3747e
refactor: give Icon's color and font-size as Icon props instead of using styled-components
[ { "change_type": "MODIFY", "diff": "import * as React from 'react'\n-import styled, { css } from 'styled-components'\n+import styled from 'styled-components'\nimport { InjectedProps, withTheme } from '../../hocs/withTheme'\n@@ -15,16 +15,21 @@ interface Props {\nclass NextPaginationItemComponent extends Rea...
TypeScript
MIT License
kufu/smarthr-ui
refactor: give Icon's color and font-size as Icon props instead of using styled-components
1
refactor
null
104,818
09.10.2019 11:41:19
18,000
d44a8b171de4a537e95957c74f6d4a309b6f701e
fix(loading): fix inline loading to handle new carbon version
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@carbon/charts\": \"0.12.1\",\n- \"@carbon/charts-react\": \"0.12.1\",\n+ \"@carbon/charts-react\": \"^0.16.9\",\n\"@carbon/icons\": \"^10.6.1\",\n\"@carbon/icons-react\": \"^10.6.0\",\n\"@carbon/themes\": \"^10.6.1\",\n", "new_path": "packa...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(loading): fix inline loading to handle new carbon version
1
fix
loading
711,597
09.10.2019 11:41:37
-7,200
fc796e191d4d4a094f9f790282def801c8b8b857
docs(core): Add some documentation to Order entity/type
[ { "change_type": "MODIFY", "diff": "@@ -331,8 +331,6 @@ describe('Shop orders', () => {\ncouponCode,\n});\n- // expect(applyCouponCode!.adjustments.length).toBe(1);\n- // expect(applyCouponCode!.adjustments[0].description).toBe('50% off sale items');\nexpect(applyCouponCode!.total).toBe(1920);\nawait delete...
TypeScript
MIT License
vendure-ecommerce/vendure
docs(core): Add some documentation to Order entity/type
1
docs
core
815,601
09.10.2019 11:43:38
-28,800
e34637188837f544b9f3cf4e847ee0082f159815
chore: issuance comment
[ { "change_type": "MODIFY", "diff": "@@ -24,8 +24,9 @@ use ckb_types::{\nuse std::cmp;\nuse std::sync::Arc;\n-// TODO: add secondary reward for miner\n+// 1.344 billion per year\npub(crate) const DEFAULT_SECONDARY_EPOCH_REWARD: Capacity = Capacity::shannons(613_698_63013698);\n+// 4.2 billion per year\npub(c...
Rust
MIT License
nervosnetwork/ckb
chore: issuance comment
1
chore
null
866,415
09.10.2019 11:51:42
14,400
f8a3f326490c355bf02222fb6bbfab4378c3f258
feat(leadspace): add separate knobs for the button icons
[ { "change_type": "MODIFY", "diff": "@@ -108,12 +108,12 @@ storiesOf('LeadSpace', module)\n{\nlink: '',\ncopy: 'Primary action button',\n- renderIcon: select('button icon', icons, icons.ArrowRight),\n+ renderIcon: select('primary button icon', icons, icons.ArrowRight),\n},\n{\nlink: '',\ncopy: 'Secondary',\n...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(leadspace): add separate knobs for the button icons
1
feat
leadspace
866,415
09.10.2019 12:00:41
14,400
3c00eab4dfdb7262d16527e02cbea37905c5da64
chore(ipcinfo): fix jsdocs and create cookie name var
[ { "change_type": "MODIFY", "diff": "import Cookies from 'js-cookie';\n+/**\n+ * Name of cookie needed to grab cc and lc\n+ */\n+const _cookieName = 'ipcInfo';\n+\n/**\n* Utility to set and get the ipcInfo cookie needed to determine country and language code\n*\n@@ -9,10 +14,10 @@ class ipcinfoCookie {\n* re...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(ipcinfo): fix jsdocs and create cookie name var
1
chore
ipcinfo
504,026
09.10.2019 12:07:12
14,400
32f525f808e9d30489d64923e3944d79f59ec953
chore(charts): add legend examples Fixes
[ { "change_type": "ADD", "diff": "+---\n+title: 'Legend'\n+section: 'charts'\n+typescript: true\n+propComponents: ['ChartLegend']\n+---\n+\n+import { Chart, ChartArea, ChartAxis, ChartBullet, ChartGroup, ChartLegend, ChartLine, ChartPie, ChartScatter, ChartThemeColor } from '@patternfly/react-charts';\n+impo...
TypeScript
MIT License
patternfly/patternfly-react
chore(charts): add legend examples (#3093) Fixes https://github.com/patternfly/patternfly-react/issues/3080
1
chore
charts
504,026
09.10.2019 12:08:02
14,400
3f7727686208536b43b49a02798928e8ca1e9f6d
fix(charts): update ChartThreshold to use pf-core variable Fixes
[ { "change_type": "MODIFY", "diff": "+/* eslint-disable camelcase */\n+import {\n+ chart_threshold_stroke_dash_array\n+} from '@patternfly/react-tokens';\n+\n// Threshold theme\nexport const ThresholdTheme = {\nline: {\nstyle: {\ndata: {\n- strokeDasharray: '6,6'\n+ strokeDasharray: chart_threshold_stroke_da...
TypeScript
MIT License
patternfly/patternfly-react
fix(charts): update ChartThreshold to use pf-core variable (#3085) Fixes https://github.com/patternfly/patternfly-react/issues/3025
1
fix
charts
504,026
09.10.2019 12:08:09
14,400
daabae2c4da891ad9a95907160e91e0301f231b3
Charts: Add chart scatter examples * fix(charts): update ChartThreshold to use pf-core variable Fixes * feat(charts): adds chart scatter functionality and examples Fixes
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ import {\nVictoryScatterProps\n} from 'victory';\nimport { ChartContainer } from '../ChartContainer';\n-import { ChartThemeDefinition } from '../ChartTheme';\n+import { ChartScatterStyles, ChartThemeDefinition } from '../ChartTheme';\nimport { getTheme }...
TypeScript
MIT License
patternfly/patternfly-react
Charts: Add chart scatter examples (#3086) * fix(charts): update ChartThreshold to use pf-core variable Fixes https://github.com/patternfly/patternfly-react/issues/3025 * feat(charts): adds chart scatter functionality and examples Fixes https://github.com/patternfly/patternfly-react/issues/3079
1
charts
null
504,026
09.10.2019 12:08:24
14,400
2b329aa05768e09d065d6db26273adc646021525
chore(charts): simplify legend tooltip example Fixes
[ { "change_type": "MODIFY", "diff": "@@ -158,26 +158,19 @@ class TooltipPieChart extends React.Component {\nsuper(props);\n// Custom legend label compoenent\n- this.LegendLabel = ({ content, ...rest }) => (\n- <Tooltip content={content(rest)} enableFlip>\n+ this.LegendLabel = ({datum, ...rest}) => (\n+ <Tool...
TypeScript
MIT License
patternfly/patternfly-react
chore(charts): simplify legend tooltip example (#3070) Fixes https://github.com/patternfly/patternfly-react/issues/3069
1
chore
charts
104,924
09.10.2019 12:32:03
-3,600
6dea87856d1366d585e39a6e95d18e92409aff40
fix(cv dropdown): inline dropdown arrow icon missing
[ { "change_type": "MODIFY", "diff": "@click=\"onClick\"\n>\n<WarningFilled16 v-if=\"isInvalid\" class=\"bx--dropdown__invalid-icon\" />\n- <li v-if=\"inline\" class=\"bx--dropdown-text\" ref=\"valueContent\">\n- <span class=\"bx--dropdown-text__inner\">{{ placeholder }}</span>\n+ <li v-if=\"inline\" class=\"...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
fix(cv dropdown): inline dropdown arrow icon missing (#585)
1
fix
cv dropdown
504,026
09.10.2019 12:54:53
14,400
fd54afa2340d2724e7f28ea1b7d2c4a7cb208c92
chore(charts): replace HTML anchors in examples with markdown links Fixes
[ { "change_type": "MODIFY", "diff": "@@ -8,13 +8,12 @@ propComponents:\n'ChartAreaProps',\n'ChartAxis',\n'ChartGroup',\n- 'ChartLegend',\n'ChartThreshold',\n'ChartVoronoiContainer',\n]\n---\n-import { Chart, ChartArea, ChartAxis, ChartGroup, ChartLegend, ChartThreshold, ChartThemeColor, ChartThemeVariant, Ch...
TypeScript
MIT License
patternfly/patternfly-react
chore(charts): replace HTML anchors in examples with markdown links (#3072) Fixes https://github.com/patternfly/patternfly-react/issues/3071
1
chore
charts
932,458
09.10.2019 12:56:27
14,400
f9436bc009d43af714e3660c4ba0fe2e132dc3af
build(web-scripts-utils): make public package
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@spotify/web-scripts-utils\",\n\"version\": \"2.0.1\",\n- \"private\": true,\n\"description\": \"Private package which contains re-used utils within web-scripts projects\",\n\"repository\": {\n\"type\": \"git\",\n\"devDependencies\": {\n\"@spotify/tsconfig\...
TypeScript
Apache License 2.0
spotify/web-scripts
build(web-scripts-utils): make public package
1
build
web-scripts-utils
76,617
09.10.2019 13:06:35
-7,200
7fc66aa01169f29272428bbf1712ecde38243311
fix: remove accents from SpanishStemmer added unit test for Spanish. "trepadora" and "considerara" are still not correctly stemmed
[ { "change_type": "MODIFY", "diff": "@@ -353,7 +353,7 @@ class SpanishStemmer extends BaseStemmer {\n// ], line 68\nthis.bra = this.cursor;\n// substring, line 72\n- among_var = this.find_among_b(SpanishStemmer.a_2, 11);\n+ among_var = this.find_among_b(SpanishStemmer.a_2, 6);\nif (among_var == 0) {\nreturn ...
JavaScript
MIT License
axa-group/nlp.js
fix: remove accents from SpanishStemmer added unit test for Spanish. "trepadora" and "considerara" are still not correctly stemmed
1
fix
null
902,122
09.10.2019 13:19:10
0
725902135b0445c07c6f50cc66803d2fe0ee8468
chore(release): v5.15.1
[ { "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.15.1](https://github.com/kikobeats/browserless/compare/v5.15.0...v5.15.1) (2019-10-09)\n+\n+**Note:** Version b...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.15.1
1
chore
release
932,458
09.10.2019 13:35:01
14,400
3a9d4993779e0eb27f80b195331e3032ec1da571
build: remove "prepare" scripts the prepare and prepublishOnly hooks were duplicating efforts and breaking things
[ { "change_type": "MODIFY", "diff": "\"lint\": \"web-scripts lint\",\n\"format\": \"web-scripts format\",\n\"bootstrap\": \"$npm_execpath run clean && tsc --allowJs --outDir cjs --noEmit false --module CommonJS && tsc --declaration --isolatedModules false --outDir types --emitDeclarationOnly --noEmit false\"...
TypeScript
Apache License 2.0
spotify/web-scripts
build: remove "prepare" scripts the prepare and prepublishOnly hooks were duplicating efforts and breaking things
1
build
null
67,474
09.10.2019 14:34:42
-39,600
8ab115c60e6339f0e056c5110b7b89816d99484c
fix(plugin-conventions): add missing support of templateController Template Controller is another kind of custom attribute. Closes
[ { "change_type": "MODIFY", "diff": "@@ -60,4 +60,16 @@ describe('nameConvention', function () {\ntype: 'bindingCommand'\n});\n});\n+\n+ it('gets template controller like resource', function() {\n+ assert.deepEqual(nameConvention('FooBarTemplateController'), {\n+ name: 'foo-bar',\n+ type: 'templateController...
TypeScript
MIT License
aurelia/aurelia
fix(plugin-conventions): add missing support of templateController Template Controller is another kind of custom attribute. Closes #657
1
fix
plugin-conventions
67,474
09.10.2019 14:52:00
-39,600
fcff1dec480d93fb2fa9b72928fecb1d4919df59
fix(plugin-conventions): check import statement on new "aurelia" package, add test coverage Closes
[ { "change_type": "MODIFY", "diff": "@@ -278,6 +278,26 @@ export class FooBarCustomAttribute {}\nassert.equal(result.code, expected);\n});\n+ it('skips existing customAttribute decorator', function () {\n+ const code = `import { customAttribute } from 'aurelia';\n+@customAttribute('some-thing')\n+export clas...
TypeScript
MIT License
aurelia/aurelia
fix(plugin-conventions): check import statement on new "aurelia" package, add test coverage Closes #630
1
fix
plugin-conventions
866,415
09.10.2019 14:53:36
14,400
58783653deec43659b89881057a78966524770a6
feat(geolocation): geolocation utility
[ { "change_type": "MODIFY", "diff": "@@ -16,3 +16,6 @@ SCROLL_TRACKING=<boolean to enable scroll tracking, e.g. false>\n#Feature Flags\nFOOTER_LOCALE_BUTTON=<Boolean flag to turn on/off the locale selector>\n+\n+# Geolocation\n+GEO_API=<endpoint for getting user country by geolocation>\n", "new_path": "p...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(geolocation): geolocation utility
1
feat
geolocation
67,474
09.10.2019 14:55:14
-39,600
c4201cfbc549becb52224868b23a63421564d9f3
test(plugin-conventions): add test coverage on template controller
[ { "change_type": "MODIFY", "diff": "@@ -334,11 +334,11 @@ export class FooBarTemplateController {}\nit('skips existing templateController decorator', function () {\nconst code = `import { templateController } from '@aurelia/runtime';\n@templateController('some-thing')\n-export class FooBar {}\n+export class...
TypeScript
MIT License
aurelia/aurelia
test(plugin-conventions): add test coverage on template controller
1
test
plugin-conventions
866,415
09.10.2019 15:00:27
14,400
c5e9fee05c0b6c6c8b3b1d3c39ae947dfbac2548
chore(jsdocs): add small example to geolocation utility
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,11 @@ const _endpoint = process.env.GEO_API;\n* Utility to retrieve user's country code based on their IP address\n* and the language code from the browser language preference\n*\n+ * @example\n+ * import { geolocation } from '@carbon/ibmdotcom-utilities';\n+ *...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(jsdocs): add small example to geolocation utility
1
chore
jsdocs
866,415
09.10.2019 15:47:48
14,400
98af1566c014e79dddf52870f2cb2cd50703ba17
chore(geolocation): code cleanup
[ { "change_type": "DELETE", "diff": "-GEO_API=https://api.www.s81c.com/webmaster/dbip/\n\\ No newline at end of file\n", "new_path": null, "old_path": "packages/utilities/.env" }, { "change_type": "MODIFY", "diff": "import axios from 'axios';\n+import root from 'window-or-global';\nconst ...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(geolocation): code cleanup
1
chore
geolocation
67,476
09.10.2019 15:49:35
-7,200
66f7e11f68a907804e9a80259bbeb20ca65c23e9
feat(scheduler): impl initial structure for new scheduler
[ { "change_type": "ADD", "diff": "+import { IDisposable, IPerformance, PLATFORM } from '@aurelia/kernel';\n+\n+export interface INativeSchedulers {\n+ queueMicroTask(cb: () => void): void;\n+ postMessage(cb: () => void): void;\n+ setTimeout(cb: () => void, timeout?: number): number;\n+ clearTimeout(handle: n...
TypeScript
MIT License
aurelia/aurelia
feat(scheduler): impl initial structure for new scheduler
1
feat
scheduler
366,933
09.10.2019 15:51:57
-32,400
fbcb298c42994b7bf1ce74d29446bda0bff117b6
refator: merge PrevPaginationItem and NextPaginationItem into a single component (PaginationControllerItem)
[ { "change_type": "MODIFY", "diff": "@@ -4,9 +4,8 @@ import styled, { css } from 'styled-components'\nimport { InjectedProps, withTheme } from '../../hocs/withTheme'\nimport { range } from '../../libs/lodash'\n-import { NextPaginationItem } from './NextPaginationItem'\nimport { PaginationItem } from './Pagin...
TypeScript
MIT License
kufu/smarthr-ui
refator: merge PrevPaginationItem and NextPaginationItem into a single component (PaginationControllerItem)
1
refator
null
866,415
09.10.2019 15:53:36
14,400
fe2ad78d7070661fd3050da22d0ebe642304b2ab
chore(ipcinfo): add examples in the jsdoc for ipcinfo util
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,12 @@ class ipcinfoCookie {\n* retreive the ipcInfo cookie that contains the cc and lc\n* decodes and converts to object\n*\n+ * @example\n+ * import { ipcinfoCookie } from '@carbon/ibmdotcom-utilities';\n+ *\n+ * const info = ipcinfoCookie.get();\n+ *\n+ *\n...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(ipcinfo): add examples in the jsdoc for ipcinfo util
1
chore
ipcinfo
815,601
09.10.2019 16:01:48
-28,800
014fe925489300bfa76be46849e66fb09dc8265d
ci: Make sure cargo-audit up-to-date
[ { "change_type": "MODIFY", "diff": "@@ -80,6 +80,11 @@ matrix:\n- make check-cargotoml\n- make check-whitespaces\n- make check-dirty-rpc-doc\n+ - name: Security Audit\n+ if: 'tag IS NOT present AND (type = pull_request OR branch in (master, staging, trying) OR repo != nervosnetwork/ckb)'\n+ os: linux\n+ rus...
Rust
MIT License
nervosnetwork/ckb
ci: Make sure cargo-audit up-to-date
1
ci
null
273,683
09.10.2019 16:04:05
-7,200
b0e3cfbe7afe893da3eeac579f578495cf4ae466
fix(graphql): keep extensions for third party fields
[ { "change_type": "MODIFY", "diff": "@@ -184,7 +184,14 @@ function createThirdPartyFields (typeComposer, collection) {\n}\n}\n- typeComposer.addFields(fields)\n+ for (const fieldName in fields) {\n+ const extensions = typeComposer.hasField(fieldName)\n+ ? typeComposer.getFieldExtensions(fieldName)\n+ : {}\n+...
JavaScript
MIT License
gridsome/gridsome
fix(graphql): keep extensions for third party fields
1
fix
graphql
76,617
09.10.2019 16:14:01
-7,200
c6bf7f974f0d6494b0ecddc38645720cfdf63533
fix: restore accent to avoid regression with "amigos"
[ { "change_type": "MODIFY", "diff": "@@ -1262,7 +1262,7 @@ SpanishStemmer.a_9 = [\nnew Among('e', -1, 2),\nnew Among('o', -1, 1),\nnew Among('os', -1, 1),\n- new Among('i', -1, 1)\n+ new Among('\\u00ED', -1, 1)\n];\nSpanishStemmer.g_v = [\n", "new_path": "lib/nlp/stemmers/spanish-stemmer.js", "old_pa...
JavaScript
MIT License
axa-group/nlp.js
fix: restore accent to avoid regression with "amigos"
1
fix
null
306,444
09.10.2019 16:23:47
-7,200
1a22c9bc5fbb3f80f4643f1a51d35a8ffdae59de
fix(button): guard against _nativeButton not defined
[ { "change_type": "MODIFY", "diff": "@@ -175,7 +175,7 @@ export class LionButton extends DisabledWithTabIndexMixin(SlotMixin(LitElement))\n* Dispatch submit event and invoke submit on the native form when clicked\n*/\n__clickDelegationHandler() {\n- if (this.type === 'submit' && this._nativeButtonNode.form) ...
JavaScript
MIT License
ing-bank/lion
fix(button): guard against _nativeButton not defined
1
fix
button
815,601
09.10.2019 16:38:01
-28,800
675980334a23815b7a34ad69416ba928ad8ef860
chore: speed up maturity test
[ { "change_type": "MODIFY", "diff": "@@ -108,6 +108,8 @@ impl Spec for ReferenceHeaderMaturity {\nfn modify_chain_spec(&self) -> Box<dyn Fn(&mut ChainSpec) -> ()> {\nBox::new(|spec_config| {\nspec_config.params.cellbase_maturity = CELLBASE_MATURITY_VALUE;\n+ spec_config.params.epoch_duration_target = 30;\n+ ...
Rust
MIT License
nervosnetwork/ckb
chore: speed up maturity test
1
chore
null
722,013
09.10.2019 16:38:03
18,000
47b0d760affa24e342f6061c108ece01e537a0e0
docs: make logos in readme absolute
[ { "change_type": "MODIFY", "diff": "<div align=\"center\" markdown=\"1\" style=\"text-align:center\">\n- <img src=\"assets/logo-withtext.png\" alt=\"Vue Styleguidist\" width=\"400\">\n+ <img src=\"https://raw.githubusercontent.com/vue-styleguidist/vue-styleguidist/dev/assets/logo-withtext.png\" alt=\"Vue St...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
docs: make logos in readme absolute
1
docs
null
401,147
09.10.2019 16:48:10
-19,080
e37fd0192ed91041ecf403fa7f9bf39927ecf4b3
feat(core): add uniquekeyName prop for table component affects:
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ import { ColumnConfig } from '../types';\nimport { Props } from './types';\nconst Body: React.SFC<Props> = React.memo(props => {\n- const { data, columns, onRowClick, selectedRows, onRowSelection, addColumnMaxSize } = props;\n+ const { data, columns, onRow...
TypeScript
MIT License
medly/medly-components
feat(core): add uniquekeyName prop for table component affects: @medly-components/core
1
feat
core
889,109
09.10.2019 17:02:49
25,200
23bda1dc9bf24e620bacb66ade6e813e93590692
fix(deps): pin to newer version of grpc
[ { "change_type": "MODIFY", "diff": "\"predocs-test\": \"npm run docs\"\n},\n\"dependencies\": {\n- \"@google-cloud/common-grpc\": \"^1.0.5\",\n+ \"@google-cloud/common-grpc\": \"^1.0.6\",\n\"@google-cloud/paginator\": \"^2.0.0\",\n\"@google-cloud/projectify\": \"^1.0.0\",\n\"@google-cloud/promisify\": \"^1....
TypeScript
Apache License 2.0
googleapis/nodejs-logging
fix(deps): pin to newer version of grpc (#602)
1
fix
deps
76,617
09.10.2019 17:08:38
-7,200
e19c2661720f50d1b35d6c6fb61310f029d66a00
fix: change order in Spanish Stemmer to fix 'aburrimos'
[ { "change_type": "MODIFY", "diff": "@@ -1242,7 +1242,6 @@ SpanishStemmer.a_8 = [\nnew Among('iremos', 78, 2),\nnew Among('asemos', 78, 2),\nnew Among('iesemos', 78, 2),\n- new Among('imos', -1, 2),\nnew Among('aras', -1, 2),\nnew Among('eras', -1, 2),\nnew Among('iras', -1, 2),\n@@ -1254,7 +1253,8 @@ Spanis...
JavaScript
MIT License
axa-group/nlp.js
fix: change order in Spanish Stemmer to fix 'aburrimos'
1
fix
null
815,601
09.10.2019 17:11:41
-28,800
e5e9f7dd30461c5cd85c399f9e81b978e978a6ac
test: simple header field json format check
[ { "change_type": "MODIFY", "diff": "@@ -609,6 +609,7 @@ dependencies = [\n\"ckb-types 0.23.0-pre\",\n\"faster-hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n+ \"lazy_static 1.4.0 (registry+https://github...
Rust
MIT License
nervosnetwork/ckb
test: simple header field json format check
1
test
null
67,476
09.10.2019 17:32:39
-7,200
d141d94d9657cf6d48063ca668c547212ee26f3f
refactor(scheduler): add interfaces
[ { "change_type": "MODIFY", "diff": "-import { IDisposable, IPerformance, PLATFORM } from '@aurelia/kernel';\n+import { IDisposable, PLATFORM, DI } from '@aurelia/kernel';\n+export const INativeSchedulers = DI.createInterface<INativeSchedulers>('INativeSchedulers').noDefault();\nexport interface INativeSched...
TypeScript
MIT License
aurelia/aurelia
refactor(scheduler): add interfaces
1
refactor
scheduler
866,395
09.10.2019 17:33:15
14,400
588d0f75dcd3b5a1f52a262606cf328e8146ed1e
fix(masthead): fix masthead keyboard accessibility; fixes
[ { "change_type": "MODIFY", "diff": "@@ -67,8 +67,6 @@ class HeaderMenu extends React.Component {\nselectedIndex: null,\n};\nthis.items = [];\n- this.setIgnoreBlur = this.setIgnoreBlur.bind(this);\n- this.clearIgnoreBlur = this.clearIgnoreBlur.bind(this);\n}\n/**\n@@ -103,20 +101,9 @@ class HeaderMenu extend...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(masthead): fix masthead keyboard accessibility; fixes #160
1
fix
masthead
67,476
09.10.2019 17:33:18
-7,200
396cafec3ab473cabedf7c802de91cc158400683
fix(jsdom): enable pretendToBeVisual by default
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ class JSDOMInitializer implements IDOMInitializer {\npublic constructor(container: IContainer) {\nthis.container = container;\n- this.jsdom = new JSDOM();\n+ this.jsdom = new JSDOM('', { pretendToBeVisual: true });\n}\npublic static register(container: I...
TypeScript
MIT License
aurelia/aurelia
fix(jsdom): enable pretendToBeVisual by default
1
fix
jsdom
217,922
09.10.2019 17:42:14
-7,200
dbe0eebd0ffb1fe9a382cd484e318f29464198d9
fix(search): fixed an issue with debounce not being applied properly in some cases
[ { "change_type": "MODIFY", "diff": "@@ -252,6 +252,7 @@ export class SearchComponent implements OnInit {\nthis.availableJobs = this.gt.getJobs().filter(job => job.id > 0).map(job => job.id);\n});\nthis.results$ = combineLatest([this.query$, this.searchType$, this.filters$, this.sort$]).pipe(\n+ debounceTime...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(search): fixed an issue with debounce not being applied properly in some cases
1
fix
search
730,428
09.10.2019 17:56:39
0
4746cfb96e0f4ddd553b0d13815bacc23a0920b8
chore(release): 0.2.46 [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.46](https://github.com/webex/react-widgets/compare/v0.2.45...v0.2.46) (2019-10-09)\n+\...
JavaScript
MIT License
webex/react-widgets
chore(release): 0.2.46 [skip ci]
1
chore
release
791,637
09.10.2019 18:06:38
14,400
0bebf9bb514ebd824e8f24467673b6922c406203
fix(deps): remove direct dependency on
[ { "change_type": "MODIFY", "diff": "\"@google-cloud/precise-date\": \"^1.0.0\",\n\"@google-cloud/projectify\": \"^1.0.0\",\n\"@google-cloud/promisify\": \"^1.0.0\",\n- \"@grpc/grpc-js\": \"^0.6.6\",\n\"@sindresorhus/is\": \"^1.0.0\",\n\"@types/duplexify\": \"^3.6.0\",\n\"@types/long\": \"^4.0.0\",\n", "...
TypeScript
Apache License 2.0
googleapis/nodejs-pubsub
fix(deps): remove direct dependency on @grpc/grpc-js (#773)
1
fix
deps
807,849
09.10.2019 18:21:23
25,200
1dc7f1ffccfcdf567bba59f6bb093917f33981ef
test: Apparently conventional-commits uses the full 40-character SHA for the commit URL now
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline\n### Features\n-* I should be placed in the CHANGELOG ([SHA](https://github.com/lerna/changelog-missing/commit/SHA))\n+* I should be placed in the CHANGELOG ([SHA](https://g...
JavaScript
MIT License
lerna/lerna
test: Apparently conventional-commits uses the full 40-character SHA for the commit URL now
1
test
null
807,849
09.10.2019 18:22:36
25,200
bffa7f228fd5acd240dfea8d3e757040dbe4ca1b
chore(release): v3.17.0
[ { "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+# [3.17.0](https://github.com/lerna/lerna/compare/v3.16.5...v3.17.0) (2019-10-10)\n+\n+\n+### Features\n+\n+* **link:...
JavaScript
MIT License
lerna/lerna
chore(release): v3.17.0
1
chore
release
67,516
09.10.2019 18:27:56
-7,200
46cdfdda045ad29617379ecebf5552227c036865
feat(test): new html assertions for text and value
[ { "change_type": "MODIFY", "diff": "import { CustomElement } from '@aurelia/runtime';\n-import { assert, fail } from '@aurelia/testing';\n+import { assert, fail, getVisibleText } from '@aurelia/testing';\nimport { App } from './app/app';\nimport { startup, TestExecutionContext } from './app/startup';\ndescr...
TypeScript
MIT License
aurelia/aurelia
feat(test): new html assertions for text and value
1
feat
test
67,516
09.10.2019 18:40:40
-7,200
11b2f3558fd536ffe9b5b49c8874c699d7508daa
fix(integration): easier test boilerplate
[ { "change_type": "MODIFY", "diff": "import { CustomElement } from '@aurelia/runtime';\n-import { assert, fail, getVisibleText } from '@aurelia/testing';\n+import { assert, fail } from '@aurelia/testing';\nimport { App } from './app/app';\nimport { startup, TestExecutionContext } from './app/startup';\n-desc...
TypeScript
MIT License
aurelia/aurelia
fix(integration): easier test boilerplate
1
fix
integration
471,557
09.10.2019 18:45:33
-10,800
caa8e08c84283d0fe7baedb6c75755e307a3de1b
chore: let prettier handle package.json files
[ { "change_type": "MODIFY", "diff": "dependencies:\nregenerator-runtime \"^0.13.2\"\n+\"@babel/runtime@^7.3.4\":\n+ version \"7.6.3\"\n+ resolved \"https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.3.tgz#935122c74c73d2240cafd32ddb5fc2a6cd35cf1f\"\n+ integrity sha512-kq6anf9JGjW8Nt5rYfEuGRaEAaH1mkv3Bb...
JavaScript
MIT License
open-wc/open-wc
chore: let prettier handle package.json files
1
chore
null
730,428
09.10.2019 19:46:16
0
e191cc2e197518e39fb8d8cce36d240b809adc23
chore(release): 0.2.47 [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.47](https://github.com/webex/react-widgets/compare/v0.2.46...v0.2.47) (2019-10-09)\n+\...
JavaScript
MIT License
webex/react-widgets
chore(release): 0.2.47 [skip ci]
1
chore
release
217,922
09.10.2019 20:26:11
-7,200
0bdc29e2592fdccd024ee225cbd4ac07a9cdfb10
chore: added basic tracking for desynth packets
[ { "change_type": "MODIFY", "diff": "@@ -59,6 +59,7 @@ import * as semver from 'semver';\nimport { MachinaService } from './core/electron/machina.service';\nimport { UserInventoryService } from './core/database/user-inventory.service';\nimport { UniversalisService } from './core/api/universalis.service';\n+i...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: added basic tracking for desynth packets
1
chore
null
217,922
09.10.2019 20:51:43
-7,200
2db68b3623cf7cd4faeb635d3f2426297d7215f4
chore: adding user id validation cloud function
[ { "change_type": "MODIFY", "diff": "@@ -89,6 +89,13 @@ exports.updateUserListCount = functions.runWith(runtimeOpts).firestore.document(\n});\n});\n+exports.userIdValidator = functions.runWith(runtimeOpts).https.onRequest((request, response) => {\n+ const userId = request.query.userId;\n+ return firestore.co...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: adding user id validation cloud function
1
chore
null
217,922
09.10.2019 22:07:26
-7,200
c3b0622936b56ac9e9b8daebe913f33670321cac
chore: adding desynth data gathering
[ { "change_type": "MODIFY", "diff": "@@ -2,14 +2,29 @@ import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { IpcService } from '../electron/ipc.service';\nimport { ofPacketSubType } from '../rxjs/of-packet-subtype';\n-import { buffer, debounceTime } from 'r...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: adding desynth data gathering
1
chore
null
67,476
09.10.2019 22:52:06
-7,200
341dd6938de2c9a3d5452c57b3ccb5bf3f4191d8
feat(scheduler): add shims and initializers
[ { "change_type": "MODIFY", "diff": "import { DI, IContainer, IRegistry, IResolver, Key, Registration } from '@aurelia/kernel';\n-import { IDOM, IDOMInitializer, ISinglePageApp } from '@aurelia/runtime';\n+import { IDOM, IDOMInitializer, ISinglePageApp, INativeSchedulers } from '@aurelia/runtime';\nimport { ...
TypeScript
MIT License
aurelia/aurelia
feat(scheduler): add shims and initializers
1
feat
scheduler
447,440
09.10.2019 23:02:12
18,000
9aff50486b97154a7b29397f194005fa08f9f689
refactor: migrate ButtonIcon to styled-components
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport PropTypes from 'prop-types';\n-import classnames from 'classnames';\n-import './styles.css';\n+import StyledContainer from './styled/container';\n/**\n* Button groups are used to bunch together buttons with similar actions\n*/\nexport de...
JavaScript
MIT License
nexxtway/react-rainbow
refactor: migrate ButtonIcon to styled-components (#1063)
1
refactor
null
447,440
09.10.2019 23:03:37
18,000
4fd6daee1f77e77fac540a59bbdbe50d92476846
docs: add typescript item to getting started
[ { "change_type": "ADD", "diff": "+import React from 'react';\n+import PropTypes from 'prop-types';\n+\n+const TypeScript = props => {\n+ const { className } = props;\n+ return (\n+ <svg\n+ className={className}\n+ width=\"174px\"\n+ height=\"100px\"\n+ viewBox=\"0 0 174 100\"\n+ version=\"1.1\"\n+ xmlns=\"h...
JavaScript
MIT License
nexxtway/react-rainbow
docs: add typescript item to getting started (#1069)
1
docs
null
447,440
09.10.2019 23:10:01
18,000
aec75667eb3fdd781fc65a75f65d869a203995c2
refactor: migrate Chart to styled-components
[ { "change_type": "MODIFY", "diff": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\n-import classnames from 'classnames';\nimport ChartJS from 'chart.js';\nimport resolveOptions from './resolveOptions';\nimport resolveDatasets from './resolveDatasets';\n-import './styles.css'...
JavaScript
MIT License
nexxtway/react-rainbow
refactor: migrate Chart to styled-components (#1067)
1
refactor
null
67,516
09.10.2019 23:22:12
-7,200
ffb65ba1d0266e1c5ed466dac6fe0dc8803e0d1c
feat(testing): new tracing capabolities
[ { "change_type": "ADD", "diff": "+import { CallCollection } from '@aurelia/testing';\n+\n+export const callCollection = new CallCollection();\n", "new_path": "packages/__tests__/integration/app/debug.ts", "old_path": null }, { "change_type": "MODIFY", "diff": "import { computed, customEl...
TypeScript
MIT License
aurelia/aurelia
feat(testing): new tracing capabolities
1
feat
testing
151,430
10.10.2019 01:01:15
25,200
ceb0e43686624cd10a319096f0d2ee4a2315b49d
docs: update docs gen with server + client side docs
[ { "change_type": "MODIFY", "diff": "@@ -4,8 +4,20 @@ Integration with [customer.io](https://customer.io/) for [analytics](https://www\n[View the docs](https://getanalytics.io/plugins/customerio/)\n-<!-- ANALYTICS_DOCS:START (USAGE) -->\n-## Usage\n+<!-- AUTO-GENERATED-CONTENT:START (TOC:collapse=true&collap...
JavaScript
MIT License
davidwells/analytics
docs: update docs gen with server + client side docs
1
docs
null
447,447
10.10.2019 01:30:38
14,400
bb43db588a87260185b6d05cad7dfbf0b656406d
fix: fix aria-activedescendant on Lookup component
[ { "change_type": "MODIFY", "diff": "@@ -2,10 +2,12 @@ import isNavigationKey from './isNavigationKey';\nimport getNormalizedOptions from './getNormalizedOptions';\nimport getInitialFocusedIndex from './getInitialFocusedIndex';\nimport isOptionVisible from './isOptionVisible';\n+import isMenuOpen from './isM...
JavaScript
MIT License
nexxtway/react-rainbow
fix: fix aria-activedescendant on Lookup component (#1056)
1
fix
null
71,487
10.10.2019 01:38:46
25,200
3627e23910fefd2dd78a9c97c7fb734de61b3ea1
fix(elbv2): validate healthcheck intervals Eagerly validate health check settings. Fixes
[ { "change_type": "MODIFY", "diff": "import cdk = require('@aws-cdk/core');\n-import { BaseTargetGroupProps, ITargetGroup, loadBalancerNameFromListenerArn, LoadBalancerTargetProps,\n+import { BaseTargetGroupProps, HealthCheck, ITargetGroup, loadBalancerNameFromListenerArn, LoadBalancerTargetProps,\nTargetGro...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(elbv2): validate healthcheck intervals (#4280) Eagerly validate health check settings. Fixes #4279.
1
fix
elbv2
447,447
10.10.2019 01:47:20
14,400
68d780bb0b953f914a5065bc68ddbdbdec05918a
test: add accessibility test on StepFour of the ImportRecordFlow component
[ { "change_type": "ADD", "diff": "+import React from 'react';\n+import ReactDOMServer from 'react-dom/server';\n+import { axe } from 'jest-axe';\n+import StepFour from '../../stepFour';\n+\n+describe('<StepFour on ImportRecordsFlow/>', () => {\n+ it('should be accessible', async () => {\n+ expect.assertions(...
JavaScript
MIT License
nexxtway/react-rainbow
test: add accessibility test on StepFour of the ImportRecordFlow component (#1060)
1
test
null
679,913
10.10.2019 01:55:24
-3,600
fc9cf212ec97a719bca6f3214215f5d0aa479ea8
feat(api): add RangeXX types
[ { "change_type": "ADD", "diff": "+export type Range0_1 = 0 | 1;\n+\n+export type Range0_3 = Range0_1 | 2 | 3;\n+\n+export type Range0_7 = Range0_3 | 4 | 5 | 6 | 7;\n+\n+export type Range0_15 = Range0_7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;\n+\n+// prettier-ignore\n+export type Range0_31 =\n+ Range0_15\n+ |...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(api): add RangeXX types
1
feat
api
679,913
10.10.2019 02:03:46
-3,600
ac7fa13fa602947ae4b30c943d8d8fddcd602381
feat(api): add typedArray() factory, update type mappers, docs
[ { "change_type": "MODIFY", "diff": "@@ -44,11 +44,11 @@ export const enum Type {\n}\n/**\n- * WebGL numeric type constants. Unless stated otherwise, these can be\n- * used as aliases for `Type` enums (see `GL2TYPE` LUT below), but then\n- * also used directly when initializing WebGL buffers.\n+ * WebGL nume...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(api): add typedArray() factory, update type mappers, docs
1
feat
api
71,267
10.10.2019 02:58:54
25,200
adbc2e35d476e10f156c1063eb300e4433f3dbec
fix(cli): Use RegionalDomainName attribute in output of Toolkit stack for GovCloud and CN compatibility Fixes
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,7 @@ export async function bootstrapEnvironment(environment: cxapi.Environment, aws:\n},\n[BUCKET_DOMAIN_NAME_OUTPUT]: {\nDescription: \"The domain name of the S3 bucket owned by the CDK toolkit stack\",\n- Value: { \"Fn::GetAtt\": [\"StagingBucket\", \"Domai...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(cli): Use RegionalDomainName attribute in output of Toolkit stack for GovCloud and CN compatibility (#4427) Fixes #1469
1
fix
cli
815,605
10.10.2019 04:59:37
0
61f898d489be5d07a20ada84103aa4b31f228c8e
fix: WebAssembly build for core packages
[ { "change_type": "MODIFY", "diff": "@@ -81,6 +81,13 @@ matrix:\n- make check-whitespaces\n- make check-dirty-rpc-doc\n+ - name: WASM build\n+ if: 'tag IS NOT present AND (type = pull_request OR branch in (master, staging, trying) OR repo != nervosnetwork/ckb)'\n+ os: linux\n+ script:\n+ - rustup target add ...
Rust
MIT License
nervosnetwork/ckb
fix: WebAssembly build for core packages
1
fix
null