author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
67,494
27.08.2021 15:56:20
-7,200
b6d99e4224f577ce5b340d0f3affd38c3d0ba6ab
fix(router): make sure routes is checked for empty path
[ { "change_type": "MODIFY", "diff": "@@ -231,7 +231,10 @@ export class RoutingScope {\nif (typeof instruction === 'string') {\nconst instructions: RoutingInstruction[] = [];\nconst instrs = RoutingInstruction.parse(this.router, instruction);\n-\n+ // Make sure empty route is also processed\n+ if (instruction...
TypeScript
MIT License
aurelia/aurelia
fix(router): make sure routes is checked for empty path
1
fix
router
67,494
27.08.2021 15:57:17
-7,200
2b9943302c22e07ae95e8c0ccf4afe74ece0a3b6
chore(router): make rollup allow debugging
[ { "change_type": "MODIFY", "diff": "@@ -20,6 +20,8 @@ const replacePluginCfg = replace({\nconst terserPluginCfg = terser({\ncompress: {\ndefaults: false,\n+ drop_debugger: false,\n+ drop_console: false,\n},\nmangle: {\nproperties: {\n", "new_path": "packages/router/rollup.config.js", "old_path": "pa...
TypeScript
MIT License
aurelia/aurelia
chore(router): make rollup allow debugging
1
chore
router
276,951
27.08.2021 15:57:47
10,800
3e5e60ec430249ff7f4b3b658955ea4c72818e52
docs(text): add box component
[ { "change_type": "MODIFY", "diff": "### All Usage\n```javascript reactLive=true\n-<div style={{ width: 500 }}>\n+<Box width={500}>\n<Text.H1 variant=\"primary\">Live the mission</Text.H1>\n<Text.H2 variant=\"secondary\">Live the mission</Text.H2>\n<Text.H3>Live the mission</Text.H3>\n<Text variant=\"light\"...
JavaScript
MIT License
gympass/yoga
docs(text): add box component
1
docs
text
942,613
27.08.2021 16:04:06
21,600
dcf8a6cb534472df5fd1162520c696eab1702618
fix(side-panel): Fix SidePanel RTL support
[ { "change_type": "MODIFY", "diff": "/** @jsx jsx */\nimport * as React from 'react';\n-import {styled} from '@workday/canvas-kit-react/common';\n+import {styled, useIsRTL} from '@workday/canvas-kit-react/common';\nimport {css, CSSObject, jsx, keyframes} from '@emotion/core';\nimport {IconButton, IconButtonP...
TypeScript
Apache License 2.0
workday/canvas-kit
fix(side-panel): Fix SidePanel RTL support (#1234)
1
fix
side-panel
276,974
27.08.2021 16:12:05
10,800
670414be51f453b035bbed16249f73accab6be5a
refactor(list-item): add small prop
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,17 @@ const List = ({ spacing, borders, colors }) => ({\nbottom: spacing.medium,\nleft: spacing.large,\n},\n+ small: {\n+ padding: {\n+ top: spacing.xxsmall,\n+ right: spacing.medium,\n+ bottom: spacing.xxsmall,\n+ left: spacing.medium,\n+ },\n+ },\n+ },\n+ lis...
JavaScript
MIT License
gympass/yoga
refactor(list-item): add small prop
1
refactor
list-item
276,974
27.08.2021 16:13:45
10,800
cb2eb1eb355e60288d7b52f43d4bc5d04aa04b52
feat(list-touchable-item): create touchable item to list component
[ { "change_type": "MODIFY", "diff": "import React from 'react';\n-import { List } from '@gympass/yoga';\n-import { Text } from 'react-native';\n+import { Alert } from 'react-native';\n+import { Text, List } from '@gympass/yoga';\n-const data = [\n+const listItemData = [\n{ key: 'Devin' },\n{ key: 'Dan' },\n{...
JavaScript
MIT License
gympass/yoga
feat(list-touchable-item): create touchable item to list component
1
feat
list-touchable-item
276,974
27.08.2021 16:15:17
10,800
fe3979b87053c06e3e6fb8a9ea424f77d3047935
test(list): create list item tests
[ { "change_type": "MODIFY", "diff": "import React from 'react';\n-import { render } from '@testing-library/react-native';\n+import { render, fireEvent } from '@testing-library/react-native';\nimport { Text } from 'react-native';\nimport ThemeProvider from '../../Theme';\nimport List from '..';\n@@ -36,6 +36,...
JavaScript
MIT License
gympass/yoga
test(list): create list item tests
1
test
list
276,974
27.08.2021 16:20:58
10,800
c6f8e0bda42630eee6b258277fc1dcff11944e0c
test(event-card): update snapshots
[ { "change_type": "MODIFY", "diff": "@@ -909,6 +909,17 @@ exports[`<EventCard /> Snapshots should match snapshot of small EventCard active\n\"right\": 24,\n\"top\": 20,\n},\n+ \"small\": Object {\n+ \"padding\": Object {\n+ \"bottom\": 8,\n+ \"left\": 20,\n+ \"right\": 20,\n+ \"top\": 8,\n+ },\n+ },\n+ },\n+...
JavaScript
MIT License
gympass/yoga
test(event-card): update snapshots
1
test
event-card
4,988
27.08.2021 17:03:33
-7,200
4f451038ef083b65d58ccee6fe3d041b106cc1cf
fix(stream-transform): finish event call multiple times
[ { "change_type": "MODIFY", "diff": "@@ -371,6 +371,7 @@ Transformer.prototype._transform = function (chunk, encoding, cb) {\nTransformer.prototype._flush = function (cb) {\nthis._ending = function () {\nif (this.state.running === 0) {\n+ this._ending = undefined;\nreturn cb();\n}\n};\n", "new_path": "pa...
JavaScript
MIT License
adaltas/node-csv
fix(stream-transform): finish event call multiple times
1
fix
stream-transform
276,939
27.08.2021 17:35:59
10,800
c1be74c8bd9fd8407a6b4468fb5ff7e9984dd70d
fix(android): update minSdkVersion
[ { "change_type": "MODIFY", "diff": "buildscript {\next {\nbuildToolsVersion = \"29.0.2\"\n- minSdkVersion = 16\n+ minSdkVersion = 21\ncompileSdkVersion = 29\ntargetSdkVersion = 29\n}\n", "new_path": "packages/labnative/android/build.gradle", "old_path": "packages/labnative/android/build.gradle" } ...
JavaScript
MIT License
gympass/yoga
fix(android): update minSdkVersion
1
fix
android
4,988
27.08.2021 18:01:46
-7,200
0b23104ee9812f6e76d8fef06a914f916f73bfd3
chore: remove changelog custom scripts
[ { "change_type": "MODIFY", "diff": "\"build:babel\": \"cd lib && babel *.js -d es5 && cd ..\",\n\"build:browserify\": \"browserify lib/index.js --transform babelify --standalone parse > lib/browser/index.js && browserify lib/sync.js --transform babelify --standalone parse > lib/browser/sync.js\",\n\"build\"...
JavaScript
MIT License
adaltas/node-csv
chore: remove changelog custom scripts
1
chore
null
4,988
27.08.2021 18:18:39
-7,200
b90cf120c0b3ddf5144b8f745487b9cf4313a484
chore: remove publish custom scripts
[ { "change_type": "MODIFY", "diff": "\"build:babel\": \"cd lib && babel *.js -d es5 && cd ..\",\n\"build:browserify\": \"browserify lib/index.js --transform babelify --standalone parse > lib/browser/index.js && browserify lib/sync.js --transform babelify --standalone parse > lib/browser/sync.js\",\n\"build\"...
JavaScript
MIT License
adaltas/node-csv
chore: remove publish custom scripts
1
chore
null
4,988
27.08.2021 18:38:48
-7,200
ab76c84f3c35d23b091a6f3e90a87c9b8aa8a535
chore: merge new changelog generation
[ { "change_type": "MODIFY", "diff": "@@ -7,21 +7,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline\n**Note:** Version bump only for package csv-generate\n-\n-\n-\n-\n-\n-# Changelog\n-\n-## Roadmap\n-\n-* test: ensure every sample is valid\n-* seed: always a number, value ...
JavaScript
MIT License
adaltas/node-csv
chore: merge new changelog generation
1
chore
null
71,146
27.08.2021 19:29:36
-10,800
a85ad392459c815d5c8e645dd3e8240d059024e6
fix(elasticloadbalancingv2): target group health check does not validate interval versus timeout fix: Add validation to target group health check creation. Fixes issue *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "@@ -297,6 +297,11 @@ export abstract class TargetGroupBase extends CoreConstruct implements ITargetGr\n* Set/replace the target group's health check\n*/\npublic configureHealthCheck(healthCheck: HealthCheck) {\n+ if (healthCheck.interval && healthCheck.timeout) {\n+ if (h...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(elasticloadbalancingv2): target group health check does not validate interval versus timeout (#16107) fix: Add validation to target group health check creation. Fixes issue #3703. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
fix
elasticloadbalancingv2
667,713
27.08.2021 20:36:13
-28,800
60bcafb42f48b1c0e72c28f82bb35659a751941d
fix(android): add HippyDrawable get gif width and height
[ { "change_type": "MODIFY", "diff": "@@ -206,6 +206,10 @@ public class HippyDrawable implements IDrawableTarget {\nreturn mBitmap.getWidth();\n}\n+ if (mGifMovie != null) {\n+ return mGifMovie.width();\n+ }\n+\nreturn 0;\n}\n@@ -214,6 +218,10 @@ public class HippyDrawable implements IDrawableTarget {\nreturn...
C++
Apache License 2.0
tencent/hippy
fix(android): add HippyDrawable get gif width and height
1
fix
android
104,828
27.08.2021 20:45:51
-7,200
e90c56ce7653baf79925d35205b3161d1ab701de
fix(sidenav): added stateful example in storybook
[ { "change_type": "MODIFY", "diff": "-import React from 'react';\n+import React, { useState, createElement, useEffect } from 'react';\nimport { action } from '@storybook/addon-actions';\nimport { Switcher24 } from '@carbon/icons-react';\nimport Chip from '@carbon/icons-react/lib/chip/24';\n@@ -219,3 +219,107...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(sidenav): added stateful example in storybook
1
fix
sidenav
4,988
27.08.2021 20:59:04
-7,200
5471985e7e5f603ee1e3dd7bcf203415d94978f5
fix(csv-parse): remove support for cast_date, no test
[ { "change_type": "MODIFY", "diff": "@@ -267,7 +267,7 @@ var Parser = /*#__PURE__*/function (_Transform) {\nvar date = Date.parse(value);\nreturn !isNaN(date) ? new Date(date) : value;\n};\n- } else if (typeof options.cast_date !== 'function') {\n+ } else {\nthrow new CsvError('CSV_INVALID_OPTION_CAST_DATE',...
JavaScript
MIT License
adaltas/node-csv
fix(csv-parse): remove support for cast_date, no test
1
fix
csv-parse
551,634
27.08.2021 21:24:10
-10,800
746babb95b91b70967a1b762fd1d071522a3a4d2
feat(sql): support sql keywords as column names
[ { "change_type": "MODIFY", "diff": "@@ -661,11 +661,11 @@ class SqlOptimiser {\n}\n}\n- private void copyColumnsFromMetadata(QueryModel model, RecordMetadata m) throws SqlException {\n+ private void copyColumnsFromMetadata(QueryModel model, RecordMetadata m, boolean cleanColumnNames) throws SqlException {\n...
Java
Apache License 2.0
questdb/questdb
feat(sql): support sql keywords as column names (#1267)
1
feat
sql
667,636
27.08.2021 21:43:04
-28,800
d5d41e15db68867ea9a144631a79530c9bc0ca0d
chore(markdownlint): change mdlint config
[ { "change_type": "MODIFY", "diff": "\"no-blanks-blockquote\": false,\n\"single-h1\": false,\n\"first-line-h1\": false,\n- \"no-multiple-blanks\": {\n- \"maximum\": 2\n- },\n- \"no-inline-html\" : {\n- \"allowed_elements\" : [ \"a\", \"h1\", \"h3\", \"HR\", \"p\", \"br\" ]\n- },\n+ \"no-multiple-blanks\": fa...
C++
Apache License 2.0
tencent/hippy
chore(markdownlint): change mdlint config
1
chore
markdownlint
4,988
27.08.2021 21:52:55
-7,200
8222676103a9ad685480546f53ec1bf6a0bb9ea8
docs(csv-parse): new cast_date sample
[ { "change_type": "ADD", "diff": "+\n+const parse = require('../lib/sync')\n+const assert = require('assert')\n+\n+const data = `\n+2000-01-01,date1\n+2020-01-01,date2\n+`.trim()\n+const records = parse(data, {\n+ cast: true,\n+ cast_date: true\n+})\n+assert.deepStrictEqual(records, [\n+ [ new Date('2000-01-...
JavaScript
MIT License
adaltas/node-csv
docs(csv-parse): new cast_date sample
1
docs
csv-parse
4,988
27.08.2021 22:22:45
-7,200
1ec2317e2960e27af2cab804346a6b552bb9a954
docs(csv-parse): new ltrim and rtrim samples
[ { "change_type": "ADD", "diff": "+\n+const parse = require('../lib/sync')\n+const assert = require('assert')\n+\n+const data = [\n+ 'a ,1',\n+ 'b, 2 ',\n+ ' c,3'\n+].join('\\n')\n+const records = parse(data, {\n+ ltrim: true\n+})\n+assert.deepStrictEqual(\n+ records, [\n+ [ 'a ', '1' ],\n+ [ 'b', '2 ' ],\n+...
JavaScript
MIT License
adaltas/node-csv
docs(csv-parse): new ltrim and rtrim samples
1
docs
csv-parse
603,467
27.08.2021 22:37:46
-7,200
8d937885ce1f230c41cb3b40c0e7026c859cbad6
fix(cucumber): fixed duplicate "rerun" param passed to Cucumber When `rerun:@rerun.txt` option was specified, it was passed as another argument to Cucumber runner. This could result with Cucumber complaining about "unknown option '--rerun' " fix
[ { "change_type": "MODIFY", "diff": "@@ -89,6 +89,33 @@ describe('CucumberOptions', () => {\nexpect(options.asArgumentsForCucumber(majorVersion)).to.deep.equal(['node', 'cucumber-js']);\n});\n+ /**\n+ * @see https://github.com/cucumber/cucumber-js/blob/main/features/rerun_formatter.feature\n+ */\n+ describe(...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(cucumber): fixed duplicate "rerun" param passed to Cucumber When `rerun:@rerun.txt` option was specified, it was passed as another argument to Cucumber runner. This could result with Cucumber complaining about "unknown option '--rerun' " fix #971
1
fix
cucumber
679,913
27.08.2021 22:50:11
-7,200
65061fbd4990c50f44ddd20b80533c479b8ba36e
feat(tools): add S3 upload for dependency tool
[ { "change_type": "MODIFY", "diff": "@@ -13,6 +13,7 @@ import {\nimport { PI } from \"@thi.ng/math\";\nimport { XML_SVG } from \"@thi.ng/prefixes\";\nimport { comp, filter, iterator, map, range } from \"@thi.ng/transducers\";\n+import { execSync } from \"child_process\";\nimport { writeFileSync } from \"fs\"...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(tools): add S3 upload for dependency tool
1
feat
tools
306,635
28.08.2021 03:54:12
-19,080
5604656c5250648b55ed045804ba3686e05f2759
test(fileUploader): adds test cases for FileUploaderComponent
[ { "change_type": "MODIFY", "diff": "@@ -42,7 +42,7 @@ export const Caption = (props: CaptionProps) => {\n});\nreturn (\n- <div {...baseProps} className={classes}>\n+ <div {...baseProps} className={classes} data-test=\"DesignSystem-Caption\">\n{error && (\n<div className={errorIconClass}>\n<Icon size={14} na...
TypeScript
MIT License
innovaccer/design-system
test(fileUploader): adds test cases for FileUploaderComponent
1
test
fileUploader
756,051
28.08.2021 14:44:30
18,000
2ed4cff4180df7eff0190617765a90a5aa1fdba7
test(xsnap): failing: stack traces include file, line numbers
[ { "change_type": "ADD", "diff": "+// JavaScript correctness tests\n+\n+// @ts-check\n+// eslint-disable-next-line import/no-extraneous-dependencies\n+import test from 'ava';\n+import * as proc from 'child_process';\n+import * as os from 'os';\n+import { xsnap } from '../src/xsnap.js';\n+import { options } f...
JavaScript
Apache License 2.0
agoric/agoric-sdk
test(xsnap): failing: stack traces include file, line numbers
1
test
xsnap
756,051
28.08.2021 16:00:09
18,000
be3386cbcd2255c469791830984fc385856226cc
fix(xsnap): supply missing file, line numbers based on sourceURL fixes
[ { "change_type": "MODIFY", "diff": "@@ -20,7 +20,7 @@ const a = () => {b()};\ntry {\na();\n} catch (err) {\n- send(err.stack);\n+ err.stack;\n}\n//# sourceURL=/filename.js\n@@ -31,25 +31,30 @@ async function makeWorker() {\nconst vat = xsnap(opts);\nawait vat.evaluate(`\n- const send = it => issueCommand(Ar...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix(xsnap): supply missing file, line numbers based on sourceURL fixes #2578
1
fix
xsnap
915,255
28.08.2021 18:47:05
0
8db79c9c4d320aac54f14e77341d585731e173bd
autogen: add v0.38.15-beta.1 to version.schema.json
[ { "change_type": "MODIFY", "diff": "\"$ref\": \"https://raw.githubusercontent.com/ory/oathkeeper/v0.38.14-beta.1/.schema/config.schema.json\"\n}\n]\n+ },\n+ {\n+ \"allOf\": [\n+ {\n+ \"properties\": {\n+ \"version\": {\n+ \"const\": \"v0.38.15-beta.1\"\n+ }\n+ }\n+ },\n+ {\n+ \"$ref\": \"https://raw.githubu...
Go
Apache License 2.0
ory/oathkeeper
autogen: add v0.38.15-beta.1 to version.schema.json
1
autogen
null
915,035
28.08.2021 19:07:26
0
0c8afaf7db51c445a2b3e2181698541d3f591e92
autogen: add v1.10.6 to version.schema.json
[ { "change_type": "MODIFY", "diff": "\"$ref\": \"https://raw.githubusercontent.com/ory/hydra/v1.10.5/spec/config.json\"\n}\n]\n+ },\n+ {\n+ \"allOf\": [\n+ {\n+ \"properties\": {\n+ \"version\": {\n+ \"const\": \"v1.10.6\"\n+ }\n+ }\n+ },\n+ {\n+ \"$ref\": \"https://raw.githubusercontent.com/ory/hydra/v1.10....
Go
Apache License 2.0
ory/hydra
autogen: add v1.10.6 to version.schema.json
1
autogen
null
67,516
28.08.2021 20:02:42
-7,200
f4b1652d22d1f4e684b951c360157a4e32542592
feat: rest expr in destructuring assignment
[ { "change_type": "MODIFY", "diff": "@@ -44,6 +44,7 @@ import {\nUnaryExpression,\nValueConverterExpression,\nDestructuringAssignmentSingleExpression,\n+ DestructuringAssignmentRestExpression,\n} from '@aurelia/runtime';\nimport {\nPropertyBinding,\n@@ -2445,5 +2446,71 @@ describe.only('DestructuringAssignme...
TypeScript
MIT License
aurelia/aurelia
feat: rest expr in destructuring assignment
1
feat
null
386,588
29.08.2021 10:09:22
-7,200
358e423bf10d35fab904267225c336749bfd4232
fix(blocksAntd): Fix undefined Tooltip title showing empty tooltip.
[ { "change_type": "MODIFY", "diff": "@@ -21,7 +21,7 @@ import { blockDefaultProps, RenderHtml } from '@lowdefy/block-tools';\nconst TooltipBlock = ({ blockId, content, properties, methods }) => (\n<Tooltip\nid={blockId}\n- title={<RenderHtml html={properties.title} methods={methods} />}\n+ title={properties....
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(blocksAntd): Fix undefined Tooltip title showing empty tooltip.
1
fix
blocksAntd
67,516
29.08.2021 15:03:06
-7,200
d06f7bdcb9480abab7b64794b5c39ebdbd79907c
feat: destructuring assignment expr
[ { "change_type": "MODIFY", "diff": "@@ -45,6 +45,7 @@ import {\nValueConverterExpression,\nDestructuringAssignmentSingleExpression,\nDestructuringAssignmentRestExpression,\n+ DestructuringAssignmentExpression,\n} from '@aurelia/runtime';\nimport {\nPropertyBinding,\n@@ -2512,5 +2513,316 @@ describe.only('De...
TypeScript
MIT License
aurelia/aurelia
feat: destructuring assignment expr
1
feat
null
679,913
29.08.2021 17:13:29
-7,200
d6507ad8a3821fd2839a6c0d34d7d254d81790de
feat(vectors): add statistics related vector ops add vmean(), vmedian() add center(), standardize(), sd(), variance()
[ { "change_type": "ADD", "diff": "+import type { ReadonlyVec, Vec } from \"./api\";\n+import { vmean } from \"./mean\";\n+import { subN } from \"./subn\";\n+\n+/**\n+ * Creates a mean-centered version of `a`, i.e. subtracts {@link vmean} of `a`\n+ * from each component and writes result to `out` (or back int...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add statistics related vector ops - add vmean(), vmedian() - add center(), standardize(), sd(), variance()
1
feat
vectors
679,913
29.08.2021 18:53:54
-7,200
2bbb54ee322bd3b22f73e36d430c4477fd2a25cd
feat(vectors): add formatter support add ToStringOpts, defFormat(), FORMATTER update AVec and GVec impls
[ { "change_type": "MODIFY", "diff": "@@ -306,3 +306,29 @@ export const Z4: ReadonlyVec = Object.freeze([0, 0, 1, 0]);\nexport const W4: ReadonlyVec = Object.freeze([0, 0, 0, 1]);\nexport type Template = (syms: string[], i?: number) => string;\n+\n+export interface ToStringOpts {\n+ /**\n+ * Number of fractio...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add formatter support - add ToStringOpts, defFormat(), FORMATTER - update AVec and GVec impls
1
feat
vectors
217,922
29.08.2021 20:05:21
-7,200
b6645bc48ef39c89db3b22f9d23ba0537f77a8ca
fix(fishing-reporter): fixed tracking state not reset properly on character change
[ { "change_type": "MODIFY", "diff": "import { DataReporter } from './data-reporter';\nimport { BehaviorSubject, combineLatest, merge, Observable } from 'rxjs';\nimport { ofMessageType } from '../rxjs/of-message-type';\n-import { delay, distinctUntilChanged, filter, map, shareReplay, startWith, tap, withLates...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(fishing-reporter): fixed tracking state not reset properly on character change
1
fix
fishing-reporter
471,334
29.08.2021 20:18:52
-10,800
c7b32e8c9c86ce154f0fb39fd6b0a00391848021
chore: add all instrumentations to README
[ { "change_type": "MODIFY", "diff": "@@ -50,18 +50,32 @@ OpenTelemetry can collect tracing data automatically using instrumentations. Ven\n### Node Instrumentations\n+- [@opentelemetry/instrumentation-aws-lambda][otel-contrib-instrumentation-aws-lambda]\n+- [@opentelemetry/instrumentation-bunyan][otel-contri...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js-contrib
chore: add all instrumentations to README (#638)
1
chore
null
217,237
29.08.2021 21:12:41
-10,800
f92b8d4f088662e680d4b8f92965cb4dbbb401f6
chore(deps): resolve breaking changes
[ { "change_type": "MODIFY", "diff": "@@ -61,11 +61,11 @@ const navbar = {\nto: SECTIONS.INTRO.fullPath,\nposition: \"left\",\nitems: [\n- { label: \"Getting Started\", to: SECTIONS.GET_STARTED.fullPath, position: \"left\" },\n- { label: \"Concepts\", to: SECTIONS.CONCEPTS.fullPath, position: \"left\" },\n- {...
JavaScript
MIT License
feature-sliced/documentation
chore(deps): resolve breaking changes
1
chore
deps
679,913
29.08.2021 21:56:16
-7,200
9c34793950e9cb831dee46d5dbbc19b0dfb982df
feat(vectors): add generic strided dot product add `dotS()` for arbitrary sized strided vectors
[ { "change_type": "MODIFY", "diff": "-import type { VecOpSRoVV } from \"./api\";\n+import type { ReadonlyVec, VecOpSRoVV } from \"./api\";\nimport { compile, SARGS_V } from \"./internal/codegen\";\nimport { DOT } from \"./internal/templates\";\n+export const dotS = (\n+ a: ReadonlyVec,\n+ b: ReadonlyVec,\n+ ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add generic strided dot product - add `dotS()` for arbitrary sized strided vectors
1
feat
vectors
679,913
29.08.2021 21:59:24
-7,200
b8d661dadebb725868fe48650e6461567706e47b
feat(vectors): add covariance(), correlation() fns
[ { "change_type": "ADD", "diff": "+import type { ReadonlyVec } from \"./api\";\n+import { center } from \"./center\";\n+import { mag } from \"./mag\";\n+import { mul } from \"./mul\";\n+import { sum } from \"./sum\";\n+\n+/**\n+ * Computes the Pearson correlation coefficient between `a` and `b`. Returns\n+ *...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add covariance(), correlation() fns
1
feat
vectors
679,913
29.08.2021 22:00:55
-7,200
92e7f730741b09018dae92e4428fe635b02125ab
feat(vectors): add new module re-exports
[ { "change_type": "MODIFY", "diff": "@@ -33,14 +33,17 @@ export * from \"./bit-xor\";\nexport * from \"./buffer\";\nexport * from \"./cartesian\";\nexport * from \"./ceil\";\n+export * from \"./center\";\nexport * from \"./clamp\";\nexport * from \"./clampn\";\nexport * from \"./clockwise\";\nexport * from \...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(vectors): add new module re-exports
1
feat
vectors
217,237
29.08.2021 22:26:12
-10,800
370f70e647e7baf3a887c295e04242e587ac6337
feat(theme): add system-preferenced theme picking
[ { "change_type": "MODIFY", "diff": "@@ -253,6 +253,11 @@ const announcementBar = {\nisCloseable: false, // Defaults to `true`.\n};\n+/** @type {Config[\"themeConfig\"][\"colorMode\"]} */\n+const colorMode = {\n+ respectPrefersColorScheme: true,\n+};\n+\n/** @type {Config} */\nmodule.exports = {\ntitle: \"fe...
JavaScript
MIT License
feature-sliced/documentation
feat(theme): add system-preferenced theme picking
1
feat
theme
306,660
30.08.2021 02:31:16
-19,080
f3a469daed220f4b9a455e164cf6f25bb3651afa
feat(RichText): embeds rich text editor storybook
[ { "change_type": "MODIFY", "diff": "@@ -38,4 +38,10 @@ module.exports = {\n// Return the altered config\nreturn config;\n},\n+ refs: {\n+ 'rich-text-editor': {\n+ title: \"Rich Text Editor\",\n+ url: \"https://innovaccer.github.io/mds-rich-text-editor/\"\n+ }\n+ }\n}\n\\ No newline at end of file\n", "n...
TypeScript
MIT License
innovaccer/design-system
feat(RichText): embeds rich text editor storybook
1
feat
RichText
217,237
30.08.2021 03:38:59
-10,800
7a2961d179d4cf695fd713e7be9e5d43aa9ecfb7
feat(og-preview): add static social preview
[ { "change_type": "MODIFY", "diff": "@@ -258,6 +258,25 @@ const colorMode = {\nrespectPrefersColorScheme: true,\n};\n+/**\n+ * @type {Config[\"themeConfig\"][\"metadatas\"]}\n+ * @see https://docusaurus.io/docs/api/themes/configuration#meta-image\n+ * @see https://docusaurus.io/docs/api/themes/configuration#...
JavaScript
MIT License
feature-sliced/documentation
feat(og-preview): add static social preview
1
feat
og-preview
471,204
30.08.2021 04:01:57
14,400
facd8c0fb9828be255597b176d5a3263c8c4a43b
chore: simplify unit test cache
[ { "change_type": "MODIFY", "diff": "@@ -28,31 +28,17 @@ jobs:\nwith:\nargs: \"./**/*.md -i ./CHANGELOG.md\"\n- - name: restore lock files\n- uses: actions/cache@master # must use unreleased master to cache multiple paths\n+ - name: restore lerna\nid: cache\n+ uses: actions/cache@v2\nwith:\n- # must be done ...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js
chore: simplify unit test cache (#2435) Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr>
1
chore
null
217,237
30.08.2021 05:19:55
-10,800
f9ef04942b2d0a41649e20b9b676135e8e25d8e5
feat(dummy-articles): add trial dummy
[ { "change_type": "ADD", "diff": "+import WIP from \"./index.jsx\";\n+\n+:::caution WIP\n+<WIP ticket={props.ticket} />\n+:::\n\\ No newline at end of file\n", "new_path": "website/src/shared/ui/wip/tmpl.mdx", "old_path": null } ]
JavaScript
MIT License
feature-sliced/documentation
feat(dummy-articles): add trial dummy
1
feat
dummy-articles
791,370
30.08.2021 08:46:09
21,600
1cc9ce05379069b370e025f3d1bb10ef085bf917
chore: disable dep dashboard
[ { "change_type": "MODIFY", "diff": "{\n\"extends\": [\n\"config:base\",\n- \"schedule:weekly\"\n+ \"schedule:weekly\",\n+ \":disableDependencyDashboard\"\n],\n\"semanticCommits\": false,\n\"postUpdateOptions\": [\n", "new_path": ".github/renovate.json", "old_path": ".github/renovate.json" } ]
Go
Apache License 2.0
googleapis/google-cloud-go
chore: disable dep dashboard (#4694)
1
chore
null
777,401
30.08.2021 09:16:20
14,400
ed4bedfae99073c174b939048632a6526c238ee8
chore: users can delete their own exps
[ { "change_type": "MODIFY", "diff": "@@ -646,20 +646,23 @@ def test_non_root_shell(clean_auth: None, tmp_path: pathlib.Path) -> None:\n@pytest.mark.e2e_cpu # type: ignore\ndef test_experiment_delete() -> None:\n- user = create_test_user(ADMIN_CREDENTIALS, False)\n+ user = create_test_user(ADMIN_CREDENTIALS)\...
Python
Apache License 2.0
determined-ai/determined
chore: users can delete their own exps [DET-5901] (#2878)
1
chore
null
386,581
30.08.2021 09:31:17
-7,200
b869fb0f3c352ca6111b2974c719de9de76e8d71
fix(blocksAntd): Fix blocks tooltip tests.
[ { "change_type": "MODIFY", "diff": "@@ -28,7 +28,7 @@ Array [\n\"onVisibleChange\": [Function],\n\"overlayStyle\": \"{\\\\\"options\\\\\":{\\\\\"styleObjectOnly\\\\\":true}}\",\n\"placement\": undefined,\n- \"title\": <UNDEFINED\n+ \"title\": <RenderHtml\nhtml=\"Tooltip block\"\nmethods={\nObject {\n@@ -127...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(blocksAntd): Fix blocks tooltip tests.
1
fix
blocksAntd
306,320
30.08.2021 10:01:48
-3,600
0c92fa1a3d05bb34b236d7a7e08c67fca282e258
feat: use terragrunt-info
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,7 @@ require (\ngithub.com/fatih/color v1.12.0\ngithub.com/google/go-cmp v0.5.6\ngithub.com/google/uuid v1.3.0\n+ github.com/hashicorp/go-multierror v1.1.1\ngithub.com/hashicorp/hcl2 v0.0.0-20191002203319-fb75b3253c80\ngithub.com/huandu/xstrings v1.3.2 // ind...
Go
Apache License 2.0
infracost/infracost
feat: use terragrunt-info
1
feat
null
141,572
30.08.2021 10:16:14
-36,000
f03fe4b9e5cbbd76f5d4116ae4b904896ab9a49c
fix: Incorrect stylelint plugin design-token peer The design-tokens peer dependency of the stylelint plugin was slightly incorrect. The current version of the stylelint plugin won't work with anything before version 3 of design-tokens.
[ { "change_type": "MODIFY", "diff": "\"stylelint\": \"^13.10.0\"\n},\n\"peerDependencies\": {\n- \"@kaizen/design-tokens\": \"^2.10.3 || ^3.0.0\"\n+ \"@kaizen/design-tokens\": \"^3.0.0\"\n},\n\"devDependencies\": {\n\"@types/lodash.kebabcase\": \"^4.1.6\",\n", "new_path": "packages/stylelint-plugin/packa...
TypeScript
MIT License
cultureamp/kaizen-design-system
fix: Incorrect stylelint plugin design-token peer (#1900) The design-tokens peer dependency of the stylelint plugin was slightly incorrect. The current version of the stylelint plugin won't work with anything before version 3 of design-tokens.
1
fix
null
739,254
30.08.2021 11:09:43
-7,200
030eaca4dbdec22ed60b4a9667cbc9f42ccbd407
fix: webfont sync on build
[ { "change_type": "MODIFY", "diff": "\"start\": \"yarn docs:dev\",\n\"docs:dev\": \"yarn next docs -p 3020\",\n\"docs:build\": \"yarn next build docs && yarn next export docs\",\n- \"docs:deploy\": \"yarn && yarn icons:build && yarn webfont:build && yarn build && yarn docs:build\",\n+ \"docs:deploy\": \"yarn...
TypeScript
MIT License
wttj/welcome-ui
fix: webfont sync on build (#899)
1
fix
null
276,989
30.08.2021 11:18:32
10,800
d20574fda5fa33022ea13f4b349eb93c7368180e
chore(sharp): fixing sharp version to v0.28.0 sharp v0.28.0 removes the need to install/compile things via Homebrew. That said, we wont face any more issues related to sharp on M1 machines
[ { "change_type": "MODIFY", "diff": "\"prettier --write\",\n\"git add\"\n]\n+ },\n+ \"resolutions\": {\n+ \"sharp\": \"0.28.0\"\n}\n}\n", "new_path": "package.json", "old_path": "package.json" }, { "change_type": "MODIFY", "diff": "@@ -4584,11 +4584,6 @@ array-flatten@^2.1.0:\nresolved \"...
JavaScript
MIT License
gympass/yoga
chore(sharp): fixing sharp version to v0.28.0 sharp v0.28.0 removes the need to install/compile things via Homebrew. That said, we wont face any more issues related to sharp on M1 machines
1
chore
sharp
366,946
30.08.2021 12:09:50
-32,400
483b153544d79c0e7efde81184973146c00e2bba
fix: change selected item of listbox of `SingleComboBox` not to cut off
[ { "change_type": "MODIFY", "diff": "@@ -304,7 +304,7 @@ const SelectButton = styled.button<{ themes: Theme }>`\nreturn css`\ndisplay: block;\n- width: 100%;\n+ min-width: 100%;\nborder: none;\npadding: ${spacingByChar(0.5)} ${spacingByChar(1)};\nbackground-color: #fff;\n@@ -332,6 +332,7 @@ const SelectButto...
TypeScript
MIT License
kufu/smarthr-ui
fix: change selected item of listbox of `SingleComboBox` not to cut off (#1826)
1
fix
null
711,597
30.08.2021 12:45:36
-7,200
e59f52e3f199d21e6a8a7f57854763b70626e34f
fix(core): Correctly persist ProductVariant customFields Fixes
[ { "change_type": "MODIFY", "diff": "@@ -411,23 +411,23 @@ export class ProductVariantService {\n...input,\n};\ndelete inputWithoutPrice.price;\n- await this.translatableSaver.update({\n+ const updatedVariant = await this.translatableSaver.update({\nctx,\ninput: inputWithoutPrice,\nentityType: ProductVariant...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Correctly persist ProductVariant customFields Fixes #1056
1
fix
core
104,857
30.08.2021 13:13:18
10,800
09449574b0484d811815a86618998dd2f7a288d8
chore(feedback): fixes from review feedback
[ { "change_type": "MODIFY", "diff": "@@ -25,6 +25,7 @@ export const ListItemPropTypes = {\n}),\nchildren: PropTypes.arrayOf(PropTypes.object),\nisSelectable: PropTypes.bool,\n+ /** boolean to define load more row is needed */\nhasLoadMore: PropTypes.bool,\n};\n@@ -84,7 +85,7 @@ const propTypes = {\n/** conte...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(feedback): fixes from review feedback
1
chore
feedback
821,215
30.08.2021 13:16:40
21,600
4ed1e9a568a88ef37b51b95f66419cf52e16a3b7
fix: force build to pickup latest oclif/core
[ { "change_type": "MODIFY", "diff": "\"dependencies\": {\n\"@oclif/command\": \"^1.6\",\n\"@oclif/config\": \"^1.12.6\",\n- \"@oclif/core\": \"^0.5.19\",\n+ \"@oclif/core\": \"^0.5.34\",\n\"@oclif/errors\": \"^1.2.2\",\n\"@oclif/fixpack\": \"^2.3.0\",\n\"@oclif/plugin-help\": \"^3\",\n", "new_path": "pac...
TypeScript
MIT License
oclif/oclif
fix: force build to pickup latest oclif/core (#648) @W-9791511@
1
fix
null
471,259
30.08.2021 13:26:52
-19,080
1465865e48d72ddcb71bb614a91dcbda4e690c37
docs(examples): updated examples readme links
[ { "change_type": "MODIFY", "diff": "@@ -16,10 +16,11 @@ use the latest and greatest features, and best practices.\n|[http](http/) | HTTP Instrumentation to automatically collect trace data and export them to the backend of choice | Intermediate |\n|[https](https/) | HTTPS Instrumentation to automatically co...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js
docs(examples): updated examples readme links (#2437) Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr>
1
docs
examples
386,581
30.08.2021 13:29:17
-7,200
96aa9a65cd7a567eef493e52d17684005e34b2a1
fix(deps): Update dependency mongodb to v4.1.1.
[ { "change_type": "MODIFY", "diff": "\"knex\": \"0.95.6\",\n\"mingo\": \"4.1.2\",\n\"moment\": \"2.29.1\",\n- \"mongodb\": \"4.1.0\",\n+ \"mongodb\": \"4.1.1\",\n\"mssql\": \"7.1.0\",\n\"mysql\": \"2.18.1\",\n\"openid-client\": \"4.7.4\",\n", "new_path": "packages/graphql/package.json", "old_path": "...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(deps): Update dependency mongodb to v4.1.1.
1
fix
deps
126,276
30.08.2021 13:59:18
10,800
a9700e3575e5f54615dffc4a84be211240c74e24
test(embedded/sql): unit testing query optimizations
[ { "change_type": "MODIFY", "diff": "@@ -72,6 +72,10 @@ func TestCountValue(t *testing.T) {\nrequire.ErrorIs(t, err, ErrUnexpected)\nrequire.Nil(t, cval.reduceSelectors(nil, \"db1\", \"table1\"))\n+\n+ require.False(t, cval.isConstant())\n+\n+ require.Nil(t, cval.selectorRanges(nil, nil, nil))\n}\nfunc TestS...
Go
Apache License 2.0
codenotary/immudb
test(embedded/sql): unit testing query optimizations Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
test
embedded/sql
104,857
30.08.2021 14:14:51
10,800
a526dd37fc86b6d9793e1cedae3d388092a8f7e0
chore(test): test fix
[ { "change_type": "MODIFY", "diff": "@@ -4,10 +4,6 @@ import userEvent from '@testing-library/user-event';\nimport TableBodyLoadMoreRow from './TableBodyLoadMoreRow';\n-const mockActions = {\n- onRowLoadMore: jest.fn(),\n-};\n-\nconst tableRowProps = {\nid: 'tableRow01',\ntableId: 'tableId',\n@@ -17,15 +13,1...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(test): test fix
1
chore
test
71,292
30.08.2021 14:24:57
25,200
ab44d42e85ab432e1f5ca426f2652e0e94768a9e
chore: upgrade jsii version Following - there are more places to upgrade jsii in. This addresses *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "\"fs-extra\": \"^9.1.0\",\n\"jest\": \"^26.6.3\",\n\"jest-junit\": \"^11.1.0\",\n- \"jsii\": \"^1.31.0\",\n- \"jsii-pacmak\": \"^1.31.0\",\n- \"jsii-reflect\": \"^1.31.0\",\n+ \"jsii\": \"^1.34.0\",\n+ \"jsii-pacmak\": \"^1.34.0\",\n+ \"jsii-reflect\": \"^1.34.0\",\n\"mar...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: upgrade jsii version (#16285) Following https://github.com/aws/aws-cdk/pull/16184 - there are more places to upgrade jsii in. This addresses https://github.com/aws/aws-cdk/security/dependabot/yarn.lock/xmldom/open ---- *By submitting this pull request, I confirm that my contribution is made under the t...
1
chore
null
821,215
30.08.2021 14:33:12
21,600
d8f12faa82566b562cd2c658013a6722e38872fc
fix: remove context var
[ { "change_type": "MODIFY", "diff": "@@ -96,7 +96,6 @@ workflows:\nrequires: [lint, compile-typescript]\n- cache: {requires: [release-management/release-package] }\n- release-management/release-package:\n- context: org-global\ngithub-release: true\nprerelease: true\ntag: core-v1\n", "new_path": ".circlec...
TypeScript
MIT License
oclif/oclif
fix: remove context var (#652)
1
fix
null
617,455
30.08.2021 14:36:15
-7,200
eb6b9b5ddd6f883b5cbf59425aca3050fc1989ed
fix(simulator): see more on CC search go to the next simulator step
[ { "change_type": "MODIFY", "diff": "@@ -187,6 +187,7 @@ exports[`<ViewMore /> renders with an button 1`] = `\n>\n<button\nclass=\"c2 c3\"\n+ type=\"button\"\n>\nVoir plus\n</button>\n", "new_path": "packages/react-ui/src/ViewMore/__snapshots__/test.js.snap", "old_path": "packages/react-ui/src/ViewMo...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
fix(simulator): see more on CC search go to the next simulator step (#3705)
1
fix
simulator
777,389
30.08.2021 14:36:53
25,200
053283a2615ce168840ffd50e80a2788137aa065
build: sunset circleci based react preview
[ { "change_type": "MODIFY", "diff": "@@ -1117,20 +1117,6 @@ jobs:\n- run: make -C webui/tests get-deps\n- run: make -C webui/tests check\n- build-react-preview:\n- docker:\n- - image: cimg/node:12.16\n- environment:\n- PUBLIC_URL: /0\n- SERVER_ADDRESS: https://detai.ml/fixed\n- steps:\n- - checkout\n- - reac...
Python
Apache License 2.0
determined-ai/determined
build: sunset circleci based react preview (#2881)
1
build
null
401,147
30.08.2021 14:42:53
-19,080
0bda9c872f0c1cb377569939621ce18220825e32
docs: update useAxios docs affects:
[ { "change_type": "MODIFY", "diff": "@@ -53,7 +53,7 @@ const Demo: React.SFC = React.memo(() => {\nconst { request, isLoading } = useAxios();\nconst handleSubmit = (data: unknown) =>\n- fetch({\n+ request({\nurl: 'https://dummy.com/api/ba8e0a1/users',\ndata,\nmethod: 'POST',\n@@ -63,7 +63,7 @@ const Demo: Re...
TypeScript
MIT License
medly/medly-components
docs: update useAxios docs (#405) affects: @medly-components/utils
1
docs
null
126,276
30.08.2021 14:53:43
10,800
ba92073f53607c785f69fbd94e9985079d35f8e7
test(embedded/sql): unit testing index creation
[ { "change_type": "MODIFY", "diff": "@@ -309,6 +309,10 @@ func (db *Database) newTable(name string, colsSpec []*ColSpec, pk string) (table\n}\nfunc (t *Table) newIndex(unique bool, colIDs []uint64) (index *Index, err error) {\n+ if len(colIDs) < 1 {\n+ return nil, ErrIllegalArguments\n+ }\n+\ndefer func() {\...
Go
Apache License 2.0
codenotary/immudb
test(embedded/sql): unit testing index creation Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
test
embedded/sql
777,396
30.08.2021 15:20:21
21,600
920885ca6f8e17e34d3666df5eb56cef8ea8356e
docs: update copyright date
[ { "change_type": "MODIFY", "diff": "-Copyright 2017-2020 Determined.ai, Inc. All rights reserved.\n+Copyright 2017-2021 Determined.ai, Inc. All rights reserved.\nApache License\nVersion 2.0, January 2004\n", "new_path": "LICENSE", "old_path": "LICENSE" } ]
Python
Apache License 2.0
determined-ai/determined
docs: update copyright date (#2885)
1
docs
null
711,597
30.08.2021 15:32:23
-7,200
068cefd7c344f6e2d10ca4b7a4b36f09866fad66
refactor(core): Simplify RequestContextCache & support sync getters
[ { "change_type": "MODIFY", "diff": "@@ -15,18 +15,17 @@ export class RequestContextCacheService {\n}\nget<T = any>(ctx: RequestContext, key: any): T | undefined;\n- get<T = any>(ctx: RequestContext, key: any, getDefault?: () => Promise<T>): Promise<T>;\n- get<T = any>(ctx: RequestContext, key: any, getDefau...
TypeScript
MIT License
vendure-ecommerce/vendure
refactor(core): Simplify RequestContextCache & support sync getters
1
refactor
core
104,857
30.08.2021 15:41:18
10,800
25e32c3e4609a04cd4f0ca04778f3809fd8a3fc7
chore(comments): property comment
[ { "change_type": "MODIFY", "diff": "@@ -85,7 +85,7 @@ const propTypes = {\n/** content shown if list is empty */\nemptyState: PropTypes.oneOfType([PropTypes.node, PropTypes.string]),\ntestId: PropTypes.string,\n- /** call back function when load more row is clicked */\n+ /** call back function for when load...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(comments): property comment
1
chore
comments
471,334
30.08.2021 15:43:31
-10,800
d711127d78f7edda525700da6a9c394d53b9009f
ci: speed up lint workflow with hoisting
[ { "change_type": "MODIFY", "diff": "@@ -33,6 +33,6 @@ jobs:\nif: steps.cache.outputs.cache-hit != 'true'\nrun: |\nnpm install --only=dev --ignore-scripts\n- npx lerna bootstrap --no-ci --ignore-scripts -- --only=dev\n+ npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --ignore-scripts -- --only=dev\n-...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js-contrib
ci: speed up lint workflow with hoisting (#648) Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr>
1
ci
null
71,578
30.08.2021 15:48:51
14,400
f6fbcb8a4de611d2a6e8968665e893d9b67d3874
chore: upgrade jsii packages Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date. *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "\"fs-extra\": \"^9.1.0\",\n\"graceful-fs\": \"^4.2.6\",\n\"jest-junit\": \"^12.2.0\",\n- \"jsii-diff\": \"^1.31.0\",\n- \"jsii-pacmak\": \"^1.31.0\",\n- \"jsii-reflect\": \"^1.31.0\",\n- \"jsii-rosetta\": \"^1.31.0\",\n+ \"jsii-diff\": \"^1.34.0\",\n+ \"jsii-pacmak\": \"^...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: upgrade jsii packages (#16184) Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
chore
null
865,916
30.08.2021 15:53:18
-7,200
5d89a12fd98d59b9f4acb639c7f181a5f1eb4b11
feat(client): map to form-js versions when linting form
[ { "change_type": "MODIFY", "diff": "\"integrity\": \"sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==\",\n\"dev\": true\n},\n+ \"semver-compare\": {\n+ \"version\": \"1.0.0\",\n+ \"resolved\": \"https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.t...
JavaScript
MIT License
camunda/camunda-modeler
feat(client): map to form-js versions when linting form
1
feat
client
71,663
30.08.2021 15:54:57
25,200
d210bb8b657e1a611074c583946798a5085dcbe1
chore: assign AppMesh issues to Seiya6329
[ { "change_type": "MODIFY", "diff": "@@ -37,7 +37,7 @@ jobs:\n{\"keywords\":[\"(@aws-cdk/aws-appintegrations)\",\"(aws-appintegrations)\",\"(appintegrations)\"],\"labels\":[\"@aws-cdk/aws-appintegrations\"],\"assignees\":[\"skinny85\"]},\n{\"keywords\":[\"(@aws-cdk/aws-applicationautoscaling)\",\"(aws-applic...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: assign AppMesh issues to Seiya6329 (#16248)
1
chore
null
711,597
30.08.2021 16:08:23
-7,200
7b76a7c12e4e93fc1240dd619755d40606004672
feat(core): Always pass current Order to TaxZoneStrategy calls Relates to This commit also introduces the use of RequestContextCacheService to optimize the number of calls made to the `determineTaxZone()` method, as well as allowing async return values.
[ { "change_type": "MODIFY", "diff": "@@ -6,8 +6,23 @@ import { Channel, Order, Zone } from '../../entity';\n* @description\n* Defines how the active {@link Zone} is determined for the purposes of calculating taxes.\n*\n+ * This strategy is used in 2 scenarios:\n+ *\n+ * 1. To determine the applicable Zone wh...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(core): Always pass current Order to TaxZoneStrategy calls Relates to #1048. This commit also introduces the use of RequestContextCacheService to optimize the number of calls made to the `determineTaxZone()` method, as well as allowing async return values.
1
feat
core
889,620
30.08.2021 16:56:49
-28,800
773858eddd67dd242774c88d3387e1493e730173
fix: better unicode sorting
[ { "change_type": "MODIFY", "diff": "@@ -91,11 +91,8 @@ dependencies {\nimplementation(\"com.github.ben-manes.caffeine:caffeine:2.9.0\")\n-// While waiting for https://github.com/xerial/sqlite-jdbc/pull/491 and https://github.com/xerial/sqlite-jdbc/pull/494\n-// runtimeOnly(\"org.xerial:sqlite-jdbc:3.32.3.2\...
Kotlin
MIT License
gotson/komga
fix: better unicode sorting
1
fix
null
141,572
30.08.2021 17:47:21
-36,000
dd7ed2aba42c60348d3ada37fc1ff35deaccef39
fix: Incorrect import caused release failure
[ { "change_type": "MODIFY", "diff": "// converted to TypeScript, and modified to be integratable with our stylelint plugin.\nimport postcss from \"postcss\"\n-import { defaultTheme } from \"../../../design-tokens\"\n+import { defaultTheme } from \"@kaizen/design-tokens\"\nimport { messages, preferColorTokens...
TypeScript
MIT License
cultureamp/kaizen-design-system
fix: Incorrect import caused release failure (#1902)
1
fix
null
71,360
30.08.2021 17:47:29
25,200
41b831a6698ee6c7a3c8968bff8273a0c7f35448
fix(aws-rds): fromDatabaseInstanceAttributes incorrectly stringifies ports with tokens Closes Fixes `port` with tokens being incorrectly stringified in `fromDatabaseInstanceAttributes()`. *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,7 @@ import * as kms from '@aws-cdk/aws-kms';\nimport * as logs from '@aws-cdk/aws-logs';\nimport * as s3 from '@aws-cdk/aws-s3';\nimport * as secretsmanager from '@aws-cdk/aws-secretsmanager';\n-import { ArnComponents, Duration, FeatureFlags, IResource, Lazy, ...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(aws-rds): fromDatabaseInstanceAttributes incorrectly stringifies ports with tokens (#16286) Closes #11813. Fixes `port` with tokens being incorrectly stringified in `fromDatabaseInstanceAttributes()`. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apach...
1
fix
aws-rds
471,334
30.08.2021 18:09:26
-10,800
d8213e03907b3bd3ddc5c2e3b370db371a62f318
chore(mongodb): adding TAV script
[ { "change_type": "ADD", "diff": "+mongodb:\n+ versions: \">=3.3 <4\"\n+ commands: npm run test\n", "new_path": "plugins/node/opentelemetry-instrumentation-mongodb/.tav.yml", "old_path": null }, { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"docker:start\": \"docker run -e MONGODB_...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js-contrib
chore(mongodb): adding TAV script (#640) Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr> Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com>
1
chore
mongodb
217,922
30.08.2021 19:57:09
-7,200
2a674fa1b8af4d38b9a10482d1bd3c3e64896e3e
feat(desktop): new setting to minimize to tray bar with reduce button
[ { "change_type": "MODIFY", "diff": "{{'SETTINGS.Always_quit' | translate}}\n</label>\n</div>\n+ <div>\n+ <label [(ngModel)]=\"enableMinimizeReduceButton\" (ngModelChange)=\"enableMinimizeReduceButtonChange($event)\" nz-checkbox>\n+ {{'SETTINGS.Enable_minimize_reduction' | translate}}\n+ </label>\n+ </div>\n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat(desktop): new setting to minimize to tray bar with reduce button
1
feat
desktop
667,635
30.08.2021 19:59:22
-28,800
ea839bf82cb77f45bd70cecf0434baa2bbd5e109
fix(ios): fix an animation group error
[ { "change_type": "MODIFY", "diff": "@@ -127,11 +127,10 @@ HIPPY_EXPORT_METHOD(createAnimationSet:(NSNumber *__nonnull)animationId animatio\nNSNumber *subAnimationId = info[@\"animationId\"];\nBOOL follow = [info[@\"follow\"] boolValue];\nHippyExtAnimation *ani = self->_animationById[subAnimationId];\n-#ifde...
C++
Apache License 2.0
tencent/hippy
fix(ios): fix an animation group error
1
fix
ios
306,320
30.08.2021 20:56:37
-3,600
f98c6973499ff2b80e8783425d3fccc1c760243f
feat: make Terragrunt work with project paths
[ { "change_type": "MODIFY", "diff": "@@ -36,32 +36,26 @@ func (c *ProjectContext) SetContextValue(key string, value interface{}) {\nc.contextVals[key] = value\n}\n-func (c *ProjectContext) SetContextValues(m map[string]interface{}) {\n- for k, v := range m {\n- c.SetContextValue(k, v)\n- }\n-}\n-\nfunc (c *P...
Go
Apache License 2.0
infracost/infracost
feat: make Terragrunt work with project paths
1
feat
null
380,828
30.08.2021 21:02:44
-25,200
48b6644f56d66a80d08ca9d95faca8c04d47eba0
fix: wrong detect whether a translation is plural
[ { "change_type": "MODIFY", "diff": "@@ -222,7 +222,7 @@ const convertPluralsToICU = (items: POItemType[], lang?: string) => {\nconst messageKey = getMessageKey(item)\n// Messages without multiple translations (= plural cases) need no further processing.\n- if (translationCount <= 1) {\n+ if (translationCoun...
TypeScript
MIT License
lingui/js-lingui
fix: wrong detect whether a translation is plural (#1119)
1
fix
null
67,494
30.08.2021 22:06:24
-7,200
d5bbce3857f81592bebdc5d25687d436c1dbdacf
fix(router): make default attribute work again
[ { "change_type": "MODIFY", "diff": "@@ -263,7 +263,8 @@ export class RoutingScope {\n} else if (useDirectRouting) {\ninstructions.push(...instrs);\n}\n- route.instructions = instructions;\n+ // Remove empty instructions so that default can be used\n+ route.instructions = instructions.filter(instr => instr.c...
TypeScript
MIT License
aurelia/aurelia
fix(router): make default attribute work again
1
fix
router
67,494
30.08.2021 22:07:33
-7,200
635fe4d06dfa9f78a4fa6e82ea8b8bd3a4b91e9b
fix(router): add search query to non-hash instruction
[ { "change_type": "MODIFY", "diff": "@@ -113,7 +113,7 @@ export class BrowserViewerStore implements INavigatorStore, INavigatorViewer, Ev\npathname,\nsearch.slice(1),\nhash,\n- (this.options.useUrlFragmentHash ?? false) ? hash.slice(1) : pathname,\n+ (this.options.useUrlFragmentHash ?? false) ? hash.slice(1)...
TypeScript
MIT License
aurelia/aurelia
fix(router): add search query to non-hash instruction
1
fix
router
392,551
30.08.2021 22:11:44
-7,200
120d451d0a9867f0bb47d4d034558435e000fad3
docs: add controlling the viewer guide
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ After cloning MapillaryJS, run `yarn install && yarn install-mjs` in this direct\n- `yarn install-mjs` builds the `mapillary-js` library and copies its distribution to the `src/mapillary-js` directory. This step is required for building the docs.\n- `yarn ...
TypeScript
MIT License
mapillary/mapillary-js
docs: add controlling the viewer guide
1
docs
null
756,013
30.08.2021 22:17:13
21,600
07b517e67ea000259f1586f1157c7ded7d7c077e
chore: excise husky; too soon!
[ { "change_type": "MODIFY", "diff": "\"eslint\": \"^7.32.0\",\n\"eslint-config-prettier\": \"^8.3.0\",\n\"eslint-plugin-wc\": \"^1.3.1\",\n- \"husky\": \"^4.3.8\",\n\"lint-staged\": \"^10.5.4\",\n\"prettier\": \"^2.3.2\"\n},\n", "new_path": "packages/wallet-connection/package.json", "old_path": "pack...
JavaScript
Apache License 2.0
agoric/agoric-sdk
chore: excise husky; too soon!
1
chore
null
67,516
30.08.2021 22:49:45
-7,200
c0555dedba2ae27515554d5f7ba4aa2e2abf26b6
feat: parse destructuring assignment
[ { "change_type": "MODIFY", "diff": "@@ -2278,7 +2278,7 @@ describe('ValueConverterExpression', function () {\n});\n/* eslint-disable @typescript-eslint/no-unsafe-assignment */\n-describe.only('DestructuringAssignmentExpression', function () {\n+describe('DestructuringAssignmentExpression', function () {\nde...
TypeScript
MIT License
aurelia/aurelia
feat: parse destructuring assignment
1
feat
null
380,847
31.08.2021 00:04:03
-36,000
04efd85ab5bae72607c06672f5c8da809a45dbcb
fix: no files being found when catalogs.include has more than one entry
[ { "change_type": "MODIFY", "diff": "@@ -516,7 +516,7 @@ export function getCatalogs(config: LinguiConfig) {\nconst patterns = include.map((path) => path.replace(NAME, \"*\"))\nconst candidates = glob.sync(\n- patterns.length > 1 ? `{${patterns.join(\",\")}` : patterns[0],\n+ patterns.length > 1 ? `{${patter...
TypeScript
MIT License
lingui/js-lingui
fix: no files being found when catalogs.include has more than one entry (#1108)
1
fix
null
679,913
31.08.2021 00:42:29
-7,200
3817d6562fc9ab749f1dde25d57e8108c91ebefc
fix(vectors): add correct type for setNS()
[ { "change_type": "MODIFY", "diff": "@@ -143,6 +143,20 @@ export type VecOpSGV = (\nsa?: number\n) => Vec;\n+export type VecOpSN = (\n+ out: Vec | null,\n+ n: number,\n+ io?: number,\n+ so?: number\n+) => Vec;\n+export type VecOpSGN = (\n+ out: Vec | null,\n+ n: number,\n+ num: number,\n+ io?: number,\n+ so?...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(vectors): add correct type for setNS()
1
fix
vectors
679,913
31.08.2021 00:49:50
-7,200
e87b979d54026f3a104762fac30105e51f93eef5
perf(vectors): update standardize() avoid final multiply if mag=0
[ { "change_type": "MODIFY", "diff": "@@ -17,5 +17,5 @@ import { mulN } from \"./muln\";\nexport const standardize = (out: Vec | null, a: ReadonlyVec) => {\nout = center(out, a);\nconst m = magSq(out);\n- return mulN(null, out, m > 0 ? 1 / Math.sqrt(m / (out.length - 1)) : 0);\n+ return m > 0 ? mulN(null, out...
TypeScript
Apache License 2.0
thi-ng/umbrella
perf(vectors): update standardize() - avoid final multiply if mag=0
1
perf
vectors
317,480
31.08.2021 07:15:14
-19,080
9f680596e7c50cd2d3c9095655bc0297e3a85424
feat: added LND connect URL for REST API
[ { "change_type": "MODIFY", "diff": "#!/bin/sh\n. \"$(dirname \"$0\")/_/husky.sh\"\n-lint-staged\n+yarn lint-staged\n", "new_path": ".husky/pre-commit", "old_path": ".husky/pre-commit" }, { "change_type": "MODIFY", "diff": "@@ -405,9 +405,9 @@ describe('LightningDetails', () => {\nfireEve...
TypeScript
MIT License
jamaljsr/polar
feat: added LND connect URL for REST API (#484)
1
feat
null
126,276
31.08.2021 09:08:52
10,800
d9a03ba36d64ede6220b08db9532c6a2c7361cb3
test(embedded/sql): unit testing isConstant
[ { "change_type": "MODIFY", "diff": "@@ -1247,7 +1247,7 @@ func TestIndexing(t *testing.T) {\n})\nt.Run(\"should use index on `ts` with specific value\", func(t *testing.T) {\n- r, err := engine.QueryStmt(\"SELECT * FROM table1 WHERE ts = 1629902962 ORDER BY ts\", nil, true)\n+ r, err := engine.QueryStmt(\"S...
Go
Apache License 2.0
codenotary/immudb
test(embedded/sql): unit testing isConstant Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
test
embedded/sql
865,922
31.08.2021 09:09:30
-7,200
556418c69f0735ec37e896fdcd30fa57d78d04a2
feat(releaseInfo): add 4.10 release info
[ { "change_type": "MODIFY", "diff": "@@ -42,9 +42,31 @@ import css from './ReleaseInfo.less';\nexport function ReleaseInfo(props) {\nreturn (\n<div className={ css.ReleaseInfo }>\n- <p>\n- Model Camunda Cloud 1.1 BPMN diagrams. Connect message flows to call activities and color your BPMN elements in a <a hre...
JavaScript
MIT License
camunda/camunda-modeler
feat(releaseInfo): add 4.10 release info
1
feat
releaseInfo
503,940
31.08.2021 09:11:39
14,400
11dd20e34ed7f1dafc3043e061b9f3e6f221daa2
fix(Slider): update slider to respect min/max constraints
[ { "change_type": "MODIFY", "diff": "@@ -49,7 +49,11 @@ export interface SliderProps extends Omit<React.HTMLProps<HTMLDivElement>, 'onCh\n/** Position of the input */\ninputPosition?: 'aboveThumb' | 'right';\n/** Value change callback. This is called when the slider value changes */\n- onChange?: (value: num...
TypeScript
MIT License
patternfly/patternfly-react
fix(Slider): update slider to respect min/max constraints (#6232)
1
fix
Slider
126,276
31.08.2021 09:26:45
10,800
bb8075dbc80a081560dfe29e6c1bf334753095d5
test(embedded/sql): unit testing index selection
[ { "change_type": "MODIFY", "diff": "@@ -1316,6 +1316,34 @@ func TestIndexing(t *testing.T) {\nrequire.NoError(t, err)\n})\n+ t.Run(\"should use index on `ts` in default order\", func(t *testing.T) {\n+ r, err := engine.QueryStmt(\"SELECT * FROM table1 USE INDEX ON (ts)\", nil, true)\n+ require.NoError(t, er...
Go
Apache License 2.0
codenotary/immudb
test(embedded/sql): unit testing index selection Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
test
embedded/sql
777,401
31.08.2021 09:29:56
14,400
70a6f7fb0e050f2b60f3b4d820a3a52a84e31b73
fix: profiler metrics without follow should return metrics Ensure calls to the profiler metrics API without follow return metrics. Additionally, this fixes some bad code in tests that did not catch this issue.
[ { "change_type": "MODIFY", "diff": "@@ -129,9 +129,13 @@ def request_profiling_system_metrics(trial_id: int, metric_name: str) -> None:\n),\nstream=True,\n) as r:\n+ have_batch = False\nfor line in r.iter_lines():\nbatch = simplejson.loads(line)[\"result\"][\"batch\"]\nvalidate_gpu_metric_batch(batch)\n+ ha...
Python
Apache License 2.0
determined-ai/determined
fix: profiler metrics without follow should return metrics [DET-5911] (#2879) Ensure calls to the profiler metrics API without follow return metrics. Additionally, this fixes some bad code in tests that did not catch this issue.
1
fix
null
141,585
31.08.2021 09:35:36
-36,000
bb2327442ba32728453d16e75f3c763704dcdc16
docs: Fix padding in cultureamp.design docs: Fix padding by removing CSS variables that were resolving to a string not a value
[ { "change_type": "MODIFY", "diff": "@import \"~@kaizen/component-library/styles/responsive\";\n+@import \"../styles/global.scss\";\n.contentInner {\n- margin: var(--content-top-and-bottom-margin) var(--content-side-margin);\n+ margin: $content-top-and-bottom-margin $content-side-margin;\n@include ca-media-m...
TypeScript
MIT License
cultureamp/kaizen-design-system
docs: Fix padding in cultureamp.design (#1903) docs: Fix padding by removing CSS variables that were resolving to a string not a value
1
docs
null
688,457
31.08.2021 09:40:45
-10,800
0ec8192b62feafeebd079bd5ca63afda3da98c79
chore: run tests on PRs to feature/* branches additionally, add a way to run test job manually
[ { "change_type": "MODIFY", "diff": "name: Consulting the Oracle\non:\n+ workflow_dispatch:\npull_request:\n- branches: [ master ]\n- types: [\n- synchronize, # PR was updated\n- opened, # PR was open\n- reopened, # PR was closed and is now open again\n- ready_for_review # PR was converted from draft to open...
TypeScript
MIT License
toptal/picasso
chore: run tests on PRs to feature/* branches (#2146) additionally, add a way to run test job manually
1
chore
null
503,965
31.08.2021 10:15:45
14,400
0c76abedaf80298c769b5c66cca329ec581e83a4
chore(avatar): convert examples to typescript
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,7 @@ import './example.css';\n## Examples\n### Basic\n-```js\n+```ts\nimport React from 'react';\nimport { Avatar } from '@patternfly/react-core';\nimport avatarImg from './avatarImg.svg';\n@@ -20,7 +20,7 @@ import avatarImg from './avatarImg.svg';\n```\n### ...
TypeScript
MIT License
patternfly/patternfly-react
chore(avatar): convert examples to typescript (#6228)
1
chore
avatar
877,015
31.08.2021 10:34:32
-7,200
5c867ace6db5fe715a109a4b388b17e5e2ce28d0
refactor(@vtmn/css): design changes
[ { "change_type": "MODIFY", "diff": ".vtmn-btn_variant--primary-reversed:not([disabled]):hover {\nbackground-color: var(--vtmn-semantic-color_hover-brand-reversed-transparent);\n- box-shadow: inset 0 0 0 rem(2px)\n- var(--vtmn-semantic-color_border-primary-reversed);\n+ box-shadow: inset 0 0 0 rem(2px) var(-...
JavaScript
Apache License 2.0
decathlon/vitamin-web
refactor(@vtmn/css): design changes (#524)
1
refactor
@vtmn/css
777,390
31.08.2021 10:42:47
25,200
787522e108a4da16cdd0ab0e0b225a3c410bca68
fix: relax imagenet ci target
[ { "change_type": "MODIFY", "diff": "@@ -71,7 +71,7 @@ def test_imagenet_pytorch() -> None:\nif step.get(\"validation\")\n]\n- target_loss = 1.40\n+ target_loss = 1.55\nassert max(validation_loss) < target_loss, (\n\"imagenet_pytorch did not reach minimum target loss {} in {} steps.\"\n\" full validation acc...
Python
Apache License 2.0
determined-ai/determined
fix: relax imagenet ci target (#2883)
1
fix
null