author int64 4.98k 943k | date stringdate 2017-04-15 16:45:02 2022-02-25 15:32:15 | timezone int64 -46,800 39.6k | hash stringlengths 40 40 | message stringlengths 8 468 | mods listlengths 1 16 | language stringclasses 9
values | license stringclasses 2
values | repo stringclasses 119
values | original_message stringlengths 12 491 | is_CCS int64 1 1 | commit_type stringclasses 129
values | commit_scope stringlengths 1 44 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
67,476 | 04.12.2019 06:03:50 | -3,600 | 126737c63abcdb63730e85aeecd09fb7a61c4acd | chore(runtime): remove unused enum | [
{
"change_type": "MODIFY",
"diff": "@@ -76,21 +76,6 @@ export const enum State {\n}\n-export const enum Hooks {\n- none = 0b000000000001,\n- hasCreated = 0b000000000010,\n- hasBeforeBind = 0b000000000100,\n- hasAfterBind = 0b000000001000,\n- hasBeforeAttach = 0b000000010000,\n- hasAfterAttach = 0b0000001000... | TypeScript | MIT License | aurelia/aurelia | chore(runtime): remove unused enum | 1 | chore | runtime |
71,551 | 04.12.2019 06:15:39 | 28,800 | d4562b78627599f5f2efbaf6573addd51ee932e2 | fix(cdk-dasm): prevent duplicate imports | [
{
"change_type": "MODIFY",
"diff": "@@ -55,9 +55,9 @@ export async function dasmTypeScript(template: Template, options: DisassemblerOp\ncode.line(`import { Stack, StackProps, Construct, Fn } from '@aws-cdk/core';`);\n- for (const def of definitions) {\n- const importName = `@aws-cdk/aws-${def.namespace}`;\n... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(cdk-dasm): prevent duplicate imports (#5293)
Signed-off-by: campionfellin <campionfellin@gmail.com> | 1 | fix | cdk-dasm |
866,393 | 04.12.2019 06:29:08 | -32,400 | cfb5338b82f6a1fd99f48b149edd118bd4ab9ad1 | docs(examples): update TypeScript 3.7 for Angular
This change updates Angular examples to make it work with
`carbon-custom-elements` version compiled with TypeScript 3.7.
Refs | [
{
"change_type": "MODIFY",
"diff": "@@ -109,6 +109,11 @@ import { AppComponent } from './app.component';\nexport class AppModule {}\n```\n+The `.d.ts` files in `carbon-custom-elements` package are compiled with TypeScript 3.7. You can use TypeScript 3.7 in your Angular application with upcoming Angular `9.0... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | docs(examples): update TypeScript 3.7 for Angular (#187)
This change updates Angular examples to make it work with
`carbon-custom-elements` version compiled with TypeScript 3.7.
Refs #168. | 1 | docs | examples |
866,393 | 04.12.2019 06:38:51 | -32,400 | 6564807619331661f165fd61ec71fda10b193bf7 | docs(form): minor fix to Angular example | [
{
"change_type": "MODIFY",
"diff": "@@ -32,7 +32,7 @@ button.addEventListener('click', () => {\nOur form components can be used for Angular two-way binding syntax (`[(ngModel)]`), like below, by using Angular directives for them:\n```html\n-<bx-input [(ngModel)]=\"model.username\" #username=\"ngModel\" type... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | docs(form): minor fix to Angular example (#198) | 1 | docs | form |
722,013 | 04.12.2019 08:12:42 | 21,600 | 3790837054e38cf43510e095124ebb5b15645f5e | feat(docgen): multi-components in a file | [
{
"change_type": "MODIFY",
"diff": "@@ -37,7 +37,11 @@ export async function parse(\nfilePath: string,\nopts?: DocGenOptions | { [alias: string]: string }\n): Promise<ComponentDoc> {\n- return parsePrimitive(async (doc, options) => await parseFile(doc, options), filePath, opts)\n+ return (await parsePrimiti... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | feat(docgen): multi-components in a file | 1 | feat | docgen |
722,013 | 04.12.2019 08:42:20 | 21,600 | fa5bc7b04b43adcb20877953eecae6afcfa3aa12 | test(docgen): make sure unit tests are passing | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ import Documentation, {\nTag,\nParamTag\n} from './Documentation'\n-import { DocGenOptions, parseFile, ParseOptions, parseSource as parseSourceLocal } from './parse'\n+import { DocGenOptions, parseFile, ParseOptions, parseSource as _parseSource } from './p... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | test(docgen): make sure unit tests are passing | 1 | test | docgen |
722,013 | 04.12.2019 08:48:52 | 21,600 | a9babfab98bbabffffcd6ae8df3c324facb88745 | test(docgen): add a test for parseMulti | [
{
"change_type": "MODIFY",
"diff": "@@ -57,3 +57,46 @@ export const Button = {\n)\n}\n}\n+\n+/**\n+ * This is an input that represents another component extracted in the same file\n+ */\n+export const Input = {\n+ name,\n+\n+ inheritAttrs: false,\n+\n+ props: {\n+ variant: {\n+ type: String,\n+ default: 'so... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | test(docgen): add a test for parseMulti | 1 | test | docgen |
304,866 | 04.12.2019 09:33:28 | 28,800 | bfdc8f06a3d87373e9688fb74b989a758081c250 | feat(semantic/builtins): add types for some builtins | [
{
"change_type": "ADD",
"diff": "+use maplit::hashmap;\n+use std::collections::hash_map;\n+use std::collections::HashMap;\n+use std::iter::Iterator;\n+use std::vec::Vec;\n+\n+pub struct Builtins<'a> {\n+ pkgs: HashMap<&'a str, Node<'a>>,\n+}\n+\n+impl<'a> Builtins<'a> {\n+ fn iter(&'a self) -> NodeIterator ... | Go | MIT License | influxdata/flux | feat(semantic/builtins): add types for some builtins (#2228) | 1 | feat | semantic/builtins |
866,401 | 04.12.2019 10:40:23 | 10,800 | 5d397791c0c675d931e4a12329d96e7424fa772b | feat(pattern): pictogram-array readme update | [
{
"change_type": "MODIFY",
"diff": "@@ -24,6 +24,44 @@ import { Desktop, Touch, Pattern } from '@carbon/pictograms-react';\nimport 'yourapplication.scss';\nimport '@carbon/ibmdotcom-styles/scss/patterns/pictogramarray/index.scss';\n+const title = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.';\n... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(pattern): pictogram-array readme update | 1 | feat | pattern |
217,922 | 04.12.2019 10:53:54 | -3,600 | df3a6dc45d054b63568eadafba1b06f4ba2c36f0 | fix(i18n): fixed missing translation for fishing data reloader | [
{
"change_type": "MODIFY",
"diff": "\"Chances_for_transition\": \"Chances for this transition to happen\",\n\"Weather_chances\": \"Chances for each weather to appear\",\n\"Bait\": \"Fishing bait\",\n+ \"Refresh_data\": \"Refresh data\",\n\"TUG\": {\n\"Light\": \"Light\",\n\"Medium\": \"Medium\",\n",
"ne... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(i18n): fixed missing translation for fishing data reloader
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | i18n |
401,147 | 04.12.2019 11:05:41 | -19,080 | 119a132ffc0505daa25944bb0febc62248aee412 | feat(core): add file input component
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -21,7 +21,7 @@ LabelStyled.displayName = 'Label';\nexport const DescriptionStyled = styled(Text)`\ngrid-area: description;\nmargin: 5px 0px 0px 2px;\n- color: ${({ theme }) => theme.input.desciptionColor};\n+ color: ${({ theme, textColor }) => (textColor ? textColor : ... | TypeScript | MIT License | medly/medly-components | feat(core): add file input component
affects: @medly-components/core | 1 | feat | core |
401,147 | 04.12.2019 11:08:02 | -19,080 | dee6e209459b7fe70be481593e1d50048a8cddcc | feat(core): add description color feature in input, single select & multi select component
affects: | [
{
"change_type": "MODIFY",
"diff": "-import { InputTheme } from '@medly-components/theme';\n-import { boolean, select, text } from '@storybook/addon-knobs';\n+import { defaultTheme, InputTheme } from '@medly-components/theme';\n+import { boolean, color, select, text } from '@storybook/addon-knobs';\nimport ... | TypeScript | MIT License | medly/medly-components | feat(core): add description color feature in input, single select & multi select component
affects: @medly-components/core | 1 | feat | core |
104,857 | 04.12.2019 11:14:33 | 10,800 | 60324d9d40e73d03e1bf5dae3f2afd075780a5e1 | fix(scss): fix on selector sequence | [
{
"change_type": "MODIFY",
"diff": "&.#{$prefix}--link:hover {\ntext-decoration: none;\n}\n+\n+ &.dashboard-pin-list-title {\n+ height: 5.9375rem;\n+ flex: 0 0 31.25rem;\n+ box-shadow: none;\n+ border-bottom: 0.0625rem solid rgb(223, 227, 230);\n+ background: $ui-01;\n+ cursor: pointer;\n+ pointer-events: a... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(scss): fix on selector sequence | 1 | fix | scss |
438,921 | 04.12.2019 11:23:10 | -32,400 | 2874fdcc62a5edd5636d4936c37803beae09288a | chore(dev-env): Update babel config
As of Babel 7.x update on config file lookup, rename config file from .babelrc to babel.config.js
Fix | [
{
"change_type": "DELETE",
"diff": "-{\n- \"presets\": [\n- [\n- \"@babel/preset-env\", {\n- \"targets\": {\n- \"browsers\": [\n- \"last 2 versions\",\n- \"ie >= 9\",\n- \"iOS >= 8\"\n- ]\n- },\n- \"modules\": false,\n- \"loose\": true,\n- \"useBuiltIns\": false\n- }\n- ]\n- ],\n- \"plugins\": [\n- [\"@babe... | TypeScript | MIT License | naver/billboard.js | chore(dev-env): Update babel config
As of Babel 7.x update on config file lookup, rename config file from .babelrc to babel.config.js
Fix #1151 | 1 | chore | dev-env |
866,401 | 04.12.2019 11:24:07 | 10,800 | 19d45cd746aec9fc158bbe41c22752afa546d08e | fix(pattern): readme file fix | [
{
"change_type": "MODIFY",
"diff": "@@ -63,8 +63,7 @@ const contentGroup = [\n];\nfunction App() {\n- return;\n- <PictogramArray title={title} contentGroup={contentGroup} />;\n+ return <PictogramArray title={title} contentGroup={contentGroup} />;\n}\nReactDOM.render(<App />, document.querySelector('#app'));... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pattern): readme file fix | 1 | fix | pattern |
104,871 | 04.12.2019 12:14:20 | 21,600 | 8f8f04c6a2048cea51c8de3a193a264c16e18bf9 | fix(columnheaderrow): add more tests | [
{
"change_type": "MODIFY",
"diff": "@@ -9,14 +9,13 @@ module.exports = {\nfunctions: 80,\nlines: 80,\n},\n- './src/components/**/!(ColumnHeaderRow|ColumnHeaderSelect|FilterHeaderRow|TableToolbar|RowActionsCell|RowActionsError|StatefulTable|StatefulTableDetailWizard|CatalogContent|FileDrop|HeaderMenu|Dashboa... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(columnheaderrow): add more tests | 1 | fix | columnheaderrow |
722,013 | 04.12.2019 12:30:48 | 21,600 | 87e994bf9de86e08b1b474b43e6218f17669e7a2 | docs(docgen): document parseMulti | [
{
"change_type": "MODIFY",
"diff": "The package exposes 2 functions:\n-### `parse(filePath:string, options?: DocGenOptions)`\n+### `parse(filePath:string, options?: DocGenOptions):ComponentDoc`\nParses the file at filePath. Returns and objects containing all documented and undocumented properties of the com... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | docs(docgen): document parseMulti | 1 | docs | docgen |
401,147 | 04.12.2019 12:32:53 | -19,080 | 6609453de80de760c50c831fb10d422e4e9b2d42 | feat(icons): modify contract & orders icon
affects: | [
{
"change_type": "MODIFY",
"diff": "-<svg aria-hidden=\"true\" focusable=\"false\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path fill=\"currentColor\" d=\"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-... | TypeScript | MIT License | medly/medly-components | feat(icons): modify contract & orders icon
affects: @medly-components/icons | 1 | feat | icons |
401,147 | 04.12.2019 12:33:22 | -19,080 | 1d9647c4372c6c7260a4812d30e4a3634b552954 | feat(icons): add report & statement icon
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -25,8 +25,10 @@ import { GearIcon } from './icons/GearIcon';\nimport { HomeIcon } from './icons/HomeIcon';\nimport { InfoCircleIcon } from './icons/InfoCircleIcon';\nimport { OrdersIcon } from './icons/OrdersIcon';\n+import { ReportsIcon } from './icons/ReportsIcon';\n... | TypeScript | MIT License | medly/medly-components | feat(icons): add report & statement icon
affects: @medly-components/icons | 1 | feat | icons |
866,415 | 04.12.2019 12:37:41 | 18,000 | 243a87863f4fa246e1932be8fc0f76baf4fd0d94 | fix(readme): prop descriptions in readmes for some patterns | [
{
"change_type": "MODIFY",
"diff": "@@ -119,7 +119,7 @@ const _renderCardsGroup = (theme, cardsGroup) => {\nCardsWithoutImages.propTypes = {\ntheme: PropTypes.string,\n- cardsGroup: PropTypes.array,\n+ cardsGroup: PropTypes.array.isRequired,\n};\nexport default CardsWithoutImages;\n",
"new_path": "packa... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(readme): prop descriptions in readmes for some patterns | 1 | fix | readme |
531,793 | 04.12.2019 12:39:44 | 0 | 3e5d576df1dd5fcd180e18599f1388df3bcb36db | chore(ui): change counter badge background color to light for light theme | [
{
"change_type": "MODIFY",
"diff": "@@ -20,11 +20,22 @@ const FilteringCounterBadge = observer(\nvalue: PropTypes.string.isRequired,\ncounter: PropTypes.number.isRequired,\nthemed: PropTypes.bool.isRequired,\n- alwaysVisible: PropTypes.bool\n+ alwaysVisible: PropTypes.bool,\n+ defaultColor: PropTypes.oneOf(... | TypeScript | Apache License 2.0 | prymitive/karma | chore(ui): change counter badge background color to light for light theme | 1 | chore | ui |
67,494 | 04.12.2019 12:58:50 | -3,600 | 28898327b5fb4ea4aded541d417b78dd8b0468a3 | refactor(router): replace render context with container | [
{
"change_type": "MODIFY",
"diff": "@@ -57,10 +57,10 @@ export class ViewportScopeCustomElement {\n// }\npublic creating(controller: any) {\nthis.container = controller.context.container;\n- console.log('ViewportScope creating', this.getAttribute('name', this.name), this.container, this.parent, controller, ... | TypeScript | MIT License | aurelia/aurelia | refactor(router): replace render context with container | 1 | refactor | router |
711,597 | 04.12.2019 13:11:45 | -3,600 | 6340045332ec41bb55e5aca6fd6c15002e9d3da8 | feat(core): Export OrderCalculator helper service | [
{
"change_type": "MODIFY",
"diff": "@@ -4,6 +4,7 @@ export * from './helpers/utils/patch-entity';\nexport * from './helpers/utils/channel-aware-orm-utils';\nexport * from './helpers/utils/get-entity-or-throw';\nexport * from './helpers/list-query-builder/list-query-builder';\n+export * from './helpers/order... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(core): Export OrderCalculator helper service | 1 | feat | core |
67,494 | 04.12.2019 13:19:58 | -3,600 | 2403df78677466f1a762033631a986e167aeb3fd | refactor(router): connect viewport in creating | [
{
"change_type": "MODIFY",
"diff": "@@ -59,7 +59,7 @@ export class ViewportScopeCustomElement {\nthis.container = controller.context.container;\n// console.log('ViewportScope creating', this.getAttribute('name', this.name), this.container, this.parent, controller, this);\n// if (this.router.rootScope !== nu... | TypeScript | MIT License | aurelia/aurelia | refactor(router): connect viewport in creating | 1 | refactor | router |
304,882 | 04.12.2019 13:25:16 | 28,800 | 11d59706f2991b4a3e8fa355aa749c42f3abd297 | feat(libflux): serialize type environment | [
{
"change_type": "MODIFY",
"diff": "+use crate::semantic::import::Importer;\nuse crate::semantic::sub::{Substitutable, Substitution};\nuse crate::semantic::types::{union, PolyType, Tvar};\nuse std::collections::HashMap;\n@@ -32,6 +33,12 @@ impl Substitutable for Environment {\n}\n}\n+impl Importer for Envir... | Go | MIT License | influxdata/flux | feat(libflux): serialize type environment | 1 | feat | libflux |
304,882 | 04.12.2019 13:30:24 | 28,800 | 305d139e2ab42387b990b133c25d8d49d1970545 | feat(libstd): crate for typing flux standard library | [
{
"change_type": "MODIFY",
"diff": "@@ -288,6 +288,14 @@ dependencies = [\n\"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)\",\n]\n+[[package]]\n+name = \"libstd\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"flatbuffers 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)\",... | Go | MIT License | influxdata/flux | feat(libstd): crate for typing flux standard library | 1 | feat | libstd |
688,413 | 04.12.2019 14:10:47 | -7,200 | cf3befb5bfe99359ff0d85e684dbce59e451b98b | chore: update storybook readme version when releasing docs | [
{
"change_type": "MODIFY",
"diff": "<br/>\n-[](https://github.com/semantic-release/semantic-release)\n-[](https://www.npmjs.com/package/@to... | TypeScript | MIT License | toptal/picasso | chore: update storybook readme version when releasing docs (#937) | 1 | chore | null |
866,415 | 04.12.2019 14:25:38 | 18,000 | d29a71eba7f373baa9fda06e2852824cbd23a809 | fix(readme): props descriptions for the patterns | [
{
"change_type": "MODIFY",
"diff": "@@ -53,40 +53,39 @@ DDS_CARDS_WITHOUT_IMAGES=true\n| Name | Required | Data Type | Default Value | Description |\n| ------------ | -------- | --------- | ------------- | ---------------------------------------------- |\n-| `theme` | NO | String | 'white' | Color theme for... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(readme): props descriptions for the patterns | 1 | fix | readme |
866,394 | 04.12.2019 15:11:51 | 18,000 | 54979c8386ce80339e06510207211dcbd2636cfc | feat(expressive): quarantine temporary expressive overrides | [
{
"change_type": "MODIFY",
"diff": "// Use e.g. `@import '~carbon-components/scss/globals/scss/styles.scss'` instead.\n// @import '~carbon-components/src/globals/scss/styles.scss'; // SEE THE NOTE ABOVE\n+// Carbon fonts\n@import '@carbon/type/scss/font-face/mono';\n@import '@carbon/type/scss/font-face/sans... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(expressive): quarantine temporary expressive overrides | 1 | feat | expressive |
711,597 | 04.12.2019 15:18:42 | -3,600 | 3cd74ab71f05e483fcdb1fd8d40bc1f55a3b0315 | fix(admin-ui): Correct bad imports | [
{
"change_type": "MODIFY",
"diff": "import { HttpClient } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n-import {\n- isEntityCreateOrUpdateMutation,\n- removeReadonlyCustomFields,\n-} from '@vendure/admin-ui/src/app/data/utils/remove-readonly-custom-fields';\nimport { Apollo } f... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(admin-ui): Correct bad imports | 1 | fix | admin-ui |
67,494 | 04.12.2019 15:18:52 | -3,600 | 18c59f6eb6352099019c4685fb47c50ff8f94a4f | feat(router): make clear all instruction scope aware | [
{
"change_type": "MODIFY",
"diff": "@@ -58,9 +58,7 @@ export class ViewportScopeCustomElement {\npublic creating(controller: any) {\nthis.container = controller.context.container;\n// console.log('ViewportScope creating', this.getAttribute('name', this.name), this.container, this.parent, controller, this);\... | TypeScript | MIT License | aurelia/aurelia | feat(router): make clear all instruction scope aware | 1 | feat | router |
711,597 | 04.12.2019 15:24:07 | -3,600 | e0071f813a867ef3b863b123215e78fcfecc803f | chore: Publish v0.6.4 | [
{
"change_type": "MODIFY",
"diff": "+## <small>0.6.4 (2019-12-04)</small>\n+\n+\n+#### Fixes\n+\n+* **admin-ui** Correct bad imports ([3cd74ab](https://github.com/vendure-ecommerce/vendure/commit/3cd74ab))\n+* **admin-ui** Make Channel zones required in ChannelDetailComponent ([ba27360](https://github.com/v... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Publish v0.6.4 | 1 | chore | null |
304,879 | 04.12.2019 15:26:29 | 25,200 | b9a8315e6ca46556be2820740fd040e8982e90ea | chore(flux): fail make on clippy lint
This patch fixes an issue where `cargo clippy` returns a zero exit code
unless explicitly told to fail on clippy lints. Additionally, it fixes a
recently introduced lint that caused me to noticed the issue. | [
{
"change_type": "MODIFY",
"diff": "@@ -144,7 +144,7 @@ test-go: libflux\n$(GO_TEST) $(GO_TEST_FLAGS) ./...\ntest-rust:\n- cd libflux && $(CARGO) test $(CARGO_ARGS) && $(CARGO) clippy $(CARGO_ARGS)\n+ cd libflux && $(CARGO) test $(CARGO_ARGS) && $(CARGO) clippy $(CARGO_ARGS) -- -Dclippy::all\ntest-race: lib... | Go | MIT License | influxdata/flux | chore(flux): fail make on clippy lint (#2233)
This patch fixes an issue where `cargo clippy` returns a zero exit code
unless explicitly told to fail on clippy lints. Additionally, it fixes a
recently introduced lint that caused me to noticed the issue. | 1 | chore | flux |
551,636 | 04.12.2019 15:31:26 | 0 | 9a573377b4746db3d76ae32d59d56d78fb8c5b0b | fix: 'insert' implementation deals with timestamp column in various positions in table. Fixed | [
{
"change_type": "MODIFY",
"diff": "@@ -1176,11 +1176,10 @@ public class SqlCompiler implements Closeable {\nfinal int writerTimestampIndex = metadata.getTimestampIndex();\nfinal CharSequenceHashSet columnSet = model.getColumnSet();\nfinal int columnSetSize = columnSet.size();\n- final ColumnFilter columnFi... | Java | Apache License 2.0 | questdb/questdb | fix: 'insert' implementation deals with timestamp column in various positions in table. Fixed #97 | 1 | fix | null |
104,963 | 04.12.2019 15:32:16 | -3,600 | 0759b5a1d5f9e65298241a46ab8f387533754d69 | test: add tests for cv-loading | [
{
"change_type": "ADD",
"diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`CvLoading should render correctly when active, small and not overlayed 1`] = `\n+<cv-wrapper-stub tagtype=\"\" class=\"cv-loading\">\n+ <div data-loading=\"\" class=\"bx--loading cv-loading bx--loading--small\"><svg v... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-components-vue | test: add tests for cv-loading (#734) | 1 | test | null |
866,415 | 04.12.2019 15:33:30 | 18,000 | 26f81ee702c6b54153d39115787f38068463fc5b | fix(readme): pictogram array readme with props | [
{
"change_type": "MODIFY",
"diff": "@@ -20,11 +20,11 @@ const { prefix } = settings;\n* Content Array with Pictograms\n*\n* @param {object} props props object\n- * @param {string} props.title List section title\n* @param {Array} props.contentGroup variation of the List section standard, standard with jump l... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(readme): pictogram array readme with props | 1 | fix | readme |
306,406 | 04.12.2019 15:34:47 | -3,600 | d81e5ea5477a4f6e5160830a5d9b81a9d1abbd6b | feat(input-range): create input-range component | [
{
"change_type": "ADD",
"diff": "+# Input range\n+\n+[//]: # 'AUTO INSERT HEADER PREPUBLISH'\n+\n+`lion-input-range` component is based on the native range input.\n+Its purpose is to provide a way for users to select one value from a range of values.\n+\n+## Features\n+\n+- Based on [lion-input](../input).\... | JavaScript | MIT License | ing-bank/lion | feat(input-range): create input-range component | 1 | feat | input-range |
866,390 | 04.12.2019 15:45:03 | 18,000 | 79b53d47d63e3560db805fabe3a943b53681cb1f | refactor(pattern): added data-autoid to optional fields and it's parent | [
{
"change_type": "MODIFY",
"diff": "@@ -97,7 +97,9 @@ const LeadSpace = ({\n<section\ndata-autoid={`${stablePrefix}--leadspace`}\nclassName={className(variation, theme)}>\n- <div className={`${prefix}--leadspace__container`}>\n+ <div\n+ data-autoid={`${stablePrefix}--leadspace__container`}\n+ className={`${... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | refactor(pattern): added data-autoid to optional fields and it's parent | 1 | refactor | pattern |
551,636 | 04.12.2019 15:47:59 | 0 | fd8e0c8d4936f7bcf696eea3b1ca95afaafdfbf3 | build: 4.0.2 | [
{
"change_type": "MODIFY",
"diff": "<dependency>\n<groupId>org.questdb</groupId>\n<artifactId>core</artifactId>\n- <version>4.0.2-SNAPSHOT</version>\n+ <version>4.0.2</version>\n</dependency>\n<dependency>\n<groupId>org.apache.logging.log4j</groupId>\n",
"new_path": "benchmarks/pom.xml",
"old_path":... | Java | Apache License 2.0 | questdb/questdb | build: 4.0.2 | 1 | build | null |
217,922 | 04.12.2019 16:02:13 | -3,600 | 17ebb897b86e658766333a4c8f4e37f50c4fec88 | feat(desktop): added overlay for fishing data reporter | [
{
"change_type": "MODIFY",
"diff": "@@ -58,6 +58,10 @@ const routes: Routes = [\npath: 'alarms-overlay',\nloadChildren: './pages/alarms-overlay/alarms-overlay.module#AlarmsOverlayModule'\n},\n+ {\n+ path: 'fishing-reporter-overlay',\n+ loadChildren: './pages/fishing-reporter-overlay/fishing-reporter-overlay... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(desktop): added overlay for fishing data reporter
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | feat | desktop |
217,922 | 04.12.2019 16:05:41 | -3,600 | ed0570111e8cef402f6b16841f5c932ad0effa2c | chore: small fix for new overlay buttons | [
{
"change_type": "MODIFY",
"diff": "<div fxFlex=\"1 1 auto\"></div>\n<div [fxLayout]=\"collapsedSidebar?'column':'row'\" fxLayoutAlign=\"center center\" fxLayoutGap=\"5px\" class=\"overlay-buttons\" *ngIf=\"desktop\">\n- <button nz-button nzShape=\"circle\" nz-tooltip [nzTitle]=\"'TODO'\" (click)=\"openAlar... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: small fix for new overlay buttons
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | chore | null |
699,191 | 04.12.2019 16:24:16 | 28,800 | 3aaa0f886fbf2b38d9de5b3c02fbcc231c56b7e4 | fix(website): display text tokens on the correct inverse bg color | [
{
"change_type": "MODIFY",
"diff": "@@ -53,7 +53,7 @@ export const TextColorBox: React.FC<TextColorBoxProps> = ({color, textColor}) =>\nconst colorFn = Color(color);\nconst isInverse = colorFn.isLight();\nconst backgroundColorValue = isInverse\n- ? theme.backgroundColors.colorBackgroundBrand\n+ ? theme.back... | TypeScript | MIT License | twilio-labs/paste | fix(website): display text tokens on the correct inverse bg color (#220) | 1 | fix | website |
711,597 | 04.12.2019 16:26:30 | -3,600 | 02757eaf748903fca09ebe4c93ef9398ebb84cd0 | fix(admin-ui): Fix CustomerDetail display of custom fields | [
{
"change_type": "MODIFY",
"diff": "<vdr-custom-field-control\n*ngIf=\"customFieldIsSet(customField.name)\"\nentityName=\"Customer\"\n- [customFieldsFormGroup]=\"detailForm.get('customFields')\"\n+ [customFieldsFormGroup]=\"detailForm.get(['customer', 'customFields'])\"\n[customField]=\"customField\"\n></vd... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(admin-ui): Fix CustomerDetail display of custom fields | 1 | fix | admin-ui |
942,583 | 04.12.2019 16:28:17 | 25,200 | 4e15883bd08361ed35317d01ddfc1d38b818122f | feat(button): Add text button css | [
{
"change_type": "MODIFY",
"diff": "@@ -93,6 +93,7 @@ buttons are used in a sequence of screens (e.g. Task Orchestration) and on mobil\n- Icon Button\n- Dropdown Button\n- Split Button\n+ - Text Button\n## Sizes\n@@ -170,7 +171,7 @@ Inverse buttons are buttons that can be used on dark backgrounds.\n### Prim... | TypeScript | Apache License 2.0 | workday/canvas-kit | feat(button): Add text button css (#335) | 1 | feat | button |
551,636 | 04.12.2019 16:31:38 | 0 | 604fab9ee69602b0a245ed5823b7e045a1b83fe6 | build: docker image 4.0.2 | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ FROM debian:stable-20191014-slim\nENV JRE jre-8u231-linux-x64.tar.gz\nENV JRE_DIR jre1.8.0_231\n-ENV QUESTDB_VERSION 4.0.1\n+ENV QUESTDB_VERSION 4.0.2\n# install 'ps' command needed by questdb shell script\n#RUN apt-get update && apt-get install -y procps\... | Java | Apache License 2.0 | questdb/questdb | build: docker image 4.0.2 | 1 | build | null |
869,315 | 04.12.2019 16:47:15 | -3,600 | 8e8c7927b74fed0b13d75538fb630e281ad68d1b | feat: sparkdex init | [
{
"change_type": "MODIFY",
"diff": "@@ -153,6 +153,7 @@ exports.rightbtc = require('./rightbtc');\nexports.simex = require('./simex');\nexports.sistemkoin = require('./sistemkoin');\nexports.southxchange = require('./southxchange');\n+exports.sparkdex = require('./sparkdex');\nexports.stellarport = require(... | JavaScript | MIT License | coinranking/exchanges | feat: sparkdex init | 1 | feat | null |
791,704 | 04.12.2019 16:49:30 | 21,600 | d67ad96bfc3fc8119f740603d25776d4d955b023 | core(offline-start-url): better failure messages | [
{
"change_type": "MODIFY",
"diff": "@@ -19,9 +19,15 @@ const UIStrings = {\n/**\n* @description Warning that the audit couldn't find the start_url and used the page's URL instead.\n* @example {No Manifest Fetched.} manifestWarning\n- * */\n+ */\nwarningCantStart: 'Lighthouse couldn\\'t read the `start_url` ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | core(offline-start-url): better failure messages (#9982) | 1 | core | offline-start-url |
869,315 | 04.12.2019 16:54:38 | -3,600 | 5e6bba0665ec4df7ae2ea53122aaa431b009a50d | feat: reduce two api calls to one where price prop is close prop | [
{
"change_type": "MODIFY",
"diff": "const request = require('../lib/request');\nconst Ticker = require('../models/ticker');\n-const { parseToFloat, throttleMap } = require('../lib/utils.js');\n+const { parseToFloat } = require('../lib/utils.js');\n-module.exports = async (isMocked) => {\n- const pairs = awa... | JavaScript | MIT License | coinranking/exchanges | feat: reduce two api calls to one where price prop is close prop | 1 | feat | null |
551,636 | 04.12.2019 17:00:05 | 0 | dfe6dfacc5e3899955b0076942fafbc5ade16e5d | build: 4.0.3-SNAPSHOT | [
{
"change_type": "MODIFY",
"diff": "<dependency>\n<groupId>org.questdb</groupId>\n<artifactId>core</artifactId>\n- <version>4.0.2</version>\n+ <version>4.0.3-SNAPSHOT</version>\n</dependency>\n<dependency>\n<groupId>org.apache.logging.log4j</groupId>\n",
"new_path": "benchmarks/pom.xml",
"old_path":... | Java | Apache License 2.0 | questdb/questdb | build: 4.0.3-SNAPSHOT | 1 | build | null |
306,423 | 04.12.2019 17:03:49 | -3,600 | 6a57e8a235adac85f5437d6879a2248973c2b6b5 | fix(field): support moving of a portal node | [
{
"change_type": "MODIFY",
"diff": "@@ -21,6 +21,7 @@ export const FormRegistrarPortalMixin = dedupeMixin(\nsuper();\nthis.formElements = [];\nthis.registrationTarget = undefined;\n+ this.__hasBeenRendered = false;\nthis.__readyForRegistration = false;\nthis.registrationReady = new Promise(resolve => {\nthi... | JavaScript | MIT License | ing-bank/lion | fix(field): support moving of a portal node | 1 | fix | field |
869,315 | 04.12.2019 17:05:51 | -3,600 | d8e42942cc0ecbc5c52dbbf3cbf5845a285f70aa | feat: sparkdex driver | [
{
"change_type": "MODIFY",
"diff": "+const request = require('../lib/request');\n+const Ticker = require('../models/ticker');\n+const { parseToFloat } = require('../lib/utils.js');\n+\n+module.exports = async () => {\n+ const tickers = await request('https://pricing.bitspark.io/api/v1/asset-pairs');\n+\n+ r... | JavaScript | MIT License | coinranking/exchanges | feat: sparkdex driver | 1 | feat | null |
866,401 | 04.12.2019 17:11:47 | 10,800 | d063cdc836abfb39e46765e0892ac58b61d47684 | docs(pattern): readme file updates | [
{
"change_type": "MODIFY",
"diff": "@@ -23,9 +23,49 @@ import { CardArray } from '@carbon/ibmdotcom-patterns-react';\nimport 'yourapplication.scss';\nimport '@carbon/ibmdotcom-styles/scss/patterns/cardarray/index.scss';\n+const title = 'Lorem ipsum dolor sit amet.';\n+\n+const content = [\n+ {\n+ title: 'Lo... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | docs(pattern): readme file updates | 1 | docs | pattern |
869,315 | 04.12.2019 17:16:40 | -3,600 | 0abaa4f82102b174ca3f323f45a81ef92fd7afae | feat: resfinex driver | [
{
"change_type": "MODIFY",
"diff": "@@ -150,6 +150,7 @@ exports.paymium = require('./paymium');\nexports.prizmbit = require('./prizmbit');\nexports.poloniex = require('./poloniex');\nexports.remitano = require('./remitano');\n+exports.resfinex = require('./resfinex');\nexports.rightbtc = require('./rightbtc... | JavaScript | MIT License | coinranking/exchanges | feat: resfinex driver | 1 | feat | null |
866,401 | 04.12.2019 17:17:20 | 10,800 | 3c997d979506ab1b16a9e7ef487e0a3d37a2c01b | fix(pattern): created story level scss file | [
{
"change_type": "MODIFY",
"diff": "@@ -92,9 +92,9 @@ DDS_CARD_ARRAY=true\n## Props\n| Name | Description |\n-| --------- | ----------------------------------------------------------------------------------------- |\n+| --------- | ----------------------------------------------------------------------------... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pattern): created story level scss file | 1 | fix | pattern |
217,922 | 04.12.2019 17:23:44 | -3,600 | 80a85e634e889fc989114a1f68828c0507b157bc | fix(list): fixed a bug with item move event counted as item obtention | [
{
"change_type": "MODIFY",
"diff": "@@ -143,7 +143,8 @@ export class UserInventory extends DataModel {\n}\nthis.items[toContainerKey][packet.toSlot] = moved;\nif (packet.toContainer === ContainerType.HandIn\n- || packet.fromContainer === ContainerType.HandIn) {\n+ || packet.fromContainer === ContainerType.H... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(list): fixed a bug with item move event counted as item obtention
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | fix | list |
866,401 | 04.12.2019 17:24:13 | 10,800 | 5b936b5296fefe46ba3e93aef267b9d96830d9a9 | fix(pattern): created a story level scss file | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ import React from 'react';\nimport { storiesOf } from '@storybook/react';\nimport { DDS_PICTOGRAM_ARRAY } from '../../../internal/FeatureFlags';\nimport { withKnobs, text, object, select } from '@storybook/addon-knobs';\n-import '../../../../../styles/scss... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pattern): created a story level scss file | 1 | fix | pattern |
791,723 | 04.12.2019 17:47:57 | 18,000 | a156f71864ab533b06ca8ddc212035281c075114 | docs(plugins): update plugin developer docs wrt NODE_PATH | [
{
"change_type": "MODIFY",
"diff": "@@ -51,7 +51,7 @@ To see a fully functioning example, see our [plugin recipe](./recipes/lighthouse\n#### `package.json`\n-A Lighthouse plugin is just a node module with a name that starts with `lighthouse-plugin-`. Any dependencies you need are up to you. However, do not ... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | docs(plugins): update plugin developer docs wrt NODE_PATH (#10028) | 1 | docs | plugins |
724,243 | 04.12.2019 17:58:09 | -25,200 | 9b516e53ef9210cb14facc4075b5ac081571f654 | fix: whitelist tags to be ignored with `disabled` attribute | [
{
"change_type": "MODIFY",
"diff": "@@ -574,8 +574,25 @@ export default class Wrapper implements BaseWrapper {\n)\n}\n- // Don't fire event on a disabled element\n- if (this.attributes().disabled) {\n+ /**\n+ * Avoids firing events on specific disabled elements\n+ * See more: https://developer.mozilla.org/e... | JavaScript | MIT License | vuejs/vue-test-utils | fix: whitelist tags to be ignored with `disabled` attribute | 1 | fix | null |
551,636 | 04.12.2019 18:06:29 | 0 | c6775ad8885d33fb4dc87eec5afd18ab87d97d2c | docs: updated download link to new release | [
{
"change_type": "MODIFY",
"diff": "<a href=\"https://www.codacy.com/app/bluestreak/nfsdb\"><img src=\"https://api.codacy.com/project/badge/grade/83c6250bd9fc45a98c12c191af710754\"></a>\n<a href=\"https://circleci.com/gh/questdb/questdb\"><img src=\"https://img.shields.io/circleci/build/github/questdb/quest... | Java | Apache License 2.0 | questdb/questdb | docs: updated download link to new release | 1 | docs | null |
688,431 | 04.12.2019 18:40:51 | -7,200 | f3b7f20d1be72915a29aaae73f5670be89926e4e | feat(Typography): add lineThrough prop | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,8 @@ export interface Props extends StandardProps, HTMLAttributes<HTMLElement> {\nas?: React.ElementType<React.HTMLAttributes<HTMLElement>>\n/** Controls when the Typography should have an underline */\nunderline?: UnderlineType\n+ /** Controls when the Typog... | TypeScript | MIT License | toptal/picasso | feat(Typography): add lineThrough prop (#936) | 1 | feat | Typography |
722,013 | 04.12.2019 18:55:56 | 21,600 | cc25bc907a55c0217aa1c9d09bbc818843280629 | docs(docgen): update docgen documentation | [
{
"change_type": "MODIFY",
"diff": "## API\n-The package exposes 2 functions:\n+### Type `ComponentDoc`\n+\n+Every parser in docgen-api returns an instannce of `ComponentDoc` or a `ComponentDoc[]`.\n+\n+```ts\n+interface ComponentDoc {\n+ /**\n+ * Usual name of the component:\n+ * It will take by order of p... | TypeScript | MIT License | vue-styleguidist/vue-styleguidist | docs(docgen): update docgen documentation | 1 | docs | docgen |
104,963 | 04.12.2019 18:56:54 | -3,600 | bc7545ef500e98cd434b056a67aa5732d7603226 | refactor: delete TODO comment I forgot to delete before | [
{
"change_type": "MODIFY",
"diff": "@@ -22,7 +22,6 @@ describe('CvList', () => {\n// SNAPSHOT TESTS\n// ***************\n- // TODO id\nit('should render correctly when nested and parent is ordered', () => {\nconst propsData = { nested: false, ordered: true };\nconst wrapper = mount(CvList, {\n",
"new_pa... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-components-vue | refactor: delete TODO comment I forgot to delete before (#736) | 1 | refactor | null |
104,963 | 04.12.2019 18:57:25 | -3,600 | 376bebb3664814d49d8612c24ab2dbf3306d78f2 | fix: use warning--filled/20 icon for warning toast notification | [
{
"change_type": "MODIFY",
"diff": "@@ -28,7 +28,7 @@ exports[`CvToastNotification should render correctly 2`] = `\nexports[`CvToastNotification should render correctly 3`] = `\n<div data-notification=\"\" role=\"alert\" class=\"cv-notifiation bx--toast-notification bx--toast-notification--warning\">\n- <wa... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-components-vue | fix: use warning--filled/20 icon for warning toast notification (#737) | 1 | fix | null |
866,394 | 04.12.2019 20:28:52 | 18,000 | c38287b044d03843d61dd17594eb39d6d6a7f6a9 | feat(expressive): updating README files | [
{
"change_type": "MODIFY",
"diff": "@@ -45,7 +45,7 @@ we support!\n## Documentation\n-- See our documentation site [here](https://carbonforibm-website.mybluemix.net)\n+- See our documentation site [here](https://carbon-for-ibmdotcom.netlify.com)\nfor full how-to docs and guidelines\n- [Contributing](https:/... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(expressive): updating README files | 1 | feat | expressive |
866,394 | 04.12.2019 20:31:01 | 18,000 | c365158e2a3d7cad3e07e511cfb4f616ee849710 | feat(expressive): tweak to .env.example descriptions | [
{
"change_type": "MODIFY",
"diff": "@@ -5,4 +5,4 @@ DDS_FLAGS_ALL=<Boolean flag to turn on all feature flags>\nLEADSPACE=<Boolean flag to turn on/off the lead space pattern>\n# Carbon Expressive Theme\n-PATTERNS_STORYBOOK_CARBON_EXPRESSIVE=<Boolean to turn on/off the carbon expressive theme>\n+PATTERNS_STOR... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(expressive): tweak to .env.example descriptions | 1 | feat | expressive |
217,922 | 04.12.2019 20:40:27 | -3,600 | 10b4cab2d0e8a93bcd719403e8e82cbaa354ba5d | chore: small layout enhancement for fishing | [
{
"change_type": "MODIFY",
"diff": "}\n.no-data {\n- padding: 24px;\n+ padding-top: 24px;\n}\n.details-block.no-icon {\n",
"new_path": "apps/client/src/app/pages/db/fish/fish.component.less",
"old_path": "apps/client/src/app/pages/db/fish/fish.component.less"
},
{
"change_type": "MODIFY",
... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: small layout enhancement for fishing
Signed-off-by: Supamiu <contact@flavien-normand.fr> | 1 | chore | null |
679,913 | 04.12.2019 22:53:59 | 28,800 | 0748d97a37ce5268ce161caf434d944f08ce9987 | refactor(transducers): update ConvolutionOpts | [
{
"change_type": "MODIFY",
"diff": "@@ -17,11 +17,11 @@ export interface ConvolutionOpts<K> {\n/**\n* Current cell states\n*/\n- src: number[];\n+ src: ArrayLike<number>;\n/**\n* Kernel weights\n*/\n- weights?: number[];\n+ weights?: Iterable<number>;\n/**\n* Convolution kernel, pre-build via `buildKernel*`... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(transducers): update ConvolutionOpts | 1 | refactor | transducers |
679,913 | 04.12.2019 22:55:19 | 28,800 | 18eacf7b6d3d40662ab93b3be56b9418a07ad33f | refactor(examples): simplify event types in rstream-event-loop | [
{
"change_type": "MODIFY",
"diff": "+import { Val1 } from \"@thi.ng/api\";\n+\n// event ID constants\nexport const PREV = \"prev\";\nexport const NEXT = \"next\";\nexport const PAGE_READY = \"page-ready\";\n-export type EventType = typeof PREV | typeof NEXT | typeof PAGE_READY;\n-\n// alias of possible even... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): simplify event types in rstream-event-loop | 1 | refactor | examples |
679,913 | 04.12.2019 23:06:43 | 28,800 | 2c3a06ae7732387f1323d05fd90d18d2fa77dda6 | feat(examples): add adaptive-threshold example & screenshot | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/assets/examples/adaptive-threshold.png differ\n",
"new_path": "assets/examples/adaptive-threshold.png",
"old_path": "assets/examples/adaptive-threshold.png"
},
{
"change_type": "ADD",
"diff": "+.cache\n+out\n+node_modules\n+ya... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(examples): add adaptive-threshold example & screenshot | 1 | feat | examples |
679,913 | 04.12.2019 23:12:20 | 28,800 | cbe55b7f15c215f3cb61489d5d8e912fc7475834 | docs: add adaptive-threshold example links to readme's | [
{
"change_type": "MODIFY",
"diff": "@@ -114,6 +114,14 @@ directory are using this package.\nA selection:\n+### adaptive-threshold <!-- NOTOC -->\n+\n+\n+\n+Interactive image processing (adaptive thr... | TypeScript | Apache License 2.0 | thi-ng/umbrella | docs: add adaptive-threshold example links to readme's | 1 | docs | null |
942,585 | 05.12.2019 00:20:55 | 0 | 29c3b7859213712b5a739facabe9f12663ebda97 | feat(modal): Update focus-trap library to focus-trap-js
* feat(modal): Update focus-trap library to focus-trap-js
* chore: Add better logging to cy.tab
Fixes | [
{
"change_type": "MODIFY",
"diff": "import * as axe from 'axe-core';\n+import {Promise} from 'cypress/types/bluebird';\ndeclare global {\ninterface Window {\n@@ -14,3 +15,28 @@ Cypress.Commands.add('injectAxe', () => {\nwindow.axe = axe;\n});\n});\n+\n+// Add better logging to cy.tab\n+Cypress.Commands.over... | TypeScript | Apache License 2.0 | workday/canvas-kit | feat(modal): Update focus-trap library to focus-trap-js (#328)
* feat(modal): Update focus-trap library to focus-trap-js
* chore: Add better logging to cy.tab
Fixes #340 | 1 | feat | modal |
866,393 | 05.12.2019 06:53:57 | -32,400 | d4ec2c3b9a98dd4cb70ec66e95ae0ebd507d3fe7 | fix(side-nav): force menu collapsed in rails mode
This change forces side nav menu (a side nav item with an expando) to
be collapsed when side nav gets in "rails" mode, meaning, side nav in
its collapsed state. | [
{
"change_type": "MODIFY",
"diff": "@@ -88,6 +88,12 @@ class BXSideNavMenu extends FocusMixin(LitElement) {\n@property({ type: Boolean, reflect: true })\nexpanded = false;\n+ /**\n+ * `true` if the menu should be forced collapsed upon side nav's expanded state. Corresponds to `force-collapsed` attribute.\n+... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(side-nav): force menu collapsed in rails mode (#188)
This change forces side nav menu (a side nav item with an expando) to
be collapsed when side nav gets in "rails" mode, meaning, side nav in
its collapsed state. | 1 | fix | side-nav |
67,476 | 05.12.2019 08:22:22 | -3,600 | 6f47ee879ea8b3a129a0250c95d6924927174012 | refactor(runtime): simplify render process / prepare for removing CompiledTemplate layer | [
{
"change_type": "MODIFY",
"diff": "@@ -130,6 +130,10 @@ export class HTMLDOM implements IDOM {\nreturn this.createTemplate(markupOrNode).content;\n}\n+ public createNodeSequence(fragment: DocumentFragment): FragmentNodeSequence {\n+ return new FragmentNodeSequence(this, fragment);\n+ }\n+\npublic createEle... | TypeScript | MIT License | aurelia/aurelia | refactor(runtime): simplify render process / prepare for removing CompiledTemplate layer | 1 | refactor | runtime |
306,449 | 05.12.2019 10:09:59 | -3,600 | b9f8c962a6ced8ea483bb9b0db54e32d13005a57 | fix(fieldset): 0 is now a valid serializedValue | [
{
"change_type": "MODIFY",
"diff": "@@ -210,7 +210,7 @@ export class LionFieldset extends FormRegistrarMixin(\nserializedValues[name] = this.__serializeElements(element);\n} else {\nconst serializedValue = this.__serializeElement(element);\n- if (serializedValue) {\n+ if (serializedValue || serializedValue ... | JavaScript | MIT License | ing-bank/lion | fix(fieldset): 0 is now a valid serializedValue | 1 | fix | fieldset |
699,191 | 05.12.2019 10:28:03 | 28,800 | 1635b3f0e1b438feb3c40112e1f973ee24605224 | chore: limit concurrent tasks on build in CI | [
{
"change_type": "MODIFY",
"diff": "\"start:website\": \"yarn workspace @twilio-paste/website develop\",\n\"watch:icons\": \"yarn workspace @twilio-paste/icons watch\",\n\"prebuild\": \"node ./tools/build/pre-build.js\",\n- \"build\": \"lerna run build --ignore @twilio-paste/website\",\n+ \"build\": \"lerna... | TypeScript | MIT License | twilio-labs/paste | chore: limit concurrent tasks on build in CI (#222) | 1 | chore | null |
304,866 | 05.12.2019 10:34:08 | 28,800 | 9841d85b985772756f4997e3c0bee03726499b92 | refactor(semantic): minor change to type expr parser to produce better errors | [
{
"change_type": "MODIFY",
"diff": "@@ -404,18 +404,24 @@ impl Parser<'_> {\n// parse_monotype parses a monotype\nfn parse_monotype(&mut self) -> Result<MonoType, &'static str> {\nlet next_token = self.peek();\n- if let Ok(primitive) = self.parse_primitives(&next_token) {\n- Ok(primitive)\n- } else if let O... | Go | MIT License | influxdata/flux | refactor(semantic): minor change to type expr parser to produce better errors (#2222) | 1 | refactor | semantic |
791,622 | 05.12.2019 10:45:58 | 28,800 | e779c70c6b11600a382880c611b82eae6b60c552 | fix(deps): pin TypeScript below 3.7.0 | [
{
"change_type": "MODIFY",
"diff": "\"proxyquire\": \"^2.0.0\",\n\"sinon\": \"^7.1.1\",\n\"source-map-support\": \"^0.5.9\",\n- \"typescript\": \"~3.6.0\",\n+ \"typescript\": \"3.6.4\",\n\"uuid\": \"^3.1.0\",\n\"yargs\": \"^15.0.0\"\n}\n",
"new_path": "package.json",
"old_path": "package.json"
},
... | TypeScript | Apache License 2.0 | googleapis/nodejs-pubsub | fix(deps): pin TypeScript below 3.7.0 | 1 | fix | deps |
866,396 | 05.12.2019 10:55:08 | 18,000 | c76566bfdd0fc6cecc919c22233168798a04ca8e | fix(footer): added index export, added readme, deleted console log | [
{
"change_type": "MODIFY",
"diff": "@@ -2,14 +2,15 @@ import { storiesOf } from '@storybook/html';\nimport { withKnobs, select } from '@storybook/addon-knobs';\nimport Footer from '../footer';\nimport '../../../../../styles/scss/components/footer/index.scss';\n+import readme from '../README.md';\nstoriesOf(... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(footer): added index export, added readme, deleted console log | 1 | fix | footer |
304,868 | 05.12.2019 11:14:30 | 25,200 | 0cd21e41f7268e22e2f920e74ec65e722802a168 | docs(SPEC): add power operator to SPEC | [
{
"change_type": "MODIFY",
"diff": "@@ -103,7 +103,7 @@ The following keywords are reserved and may not be used as identifiers:\nThe following character sequences represent operators:\n+ == != ( ) =>\n- - < !~ [ ]\n+ - < !~ [ ] ^\n* > =~ { }\n/ <= = , :\n% >= <- . |>\n",
"new_path": "docs/SPEC.md",
... | Go | MIT License | influxdata/flux | docs(SPEC): add power operator to SPEC (#2214) | 1 | docs | SPEC |
866,390 | 05.12.2019 11:15:04 | 18,000 | 6216a2bf37fd246b0f92f4a0040055f5c4f3c669 | refactor(pattern): add data-autoid to UseCasesGroup | [
{
"change_type": "MODIFY",
"diff": "@@ -39,7 +39,10 @@ const UseCasesGroup = ({ usecaseGroup: { title, image, lists, link } }) => {\n<div className={`${prefix}--usecases-group__list`}>\n{_renderList(lists)}\n</div>\n- <div className={`${prefix}--usecases-group__card`}>\n+ {link && (\n+ <div\n+ data-autoid={... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | refactor(pattern): add data-autoid to UseCasesGroup | 1 | refactor | pattern |
866,415 | 05.12.2019 11:21:26 | 18,000 | 01cad1f1ff6f3512acb66fa2c6763dfb6104fbec | fix(readme): clean up of readme's and updated missed components | [
{
"change_type": "MODIFY",
"diff": "@@ -92,10 +92,25 @@ DDS_CARD_ARRAY=true\n## Props\n-| Name | Description |\n-| --------- | -------------------------------------------------------------------------------- |\n-| `title` | Content Array with Cards section title `{title}` |\n-| `content` | Content Array wit... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(readme): clean up of readme's and updated missed components | 1 | fix | readme |
889,109 | 05.12.2019 11:41:26 | 28,800 | 432fe5d8cf19f4bd6b3e9863fb995db8e35ae8d8 | fix(deps): TypeScript 3.7.0 causes breaking change in typings | [
{
"change_type": "MODIFY",
"diff": "\"prettier\": \"^1.15.1\",\n\"proxyquire\": \"^2.1.0\",\n\"sinon\": \"^7.2.5\",\n- \"typescript\": \"~3.7.0\",\n+ \"typescript\": \"3.6.4\",\n\"uuid\": \"^3.3.2\"\n}\n}\n",
"new_path": "package.json",
"old_path": "package.json"
},
{
"change_type": "MODIFY"... | TypeScript | Apache License 2.0 | googleapis/nodejs-logging | fix(deps): TypeScript 3.7.0 causes breaking change in typings (#654) | 1 | fix | deps |
815,577 | 05.12.2019 11:49:59 | -28,800 | 5fcb30a98a610bf27c592cb7823770f81ccdc764 | fix: fix lost sync/relayer protocol registration | [
{
"change_type": "MODIFY",
"diff": "@@ -750,7 +750,7 @@ impl ServiceHandle for EventHandler {\n}\nfn handle_proto(&mut self, context: &mut ServiceContext, event: ProtocolEvent) {\n- // For special protocols: ping/discovery/identify\n+ // For special protocols: ping/discovery/identify/disconnect_message\nmat... | Rust | MIT License | nervosnetwork/ckb | fix: fix lost sync/relayer protocol registration | 1 | fix | null |
688,431 | 05.12.2019 11:57:14 | -7,200 | 33b182b57063f04542b6af72602a967807a55607 | feat(CounterBlock): add CounterBlock component | [
{
"change_type": "MODIFY",
"diff": "@@ -13,6 +13,7 @@ import {\ngetHost,\nnormalize\n} from '../../../src/utils/url-generator'\n+import { Typography } from '../../../packages/picasso'\nimport Base from './Base'\nimport Section, { SectionConfigType } from './Section'\n@@ -127,7 +128,14 @@ class Chapter exten... | TypeScript | MIT License | toptal/picasso | feat(CounterBlock): add CounterBlock component (#935) | 1 | feat | CounterBlock |
306,449 | 05.12.2019 12:10:40 | -3,600 | c1f35030bd2c6849facc79f9c79dd8c45eac5419 | chore(fieldset): added missing tests for serializeGroup/Elements | [
{
"change_type": "MODIFY",
"diff": "@@ -566,6 +566,23 @@ describe('<lion-fieldset>', () => {\n});\n});\n+ it('0 is a valid value to be serialized', async () => {\n+ const fieldset = await fixture(html`\n+ <${tag}>\n+ <${childTag} name=\"price\"></${childTag}>\n+ </${tag}>`);\n+ await nextFrame();\n+ fieldse... | JavaScript | MIT License | ing-bank/lion | chore(fieldset): added missing tests for serializeGroup/Elements | 1 | chore | fieldset |
366,947 | 05.12.2019 12:47:05 | -32,400 | bd7f4cb3f81393e2c7359ec5bcae80817ee15855 | docs: Update README.md
color #00C4CC | [
{
"change_type": "MODIFY",
"diff": "-<h1 align=\"center\"><img src =\"https://user-images.githubusercontent.com/44044475/70199902-44602780-1756-11ea-8108-1261cbbb4207.png\" alt=\"SmartHR UI\" title=\"SmartHR UI\"></h1>\n+<h1 align=\"center\"><img src =\"https://user-images.githubusercontent.com/44044475/702... | TypeScript | MIT License | kufu/smarthr-ui | docs: Update README.md (#499)
color #00C4CC | 1 | docs | null |
304,866 | 05.12.2019 13:40:36 | 28,800 | cf65e26f426b235fcc6b300bfeb11e6a89d9290a | feat(semantic): add Numeric and Row kind constraints | [
{
"change_type": "MODIFY",
"diff": "@@ -9,7 +9,7 @@ pub struct Builtins<'a> {\n}\nimpl<'a> Builtins<'a> {\n- fn iter(&'a self) -> NodeIterator {\n+ pub fn iter(&'a self) -> NodeIterator {\nreturn NodeIterator::new(self);\n}\n}\n@@ -24,7 +24,7 @@ pub fn builtins() -> Builtins<'static> {\npkgs: hashmap! {\n\"... | Go | MIT License | influxdata/flux | feat(semantic): add Numeric and Row kind constraints (#2241) | 1 | feat | semantic |
688,413 | 05.12.2019 14:09:15 | -7,200 | d71b3e549b5348331edf928198a283442de46208 | chore: fix picasso docs release job | [
{
"change_type": "MODIFY",
"diff": "@Library('globalLibrary@master') _\nrepoName = 'picasso'\n+imageCommitId = ''\npipeline {\n@@ -15,6 +16,7 @@ pipeline {\nparameters {\nstring(name: 'BRANCH', defaultValue: 'master', description: 'Branch or tag to build')\nstring(name: 'PR_ID', defaultValue: '1', descripti... | TypeScript | MIT License | toptal/picasso | chore: fix picasso docs release job (#938) | 1 | chore | null |
688,413 | 05.12.2019 14:32:33 | -7,200 | 93fdad1e7f94050f67d9eb9e0d73a47df6d96759 | chore: fix docs release job | [
{
"change_type": "MODIFY",
"diff": "@@ -6,6 +6,7 @@ ghHelper = new helpers.GithubNotifyHelper()\ndownStreamBuilds = []\nrepoName = 'picasso'\nbuildImageJobName = \"${repoName}-build-image\"\n+releaseDocsJobName = \"${repoName}-docs\"\ndef VERSION\npipeline {\n@@ -129,8 +130,8 @@ pipeline {\nsteps {\ninfo \"... | TypeScript | MIT License | toptal/picasso | chore: fix docs release job (#939) | 1 | chore | null |
306,421 | 05.12.2019 14:56:28 | -3,600 | 190ba3854a6a031f996e77a7c2ee4cbf851fecbb | fix(form): event order of reset and submit | [
{
"change_type": "MODIFY",
"diff": "@@ -43,16 +43,16 @@ export class LionForm extends LionFieldset {\nthis._submit = ev => {\nev.preventDefault();\nev.stopPropagation();\n- this.dispatchEvent(new Event('submit', { bubbles: true }));\nthis.submitGroup();\n+ this.dispatchEvent(new Event('submit', { bubbles: t... | JavaScript | MIT License | ing-bank/lion | fix(form): event order of reset and submit | 1 | fix | form |
711,597 | 05.12.2019 15:08:33 | -3,600 | 6b31f286522bf46bfc3894d8701a6906f7c0d476 | feat(admin-ui): Export Dialog interface | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ export { NotificationService } from './app/core/providers/notification/notificat\nexport { DataModule } from './app/data/data.module';\nexport { DataService } from './app/data/providers/data.service';\nexport { ServerConfigService } from './app/data/server... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(admin-ui): Export Dialog interface | 1 | feat | admin-ui |
866,415 | 05.12.2019 15:11:24 | 18,000 | 0dc4609aec807db48a94fd44608d741906ca20f4 | fix(usecase): theme modifier class added to pattern | [
{
"change_type": "MODIFY",
"diff": "@@ -21,18 +21,23 @@ const { prefix } = settings;\n* Use cases pattern\n*\n* @param {object} props props object\n- * @param {string} props.title Use cases title\n- * @param {string} props.copy Use cases short copy to support the title\n* @param {string} props.border Use ca... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(usecase): theme modifier class added to pattern | 1 | fix | usecase |
866,415 | 05.12.2019 15:55:56 | 18,000 | d076d755cb820bf6a25e40f4239cdc7c9c2c6784 | fix(listsection): add theme modifier to pattern | [
{
"change_type": "MODIFY",
"diff": "@@ -24,15 +24,20 @@ const { prefix } = settings;\n* @param {boolean} props.border List section border\n* @param {string} props.copy List section short copy to support the title\n* @param {Array} props.listGroup variation of the List section standard, standard with jump li... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(listsection): add theme modifier to pattern | 1 | fix | listsection |
504,026 | 05.12.2019 16:00:35 | 18,000 | ff96204f760b0d60af35c1d3d3353f1248f9a6e9 | fix(charts): Update interpolation examples to use monotoneX
Fixes: | [
{
"change_type": "MODIFY",
"diff": "@@ -60,7 +60,7 @@ BasicRightAlignedLegend = (\n{ name: 'Cats', x: '2017', y: 8 },\n{ name: 'Cats', x: '2018', y: 6 }\n]}\n- interpolation=\"basis\"\n+ interpolation=\"monotoneX\"\n/>\n<ChartArea\ndata={[\n@@ -70,7 +70,7 @@ BasicRightAlignedLegend = (\n{ name: 'Dogs', x: '... | TypeScript | MIT License | patternfly/patternfly-react | fix(charts): Update interpolation examples to use monotoneX (#3372)
Fixes: https://github.com/patternfly/patternfly-react/issues/3329 | 1 | fix | charts |
127,975 | 05.12.2019 16:02:56 | -7,200 | 2167f17e0f65b67951a27fa02b2bfaba52ecbe5e | feat: add poker, support and fantasy sports icons to the README.mdx | [
{
"change_type": "MODIFY",
"diff": "@@ -56,6 +56,7 @@ To aid with performance, Icons are surfaced as individual [SVG](https://develope\n<IconSearch />\n<IconSettings />\n<IconSuccess />\n+ <IconSupport />\n<IconUpload />\n<IconWarning />\n</Inline>\n@@ -128,6 +129,7 @@ To aid with performance, Icons are sur... | TypeScript | MIT License | coingaming/moon-design | feat: add poker, support and fantasy sports icons to the README.mdx | 1 | feat | null |
306,423 | 05.12.2019 16:14:01 | -3,600 | 7bddabed86c89648e476a808915985d1df5930e9 | fix(calendar): make tests independents of execution date | [
{
"change_type": "MODIFY",
"diff": "@@ -57,7 +57,7 @@ describe('<lion-calendar>', () => {\nit('has previous month button', async () => {\nconst el = await fixture(\nhtml`\n- <lion-calendar></lion-calendar>\n+ <lion-calendar .centralDate=${new Date('2019/11/20')}></lion-calendar>\n`,\n);\nexpect(el.shadowRoo... | JavaScript | MIT License | ing-bank/lion | fix(calendar): make tests independents of execution date | 1 | fix | calendar |
306,417 | 05.12.2019 16:17:26 | -7,200 | b6ec5a8cb550b207d72846ca79a220187b9ea5d2 | fix(catalog): add info for next/previous month on to the buttons | [
{
"change_type": "MODIFY",
"diff": "@@ -257,18 +257,30 @@ export class LionCalendar extends LocalizeMixin(LitElement) {\n__renderHeader() {\nconst month = getMonthNames({ locale: this.__getLocale() })[this.centralDate.getMonth()];\nconst year = this.centralDate.getFullYear();\n+ const nextMonth =\n+ this.ce... | JavaScript | MIT License | ing-bank/lion | fix(catalog): add info for next/previous month on to the buttons (#384) | 1 | fix | catalog |
531,793 | 05.12.2019 16:18:00 | 0 | be610bf62d3a075953c885bbe58835822cbd88c6 | fix(backend): always zero exposed alert count metrics
If there are no alerts for given state we won't return any metric, which leads to gaps
on metrics. Fix it by initializing all states with 0. | [
{
"change_type": "MODIFY",
"diff": "@@ -85,10 +85,11 @@ func (c *karmaCollector) Collect(ch chan<- prometheus.Metric) {\n// count all alerts per receiver & state\nfor _, alert := range group.Alerts {\nif _, found := alertsByReceiverByState[alert.Receiver]; !found {\n- alertsByReceiverByState[alert.Receiver]... | TypeScript | Apache License 2.0 | prymitive/karma | fix(backend): always zero exposed alert count metrics
If there are no alerts for given state we won't return any metric, which leads to gaps
on metrics. Fix it by initializing all states with 0. | 1 | fix | backend |
217,922 | 05.12.2019 16:18:31 | -3,600 | d08d294b6d6d6820322208a45d8f48306af21f67 | fix(db): fixed position name for some npcs | [
{
"change_type": "MODIFY",
"diff": "\"defaultTalks\": [],\n\"position\": {\n\"map\": 493,\n- \"zoneid\": 2956,\n+ \"zoneid\": 2955,\n\"x\": 25.6,\n\"y\": 18.4\n}\n\"defaultTalks\": [],\n\"position\": {\n\"map\": 493,\n- \"zoneid\": 2956,\n+ \"zoneid\": 2955,\n\"x\": 25.6,\n\"y\": 18.4\n}\n\"defaultTalks\": ... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(db): fixed position name for some npcs | 1 | fix | db |
866,390 | 05.12.2019 16:46:03 | 18,000 | 324f7c6a5507918effc09e70c2bddb4b41d4bc29 | fix(pattern): polulated additional data-autoid attributes | [
{
"change_type": "MODIFY",
"diff": "@@ -98,7 +98,11 @@ const LeadSpaceCentered = ({\n<div className={overlayClassname(gradient)}>\n<div className={`${prefix}--leadspace--centered__content`}>\n<h1 className={`${prefix}--leadspace--centered__title`}>{title}</h1>\n- <p className={`${prefix}--leadspace--centere... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | fix(pattern): polulated additional data-autoid attributes | 1 | fix | pattern |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.