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
71,366
27.11.2019 00:38:08
-32,400
edd53959af38969339205a5c33aaab11acc72fa6
feat(sns): support KMS masterKey on SNS Add Support KMS masterKey on SNS. It is allowed to set `masterKey` as `Kms::Key` to `TopicProps`. Fixes
[ { "change_type": "MODIFY", "diff": "+import { IKey } from '@aws-cdk/aws-kms';\nimport { Construct, Stack } from '@aws-cdk/core';\nimport { CfnTopic } from './sns.generated';\nimport { ITopic, TopicBase } from './topic-base';\n@@ -23,6 +24,13 @@ export interface TopicProps {\n* @default Generated name\n*/\nr...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(sns): support KMS masterKey on SNS (#5052) Add Support KMS masterKey on SNS. It is allowed to set `masterKey` as `Kms::Key` to `TopicProps`. Fixes #1729
1
feat
sns
679,913
27.11.2019 01:01:24
0
5b1560f0f75a6546bc6b6102a0ff596d950fe824
build: add generate-readme script
[ { "change_type": "ADD", "diff": "+#!/usr/bin/env node\n+const fs = require(\"fs\");\n+\n+try {\n+ const PKG = JSON.parse(fs.readFileSync(\"./package.json\"));\n+ const TPL = fs.readFileSync(\"./README.tpl.md\").toString();\n+ const META = PKG[\"thi.ng\"] || {};\n+ const SHORT_NAME = PKG.name.split(\"/\")[1]...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: add generate-readme script
1
build
null
217,885
27.11.2019 01:11:54
28,800
2736dc230afdf8f1903380ca5aec4d15078df852
chore: Update node-machina-ffxiv to 2.28.11
[ { "change_type": "MODIFY", "diff": "}\n},\n\"node-machina-ffxiv\": {\n- \"version\": \"2.28.10\",\n- \"resolved\": \"https://registry.npmjs.org/node-machina-ffxiv/-/node-machina-ffxiv-2.28.10.tgz\",\n- \"integrity\": \"sha512-/kc/TrI0UcLUpEZ/+agNPkBnNbJNFrvo/ojYqXyGAPiIfaijNTYqdsiXdJrOhh/TDzq484GQbeLKYdmQWG...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: Update node-machina-ffxiv to 2.28.11
1
chore
null
679,913
27.11.2019 02:00:11
0
e75af677e39f6051992562573fcf2cc21ee261d9
docs(examples): update pkg meta data, add images
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/assets/examples/bitmap-font.gif differ\n", "new_path": "assets/examples/bitmap-font.gif", "old_path": "assets/examples/bitmap-font.gif" }, { "change_type": "ADD", "diff": "Binary files /dev/null and b/assets/examples/shader-as...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(examples): update pkg meta data, add images
1
docs
examples
679,913
27.11.2019 02:02:45
0
73d18a8533fd034c5bfaaec694158835c0d538b6
docs: update authors file formatting
[ { "change_type": "MODIFY", "diff": "-## Maintainer\n+### Maintainer\n- Karsten Schmidt (@postspectacular)\n-## Contributors\n+### Contributors\n- Gavin Cannizzaro (@gavinpc-mindgrub)\n- Jay Zawrotny (@eccentric-j)\n", "new_path": "packages/checks/AUTHORS.md", "old_path": "packages/checks/AUTHORS.md"...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: update authors file formatting
1
docs
null
791,903
27.11.2019 03:26:13
-39,600
105f30db7f407007fcf1b83121a26034c68f9f1a
core(third-party-summary): don't consider main resource entity to be third party
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,7 @@ const Audit = require('./audit.js');\nconst BootupTime = require('./bootup-time.js');\nconst i18n = require('../lib/i18n/i18n.js');\nconst NetworkRecords = require('../computed/network-records.js');\n+const MainResource = require('../computed/main-resour...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(third-party-summary): don't consider main resource entity to be third party (#10006)
1
core
third-party-summary
722,013
27.11.2019 08:15:34
21,600
b33e482b1aebbd6ad9d527d3906672e1b7a56219
build: simplify package script make use of the --delete-dir-on-start option of babel this way, non need for rimraf anymore
[ { "change_type": "MODIFY", "diff": "\"version\": \"4.0.5\",\n\"homepage\": \"https://vue-styleguidist.github.io\",\n\"scripts\": {\n- \"precompile\": \"rimraf lib/\",\n- \"compile\": \"yarn typings && babel src/ --ignore **/__tests__,**/*.spec.* -d lib/ --extensions .js,.ts,.tsx,.jsx\",\n+ \"compile\": \"ya...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
build: simplify package script make use of the --delete-dir-on-start option of babel this way, non need for rimraf anymore
1
build
null
306,444
27.11.2019 08:46:51
-3,600
57a3c04873d2f7e6cc879f4d129a10d7d863a8f7
feat(overlays): add before-show event to OverlayMixin
[ { "change_type": "MODIFY", "diff": "@@ -36,6 +36,9 @@ export const OverlayMixin = dedupeMixin(\n}\nset opened(show) {\n+ if (show) {\n+ this.dispatchEvent(new Event('before-show'));\n+ }\nthis._opened = show; // mainly captured for sync on connectedCallback\nif (this._overlayCtrl) {\nthis.__syncOpened();\n"...
JavaScript
MIT License
ing-bank/lion
feat(overlays): add before-show event to OverlayMixin
1
feat
overlays
306,444
27.11.2019 09:20:19
-3,600
411889c919951a74a85b97f8edff7379c46180f7
fix(overlays): fix overlay content node selector to be more accurate
[ { "change_type": "MODIFY", "diff": "@@ -148,11 +148,21 @@ export const OverlayMixin = dedupeMixin(\nreturn Array.from(this.children).find(child => child.slot === 'invoker');\n}\n- // FIXME: This should be refactored to\n- // Array.from(this.children).find(child => child.slot === 'content')\n- // When this i...
JavaScript
MIT License
ing-bank/lion
fix(overlays): fix overlay content node selector to be more accurate
1
fix
overlays
67,476
27.11.2019 10:28:21
-3,600
5de58b277753175e8d64059171a87510689e0c83
refactor(aot): add Symbol.toPrimitive and Symbol.toStringTag to internal value types
[ { "change_type": "MODIFY", "diff": "@@ -92,6 +92,14 @@ export class $Boolean<T extends boolean = boolean> {\nreturn this;\n}\n+ public [Symbol.toPrimitive](): string {\n+ return String(this['[[Value]]']);\n+ }\n+\n+ public [Symbol.toStringTag](): string {\n+ return Object.prototype.toString.call(this['[[Val...
TypeScript
MIT License
aurelia/aurelia
refactor(aot): add Symbol.toPrimitive and Symbol.toStringTag to internal value types
1
refactor
aot
471,470
27.11.2019 10:38:08
-3,600
3864ba004db9c6f8f4f0c05db909d44fef79f3b4
docs: pwa-ify docs site
[ { "change_type": "MODIFY", "diff": "@@ -155,9 +155,26 @@ module.exports = {\nlastUpdated: 'Last Updated',\n},\ndest: '_site',\n- plugins: ['@vuepress/google-analytics'],\n+ plugins: [\n+ '@vuepress/google-analytics',\n+ [\n+ '@vuepress/pwa',\n+ {\n+ serviceWorker: true,\n+ updatePopup: false,\n+ generateSWC...
JavaScript
MIT License
open-wc/open-wc
docs: pwa-ify docs site
1
docs
null
104,844
27.11.2019 11:03:58
18,000
cb0d621c91b5274604ed790d71800638694a5cbf
fix(sidenav): fix issues with sidenav stlyes
[ { "change_type": "MODIFY", "diff": "@@ -75,7 +75,7 @@ const defaultProps = {\n/**\n* Side Navigation. part of UI shell\n*/\n-const SideNav = ({ links, defaultExpanded, isSideNavExpanded, i18n }) => {\n+const SideNav = ({ links, defaultExpanded, isSideNavExpanded, i18n, onToggle, ...props }) => {\nconst nav ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(sidenav): fix issues with sidenav stlyes
1
fix
sidenav
531,793
27.11.2019 11:04:20
0
f9633b49eaa30b15987e7574b4040ea2121dbe45
feat(storybook): render both themes in storybook
[ { "change_type": "MODIFY", "diff": "@@ -10,6 +10,9 @@ import createPercyAddon from \"@percy-io/percy-storybook\";\nimport { advanceTo } from \"jest-date-mock\";\n+import { ThemeContext } from \"Components/Theme\";\n+import { ReactSelectColors, ReactSelectStyles } from \"Components/MultiSelect\";\n+\nconst {...
TypeScript
Apache License 2.0
prymitive/karma
feat(storybook): render both themes in storybook
1
feat
storybook
711,597
27.11.2019 11:09:16
-3,600
561c793b61e9a50068c3ca1d4501a58f5febdb17
fix(email-plugin): Fix incorrect relative imports
[ { "change_type": "MODIFY", "diff": "-import { LanguageCode } from '../../common/lib/generated-types';\n-import { Omit } from '../../common/lib/omit';\n-import { Type } from '../../common/lib/shared-types';\n+import { LanguageCode } from '@vendure/common/lib/generated-types';\n+import { Type } from '@vendure...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(email-plugin): Fix incorrect relative imports
1
fix
email-plugin
104,844
27.11.2019 11:10:02
18,000
7f208c42865680a1ea1d0d9c2e6439e1775d6c27
chore(snaps): update sidenav story shot
[ { "change_type": "MODIFY", "diff": "@@ -118,7 +118,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT|SideN\nclassName=\"bx--side-nav__items\"\n>\n<li\n- className=\"bx--side-nav__item\"\n+ className=\"bx--side-nav__item bx--side-nav__item--large\"\n>\n<div\naria-label=\"Boards\...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(snaps): update sidenav story shot
1
chore
snaps
276,946
27.11.2019 11:27:30
10,800
a041511554d699d2fa0d727cc9e102c3efc45306
fix(yoga/slider): fix native slider, add width to wrapper
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,7 @@ const Slider = ({\nsnapped,\nvalues,\ntooltip,\n+ sliderLength,\ntheme: {\nyoga: {\ncomponents: { slider },\n@@ -49,7 +50,7 @@ const Slider = ({\n};\nreturn (\n- <>\n+ <View style={{ width: sliderLength }}>\n{snapped && (\n<View\nstyle={{\n@@ -62,9 +63,1...
JavaScript
MIT License
gympass/yoga
fix(yoga/slider): fix native slider, add width to wrapper
1
fix
yoga/slider
104,848
27.11.2019 11:32:34
21,600
6d39f71dbd86650c916d54fc166f55236e159736
fix(listcard): refactor listcard to scss and fix styles
[ { "change_type": "MODIFY", "diff": "@@ -22596,7 +22596,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT|Dashb\nclassName=\"bx--structured-list-row\"\n>\n<div\n- className=\"list-card--item\"\n+ className=\"list-card--item bx--structured-list-td\"\n>\n<div\nclassName=\"list-car...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(listcard): refactor listcard to scss and fix styles
1
fix
listcard
104,844
27.11.2019 11:39:19
18,000
e45ba22f4af64ce1dd1d6d6b2c5d0833f98e2589
fix(sidenav): remove unused prop
[ { "change_type": "MODIFY", "diff": "@@ -75,7 +75,7 @@ const defaultProps = {\n/**\n* Side Navigation. part of UI shell\n*/\n-const SideNav = ({ links, defaultExpanded, isSideNavExpanded, i18n, onToggle, ...props }) => {\n+const SideNav = ({ links, defaultExpanded, isSideNavExpanded, i18n, ...props }) => {\n...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(sidenav): remove unused prop
1
fix
sidenav
276,946
27.11.2019 11:42:00
10,800
66c6bd135add6375c9ac57a8e7fdb13a9b2a12a4
refactor(yoga/card): remove unnecessary styles
[ { "change_type": "MODIFY", "diff": "@@ -9,9 +9,6 @@ const CardStyled = styled.View(\n},\n},\n}) => `\n- flex-direction: column;\n- justify-content: flex-start;\n- width: 100%;\npadding:\n${card.padding.top}px\n${card.padding.right}px\n", "new_path": "packages/yoga/src/Card/native/Card.jsx", "old_pat...
JavaScript
MIT License
gympass/yoga
refactor(yoga/card): remove unnecessary styles
1
refactor
yoga/card
67,476
27.11.2019 11:49:17
-3,600
fd02a26c7368e8ef18cee115f5dd182953003f5f
chore(aot): a few test logging improvements
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ import {\nLogConfig,\nISink,\nConsoleSink,\n+ bound,\n} from '@aurelia/kernel';\nimport {\nIFileSystem,\n@@ -254,24 +255,40 @@ class TestReporter {\n}\n}\n+function toString(x: { toString(): string; }): string {\n+ return x.toString();\n+}\n+\n+const utf...
TypeScript
MIT License
aurelia/aurelia
chore(aot): a few test logging improvements
1
chore
aot
104,844
27.11.2019 11:52:20
18,000
5a77a66bff283b76168fb37fc4d7112609b7bab8
fix(sidnav): fixed submenu when menu collapsed
[ { "change_type": "MODIFY", "diff": "@@ -28,6 +28,17 @@ const links = [\n// isActive: true,\n},\nlinkContent: 'Boards',\n+ childContent: [\n+ {\n+ metaData: {\n+ label: 'Yet another link',\n+ title: 'Yet another link',\n+ onClick: action('inner menu click'),\n+ element: 'button',\n+ },\n+ content: 'Yet anoth...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(sidnav): fixed submenu when menu collapsed
1
fix
sidnav
104,844
27.11.2019 11:54:14
18,000
5fd884ca3f1efec4c6b6b84ab6330286b7ffd4d6
chore(snaps): update sidenav snap
[ { "change_type": "MODIFY", "diff": "@@ -118,17 +118,17 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT|SideN\nclassName=\"bx--side-nav__items\"\n>\n<li\n- className=\"bx--side-nav__item bx--side-nav__item--large\"\n+ className=\"bx--side-nav__item bx--side-nav__item--icon bx--s...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(snaps): update sidenav snap
1
chore
snaps
699,191
27.11.2019 12:21:24
28,800
2a9ce57a61a0ef9c1aadc0cfe0c9c112b4bc784e
fix(button): defensively set hover/focus/active styles from legacy globals
[ { "change_type": "MODIFY", "diff": "@@ -64,6 +64,12 @@ exports[`Button States Has a disabled state 1`] = `\nborder: none;\n}\n+.emotion-2:hover,\n+.emotion-2:focus,\n+.emotion-2:active {\n+ color: #ffffff;\n+}\n+\n.emotion-2:hover,\n.emotion-2:active {\nbackground-color: #b3d3e9;\n@@ -130,6 +136,12 @@ expor...
TypeScript
MIT License
twilio-labs/paste
fix(button): defensively set hover/focus/active styles from legacy globals (#205)
1
fix
button
306,444
27.11.2019 13:12:49
-3,600
0b3149469aaa4f7b50d62fc758137a2c94e3a10c
fix(overlays): remove _contentNodeWrapper on teardown
[ { "change_type": "MODIFY", "diff": "@@ -78,7 +78,6 @@ describe('FormControlMixin', () => {\nconst el = wrapper.querySelector(elem);\nconst { _inputNode } = el;\n- console.log('_inputNode', _inputNode);\n// 1. addToAriaLabelledBy()\n// external inputs should go in order defined by user\n", "new_path": "p...
JavaScript
MIT License
ing-bank/lion
fix(overlays): remove _contentNodeWrapper on teardown
1
fix
overlays
306,421
27.11.2019 13:25:59
-3,600
708b6f991d1f37013a69f5e880f44ac267131661
feat(localize): add getCurrencyName
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,7 @@ export { normalizeDateTime } from './src/date/normalizeDateTime.js';\nexport { parseDate } from './src/date/parseDate.js';\nexport { formatNumber } from './src/number/formatNumber.js';\nexport { formatNumberToParts } from './src/number/formatNumberToParts....
JavaScript
MIT License
ing-bank/lion
feat(localize): add getCurrencyName
1
feat
localize
722,042
27.11.2019 13:26:49
-28,800
5df05e0a8e2540ae0af882d83daf4f28d818b241
fix(docgen): avoid incorrect of getting nested '}' param type
[ { "change_type": "MODIFY", "diff": "import { BlockTag, DocBlockTags, Param, ParamType } from '../Documentation'\n+import matchRecursiveRegExp from './matchRecursiveRegexp'\nconst DOCLET_PATTERN = /^(?:\\s+)?@(\\w+)(?:$|\\s((?:[^](?!^(?:\\s+)?@\\w))*))/gim\nfunction getParamInfo(content: string, hasName: boo...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
fix(docgen): avoid incorrect of getting nested '}' param type
1
fix
docgen
306,421
27.11.2019 13:29:40
-3,600
76492af889bc35b99a3aaf9d3315a9f6c896d43d
fix(field): getAriaElementsInRightDomOrder IE fix
[ { "change_type": "MODIFY", "diff": "+const isIE11 = /Trident/.test(window.navigator.userAgent);\n+\n/**\n* @desc Let the order of adding ids to aria element by DOM order, so that the screen reader\n* respects visual order when reading:\n* @param {array} descriptionElements - holds references to description ...
JavaScript
MIT License
ing-bank/lion
fix(field): getAriaElementsInRightDomOrder IE fix
1
fix
field
306,421
27.11.2019 13:30:55
-3,600
0d687bbe1e953b2b559737b9825cb055a2e9c75a
fix(input-amount): a11y currency label
[ { "change_type": "MODIFY", "diff": "import { css } from '@lion/core';\n-import { LocalizeMixin } from '@lion/localize';\n+import { LocalizeMixin, getCurrencyName } from '@lion/localize';\nimport { LionInput } from '@lion/input';\nimport { FieldCustomMixin } from '@lion/field';\nimport { IsNumber } from '@li...
JavaScript
MIT License
ing-bank/lion
fix(input-amount): a11y currency label
1
fix
input-amount
866,401
27.11.2019 13:47:01
10,800
e79f8600fe481002dbfda34a9aa0222dbde090e4
feat(pattern): pictogram array creation
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,5 @@ export const SIMPLELONGFORM =\n*\n* @type {string | boolean}\n*/\n-export const DDS_CONTENTARRAYWITHPICTOGRAMS =\n- process.env.DDS_CONTENTARRAYWITHPICTOGRAMS === 'true' ||\n- DDS_FLAGS_ALL ||\n- false;\n+export const DDS_PICTOGRAMARRAY =\n+ process.env....
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(pattern): pictogram array creation
1
feat
pattern
866,401
27.11.2019 14:10:45
10,800
43011df3fcfea60aa645da9613e7d7fdd2c1a8ad
fix: corrected exported element path
[ { "change_type": "MODIFY", "diff": "* LICENSE file in the root directory of this source tree.\n*/\n-export {\n- default as ContentArrayWithPictograms,\n-} from './ContentArrayWithPictograms';\n+export { default as PictogramArray } from './PictogramArray';\n", "new_path": "packages/patterns-react/src/pat...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix: corrected exported element path
1
fix
null
306,406
27.11.2019 14:19:59
-3,600
b34b399e173199f89d8f55f245519c014ec05264
fix(datepicker): close with outside click
[ { "change_type": "MODIFY", "diff": "@@ -264,6 +264,7 @@ export class LionInputDatepicker extends OverlayMixin(LionInputDate) {\ncontentNode,\ninvokerNode,\nelementToFocusAfterHide: invokerNode,\n+ hidesOnOutsideClick: true,\n});\nreturn ctrl;\n}\n", "new_path": "packages/input-datepicker/src/LionInputDa...
JavaScript
MIT License
ing-bank/lion
fix(datepicker): close with outside click (#386)
1
fix
datepicker
531,793
27.11.2019 14:23:10
0
569fdc7e087eac01a135f98236aea6748fc50b0a
fix(deps): update bootswatch to 4.4.0
[ { "change_type": "MODIFY", "diff": "\"integrity\": \"sha512-dqCYJNs/Fxa3IVQ+v/lC694POCThUjZsA4wwqs8l+yk67B6ww2Ki++WaM6CVGe5+tArBBrknzjjh01/NT5rLjA==\"\n},\n\"bootswatch\": {\n- \"version\": \"4.3.1\",\n- \"resolved\": \"https://registry.npmjs.org/bootswatch/-/bootswatch-4.3.1.tgz\",\n- \"integrity\": \"sha5...
TypeScript
Apache License 2.0
prymitive/karma
fix(deps): update bootswatch to 4.4.0
1
fix
deps
603,467
27.11.2019 15:09:24
0
e5e638bfe3468523a3a7ff34f7dabd458aedda3b
fix(protractor): Corrected the test runner detector So that explicit serenity.runner config takes precedence over guessing
[ { "change_type": "MODIFY", "diff": "@@ -24,6 +24,18 @@ describe('TestRunnerDetector', () => {\nexpect(runner).to.be.instanceOf(CucumberTestRunner);\n});\n+ it('uses the CucumberTestRunner even when the Jasmine config is present as well', () => {\n+ const runner = detector.runnerFor({\n+ serenity: {\n+ runne...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(protractor): Corrected the test runner detector So that explicit serenity.runner config takes precedence over guessing
1
fix
protractor
531,793
27.11.2019 15:12:46
0
548e39d6d82463c41394d3204c4d13ac4742db78
fix(ui): revert to bootswatch 4.3.1 colors
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,9 @@ $btn-active-box-shadow: 0;\n@import \"Styles/Fonts\";\n@import \"~bootswatch/dist/darkly/variables\";\n+// revert to bootswatch 4.3.1 colors\n+$light: $gray-800;\n+\n// make links light gray by default instead of green\n$link-color: $gray-400;\n", "n...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): revert to bootswatch 4.3.1 colors
1
fix
ui
67,494
27.11.2019 15:19:42
-3,600
691136518a6752dc9e2e7a9e16cfa3bd5ffa4b08
refactor(router): add context to viewport instruction
[ { "change_type": "MODIFY", "diff": "@@ -75,7 +75,17 @@ export class InstructionResolver {\n}\npublic parseViewportInstructions(instructions: string): ViewportInstruction[] {\n- return this.parseViewportInstructionsWorker(instructions, true).instructions;\n+ const match = instructions.match(/^[./]+/);\n+ let...
TypeScript
MIT License
aurelia/aurelia
refactor(router): add context to viewport instruction
1
refactor
router
67,494
27.11.2019 15:20:58
-3,600
c775d1938104806047d41f97d3524f92b2c07d01
test(router): add context to viewport instruction
[ { "change_type": "MODIFY", "diff": "@@ -92,6 +92,7 @@ describe('InstructionResolver', function () {\nit(`parses viewport instruction: ${instruction}`, async function () {\nconst { host, router, tearDown } = await setup();\n+ viewportInstruction.context = '';\nconst parsed = router.instructionResolver.parseV...
TypeScript
MIT License
aurelia/aurelia
test(router): add context to viewport instruction
1
test
router
866,401
27.11.2019 15:27:42
10,800
9e542731f7351eab5a1fef9fc545d0051728f35e
fix: moved pictogram library to dev dependency
[ { "change_type": "MODIFY", "diff": "\"@carbon/ibmdotcom-react\": \"^1.1.1\",\n\"@carbon/ibmdotcom-styles\": \"1.1.1\",\n\"@carbon/ibmdotcom-utilities\": \"1.1.1\",\n- \"@carbon/pictograms-react\": \"^10.7.0\",\n\"classnames\": \"2.2.6\",\n\"window-or-global\": \"^1.0.1\"\n},\n\"@babel/plugin-transform-runti...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix: moved pictogram library to dev dependency
1
fix
null
815,598
27.11.2019 15:33:26
-28,800
e7a233c12cf3bcd5b4655bf1197e5ec3b00b2949
doc: RPC compatability notice
[ { "change_type": "MODIFY", "diff": "import sys\nimport json\n+\ndef newline(n):\nfor i in range(0, n):\nprint(\"\")\n@@ -11,6 +12,7 @@ def newline(n):\ndef sort_cases_by_module(cases):\nreturn sorted(cases, key=lambda case: case[\"module\"])\n+\ndef print_title(case):\nprint(\"### `{}`\".format(case[\"metho...
Rust
MIT License
nervosnetwork/ckb
doc: RPC compatability notice
1
doc
null
104,844
27.11.2019 15:43:29
18,000
28d483daf57750d16cafec4f5ec4ff73dc23de53
fix(pagewizard): remove func branches to pass file threshold
[ { "change_type": "MODIFY", "diff": "@@ -123,9 +123,9 @@ export const defaultProps = {\nchildren: [],\nnextDisabled: false,\ncurrentStepId: null,\n- onNext: null,\n- onBack: null,\n- setStep: null,\n+ onNext: () => {},\n+ onBack: () => {},\n+ setStep: () => {},\nonClose: null,\nonSubmit: null,\ni18n: {\n", ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(pagewizard): remove func branches to pass file threshold
1
fix
pagewizard
104,844
27.11.2019 15:45:57
18,000
9f79c5e6c677300666d87d9ce2187b503b53efd4
chore(jest): remove exception for statefulPageWizard
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,7 @@ module.exports = {\nfunctions: 80,\nlines: 80,\n},\n- './src/components/**/!(ColumnHeaderRow|ColumnHeaderSelect|FilterHeaderRow|TableToolbar|RowActionsCell|RowActionsError|StatefulWizardInline|WizardInline|StatefulTable|StatefulTableDetailWizard|CatalogC...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(jest): remove exception for statefulPageWizard
1
chore
jest
306,406
27.11.2019 15:48:39
-3,600
4b9ca1e3566f7402f76d60f0863d4c0e859e6ac9
fix: make success message disappear
[ { "change_type": "MODIFY", "diff": "@@ -26,7 +26,15 @@ export class LionValidationFeedback extends LitElement {\nsuper.updated();\nif (this.feedbackData && this.feedbackData[0]) {\nthis.setAttribute('type', this.feedbackData[0].type);\n- } else {\n+ this.currentType = this.feedbackData[0].type;\n+ window.cl...
JavaScript
MIT License
ing-bank/lion
fix: make success message disappear
1
fix
null
104,844
27.11.2019 15:56:16
18,000
bcfda09f49a864d8c69639c196f0737f90954fff
fix(pagewizard): pass noop to prevent func calls blowing up
[ { "change_type": "MODIFY", "diff": "@@ -126,8 +126,8 @@ export const defaultProps = {\nonNext: () => {},\nonBack: () => {},\nsetStep: () => {},\n- onClose: null,\n- onSubmit: null,\n+ onClose: () => {},\n+ onSubmit: () => {},\ni18n: {\nback: 'Back',\nnext: 'Next',\n", "new_path": "src/components/PageWiz...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(pagewizard): pass noop to prevent func calls blowing up
1
fix
pagewizard
865,917
27.11.2019 16:01:20
-3,600
4e7e28d1ff65ad0be0b71d98a45f664a99d905ff
feat(deploy): allow to customize configuration modal
[ { "change_type": "MODIFY", "diff": "@@ -178,7 +178,10 @@ export default class DeploymentConfigModal extends React.PureComponent {\nconst {\nconfiguration: values,\n- validator\n+ validator,\n+ title,\n+ intro,\n+ primaryAction\n} = this.props;\nconst {\n@@ -198,13 +201,16 @@ export default class DeploymentC...
JavaScript
MIT License
camunda/camunda-modeler
feat(deploy): allow to customize configuration modal
1
feat
deploy
865,917
27.11.2019 16:02:36
-3,600
c0e8ccd8507b2a5ca9b6e648827848dc31de5fca
feat(deploy): save deployed process definition This ensures we persist deployment changes without using the start instance tool
[ { "change_type": "MODIFY", "diff": "@@ -30,6 +30,7 @@ import {\nconst DEPLOYMENT_DETAILS_CONFIG_KEY = 'deployment-tool';\nconst ENGINE_ENDPOINTS_CONFIG_KEY = 'camundaEngineEndpoints';\n+const PROCESS_DEFINITION_CONFIG_KEY = 'process-definition';\nconst DEFAULT_ENDPOINT = {\nurl: 'http://localhost:8080/engin...
JavaScript
MIT License
camunda/camunda-modeler
feat(deploy): save deployed process definition This ensures we persist deployment changes without using the start instance tool
1
feat
deploy
551,636
27.11.2019 16:07:38
0
342ff500a6a01ecd657757c77ae5952fdfbf1351
fix: NPE when executing 'INSERT' statement with not enough values in the list.
[ { "change_type": "MODIFY", "diff": "@@ -45,6 +45,31 @@ public class SqlCompiler implements Closeable {\npublic static final ObjList<String> sqlControlSymbols = new ObjList<>(8);\nprivate final static Log LOG = LogFactory.getLog(SqlCompiler.class);\nprivate static final IntList castGroups = new IntList();\n+...
Java
Apache License 2.0
questdb/questdb
fix: NPE when executing 'INSERT' statement with not enough values in the list.
1
fix
null
866,401
27.11.2019 16:12:25
10,800
b590f0bcf0c650fb26bf2df0561a81b7666d73a8
feat(pattern): reset of the cache
[ { "change_type": "DELETE", "diff": "Binary files a/.yarn/offline-mirror/@carbon-ibmdotcom-react-1.1.1.tgz and /dev/null differ\n", "new_path": ".yarn/offline-mirror/@carbon-ibmdotcom-react-1.1.1.tgz", "old_path": ".yarn/offline-mirror/@carbon-ibmdotcom-react-1.1.1.tgz" }, { "change_type": "A...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
feat(pattern): reset of the cache
1
feat
pattern
503,945
27.11.2019 16:17:42
18,000
3af16937a88650781b2d0d3a4d02df211882cf0f
chore(package): Bump versions to 2.43.2
[ { "change_type": "MODIFY", "diff": "\"develop\": \"yarn build:babel:esm --skip-initial-build --watch --verbose --source-maps\"\n},\n\"dependencies\": {\n- \"@patternfly/patternfly\": \"2.43.1\",\n+ \"@patternfly/patternfly\": \"2.43.2\",\n\"@patternfly/react-core\": \"^3.124.1\",\n\"@patternfly/react-styles...
TypeScript
MIT License
patternfly/patternfly-react
chore(package): Bump @patternfly/patternfly versions to 2.43.2 (#3354)
1
chore
package
902,122
27.11.2019 16:25:30
0
f6ac4d3f3bd9b9fe7b6c0e10bf6bb451f121076d
chore(release): v5.18.5
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.18.5](https://github.com/kikobeats/browserless/compare/v5.18.4...v5.18.5) (2019-11-27)\n+\n+**Note:** Version b...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.18.5
1
chore
release
679,913
27.11.2019 16:26:16
0
ba0661c21bde8936e215436f378d1b11f7a8bea5
docs: update generate-readme script
[ { "change_type": "MODIFY", "diff": "@@ -4,43 +4,64 @@ const fs = require(\"fs\");\ntry {\nconst PKG = JSON.parse(fs.readFileSync(\"./package.json\"));\nconst TPL = fs.readFileSync(\"./README.tpl.md\").toString();\n- const META = PKG[\"thi.ng\"] || {};\n- const SHORT_NAME = PKG.name.split(\"/\")[1];\n+ const...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: update generate-readme script
1
docs
null
104,963
27.11.2019 16:31:36
-3,600
75db41e4ad78ad466389ad4a8bba775e682d5913
feat: add tests for cv-inline-loading
[ { "change_type": "ADD", "diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`CvInlineLoading should render correctly when state is ENDING\\` 1`] = `\n+<div data-inline-loading=\"\" role=\"alert\" aria-live=\"assertive\" class=\"bx--inline-loading\">\n+ <div class=\"bx--inline-loading__animatio...
JavaScript
Apache License 2.0
carbon-design-system/carbon-components-vue
feat: add tests for cv-inline-loading (#714)
1
feat
null
865,926
27.11.2019 16:34:50
-3,600
a7142d03cf9b22cb85f2e4cf65926bb372742734
fix(deployment-tool): hide toolbar button if there is no active tab Closes
[ { "change_type": "MODIFY", "diff": "@@ -340,18 +340,19 @@ export default class DeploymentTool extends PureComponent {\nrender() {\nconst {\n+ activeTab,\nmodalState\n} = this.state;\nreturn <React.Fragment>\n- <Fill slot=\"toolbar\" group=\"8_deploy\">\n+ { activeTab && activeTab.type !== 'empty' && <Fill s...
JavaScript
MIT License
camunda/camunda-modeler
fix(deployment-tool): hide toolbar button if there is no active tab Closes #1614
1
fix
deployment-tool
269,478
27.11.2019 16:38:22
28,800
6a759c1b95870c487e2940b16f7b7a870f6015da
fix: docs about default ldflag template The docs state that the default ldflags includes the ShortCommit but in reality the code uses the longer Commit value instead. This behavior has existed since the defaults were introduced ~3 years ago in commit Fixes
[ { "change_type": "MODIFY", "diff": "@@ -49,7 +49,7 @@ builds:\n- ./dontoptimizeme=-N\n# Custom ldflags templates.\n- # Default is `-s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.Date}} -X main.builtBy=goreleaser`.\n+ # Default is `-s -w -X main.version={{.Version}} -X mai...
Go
MIT License
goreleaser/goreleaser
fix: docs about default ldflag template (#1265) The docs state that the default ldflags includes the ShortCommit but in reality the code uses the longer Commit value instead. This behavior has existed since the defaults were introduced ~3 years ago in commit 4af2cb0. Fixes #1264
1
fix
null
866,393
27.11.2019 17:21:24
-32,400
d0bc765705bd81befb607814ee1d04c47507e524
chore(content-switcher): optimize navigation This change introduces `selectorItemEnabled` configuration in content switcher and tabs, to get simpler logic for navigation considering disabled items.
[ { "change_type": "MODIFY", "diff": "@@ -67,14 +67,9 @@ class BXContentSwitcher extends LitElement {\n* @returns The item to be selected.\n*/\nprotected _getNextItem(currentItem: BXSwitch, direction: number) {\n- const items = this.querySelectorAll((this.constructor as typeof BXContentSwitcher).selectorItem)...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(content-switcher): optimize navigation (#184) This change introduces `selectorItemEnabled` configuration in content switcher and tabs, to get simpler logic for navigation considering disabled items.
1
chore
content-switcher
551,636
27.11.2019 17:35:19
0
bb434437eaa996f02019b52e56b3330a8da938e0
fix: delimiter scanner could crash process when processing UTF8 character set
[ { "change_type": "MODIFY", "diff": "@@ -269,9 +269,11 @@ public class TextDelimiterScanner implements Closeable {\n}\nprivate void bumpCountAt(int line, byte bytePosition, int increment) {\n- long pos = matrix + (line * matrixRowSize + bytePosition * Integer.BYTES);\n+ if (bytePosition > 0) {\n+ final long ...
Java
Apache License 2.0
questdb/questdb
fix: delimiter scanner could crash process when processing UTF8 character set
1
fix
null
217,922
27.11.2019 17:45:20
-3,600
040309d3fa9db320bd1c7bfbfc614cfba26bd9ce
fix(alarms): fixed a layout issue with compact display mode
[ { "change_type": "MODIFY", "diff": "[marker]=\"row.alarm.coords\"\n[showZoneName]=\"true\"\n[zoneId]=\"row.alarm.zoneId\"\n- flex=\"row\"></app-map-position>\n+ flex=\"column\"></app-map-position>\n</div>\n</div>\n<div fxLayout=\"row\" fxLayoutAlign=\"flex-end center\" fxLayoutGap=\"5px\" nz-col nzMd=\"1\">...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(alarms): fixed a layout issue with compact display mode
1
fix
alarms
217,922
27.11.2019 17:47:33
-3,600
0983e321b31f83384f113ca9b67ac5bd78d4c579
fix(optimizer): fixed an issue with ignored containers not affecting total count
[ { "change_type": "MODIFY", "diff": "@@ -81,7 +81,9 @@ export class InventoryOptimizerComponent {\n} else {\nentry.totalLength = entry.items.filter(i => !i.ignored).length;\n}\n+ if (this.showIgnored || !entry.ignored) {\ntotalLength += entry.totalLength;\n+ }\nreturn entry;\n});\nopt.totalLength = totalLeng...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(optimizer): fixed an issue with ignored containers not affecting total count
1
fix
optimizer
217,922
27.11.2019 18:04:21
-3,600
08da8c596a2b8d30de07dcf15549afd022c2aeef
fix(layout): fixed an issue when creating a new layout
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,7 @@ export abstract class FirestoreStorage<T extends DataModel> extends DataStore<T>\n}\nprotected prepareData(data: Partial<T>): T {\n- const clone: Partial<T> = { ...data };\n+ const clone: Partial<T> = JSON.parse(JSON.stringify(data));\ndelete clone.$key;...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(layout): fixed an issue when creating a new layout
1
fix
layout
217,922
27.11.2019 18:04:49
-3,600
be4e1bd197960963e99422ee7d5fcfd6f8320bfe
fix(alarms): fixed an issue when creating an alarm for some items
[ { "change_type": "MODIFY", "diff": "@@ -172,7 +172,7 @@ export class MapService {\nreturn aetherytes\n.filter((aetheryte) => aetheryte.map === id)\n.map((aetheryte: Aetheryte) => {\n- aetheryte.aethernetCoords = aetherstream[id];\n+ aetheryte.aethernetCoords = aetherstream[id] || { x: 0, y: 0 };\nreturn aet...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(alarms): fixed an issue when creating an alarm for some items
1
fix
alarms
217,922
27.11.2019 18:47:15
-3,600
b7889a159b702b201b9bc2eb7714e2f7236b7851
fix(levequests): fixed an issue with levequests page being unresponsive
[ { "change_type": "MODIFY", "diff": "@@ -3,18 +3,7 @@ import { ActivatedRoute, Router } from '@angular/router';\nimport { SearchIndex, XivapiService } from '@xivapi/angular-client';\nimport { NzNotificationService } from 'ng-zorro-antd';\nimport { BehaviorSubject, combineLatest, concat, Observable } from 'rx...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(levequests): fixed an issue with levequests page being unresponsive
1
fix
levequests
749,523
27.11.2019 18:53:58
-3,600
4075a944903c04f9e60763c3976fadcf5c8145cf
feat(modals): allow the portal container to be customized as a prop
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,7 @@ const isOverflowing = element => {\n* High-level abstraction for basic Modal implementations. Accepts all `<div>` props.\n*/\nconst Modal = React.forwardRef(\n- ({ backdropProps, children, onClose, center, animate, id, ...modalProps }, ref) => {\n+ ({ ba...
TypeScript
Apache License 2.0
zendeskgarden/react-components
feat(modals): allow the portal container to be customized as a prop (#547)
1
feat
modals
366,920
27.11.2019 18:58:02
-32,400
9f9552622b8f79251b8ddc71f12945a50ec9c72c
fix: Add colSpan, rowSpan props to Cell
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,11 @@ import { useTheme, Theme } from '../../hooks/useTheme'\nimport { TableGroupContext } from './Table'\n+// TODO: colspan and rowspan are incorrect naming conventions and are now deprecated and removed later.\n+// Delete in January 2020.\nexport type Props =...
TypeScript
MIT License
kufu/smarthr-ui
fix: Add colSpan, rowSpan props to Cell
1
fix
null
67,516
27.11.2019 18:59:19
-3,600
250e3d5095aede6e6b504ad8c4ed0b1dbc7a1a6d
refactor(validation): minor return type change
[ { "change_type": "MODIFY", "diff": "@@ -256,7 +256,7 @@ export class PropertyRule {\nreturn this.$rules[depth];\n}\n- public async validate(value: unknown, object?: IValidateable): Promise<[ValidateResult[], boolean]> {\n+ public async validate(value: unknown, object?: IValidateable): Promise<ValidateResult...
TypeScript
MIT License
aurelia/aurelia
refactor(validation): minor return type change
1
refactor
validation
366,920
27.11.2019 18:59:33
-32,400
5e840777658d315e1c44f687dec55863fa28324f
docs: Update component docs, fix
[ { "change_type": "MODIFY", "diff": "@@ -58,6 +58,6 @@ import { Table, Body, Head, Row, Cell } from 'smarthr-ui'\n| ----------- | -------- | -------------- | ------------ | ------------------------------------------------ |\n| className | - | **string** | - | className for component |\n| highlighted | - | **...
TypeScript
MIT License
kufu/smarthr-ui
docs: Update component docs, fix #480
1
docs
null
217,906
27.11.2019 19:40:02
28,800
37e1c577c123cd35e1c67ace189f29b3d6a3f5c8
fix(optimizer): updated grammar in optimizer l10n
[ { "change_type": "MODIFY", "diff": "\"No_optimizations\": \"No optimizations available\",\n\"CAN_BE_BOUGHT\": {\n\"Title\": \"Items that can be bought with gil\",\n- \"Message\": \"This item can be bought to NPCs with gil and does not require beast tribe reputation.\"\n+ \"Message\": \"This item can be boug...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(optimizer): updated grammar in optimizer l10n
1
fix
optimizer
366,920
27.11.2019 19:42:48
-32,400
e2db0fe475f81c8e16cfd748b4af79b8803343c9
fix: Increase type of Input type props, fix
[ { "change_type": "MODIFY", "diff": "@@ -4,7 +4,20 @@ import styled, { css } from 'styled-components'\nimport { useTheme, Theme } from '../../hooks/useTheme'\nexport type Props = InputHTMLAttributes<HTMLInputElement> & {\n- type?: 'text' | 'number' | 'password'\n+ type?:\n+ | 'text'\n+ | 'search'\n+ | 'tel'\...
TypeScript
MIT License
kufu/smarthr-ui
fix: Increase type of Input type props, fix #483
1
fix
null
743,952
27.11.2019 20:08:01
-3,600
463feb2870158eb9df670222b0f0a40a05cf18d0
fix: getCompletion() was not working for options
[ { "change_type": "MODIFY", "diff": "@@ -8,6 +8,11 @@ module.exports = function completion (yargs, usage, command) {\ncompletionKey: 'get-yargs-completions'\n}\n+ let aliases\n+ self.setParsed = function setParsed (parsed) {\n+ aliases = parsed.aliases\n+ }\n+\nconst zshShell = (process.env.SHELL && process....
JavaScript
MIT License
yargs/yargs
fix: getCompletion() was not working for options (#1495)
1
fix
null
217,922
27.11.2019 20:32:45
-3,600
cb571fa51e95cf6d5216618805b191ac62423fb1
chore: packets cleanup
[ { "change_type": "MODIFY", "diff": "@@ -55,12 +55,10 @@ module.exports.start = function(win, config, verbose, winpcap) {\n'playerSpawn',\n'inventoryModifyHandler',\n'npcSpawn',\n- 'ping',\n'playerStats',\n'updateClassInfo',\n'actorControl',\n'initZone',\n- 'weatherChange',\n'aetherReductionDlg',\n'desynthOr...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: packets cleanup Signed-off-by: Supamiu <contact@flavien-normand.fr>
1
chore
null
217,922
27.11.2019 20:45:28
-3,600
216a0807cbdb5ef345b378cf27b92143dcfb084f
chore(release): 6.2.10
[ { "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=\"6.2.10\"></a>\n+## [6.2.10](https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/compar...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 6.2.10
1
chore
release
67,476
27.11.2019 20:57:45
-3,600
42201bc591e47d1159ce002fe429bdf6167f139d
refactor(ast): remove ClassDeclaration from VarScopedDeclarations union
[ { "change_type": "MODIFY", "diff": "@@ -914,13 +914,17 @@ export function $$esStatement(\n}\n}\n-export type $$ESDeclaration = (\n+export type $$ESVarDeclaration = (\n$FunctionDeclaration |\n- $ClassDeclaration |\n$VariableStatement |\n$VariableDeclaration\n);\n+export type $$ESDeclaration = (\n+ $$ESVarDec...
TypeScript
MIT License
aurelia/aurelia
refactor(ast): remove ClassDeclaration from VarScopedDeclarations union
1
refactor
ast
67,476
27.11.2019 21:18:55
-3,600
ba755ba6e5670ff9a90faa064fdd29e87e7600c5
feat(ast): implement RS:GlobalDeclarationInstantiation
[ { "change_type": "MODIFY", "diff": "@@ -44,6 +44,7 @@ import {\n$ModuleEnvRec,\n$EnvRec,\n$FunctionEnvRec,\n+ $GlobalEnvRec,\n} from '../types/environment-record';\nimport {\n$NamespaceExoticObject,\n@@ -73,6 +74,7 @@ import {\nimport {\n$Error,\n$SyntaxError,\n+ $TypeError,\n} from '../types/error';\nimpor...
TypeScript
MIT License
aurelia/aurelia
feat(ast): implement RS:GlobalDeclarationInstantiation
1
feat
ast
603,467
27.11.2019 21:49:31
0
1e91f253ce9c0d4341697b715ece3a61aea8ca8e
fix(jasmine): Corrected the source detection logic An issue in the source location detection logic might have prevented some Jasmine tests from being included in the test suite
[ { "change_type": "MODIFY", "diff": "@@ -30,14 +30,15 @@ describe('@serenity-js/jasmine', () => {\n* @test {bootstrap}\n* @test {monkeyPatched}\n*/\n- it('knows the location of the invoker', () => {\n+ it('defaults to an unknown location if the real one could not be determined', () => {\n+ // detecting the r...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(jasmine): Corrected the source detection logic An issue in the source location detection logic might have prevented some Jasmine tests from being included in the test suite
1
fix
jasmine
551,636
27.11.2019 22:46:30
0
3de21528814aa4397ecac218c306c91a4eec739d
chore: writer benchmark
[ { "change_type": "ADD", "diff": "+/*******************************************************************************\n+ * ___ _ ____ ____\n+ * / _ \\ _ _ ___ ___| |_| _ \\| __ )\n+ * | | | | | | |/ _ \\/ __| __| | | | _ \\\n+ * | |_| | |_| | __/\\__ \\ |_| |_| | |_) |\n+ * \\__\\_\\\\__,_|\\___||___/\\__|____...
Java
Apache License 2.0
questdb/questdb
chore: writer benchmark
1
chore
null
71,664
27.11.2019 23:16:28
-32,400
18fa3aa985346d7764da0d700fdc70011b5e44ad
fix(dockerfile): `docker build` is missing `dotnet` Change `Dockerfile` to inherit from `jsii/superchain`, which is where all of CDK's build tooling is located. Update some build tools so that symlinks created in the host filesystem do not break the build when the repository is suddently built in a Docker container.
[ { "change_type": "MODIFY", "diff": "-FROM amazonlinux:2\n+FROM jsii/superchain\nWORKDIR /app\n-ENV NODE_VERSION 10.17.0\n-ENV YARN_VERSION 1.19.1\n-\n-RUN yum -y --security update \\\n- && yum install -y \\\n- git \\\n- rsync \\\n- zip \\\n- unzip \\\n- tar \\\n- xz \\\n- python3 \\\n- python3-dev \\\n- py3...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(dockerfile): `docker build` is missing `dotnet` (#5091) Change `Dockerfile` to inherit from `jsii/superchain`, which is where all of CDK's build tooling is located. Update some build tools so that symlinks created in the host filesystem do not break the build when the repository is suddently built in a Docker...
1
fix
dockerfile
67,476
27.11.2019 23:43:42
-3,600
e55e1fa7063ef830f1e0935149d1e4946a4c1f21
feat(ast): implement ScriptEvaluation
[ { "change_type": "MODIFY", "diff": "@@ -209,6 +209,7 @@ export class $ESScript implements I$Node {\n// 15.1.6 Static Semantics: VarScopedDeclarations\npublic readonly VarScopedDeclarations: readonly Exclude<$$ESDeclaration, $ClassDeclaration>[];\n+ public get isNull(): false { return false; }\npublic get is...
TypeScript
MIT License
aurelia/aurelia
feat(ast): implement ScriptEvaluation
1
feat
ast
67,476
27.11.2019 23:49:30
-3,600
bea0c2d75cb355694f2210c0c5ddae33e846d149
fix(ast): return abrupt completion per module item
[ { "change_type": "MODIFY", "diff": "@@ -1951,6 +1951,8 @@ export class $ESModule implements I$Node, IModule {\ndefault:\nthrow new Error(`Unexpected syntax node: ${SyntaxKind[$statement.$kind]}.`);\n}\n+\n+ if (sl.isAbrupt) { return sl.enrichWith(this); }\n}\nreturn sl;\n", "new_path": "packages/aot/src...
TypeScript
MIT License
aurelia/aurelia
fix(ast): return abrupt completion per module item
1
fix
ast
815,593
27.11.2019 23:49:51
-32,400
b369e11dfd32ed4c982243f71cb0a0d301966f21
chore: use timestamp as db migration version
[ { "change_type": "MODIFY", "diff": "@@ -278,20 +278,20 @@ mod tests {\n{\nlet mut migrations = Migrations::default();\n- migrations.add_migration(Box::new(DefaultMigration::new(\"0.1.0\")));\n+ migrations.add_migration(Box::new(DefaultMigration::new(\"20191116225943\")));\nlet r = RocksDB::open_with_check(&...
Rust
MIT License
nervosnetwork/ckb
chore: use timestamp as db migration version
1
chore
null
67,476
28.11.2019 00:05:06
-3,600
15d917b9a88ea74b97e3646da8da2dc95e15c419
feat(aot): implement ScriptEvaluationJob
[ { "change_type": "MODIFY", "diff": "@@ -14,18 +14,18 @@ import {\n$Empty,\n} from './types/empty';\nimport {\n- $ESModule,\n+ $$ESModuleOrScript,\n} from './ast/modules';\n// http://www.ecma-international.org/ecma-262/#table-25\n-export abstract class Job implements IDisposable {\n+export abstract class Job...
TypeScript
MIT License
aurelia/aurelia
feat(aot): implement ScriptEvaluationJob
1
feat
aot
679,913
28.11.2019 00:12:00
0
6863257aaf747bd3bbce4049fc2afbd1f416bca1
build: minor updates/fixes generate-readme script
[ { "change_type": "MODIFY", "diff": "@@ -18,6 +18,7 @@ try {\nconst DEMO_URL = \"https://demo.thi.ng/umbrella\";\nconst ASSET_URL = `https://raw.githubusercontent.com/${REPO_ID}/${BRANCH}/assets`;\nconst BRANCH_URL = `${REPO_URL}/tree/${BRANCH}`;\n+ const DOC_URL = \"https://docs.thi.ng/umbrella\";\nconst EX...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: minor updates/fixes generate-readme script
1
build
null
67,476
28.11.2019 00:18:28
-3,600
0ca9bddabe283eed8497d6739327e18fcb57923e
refactor(ast): a few finishing touches for script execution
[ { "change_type": "MODIFY", "diff": "@@ -23,7 +23,7 @@ import {\nServiceHost,\nIFile,\nExecutionContext,\n- $ESModule,\n+ $$ESModuleOrScript,\nIServiceHost,\n$Any,\n} from '@aurelia/aot';\n@@ -114,9 +114,9 @@ class TestCase implements IDisposable {\nthis.files = [...prerequisites, file];\n}\n- public async G...
TypeScript
MIT License
aurelia/aurelia
refactor(ast): a few finishing touches for script execution
1
refactor
ast
815,609
28.11.2019 00:44:25
-28,800
187c254e07f2d23684f22cbdd3032a9be4a514a0
feat: add a new json rpc method `get_block_economic_state`
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,7 @@ NOTE: This file is auto-generated. Please don't update this file directly; inste\n* [`get_live_cell`](#get_live_cell)\n* [`get_transaction`](#get_transaction)\n* [`get_cellbase_output_capacity_details`](#get_cellbase_output_capacity_details)\n+ * [`get_b...
Rust
MIT License
nervosnetwork/ckb
feat: add a new json rpc method `get_block_economic_state`
1
feat
null
679,913
28.11.2019 02:13:49
0
de551973f9eef5cadcd1ec44025030cbff9e04e2
build(examples): rename shader-evo => shader-ast-evo
[ { "change_type": "RENAME", "diff": "", "new_path": "examples/shader-ast-evo/.gitignore", "old_path": "examples/shader-evo/.gitignore" }, { "change_type": "RENAME", "diff": "-# shader-evo\n+# shader-ast-evo\n-[Live demo](http://demo.thi.ng/umbrella/shader-evo/)\n+[Live demo](http://demo.t...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(examples): rename shader-evo => shader-ast-evo
1
build
examples
679,913
28.11.2019 02:14:48
0
adfec267447ba3944ad5c1990bf7c94eeb36757f
refactor(api): replace error w/ assert() in decorator
[ { "change_type": "MODIFY", "diff": "-import { illegalArgs } from \"@thi.ng/errors\";\n+import { assert } from \"../assert\";\n/**\n* Method property decorator factory. Augments original method with\n@@ -16,9 +16,7 @@ export const deprecated = (msg?: string, log = console.log): MethodDecorator =>\n) {\nconst...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(api): replace error w/ assert() in decorator
1
refactor
api
679,913
28.11.2019 02:15:42
0
b6145e31f53f3f31cffdf350c7943db361e9ac65
refactor(geom-hull): minor update findMin()
[ { "change_type": "MODIFY", "diff": "@@ -15,13 +15,13 @@ const atan2 = Math.atan2;\nexport const grahamScan2 = (pts: ReadonlyVec[], eps = EPS) => {\nconst num = pts.length;\nif (num <= 3) return pts.slice();\n- let h = 1,\n- i,\n- p,\n- q,\n- r,\n- rx,\n- ry;\n+ let h = 1;\n+ let i;\n+ let p;\n+ let q;\n+ le...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(geom-hull): minor update findMin()
1
refactor
geom-hull
815,609
28.11.2019 03:12:47
-28,800
621dc8bcf55aa5ce48332236c57b78cb4abf5f8d
feat: no debug symbols as default and add a command to build with debug symbols
[ { "change_type": "MODIFY", "diff": "@@ -63,7 +63,6 @@ members = [\n]\n[profile.release]\n-debug = true\noverflow-checks = true\n[target.'cfg(all(not(target_env = \"msvc\"), not(target_os=\"macos\")))'.dependencies]\n", "new_path": "Cargo.toml", "old_path": "Cargo.toml" }, { "change_type": "M...
Rust
MIT License
nervosnetwork/ckb
feat: no debug symbols as default and add a command to build with debug symbols
1
feat
null
71,664
28.11.2019 03:45:28
-32,400
cf787c7e005acb1cfae655cf7d34963fe64efa89
chore(docs): update CONTRIBUTING
[ { "change_type": "MODIFY", "diff": "@@ -367,7 +367,7 @@ $ docker run -v $(pwd):/app -w /app aws-cdk <CDK ARGS>\nIn many cases, you don't really need to build the entire project. Say you want to work on the `@aws-cdk/aws-ec2` module:\n```console\n-$ ./install.sh\n+$ yarn install\n$ cd packages/@aws-cdk/aws-e...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(docs): update CONTRIBUTING (#4754)
1
chore
docs
67,476
28.11.2019 08:38:47
-3,600
f07daff15b6e69c060c89364078db388e69a1362
chore(aot): fix test build error
[ { "change_type": "MODIFY", "diff": "@@ -31,7 +31,7 @@ describe('AOT (smoke tests)', function () {\ngetContentSync() {\nreturn content;\n},\n- });\n+ }, 'module');\nif (result.isAbrupt) {\nassert.fail(`Evaluation error`);\n", "new_path": "packages/__tests__/aot/smoke-tests.spec.ts", "old_path": "pack...
TypeScript
MIT License
aurelia/aurelia
chore(aot): fix test build error
1
chore
aot
743,952
28.11.2019 08:38:57
-3,600
033eb815490c45a9fbc6de69939ff64200fedfb0
docs(typescript): suggest both import syntax
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,9 @@ The following `.options()` definition:\n```typescript\n#!/usr/bin/env node\n-import yargs from 'yargs';\n+import * as yargs from 'yargs';\n+// or with the \"esModuleInterop\" compiler option set to \"true\":\n+// import yargs from 'yargs';\nconst argv = ya...
JavaScript
MIT License
yargs/yargs
docs(typescript): suggest both import syntax (#1494)
1
docs
typescript
815,605
28.11.2019 10:11:12
-28,800
dbd901447dadc461a4cc2f6d1ffcbc8737807b01
fix: Skip checksum for now when installing yasm
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ steps:\ndisplayName: Install LLVM\n- script: choco install -y msys2\ndisplayName: Install msys2\n-- script: choco install -y yasm\n+- script: choco install --allow-empty-checksums -y yasm\ndisplayName: Install yasm\n- script: |\ncurl -sSf -o rustup-init.ex...
Rust
MIT License
nervosnetwork/ckb
fix: Skip checksum for now when installing yasm
1
fix
null
71,371
28.11.2019 10:33:57
-3,600
3780c1219cfb0c6c2dbb9c679ab346b3c28cb14e
chore: remove usage of deprecated `templateOptions.transform` * chore: remove usage of deprecated `transform` Was not included in and leads, among other things, to deprecation warnings when creating a new RDS Database Instance which uses a serverless application for the password rotation. * addTransform * add test * ty...
[ { "change_type": "MODIFY", "diff": "@@ -352,7 +352,7 @@ configured using the `stack.templateOptions` property:\nconst stack = new Stack(app, 'StackName');\nstack.templateOptions.description = 'This will appear in the AWS console';\n-stack.templateOptions.transform = 'AWS::Serverless';\n+stack.templateOption...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: remove usage of deprecated `templateOptions.transform` (#5182) * chore: remove usage of deprecated `transform` Was not included in #3395 and leads, among other things, to deprecation warnings when creating a new RDS Database Instance which uses a serverless application for the password rotation. * addTransfor...
1
chore
null
722,042
28.11.2019 10:49:20
-28,800
46e837ea54813c5e1b201f40d1c38afb3e074252
test(docgen): add test for nested '}' param type
[ { "change_type": "MODIFY", "diff": "@@ -46,6 +46,13 @@ describe('getDoclets', () => {\n])\n})\n+ it('should extract param type with braces', () => {\n+ const src = `@param {{name: string, id: number}} user`\n+ expect(getDocLets(src).tags).toEqual([\n+ { name: 'user', title: 'param', type: { name: '{name: st...
TypeScript
MIT License
vue-styleguidist/vue-styleguidist
test(docgen): add test for nested '}' param type
1
test
docgen
67,494
28.11.2019 11:06:32
-3,600
eb7c146445c71acc61bf0877c645f233230fe985
style(router): clarify viewport canLeave
[ { "change_type": "MODIFY", "diff": "@@ -232,7 +232,8 @@ export class Viewport {\n}\npublic async canLeave(): Promise<boolean> {\n- if (!await this.viewportScope.canLeave()) {\n+ const canLeaveChildren: boolean = await this.viewportScope.canLeave();\n+ if (!canLeaveChildren) {\nreturn false;\n}\nreturn this....
TypeScript
MIT License
aurelia/aurelia
style(router): clarify viewport canLeave
1
style
router
902,122
28.11.2019 11:09:04
0
e585ac50d6c2e9ec467739263fd488483e405ba7
chore(release): v5.18.6
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [5.18.6](https://github.com/kikobeats/browserless/compare/v5.18.5...v5.18.6) (2019-11-28)\n+\n+**Note:** Version b...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v5.18.6
1
chore
release
67,494
28.11.2019 11:10:22
-3,600
411315fa36fb43d3f1cc67f6e60e03e79686d34d
refactor(router): update closest and viewport scopes
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,6 @@ import {\n} from '@aurelia/runtime';\nimport { IRouter } from '../router';\nimport { IViewportOptions, Viewport } from '../viewport';\n-import { IContainer, Registration } from '@aurelia/kernel';\nexport const ParentViewport = CustomElement.createInjectabl...
TypeScript
MIT License
aurelia/aurelia
refactor(router): update closest and viewport scopes
1
refactor
router
273,634
28.11.2019 11:33:24
0
0e82743c3051b2cb1c30fc152492f7ef94d278b5
chore: hook for modifying page context
[ { "change_type": "MODIFY", "diff": "@@ -29,8 +29,9 @@ async function executeQueries (renderQueue, { context, pages, schema, graphql },\ninvariant(route, `Could not find a route for: ${entry.path}`)\ninvariant(page, `Could not find a page for: ${entry.path}`)\n- const results = { data: null, context: page.co...
JavaScript
MIT License
gridsome/gridsome
chore: hook for modifying page context (#821)
1
chore
null
531,793
28.11.2019 11:50:38
0
bbc14195e1bfb42ff79b4ac34e67d007a1887e56
fix(storybook): avoid navbar overlap on storybook
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,11 @@ const NavBar = observer(\nstatic propTypes = {\nalertStore: PropTypes.instanceOf(AlertStore).isRequired,\nsettingsStore: PropTypes.instanceOf(Settings).isRequired,\n- silenceFormStore: PropTypes.instanceOf(SilenceFormStore).isRequired\n+ silenceFormStor...
TypeScript
Apache License 2.0
prymitive/karma
fix(storybook): avoid navbar overlap on storybook
1
fix
storybook
531,793
28.11.2019 12:18:11
0
f6ae7c8a8685dd98d1aad54b27458826cabdf272
fix(storybook): fix class prop
[ { "change_type": "MODIFY", "diff": "@@ -26,7 +26,7 @@ addDecorator(story => {\naddDecorator(story => {\nreturn (\n<div>\n- <div class=\"theme-light\">\n+ <div className=\"theme-light\">\n<ThemeContext.Provider\nvalue={{\nreactSelectStyles: ReactSelectStyles(ReactSelectColors.Light)\n@@ -44,7 +44,7 @@ addDec...
TypeScript
Apache License 2.0
prymitive/karma
fix(storybook): fix class prop
1
fix
storybook
531,793
28.11.2019 12:21:35
0
c184323f096be52216f7ed05fdc3fb036b41f883
fix(storybook): remove duplicated prop
[ { "change_type": "MODIFY", "diff": "@@ -183,7 +183,6 @@ const MockGrid = alertStore => {\nfor (let j = 0; j < group.alerts.length; j++) {\nif (group.alerts[j].state === \"suppressed\") {\n- group.alerts[j].silencedBy = [silence.id];\ngroup.alerts[j].alertmanager = [\n{\nname: \"am1\",\n", "new_path": "u...
TypeScript
Apache License 2.0
prymitive/karma
fix(storybook): remove duplicated prop
1
fix
storybook
815,598
28.11.2019 12:28:29
-28,800
152500544e0e0b584f4aa0b7a95320a5cd8576eb
docs(rpc): add security notices
[ { "change_type": "MODIFY", "diff": "@@ -122,6 +122,10 @@ def main():\nprint(\"NOTE: This file is auto-generated. Please don't update this file directly; instead make changes to `rpc/json/rpc.json` and re-run `make gen-rpc-doc`\")\nnewline(1)\nprint(\"The RPC interface shares the version of the node version,...
Rust
MIT License
nervosnetwork/ckb
docs(rpc): add security notices
1
docs
rpc
869,310
28.11.2019 12:38:33
-3,600
a39dbd81848ab49070ec6346485469ff0c9deb62
feat(request): support for user-agent
[ { "change_type": "MODIFY", "diff": "const cloudscraper = require('cloudscraper');\n+let userAgent = `coinranking/exchanges (https://github.com/coinranking/exchanges) Node.js/${process.version} (JavaScript)`;\n+if (process.env.USER_AGENT) userAgent = process.env.USER_AGENT;\n+\n// Set json to true\nconst req...
JavaScript
MIT License
coinranking/exchanges
feat(request): support for user-agent
1
feat
request
869,310
28.11.2019 12:51:38
-3,600
647c48525651f88716bcaaac34a114ba2e34dc3d
revert(request): remove the user agent, because this failed on Binance
[ { "change_type": "MODIFY", "diff": "const cloudscraper = require('cloudscraper');\n-let userAgent = `coinranking/exchanges (https://github.com/coinranking/exchanges) Node.js/${process.version} (JavaScript)`;\n-if (process.env.USER_AGENT) userAgent = process.env.USER_AGENT;\n-\n// Set json to true\nconst req...
JavaScript
MIT License
coinranking/exchanges
revert(request): remove the user agent, because this failed on Binance
1
revert
request