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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
386,581 | 19.08.2021 14:32:11 | -7,200 | 071d402dfbd06c6cf28b4d58388e2910adae43a4 | fix(docs): Update Netlify deployment steps | [
{
"change_type": "MODIFY",
"diff": "@@ -48,25 +48,19 @@ _ref:\n- Set your build command to `npx lowdefy@latest build-netlify`.\n- Set your publish directory to `.lowdefy/publish`.\n- - Review the other settings, and deploy your site.\n-\n- > Your site won't work yet. You first need to configure the Lowdefy ... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(docs): Update Netlify deployment steps | 1 | fix | docs |
386,595 | 19.08.2021 14:34:37 | -7,200 | b21c440eb0144bb5d53a2d3320bc8637de300c90 | fix(engine): Update action tests to include debounce. | [
{
"change_type": "MODIFY",
"diff": "@@ -93,6 +93,7 @@ test('call a synchronous action', async () => {\n});\nexpect(res).toEqual({\nblockId: 'blockId',\n+ bounced: false,\nevent: {},\neventName: 'eventName',\nresponses: {\n@@ -131,6 +132,7 @@ test('call a asynchronous action', async () => {\n});\nexpect(res)... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(engine): Update action tests to include debounce. | 1 | fix | engine |
386,595 | 19.08.2021 14:35:08 | -7,200 | 89266f2dbdf860434c94811613a07a385afdc78d | fix(engine): Fixes to event debouncing and tests. | [
{
"change_type": "MODIFY",
"diff": "@@ -94,7 +94,9 @@ class Events {\nif (type.isNone(eventDescription.debounce)) {\nreturn actionHandle();\n}\n-\n+ const delay = !type.isNone(eventDescription.debounce.ms)\n+ ? eventDescription.debounce.ms\n+ : this.defaultDebounceMs;\n// leading edge: bounce\nif (this.time... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(engine): Fixes to event debouncing and tests. | 1 | fix | engine |
386,595 | 19.08.2021 14:46:53 | -7,200 | 33814b04fd70bad08cdca50f40ee8b05f13de9e6 | fix(blocksAntd): Do not close modals and drawer if event is bounced. | [
{
"change_type": "MODIFY",
"diff": "@@ -45,11 +45,11 @@ const ConfirmModal = ({ blockId, events, content, methods, properties }) => {\nzIndex: properties.zIndex,\nonOk: async () => {\nconst response = await methods.triggerEvent({ name: 'onOk' });\n- if (response.success === false) throw response;\n+ if (res... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(blocksAntd): Do not close modals and drawer if event is bounced. | 1 | fix | blocksAntd |
67,479 | 19.08.2021 14:51:57 | -36,000 | 4797a6247d1c1bec28cda2e267a8f2cfb4707949 | chore(doc): fix attr transferring doc link | [
{
"change_type": "ADD",
"diff": "+# Attributes transferring (or Spread Attributes)\n+\n+## Introduction\n+\n+Attribute transferring is a way to relay the binding(s) on a custom element to other element(s) inside it.\n+\n+As an application grows, the components inside it also grow. Something that starts simp... | TypeScript | MIT License | aurelia/aurelia | chore(doc): fix attr transferring doc link | 1 | chore | doc |
104,835 | 19.08.2021 15:11:33 | 14,400 | 6862f7b50dd8530cb0717ab9cb314d346572c2f0 | fix(datetimepicker): update formatString | [
{
"change_type": "MODIFY",
"diff": "@@ -316,7 +316,7 @@ export class DateTimePickerComponent implements OnChanges, OnInit {\nconst range = this.dateTimeRanges.find((range) => range.key === rangeOrType);\nconst [start, end] = range.getRange();\n// TODO: provide a way to customize this for g11n\n- const forma... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(datetimepicker): update formatString | 1 | fix | datetimepicker |
386,581 | 19.08.2021 15:15:38 | -7,200 | b23e8c967ec1c48664a9aef954a0b53497af28d2 | feat(build): Add support for app default ref resolver function. | [
{
"change_type": "MODIFY",
"diff": "@@ -39,7 +39,8 @@ import writePages from './build/writePages';\nimport writeRequests from './build/writeRequests';\nfunction createContext(options) {\n- const { blocksServerUrl, cacheDirectory, configDirectory, logger, outputDirectory } = options;\n+ const { blocksServerU... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(build): Add support for app default ref resolver function. | 1 | feat | build |
791,282 | 19.08.2021 15:22:28 | 25,200 | ffcb7f558675528e03d73bb98ecd7891e089842a | chore(gapicgen): update Go microgen to v0.23.0
Updates Go GAPIC generator to v0.23.0. This carries a breaking change for 4 Compute RPCs, switching them back to the raw proto Operation type instead of the wrapped operations. This is intended.
This update also includes several example and pkg doc updates. | [
{
"change_type": "MODIFY",
"diff": "@@ -27,7 +27,7 @@ RUN go install github.com/golang/protobuf/protoc-gen-go@v1.5.2 && \\\ngo install golang.org/x/lint/golint@latest && \\\ngo install golang.org/x/tools/cmd/goimports@latest && \\\ngo install honnef.co/go/tools/cmd/staticcheck@latest && \\\n- go install git... | Go | Apache License 2.0 | googleapis/google-cloud-go | chore(gapicgen): update Go microgen to v0.23.0 (#4649)
Updates Go GAPIC generator to v0.23.0. This carries a breaking change for 4 Compute RPCs, switching them back to the raw proto Operation type instead of the wrapped operations. This is intended.
This update also includes several example and pkg doc updates. | 1 | chore | gapicgen |
104,835 | 19.08.2021 15:29:41 | 14,400 | ba291ce2c4f68e06454788384770e5b4d5868cf6 | fix(datetimepicker): add placeholder | [
{
"change_type": "MODIFY",
"diff": "@@ -48,7 +48,7 @@ export type DateRange = [Date, Date];\n(keydown.space)=\"togglePicker()\"\n[ibmTooltip]=\"formatCurrentRange()\"\n[offset]=\"tooltipOffset\"\n- [disabled]=\"!formatCurrentRangeTitle()\"\n+ [disabled]=\"disableTooltip\"\ntrigger=\"hover\"\nplacement=\"bot... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(datetimepicker): add placeholder | 1 | fix | datetimepicker |
160,177 | 19.08.2021 15:31:05 | -28,800 | 676d2ad066be606bb894839f3c86421b40822835 | feat: icon area select | [
{
"change_type": "MODIFY",
"diff": "<template>\n<div>\n+ <div class=\"toolbar-item\">\n+ <area-select size=\"18\" />\n+ </div>\n<div class=\"toolbar-item toolbar-item-bigger\">\n<color-fill />\n</div>\n@@ -40,9 +43,10 @@ import ZoomIn from './icon/ZoomIn.vue'\nimport ZoomOut from './icon/ZoomOut.vue'\nimpor... | TypeScript | Apache License 2.0 | didi/logicflow | feat: icon area select | 1 | feat | null |
104,835 | 19.08.2021 15:32:17 | 14,400 | 80f94d2025c8872f1ca232866d5ac9bb3d730199 | fix(datetimepicker): rename disabled | [
{
"change_type": "MODIFY",
"diff": "@@ -48,7 +48,7 @@ export type DateRange = [Date, Date];\n(keydown.space)=\"togglePicker()\"\n[ibmTooltip]=\"formatCurrentRange()\"\n[offset]=\"tooltipOffset\"\n- [disabled]=\"disableTooltip\"\n+ [disabled]=\"disabled\"\ntrigger=\"hover\"\nplacement=\"bottom\"\nrole=\"butt... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(datetimepicker): rename disabled | 1 | fix | datetimepicker |
306,444 | 19.08.2021 15:34:45 | -7,200 | 4ae3e9e20b74c69c0284dad0db8e8adac63bbbf5 | feat(switch): make key handlers protected, enable arrow keys | [
{
"change_type": "ADD",
"diff": "+---\n+'@lion/switch': minor\n+---\n+\n+Make keyup handlers protected, enables subclassers to switch using alternative keys.\n",
"new_path": ".changeset/perfect-bags-compare.md",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "@@ -80,9 +80,9 @@ ex... | JavaScript | MIT License | ing-bank/lion | feat(switch): make key handlers protected, enable arrow keys | 1 | feat | switch |
791,834 | 19.08.2021 15:36:28 | 18,000 | d51ebe796b92c2593a90aa715970a00921e77790 | tests(ci): temporarily use a fixed version of ToT Chromium | [
{
"change_type": "MODIFY",
"diff": "set -euo pipefail\n+# Hardcode 19 August 2021 URLs to download until\n+# https://github.com/GoogleChrome/lighthouse/issues/12942 is resolved.\nif [ \"$OSTYPE\" == \"msys\" ]; then\n- url=\"https://download-chromium.appspot.com/dl/Win?type=snapshots\"\n+ # url=\"https://do... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests(ci): temporarily use a fixed version of ToT Chromium (#12943) | 1 | tests | ci |
386,595 | 19.08.2021 15:38:04 | -7,200 | e4c5db4abdf63fc27719bf72890393f33004ef43 | feat(docs): Add event debounce. | [
{
"change_type": "MODIFY",
"diff": "@@ -97,19 +97,23 @@ _ref:\nWhen events are triggered, the can provide a data object describing the event (e.g. a description of the clicked item or uploaded file). This data object can be accessed using the [`_event`](/_event) operator in an action definition.\n- # Catchi... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(docs): Add event debounce. | 1 | feat | docs |
711,597 | 19.08.2021 16:07:39 | -7,200 | ecc51e26890d4a6b134f1ba22e2aa7165be59025 | chore: Publish v1.1.4 | [
{
"change_type": "MODIFY",
"diff": "+## <small>1.1.4 (2021-08-19)</small>\n+\n+\n+#### Fixes\n+\n+* **admin-ui** Apply variant name auto-generation for new translations ([df3d3f4](https://github.com/vendure-ecommerce/vendure/commit/df3d3f4)), closes [#600](https://github.com/vendure-ecommerce/vendure/issues... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Publish v1.1.4 | 1 | chore | null |
386,581 | 19.08.2021 16:16:18 | -7,200 | 446b3833a9c3c861db609319ed11e1b14222327e | feat(docs): Document _ref resolver functions. | [
{
"change_type": "MODIFY",
"diff": "@@ -46,7 +46,7 @@ program\n)\n.option(\n'--ref-resolver <ref-resolver-function-path>',\n- 'The URL from where Lowdefy blocks will be served.'\n+ 'Path to a JavaScript file containing a _ref resolver function to be used as the app default _ref resolver.'\n)\n.action(runCom... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(docs): Document _ref resolver functions. | 1 | feat | docs |
679,913 | 19.08.2021 16:20:43 | -7,200 | d09db8d47be81e78dea1f4e16917249924b65e35 | feat(transducers): add normalized frequencies() reducers
add normCount()
add normFrequencies()
add normFrequenciesAuto()
update readme | [
{
"change_type": "MODIFY",
"diff": "@@ -169,7 +169,7 @@ yarn add @thi.ng/transducers\n<script src=\"https://unpkg.com/@thi.ng/transducers/lib/index.umd.js\" crossorigin></script>\n```\n-Package sizes (gzipped, pre-treeshake): ESM: 8.44 KB / CJS: 9.00 KB / UMD: 8.18 KB\n+Package sizes (gzipped, pre-treeshake... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(transducers): add normalized frequencies() reducers
- add normCount()
- add normFrequencies()
- add normFrequenciesAuto()
- update readme | 1 | feat | transducers |
679,913 | 19.08.2021 16:23:03 | -7,200 | eaa0f23a88cfb98da05b245b720a6fbb260ea7da | feat(args): capitalize usage section headings | [
{
"change_type": "MODIFY",
"diff": "import type { IObjectOf, Pair } from \"@thi.ng/api\";\nimport {\n+ capitalize,\nkebab,\nlengthAnsi,\npadRight,\n@@ -45,7 +46,7 @@ export const usage = <T extends IObjectOf<any>>(\n...wrap(opts.prefix, opts.lineWidth!),\n...groups.map(([gid, ids]) =>\n[\n- ...(opts.showGro... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(args): capitalize usage section headings | 1 | feat | args |
730,417 | 19.08.2021 16:28:30 | 14,400 | 3ac3d3337932f9e98bb61640ab86685f8c586477 | fix(style): update metadata color | [
{
"change_type": "MODIFY",
"diff": "font-family: CiscoSansTT Regular, 'Helvetica Neue', Arial;\nfont-size: 12px;\nfont-weight: 300;\n- color: #666;\n+ color: #545454;\ntext-align: left;\nword-wrap: break-word;\ncursor: auto;\n",
"new_path": "packages/node_modules/@webex/react-component-activity-item-bas... | JavaScript | MIT License | webex/react-widgets | fix(style): update metadata color | 1 | fix | style |
67,479 | 19.08.2021 16:37:04 | -36,000 | 4bfcc002a16ea808101f1c5a7a724b894b700f52 | feat(au-compose): works with au-slot | [
{
"change_type": "MODIFY",
"diff": "@@ -1018,4 +1018,46 @@ describe('3-runtime-html/au-compose.spec.ts', function () {\nawait tearDown();\nassert.strictEqual(appHost.textContent, '');\n});\n+\n+ it('works with [au-slot] when composing custom element', async function () {\n+ const El1 = CustomElement.define(... | TypeScript | MIT License | aurelia/aurelia | feat(au-compose): works with au-slot | 1 | feat | au-compose |
503,933 | 19.08.2021 16:39:45 | 14,400 | 4a2679abab52d612d4f13386b43d89db87053dab | feat(Search input): Added support for submit button | [
{
"change_type": "MODIFY",
"diff": "@@ -331,7 +331,6 @@ const SearchInputBase: React.FunctionComponent<SearchInputProps> = ({\n)}\n</div>\n{attributes.length > 0 && (\n- <>\n<Button\nclassName={showSearchMenu && 'pf-m-expanded'}\nvariant={ButtonVariant.control}\n@@ -342,6 +341,7 @@ const SearchInputBase: Re... | TypeScript | MIT License | patternfly/patternfly-react | feat(Search input): Added support for submit button (#6178)
Co-authored-by: Titani <tlabaj@redaht.com> | 1 | feat | Search input |
679,913 | 19.08.2021 16:48:24 | -7,200 | 5b5200b6d4e61df6c2e6458b99b8b10ea9f3bb65 | fix(transducers): update normFrequenciesAuto()
actually use `key` fn arg (if given) | [
{
"change_type": "MODIFY",
"diff": "@@ -13,6 +13,10 @@ import { frequencies } from \"./frequencies\";\n*\n* normFrequenciesAuto(items)\n* // Map(5) { 1 => 0.4, 2 => 0.3, 3 => 0.1, 4 => 0.1, 5 => 0.1 }\n+ *\n+ * // frequencies by 1st letter\n+ * normFrequenciesAuto(x => x[0], [\"alice\", \"abba\", \"bob\", \... | TypeScript | Apache License 2.0 | thi-ng/umbrella | fix(transducers): update normFrequenciesAuto()
- actually use `key` fn arg (if given) | 1 | fix | transducers |
386,581 | 19.08.2021 16:54:39 | -7,200 | 3981f8c60b9a2e6f5429a5fba499c65c16ccf30f | feat: Make server basepath configurable | [
{
"change_type": "MODIFY",
"diff": "@@ -143,13 +143,13 @@ const Root = ({ gqlUri }) => {\n}}\n/>\n<Switch>\n- <Route exact path=\"/\">\n+ <Route exact path={`${lowdefy.basePath}/`}>\n<Home lowdefy={lowdefy} />\n</Route>\n- <Route exact path=\"/auth/openid-callback\">\n+ <Route exact path={`${lowdefy.basePat... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat: Make server basepath configurable | 1 | feat | null |
386,581 | 19.08.2021 16:57:16 | -7,200 | df5770d13b9ae539df7af09bf1f28a00dcd8b834 | fix(docs): Docs typo fixes. | [
{
"change_type": "MODIFY",
"diff": "@@ -199,7 +199,7 @@ _ref:\nTemplating is used extensively to create the Lowdefy docs (these docs are a Lowdefy app). You can look at how they are used [here](https://github.com/lowdefy/lowdefy/tree/main/packages/docs).\n- The `_ref` operator can also be extended with cust... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(docs): Docs typo fixes. | 1 | fix | docs |
777,353 | 19.08.2021 16:57:18 | 18,000 | 174e99491c374f93e129eac45d90b0253e11922b | fix: remove visual gap on trial comparison | [
{
"change_type": "MODIFY",
"diff": ".base {\nborder: 1px solid var(--theme-colors-monochrome-14);\nborder-radius: var(--theme-sizes-border-radius);\n- display: grid;\n+ display: flex;\n+ flex-direction: column;\ngrid-auto-flow: row;\nheight: 75vh;\noverflow-x: scroll;\n",
"new_path": "webui/react/src/pa... | Python | Apache License 2.0 | determined-ai/determined | fix: remove visual gap on trial comparison (#2857) | 1 | fix | null |
160,160 | 19.08.2021 16:58:16 | -28,800 | 88ec07bb5d4d7ae6e242e68e46e4bc4278f5a17e | fix(extension): init isDefalutStopMoveGraph of SelectionSelect | [
{
"change_type": "ADD",
"diff": "+window.addEventListener('DOMContentLoaded', () => {\n+ const lf = new LogicFlow({\n+ container: document.querySelector('#app'),\n+ edgeTextDraggable: true,\n+ nodeTextDraggable: true,\n+ metaKeyMultipleSelected: true,\n+ grid: {\n+ type: 'dot',\n+ size: 20,\n+ },\n+ keyboar... | TypeScript | Apache License 2.0 | didi/logicflow | fix(extension): init isDefalutStopMoveGraph of SelectionSelect | 1 | fix | extension |
276,989 | 19.08.2021 17:00:37 | 10,800 | b69827c93a4a3744e47cd21f088410a397edf6f8 | feat(tokens): add elevation for iOS platform | [
{
"change_type": "ADD",
"diff": "+import { elevate } from '@gympass/yoga-common';\n+import colors from './colors';\n+\n+/**\n+ * @module elevation\n+ * @desc Elevation (z-index) tokens module.\n+ *\n+ * @memberof @gympass/yoga-tokens\n+ */\n+\n+/**\n+ * An elevation\n+ * @typedef Elevation\n+ *\n+ * @type {... | JavaScript | MIT License | gympass/yoga | feat(tokens): add elevation for iOS platform | 1 | feat | tokens |
276,989 | 19.08.2021 17:02:14 | 10,800 | 804addf4ef0e2799e05b8b0876c16dc3a224a339 | refactor(common): adjusting elevate to be able to use to create shadows for iOS | [
{
"change_type": "MODIFY",
"diff": "@@ -6,33 +6,45 @@ const UMBRA_OPACITY = 0.2;\nconst PEUMBRA_OPACITY = 0.14;\nconst AMBIENT_OPACITY = 0.12;\n-const umbra = ['0px 2px 4px -1px', '0px 5px 5px -3px', '0px 7px 8px -4px'];\n-const penumbra = ['0px 4px 5px 0px', '0px 8px 10px 1px', '0px 12px 17px 2px'];\n-cons... | JavaScript | MIT License | gympass/yoga | refactor(common): adjusting elevate to be able to use to create shadows for iOS | 1 | refactor | common |
679,913 | 19.08.2021 17:18:09 | -7,200 | eba439491afd191c2d5aecb99fb8b5c264f32138 | feat(tools): add tool:prune alias | [
{
"change_type": "MODIFY",
"diff": "\"tool:deps\": \"ts-node -P tools/tsconfig.json tools/src/adjacency.ts\",\n\"tool:imports\": \"ts-node -P tools/tsconfig.json tools/src/check-imports.ts\",\n\"tool:exports\": \"ts-node -P tools/tsconfig.json tools/src/check-exports.ts\",\n+ \"tool:prune\": \"ts-node -P to... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(tools): add tool:prune alias | 1 | feat | tools |
386,595 | 19.08.2021 17:25:38 | -7,200 | f43762fc9eccd1876b0f240f3ea1ac64373238a3 | fix(blocksAntd): Use relative paths with Link. | [
{
"change_type": "MODIFY",
"diff": "@@ -24,7 +24,7 @@ import Icon from '../Icon/Icon';\nconst ItemLink = ({ link, children, className }) => {\nif (type.isString(link.pageId)) {\nreturn (\n- <Link to={`/${link.pageId}`} className={className}>\n+ <Link to={`${link.pageId}`} className={className}>\n{children}\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(blocksAntd): Use relative paths with Link. | 1 | fix | blocksAntd |
160,177 | 19.08.2021 17:34:47 | -28,800 | ba6e80435c366b49fa369b9c6e0190bfc30e8d37 | docs: mvp change circle fill color | [
{
"change_type": "MODIFY",
"diff": "\"safe-buffer\": \"^5.0.1\"\n}\n},\n+ \"clamp\": {\n+ \"version\": \"1.0.1\",\n+ \"resolved\": \"https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz\",\n+ \"integrity\": \"sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=\"\n+ },\n\"class-utils\": {\n\"version\": \"0.3.6\",\n\"resolved\":... | TypeScript | Apache License 2.0 | didi/logicflow | docs: mvp change circle fill color | 1 | docs | null |
160,177 | 19.08.2021 17:56:05 | -28,800 | f38aa2e52b53933d0640eca60983c0ad3b0c9a89 | docs: remove playground entry | [
{
"change_type": "MODIFY",
"diff": "@@ -8,7 +8,7 @@ import {\nElementState, ModelType, ElementType,\n} from '../../constant/constant';\nimport {\n- AdditionData, NodeData, NodeAttribute, NodeConfig, NodeMoveRule, Bounds,\n+ AdditionData, NodeData, NodeAttribute, NodeConfig, NodeMoveRule, Bounds, Point,\n} f... | TypeScript | Apache License 2.0 | didi/logicflow | docs: remove playground entry | 1 | docs | null |
711,597 | 19.08.2021 18:00:01 | -7,200 | c622f1f50a68c04275aa474b42977b4aa08822e9 | feat(core): Allow OrderAddress custom fields to be modified
Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -198,6 +198,13 @@ export function addGraphQLCustomFields(\n}\n`;\n}\n+ if (schema.getType('UpdateOrderAddressInput')) {\n+ customFieldTypeDefs += `\n+ extend input UpdateOrderAddressInput {\n+ customFields: UpdateAddressCustomFieldsInput\n+ }\n+ `;\n+ }\n} else {\nif (... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(core): Allow OrderAddress custom fields to be modified
Relates to #979 | 1 | feat | core |
711,597 | 19.08.2021 18:00:45 | -7,200 | 175e61a5b6da517871a8ffe29531d3a5c9665990 | feat(admin-ui): Allow OrderAddress custom fields to be modified
Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -14,6 +14,7 @@ import {\nModalService,\nModifyOrderInput,\nNotificationService,\n+ OrderAddressFragment,\nOrderDetail,\nProductSelectorSearch,\nServerConfigService,\n@@ -137,6 +138,7 @@ export class OrderEditorComponent\ncountryCode: new FormControl(order.shippingAddre... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(admin-ui): Allow OrderAddress custom fields to be modified
Relates to #979 | 1 | feat | admin-ui |
531,793 | 19.08.2021 18:03:50 | -3,600 | 3d4f9251df5216d5948561f67f2c186cb8950779 | fix(ui): ensure that all dropdowns are not hidden under swimlanes | [
{
"change_type": "MODIFY",
"diff": "@@ -20,4 +20,10 @@ export const CommonPopperModifiers = [\nroundOffsets: true,\n},\n},\n+ {\n+ name: \"flip\",\n+ options: {\n+ fallbackPlacements: [],\n+ },\n+ },\n];\n",
"new_path": "ui/src/Common/Popper.ts",
"old_path": "ui/src/Common/Popper.ts"
},
{
"c... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): ensure that all dropdowns are not hidden under swimlanes | 1 | fix | ui |
777,401 | 19.08.2021 18:20:59 | 14,400 | 9e26e99390e37af8b6c1690c0a2a5a51e917e1a7 | fix: dont force nvidia runtime for users using Docker native GPU support
This fixes a bug for users who wouldn't have the nvidia runtime installed and instead use Docker's native GPU support. | [
{
"change_type": "MODIFY",
"diff": "@@ -31,7 +31,6 @@ const (\nconst (\n// Container runtimes.\n- nvidiaContainerRuntime = \"nvidia\"\nrunc = \"runc\"\n)\n@@ -134,8 +133,6 @@ func (t *TaskSpec) ToDockerSpec() container.Spec {\nswitch deviceType {\ncase device.CPU, device.ZeroSlot:\ncontainerRuntime = runc\n... | Python | Apache License 2.0 | determined-ai/determined | fix: dont force nvidia runtime for users using Docker native GPU support (#2854)
This fixes a bug for users who wouldn't have the nvidia runtime installed and instead use Docker's native GPU support. | 1 | fix | null |
915,101 | 19.08.2021 18:49:02 | -7,200 | 184a3c45a6fef792458af101778f1bd0c6719d83 | fix: documentation SYSTEM_SECRET -> SECRETS_SYSTEM | [
{
"change_type": "MODIFY",
"diff": "@@ -43,7 +43,7 @@ ORY Hydra offers an API for generating and managing JWKs, the\n[JSON Web Keys API](./reference/api.mdx). When using persistent storage\nbackends, the keys are encrypted at rest using AES256-GCM and _the system\nsecret_. The system secret is generated by ... | Go | Apache License 2.0 | ory/hydra | fix: documentation SYSTEM_SECRET -> SECRETS_SYSTEM (#2686) | 1 | fix | null |
679,913 | 19.08.2021 18:57:28 | -7,200 | d1ffbb0838e9a77cfaae75955901792c6bad1ee8 | feat(tools): update files() iter & prune tool | [
{
"change_type": "MODIFY",
"diff": "+import { isString } from \"@thi.ng/checks\";\nimport { readdirSync, readFileSync, statSync } from \"fs\";\nexport const readJSON = (path: string) => JSON.parse(<any>readFileSync(path));\n@@ -5,27 +6,30 @@ export const readJSON = (path: string) => JSON.parse(<any>readFile... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(tools): update files() iter & prune tool | 1 | feat | tools |
438,921 | 19.08.2021 19:00:05 | -32,400 | 45824239cd2942f501cab5ad6a6bc9edfe1b81aa | refactor(api): Remove d3-color package usage
Remove the use of d3-color package and replaces its functionality
by css filter brightness function.
Fix | [
{
"change_type": "MODIFY",
"diff": "\"dependencies\": {\n\"d3-axis\": \"^3.0.0\",\n\"d3-brush\": \"^3.0.0\",\n- \"d3-color\": \"^3.0.1\",\n\"d3-drag\": \"^3.0.0\",\n\"d3-dsv\": \"^3.0.1\",\n\"d3-ease\": \"^3.0.1\",\n\"cross-env\": \"^7.0.3\",\n\"css-loader\": \"^6.2.0\",\n\"css-minimizer-webpack-plugin\": \... | TypeScript | MIT License | naver/billboard.js | refactor(api): Remove d3-color package usage
Remove the use of d3-color package and replaces its functionality
by css filter brightness function.
Fix #2272 | 1 | refactor | api |
503,963 | 19.08.2021 19:09:42 | -7,200 | 4899e6e799fb5b1ae7747353c718d7b3a1464abd | fix(Select): correct typeahead children check | [
{
"change_type": "MODIFY",
"diff": "@@ -256,7 +256,7 @@ export class Select extends React.Component<SelectProps & OUIAProps, SelectState\nif (child.props && this.props.children[index].props) {\nreturn child.props.value !== this.props.children[index].props.value;\n} else {\n- return child === this.props.chil... | TypeScript | MIT License | patternfly/patternfly-react | fix(Select): correct typeahead children check (#6176) | 1 | fix | Select |
217,922 | 19.08.2021 19:16:34 | -7,200 | 3333d1b1dbdcc36cb813462cb6058b4d257a7ef4 | feat(leveling-equipment): added clickable item name to be able to copy to clipboard | [
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,7 @@ import { Directive, EventEmitter, HostListener, Input, OnInit, Output } from '@a\nimport { Clipboard } from '@angular/cdk/clipboard';\nimport { NzMessageService } from 'ng-zorro-antd/message';\nimport { environment } from '../../environments/environment';\... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(leveling-equipment): added clickable item name to be able to copy to clipboard | 1 | feat | leveling-equipment |
217,922 | 19.08.2021 19:33:48 | -7,200 | 69f3a2ca3b0b71c1b023669a46d3cca1a96e92b7 | fix(db): updated the list of legendary fish using japanese description matching | [
{
"change_type": "MODIFY",
"diff": "@@ -412,7 +412,7 @@ export class AlarmsFacade {\nprivate applyFishEyes(alarm: Partial<Alarm>): Partial<Alarm>[] {\nconst patch = this.lazyData.data.itemPatch[alarm.itemId];\nconst expansion = this.lazyData.patches.find(p => p.ID === patch)?.ExVersion;\n- const isBigFish =... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(db): updated the list of legendary fish using japanese description matching | 1 | fix | db |
217,922 | 19.08.2021 19:36:07 | -7,200 | e2143ffa0a92bc832adaea139fcccbcb601b5078 | chore: small renaming mistake | [
{
"change_type": "MODIFY",
"diff": "@@ -412,9 +412,9 @@ export class AlarmsFacade {\nprivate applyFishEyes(alarm: Partial<Alarm>): Partial<Alarm>[] {\nconst patch = this.lazyData.data.itemPatch[alarm.itemId];\nconst expansion = this.lazyData.patches.find(p => p.ID === patch)?.ExVersion;\n- const isBigFish =... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: small renaming mistake | 1 | chore | null |
711,597 | 19.08.2021 20:55:18 | -7,200 | 63ad437e1af169154ca890d3cd96ad0072eb86d8 | fix(admin-ui): Fix regression from v1.1.4 which broke Admin UI
Fixes | [
{
"change_type": "MODIFY",
"diff": "import { DOCUMENT } from '@angular/common';\n-import { Component, HostBinding, Inject, OnInit } from '@angular/core';\n-import { ActivatedRoute } from '@angular/router';\n+import { Component, Inject, OnInit } from '@angular/core';\nimport { Observable } from 'rxjs';\n-imp... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(admin-ui): Fix regression from v1.1.4 which broke Admin UI
Fixes #1045 | 1 | fix | admin-ui |
711,597 | 19.08.2021 20:57:53 | -7,200 | cd1843114bf62444dbd11cc795bcde5b52013da0 | fix(core): Correct camel casing for custom orderable asset ids
Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -19,6 +19,7 @@ import { ReadStream } from 'fs-extra';\nimport mime from 'mime-types';\nimport path from 'path';\nimport { Readable, Stream } from 'stream';\n+import { camelCase } from 'typeorm/util/StringUtils';\nimport { RequestContext } from '../../api/common/request... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(core): Correct camel casing for custom orderable asset ids
Relates to #1035 | 1 | fix | core |
104,828 | 19.08.2021 21:07:18 | -7,200 | 3450449557055cac91f87ce8510252dbc83073a3 | test(tablehead): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -31,6 +31,7 @@ module.exports = {\n'./src/components/Accordion/AccordionItemDefer.jsx': all90Covered,\n'./src/components/Table/TableBody/RowActionsCell/RowActionsCell.jsx': all90Covered,\n'./src/components/Table/Table.jsx': all90Covered,\n+ '/src/components/Table/Table... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(tablehead): improved unit test coverage
#2583 | 1 | test | tablehead |
711,597 | 19.08.2021 21:13:25 | -7,200 | 9a91fab05b7150846cfab54a4f186d27f20d39e1 | chore: Publish v1.1.5 | [
{
"change_type": "MODIFY",
"diff": "+## <small>1.1.5 (2021-08-19)</small>\n+\n+\n+#### Fixes\n+\n+* **admin-ui** Fix regression from v1.1.4 which broke Admin UI ([63ad437](https://github.com/vendure-ecommerce/vendure/commit/63ad437)), closes [#1045](https://github.com/vendure-ecommerce/vendure/issues/1045)\... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Publish v1.1.5 | 1 | chore | null |
104,828 | 19.08.2021 21:21:21 | -7,200 | 4d97cc42d2eaf7d1b6c6c03ab704eb90ddc30856 | test(tablehead): fixed typo in jest.config | [
{
"change_type": "MODIFY",
"diff": "@@ -31,7 +31,7 @@ module.exports = {\n'./src/components/Accordion/AccordionItemDefer.jsx': all90Covered,\n'./src/components/Table/TableBody/RowActionsCell/RowActionsCell.jsx': all90Covered,\n'./src/components/Table/Table.jsx': all90Covered,\n- '/src/components/Table/Table... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(tablehead): fixed typo in jest.config
#2583 | 1 | test | tablehead |
71,146 | 19.08.2021 21:30:22 | -10,800 | 436540f85aedfdcea78b67a0aded9505a93cd8f3 | docs(apigateway): tag doesn't work with the tag in docs
fix: Remove tag that doesn't work with the tag.
Fixes:
*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": "@@ -30,7 +30,7 @@ export interface IModel {\n* }\n*\n* @see https://docs.amazonaws.cn/en_us/apigateway/latest/developerguide/models-mappings.html#models-mappings-models\n- * @deprecated You should use @see Model.EMPTY_MODEL\n+ * @deprecated You should use Model.EMPTY_MODE... | TypeScript | Apache License 2.0 | aws/aws-cdk | docs(apigateway): @see tag doesn't work with the @deprecated tag in docs (#16136)
fix: Remove @see tag that doesn't work with the @deprecated tag.
Fixes: #16100
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | docs | apigateway |
777,401 | 19.08.2021 21:55:16 | 14,400 | 1d94e50bdfde278e079bc2e58343163a140d4d06 | fix: remove bad switch default
Fix a hastily made change that was so small I assumed it would never break. | [
{
"change_type": "MODIFY",
"diff": "@@ -133,8 +133,6 @@ func (t *TaskSpec) ToDockerSpec() container.Spec {\nswitch deviceType {\ncase device.CPU, device.ZeroSlot:\ncontainerRuntime = runc\n- default:\n- panic(fmt.Sprintf(\"bad device type: %s\", deviceType))\n}\nnetwork := t.TaskContainerDefaults.NetworkMod... | Python | Apache License 2.0 | determined-ai/determined | fix: remove bad switch default (#2859)
Fix a hastily made change that was so small I assumed it would never break. | 1 | fix | null |
104,828 | 19.08.2021 21:56:41 | -7,200 | 9ae9abb666d34dbeb7a868db14511f2374300cd4 | test(hero): set individual testing thresholds to current coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -43,6 +43,8 @@ module.exports = {\n// https://github.com/carbon-design-system/carbon-charts/issues/594\nfunctions: 77,\n},\n+ // Deprecated, no need for thresholds to be at 90%\n+ './src/components/Hero/Hero.jsx': { statements: 83, branches: 40, functions: 50, lines: 8... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(hero): set individual testing thresholds to current coverage | 1 | test | hero |
104,828 | 19.08.2021 22:59:12 | -7,200 | 1e436a28e1d5fa3d016f86c9312c6f6504b31ae7 | test(navigationbar): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\n-import { mount } from 'enzyme';\nimport { render, screen } from '@testing-library/react';\n+import userEvent from '@testing-library/user-event';\nimport NavigationBar from './NavigationBar';\nconst commonNavigationBarProps = {\ntabs: [\n- { id... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(navigationbar): improved unit test coverage | 1 | test | navigationbar |
847,143 | 19.08.2021 23:46:23 | -28,800 | 1f9b8f731d0d47c407774cec0d586df3bcb2de20 | fix(components): allow mutiple $page | [
{
"change_type": "MODIFY",
"diff": "@@ -71,11 +71,6 @@ import { componentI18n } from \"../define\";\nexport default defineComponent({\nname: \"Pagination\",\n- model: {\n- prop: \"currentPage\",\n- event: \"change\",\n- },\n-\nprops: {\n/** Number of total items */\ntotal: { type: Number, default: 10 },\n@@... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | fix(components): allow mutiple $page | 1 | fix | components |
104,828 | 19.08.2021 23:58:25 | -7,200 | a934f3579d6912450b984f49732d9d7d73c248ed | test(navigationbar): modified testing threshold | [
{
"change_type": "MODIFY",
"diff": "@@ -32,6 +32,7 @@ module.exports = {\n'./src/components/Table/TableBody/RowActionsCell/RowActionsCell.jsx': all90Covered,\n'./src/components/Table/Table.jsx': all90Covered,\n'./src/components/Table/TableSaveViewModal/TableSaveViewForm.jsx': all90Covered,\n+ './src/compone... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(navigationbar): modified testing threshold | 1 | test | navigationbar |
902,122 | 20.08.2021 00:38:21 | -7,200 | a2d08aaf0a61dc7a448ae494f8250d79cd1fbdde | fix(lighthouse): less agressive way to timeout subprocess
execa timeout throw a global error | [
{
"change_type": "MODIFY",
"diff": "@@ -47,13 +47,15 @@ module.exports = async (\nconst browser = await browserless.browser()\nconst flags = await getFlags(browser, { disableStorageReset, logLevel, output })\n- const subprocess = execa.node(lighthousePath, { killSignal: 'SIGKILL', timeout })\n+ const subpro... | JavaScript | MIT License | microlinkhq/browserless | fix(lighthouse): less agressive way to timeout subprocess
execa timeout throw a global error | 1 | fix | lighthouse |
902,122 | 20.08.2021 00:38:40 | -7,200 | a84275eb73aaaaefa687195729976e119ed8d4eb | chore(release): v9.1.10 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [9.1.10](https://github.com/microlinkhq/browserless/compare/v9.1.9...v9.1.10) (2021-08-19)\n+\n+\n+### Bug Fixes\n... | JavaScript | MIT License | microlinkhq/browserless | chore(release): v9.1.10 | 1 | chore | release |
756,038 | 20.08.2021 01:09:14 | 25,200 | 3384f11da1d0723826fa2561de342983bc9438ea | test: lien keeper test for vesting accounts | [
{
"change_type": "MODIFY",
"diff": "package keeper\nimport (\n+ \"math\"\n\"reflect\"\n\"testing\"\n@@ -14,6 +15,8 @@ import (\nsdk \"github.com/cosmos/cosmos-sdk/types\"\nauthkeeper \"github.com/cosmos/cosmos-sdk/x/auth/keeper\"\nauthtypes \"github.com/cosmos/cosmos-sdk/x/auth/types\"\n+ \"github.com/cosmo... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | test: lien keeper test for vesting accounts | 1 | test | null |
756,038 | 20.08.2021 01:11:16 | 25,200 | 83562a41a820fb773abfd78e5d9434f9d6c382ad | docs: comments and spec for bridge messages | [
{
"change_type": "MODIFY",
"diff": "@@ -5,10 +5,14 @@ import (\nsdk \"github.com/cosmos/cosmos-sdk/types\"\n)\n+// DefaultGenesisState returns an empty GenesisState.\nfunc DefaultGenesisState() types.GenesisState {\nreturn types.GenesisState{}\n}\n+// ValidateGenesisState returns whether genesisState is wel... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | docs: comments and spec for bridge messages | 1 | docs | null |
756,038 | 20.08.2021 01:31:26 | 25,200 | d8c4a2f9aee78e122d8eae830318b23f03b59f81 | refactor: interface for lien keeper | [
{
"change_type": "MODIFY",
"diff": "@@ -82,14 +82,14 @@ func TestWrap(t *testing.T) {\nacc := authtypes.ProtoBaseAccount()\nacc.SetAccountNumber(17)\nwak := types.WrappedAccountKeeper{} // used as a sentinel for keeper identity\n- keeper := Keeper{accountKeeper: &wak}\n+ keeper := keeperImpl{accountKeeper: ... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | refactor: interface for lien keeper | 1 | refactor | null |
306,660 | 20.08.2021 01:55:47 | -19,080 | 18e111ce275fc4a0a7de388ffb0cb92d54ae7158 | fix(InputMask): fixes onChange callback
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -210,10 +210,14 @@ export const InputMask = React.forwardRef<HTMLInputElement, InputMaskProps>((pro\n} else if (removedLength !== 1) {\ncursorPosition = newCursorPosition;\n}\n+\nconst newValue = maskedVal.slice(0, mask.length).join('');\nwindow.requestAnimationFrame((... | TypeScript | MIT License | innovaccer/design-system | fix(InputMask): fixes onChange callback
Closes #749 | 1 | fix | InputMask |
756,038 | 20.08.2021 02:19:04 | 25,200 | 40c3d1de818788e534046239cb5b631c0275b9b3 | test: tests for lien bridge messages | [
{
"change_type": "MODIFY",
"diff": "@@ -79,8 +79,8 @@ func (ch portHandler) handleGetAccountState(ctx sdk.Context, msg portMessage) (s\n}\nstate := ch.keeper.GetAccountState(ctx, addr)\nreply := msgAccountState{\n- CurrentTime: ctx.BlockTime().String(), // XXX check format\n- Total: state.Total.AmountOf(den... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | test: tests for lien bridge messages | 1 | test | null |
815,609 | 20.08.2021 03:44:53 | -28,800 | 0e6de83db8595fa01daa926af6d6244aeeeb771d | docs: fix several typos | [
{
"change_type": "MODIFY",
"diff": "@@ -3106,7 +3106,7 @@ Miners optional pick transactions and then assemble the final block.\n* `extension`: [`JsonBytes`](#type-jsonbytes) `|` `null` - The extension for the new block.\n- This field is optional. It a reserved field, please leave it blank. More details can ... | Rust | MIT License | nervosnetwork/ckb | docs: fix several typos | 1 | docs | null |
71,305 | 20.08.2021 05:23:32 | -28,800 | bf13891c59e6804a150471542af601ae4ccee803 | docs(ecs): Fix ecs readme sample
Sample code missing parentheses
*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": "@@ -854,7 +854,7 @@ cluster.addAsgCapacityProvider(capacityProvider);\nconst taskDefinition = new ecs.Ec2TaskDefinition(stack, 'TaskDef');\ntaskDefinition.addContainer('web', {\n- image: ecs.ContainerImage.fromRegistry('amazon/amazon-ecs-sample',\n+ image: ecs.ContainerIm... | TypeScript | Apache License 2.0 | aws/aws-cdk | docs(ecs): Fix ecs readme sample (#16058)
Sample code missing parentheses
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | docs | ecs |
71,699 | 20.08.2021 06:38:49 | 18,000 | 683ed7ebd3a212054ec5b9178b9583bb1e3e2332 | chore(appsync): Correct VTL for aurora Serverless
docs: correct spelling of CHANGELOGThe old vtl will result in "unable to convert to object"
*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": "@@ -135,7 +135,7 @@ rdsDS.createResolver({\n}\n`),\nresponseMappingTemplate: MappingTemplate.fromString(`\n- $util.rds.toJsonObject($ctx.result)\n+ $utils.toJson($utils.rds.toJsonObject($ctx.result)[0])\n`),\n});\n@@ -157,7 +157,7 @@ rdsDS.createResolver({\n}\n`),\nrespon... | TypeScript | Apache License 2.0 | aws/aws-cdk | chore(appsync): Correct VTL for aurora Serverless (#15874)
docs: correct spelling of CHANGELOGThe old vtl will result in "unable to convert to object"
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | chore | appsync |
317,842 | 20.08.2021 08:44:09 | -7,200 | 123c52d8e25385b5df661a06fbf5d2887cc381c5 | docs(owm): http_timeout/units fix | [
{
"change_type": "MODIFY",
"diff": "@@ -41,6 +41,6 @@ The free tier for *Current weather and forecasts collection* is sufficient.\nFormatted as <City,STATE,COUNTRY_CODE>. City name, state code and country code divided by comma.\nPlease, refer to ISO 3166 for the state codes or country codes - defaults to `D... | Go | MIT License | jandedobbeleer/oh-my-posh | docs(owm): http_timeout/units fix | 1 | docs | owm |
865,916 | 20.08.2021 08:54:45 | -7,200 | 42a8df22709ea1c1a47316b5cc319f9bb4052e0d | feat(client): lint form tab on import | [
{
"change_type": "MODIFY",
"diff": "@@ -160,12 +160,20 @@ export class FormEditor extends CachedComponent {\n} else {\nconst engineProfile = this.getEngineProfile();\n- if (isNil(engineProfile) || isKnownEngineProfile(engineProfile)) {\n+ if (isNil(engineProfile)) {\nthis.setCached({\nengineProfile,\nlastSc... | JavaScript | MIT License | camunda/camunda-modeler | feat(client): lint form tab on import | 1 | feat | client |
103,595 | 20.08.2021 09:51:35 | 14,400 | 885d4cc358dcf073ffd0f404a6fdf2bcc0127bdc | docs: fix typo in TextInput | [
{
"change_type": "MODIFY",
"diff": "@@ -69,7 +69,7 @@ export type TextInputProps = React.ComponentPropsWithRef<\n* height is `64dp` or in dense layout - `52dp` with label or `40dp` without label.\n* For `TextInput` in `outlined` mode\n* height is `56dp` or in dense layout - `40dp` regardless of label.\n- * ... | TypeScript | MIT License | callstack/react-native-paper | docs: fix typo in TextInput (#2865) | 1 | docs | null |
217,922 | 20.08.2021 10:00:57 | -7,200 | c19b6a762ea2d43b525628f3b4d01a259f672fda | chore: August ads.txt update | [
{
"change_type": "MODIFY",
"diff": "-#V 20.07.2021 PH\n+#V 12.08.2021 PH\n#------------------------------------------------------------------------------------------------------\n+33across.com, 0010b00001rrIFkAAM, DIRECT, bbea06d9c4d2853c # 33Across_0_9_6&7\n+yahoo.com, 57289, RESELLER, e1a5b5b6e3255540 # 3... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: August ads.txt update | 1 | chore | null |
503,970 | 20.08.2021 10:06:30 | 14,400 | c7e4bc6e8d6f7ef88875b6d504aa386102742907 | chore(various): remove beta tag from promoted components | [
{
"change_type": "MODIFY",
"diff": "@@ -3,12 +3,10 @@ id: Action list\nsection: components\ncssPrefix: pf-c-action-list\npropComponents: ['ActionList', 'ActionListGroup', 'ActionListItem']\n-beta: true\n---\n-import TimesIcon from '@patternfly/react-icons/dist/esm/icons/times-icon';\n-import CheckIcon from ... | TypeScript | MIT License | patternfly/patternfly-react | chore(various): remove beta tag from promoted components (#6182)
Co-authored-by: Evan <evan.wilkinson@gmail.com> | 1 | chore | various |
306,423 | 20.08.2021 10:47:46 | -7,200 | 811b3294721f513cafd4f93ef9937a6e295bca2e | fix(button): register element registration side effects | [
{
"change_type": "ADD",
"diff": "+---\n+'@lion/button': patch\n+---\n+\n+Add files that result in customElements.define to sideEffect so build tools don't tree shake them\n",
"new_path": ".changeset/thirty-dryers-listen.md",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "\"test\... | JavaScript | MIT License | ing-bank/lion | fix(button): register element registration side effects | 1 | fix | button |
688,457 | 20.08.2021 10:58:00 | -10,800 | 4eb1b5b2b39c2c841d3c91f4b983387e4da7624c | docs: add info about designing component API | [
{
"change_type": "MODIFY",
"diff": "@@ -15,6 +15,8 @@ import JSS_ONBOARDING from '../../../../docs/contribution/jss-onboarding.md'\nimport CREATING_EXAMPLES from '../../../../docs/contribution/creating-examples.md'\n// @ts-ignore\nimport VISUAL_SNAPSHOTS from '../../../../docs/contribution/visual-testing.md... | TypeScript | MIT License | toptal/picasso | docs: add info about designing component API (#2140) | 1 | docs | null |
104,828 | 20.08.2021 11:16:40 | -7,200 | ba52caa12bf27ecd1282e9f4dbf3d2767dba6943 | test(tablemanageviewsmodal): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -24,6 +24,7 @@ module.exports = {\ncoverageReporters: ['html', 'text-summary', 'lcov', 'json'],\ncoverageDirectory: 'jest/coverage',\ncoverageThreshold: {\n+ './src/components/Table/TableManageViewsModal/TableManageViewsModal.jsx': all90Covered,\n'./src/components/Tabl... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(tablemanageviewsmodal): improved unit test coverage | 1 | test | tablemanageviewsmodal |
386,595 | 20.08.2021 11:18:59 | -7,200 | aa9601c84935c60ec36c9bf752e94fe75a8b8505 | feat(docs): Document basePath setting. | [
{
"change_type": "MODIFY",
"diff": "@@ -121,6 +121,7 @@ _ref:\nThe React component will receive the following props:\n+ - `basePath: string`: The base path setting for the application. This variable is used to prefix route paths for example `${basePath/public/logo-square-light-theme.png`. The default base p... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(docs): Document basePath setting. | 1 | feat | docs |
386,595 | 20.08.2021 11:19:31 | -7,200 | eb95c8a64b2b7698f006750cd3639ee71dbbf4a9 | feat(operators): Add basePath to _location. | [
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,7 @@ _ref:\nThe `_location` operator gets a value from the browser [Location](https://developer.mozilla.org/en-US/docs/Web/API/Location) interface. The Location interface represents the location (URL) of the window object it is linked to, thus can return the ... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(operators): Add basePath to _location. | 1 | feat | operators |
386,581 | 20.08.2021 11:47:03 | -7,200 | 63955bbd1131da3b27b537d4e0d72dc943119287 | fix: Fixes for configurable basePath. | [
{
"change_type": "MODIFY",
"diff": "import makeCssClass from './makeCssClass';\nconst blockDefaultProps = {\n+ basePath: '',\nblockId: 'undefined_id',\ncontent: {},\nevents: {},\n",
"new_path": "packages/blockTools/src/blockDefaultProps.js",
"old_path": "packages/blockTools/src/blockDefaultProps.js"... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix: Fixes for configurable basePath. | 1 | fix | null |
386,581 | 20.08.2021 11:56:09 | -7,200 | eaee5aa4bf6c745de08892ac99ecccec3137f66e | fix(docs): Fix custom blocks basePath typo. | [
{
"change_type": "MODIFY",
"diff": "@@ -121,7 +121,7 @@ _ref:\nThe React component will receive the following props:\n- - `basePath: string`: The base path setting for the application. This variable is used to prefix route paths for example `${basePath/public/logo-square-light-theme.png`. The default base p... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(docs): Fix custom blocks basePath typo. | 1 | fix | docs |
104,828 | 20.08.2021 12:19:15 | -7,200 | e504450d518713e992bf9d8096ead5f94aad4e08 | test(listitemwrapper): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -24,6 +24,7 @@ module.exports = {\ncoverageReporters: ['html', 'text-summary', 'lcov', 'json'],\ncoverageDirectory: 'jest/coverage',\ncoverageThreshold: {\n+ './src/components/List/ListItem/ListItemWrapper.jsx': all90Covered,\n'./src/components/Table/TableBody/RowActio... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(listitemwrapper): improved unit test coverage | 1 | test | listitemwrapper |
711,597 | 20.08.2021 12:28:54 | -7,200 | c062a773c0eba525bb165484dc839337b5fd0b3e | chore: Update to TypeScript 4.3.5 | [
{
"change_type": "MODIFY",
"diff": "\"ts-jest\": \"^27.0.4\",\n\"ts-node\": \"^9.1.1\",\n\"tslint\": \"^6.1.3\",\n- \"typescript\": \"4.1.5\"\n+ \"typescript\": \"4.3.5\"\n},\n\"resolutions\": {\n\"npm-packlist\": \"1.1.12\"\n",
"new_path": "package.json",
"old_path": "package.json"
},
{
"ch... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Update to TypeScript 4.3.5 | 1 | chore | null |
401,133 | 20.08.2021 12:35:56 | 14,400 | 6223f7c594fe029ba0e099352f358e9202156111 | fix: adding in critical dependency for handleOptionClick
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -69,7 +69,7 @@ export const SearchBox: FC<SearchBoxProps> & WithStyle = React.memo(\ninputRef.current.focus();\nsetOptionsVisibilityState(false);\nonOptionSelected && onOptionSelected(option);\n- }, []),\n+ }, [onOptionSelected]),\nhandleFocus = useCallback((event: Rea... | TypeScript | MIT License | medly/medly-components | fix: adding in critical dependency for handleOptionClick (#391)
affects: @medly-components/core
Co-authored-by: Mukul Bansal <mukulbansal01@gmail.com> | 1 | fix | null |
688,457 | 20.08.2021 13:30:32 | -10,800 | a86d677a601522cb4ba41ce860e667f428dc04c1 | chore: disallow usage of lab and forms packages inside picasso code | [
{
"change_type": "DELETE",
"diff": "-{\n- \"extends\": \"./node_modules/@toptal/davinci-syntax/src/configs/.eslintrc\",\n- \"overrides\": [\n- {\n- \"files\": [\"*.example.jsx\", \"*.example.tsx\"],\n- \"rules\": {\n- \"react/no-multi-comp\": \"off\",\n- \"react/require-optimization\": \"off\",\n- \"import/... | TypeScript | MIT License | toptal/picasso | chore: disallow usage of lab and forms packages inside picasso code (#2142) | 1 | chore | null |
865,922 | 20.08.2021 13:48:15 | -7,200 | 3178a6cb4f2ffe7ae7817b510ee81307e8016ef7 | feat(app): add system-clipboard:write-text remote action | [
{
"change_type": "MODIFY",
"diff": "@@ -43,6 +43,7 @@ const {\nconst browserOpen = require('./util/browser-open');\nconst fileExplorerOpen = require('./util/file-explorer-open');\n+const clipboardWriteText = require('./util/clipboard-write-text');\nconst renderer = require('./util/renderer');\nconst errorTr... | JavaScript | MIT License | camunda/camunda-modeler | feat(app): add system-clipboard:write-text remote action | 1 | feat | app |
277,286 | 20.08.2021 14:02:45 | -7,200 | 77c66e0012c9eb1c639cd47547dcf6b65c861128 | fix: Prevent floating-point precision display in spinbox. Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -20,9 +20,12 @@ import { wave } from './ui'\nconst\nname = 'spinbox',\nspinboxProps: Spinbox = { name },\n- pushMock = jest.fn()\n-\n-const mouseEvent = { clientX: 0, clientY: 0 }\n+ pushMock = jest.fn(),\n+ mouseEvent = { clientX: 0, clientY: 0 },\n+ simulateClick = (... | Python | Apache License 2.0 | h2oai/wave | fix: Prevent floating-point precision display in spinbox. Closes #966 | 1 | fix | null |
699,191 | 20.08.2021 14:07:29 | 25,200 | 8396f894a06536a4ff165b4fac71c3e0cebba444 | fix: changesets for box and text to include core | [
{
"change_type": "MODIFY",
"diff": "---\n'@twilio-paste/box': patch\n+'@twilio-paste/core': patch\n---\n[Box]: Box now handles the case where a variant being set on the component, does not appear in the elements object set on the Customization Provider\n",
"new_path": ".changeset/lazy-pumas-reflect.md",... | TypeScript | MIT License | twilio-labs/paste | fix: changesets for box and text to include core (#1792) | 1 | fix | null |
401,147 | 20.08.2021 14:13:23 | -19,080 | 8731915186a653017910e39d79e22bb82966c2d9 | fix: update component after unmount in useAxios hook
affects: | [
{
"change_type": "MODIFY",
"diff": "import axios, { AxiosResponse } from 'axios';\n-import { useCallback, useState } from 'react';\n+import { useCallback, useEffect, useRef, useState } from 'react';\nimport { Result } from './types';\nexport const useAxios = <Data = any, Error = { message: string; variant: ... | TypeScript | MIT License | medly/medly-components | fix: update component after unmount in useAxios hook (#394)
affects: @medly-components/utils | 1 | fix | null |
902,122 | 20.08.2021 14:24:49 | -7,200 | 1a13dc040886ea4c8f1d49c3bac13a6dc2d3250b | fix(html): don't disable animations | [
{
"change_type": "MODIFY",
"diff": "@@ -169,7 +169,7 @@ module.exports = ({ timeout = 30000, ...launchOpts } = {}) => {\nbrowser: getBrowser,\nevaluate,\ngoto,\n- html: evaluate(page => page.content()),\n+ html: evaluate(page => page.content(), { animations: true }),\npage: createPage,\npdf: wrapError(creat... | JavaScript | MIT License | microlinkhq/browserless | fix(html): don't disable animations | 1 | fix | html |
386,581 | 20.08.2021 14:36:53 | -7,200 | 525e8eb8e3927e21e7b886cde0712ccb6d4c5b03 | fix(blocks-antd): Fix Descriptions block items schema | [
{
"change_type": "MODIFY",
"diff": "value: 2\n- label: label 4\nvalue: <a>value three</a>\n-- id: 'properties.title html value'\n- type: Descriptions\n- properties:\n- title: '<div style=\"color: blue;\">hello</div>'\n- items:\n- field_one: value one\n- field_two: 2\n- field_three: value three\n- field_four... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(blocks-antd): Fix Descriptions block items schema | 1 | fix | blocks-antd |
386,595 | 20.08.2021 14:47:03 | -7,200 | 00842d48153fc2b49ac6bd6cd88d73c3cce0c178 | feat(operators): Add pageId and homePageId to _location. | [
{
"change_type": "MODIFY",
"diff": "@@ -32,8 +32,10 @@ _ref:\n- `hash: string`: A string containing a '#' followed by the fragment identifier of the URL.\n- `host: string`: A string containing the host, that is the hostname, a `:`, and the port of the URL.\n- `hostname: string`: The domain of the URL.\n+ - ... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(operators): Add pageId and homePageId to _location. | 1 | feat | operators |
276,989 | 20.08.2021 14:47:23 | 10,800 | be1d9717a604ffd65d38f8cf52a2228dc633a2ba | feat(common): preventing | [
{
"change_type": "MODIFY",
"diff": "@@ -22,11 +22,11 @@ function sanitizeShadow({ shadow, spread }) {\nfunction createShadow({ level, color, depth, spread }) {\nconst shadows = [\n- `${sanitizeShadow({ shadow: umbra[level], spread })}\n+ `${sanitizeShadow({ shadow: umbra[level], spread })} \\\n${hexToRgb(co... | JavaScript | MIT License | gympass/yoga | feat(common): preventing | 1 | feat | common |
386,595 | 20.08.2021 14:47:24 | -7,200 | cde85b7fb81b4a02e631ca4381c8212e581b7fd9 | fix(docs): Fix mongodb examples in docs. | [
{
"change_type": "MODIFY",
"diff": "@@ -188,6 +188,7 @@ _ref:\nrequests:\n- id: delete_old_documents\ntype: MongoDBDeleteMany\n+ connectionId: my_mongodb_collection_id\nproperties:\nfilter:\ncreated_date:\n@@ -230,6 +231,7 @@ _ref:\nrequests:\n- id: delete_selected_document\ntype: MongoDBUpdateMany\n+ conne... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(docs): Fix mongodb examples in docs. | 1 | fix | docs |
730,417 | 20.08.2021 14:47:27 | 14,400 | a054cdca119bc94f5f0f9de941797640d68974c2 | fix(style): reduce thread border thickness | [
{
"change_type": "MODIFY",
"diff": "padding: 0 20px 0 0;\nmargin: 0 14px 0 76px;\npadding-left: 12px;\n- border-left: 4px solid rgba(0, 0, 0, .12);\n+ border-left: 2px solid rgba(0, 0, 0, .12);\n+ border-radius: 1px;\noverflow: initial;\noutline: none;\ntransition: transform 0.3s;\n",
"new_path": "packa... | JavaScript | MIT License | webex/react-widgets | fix(style): reduce thread border thickness | 1 | fix | style |
889,620 | 20.08.2021 14:55:37 | -28,800 | ae9a19af62d35309854b69de6e6e2b4cafcedae4 | feat(api): batch update book metadata | [
{
"change_type": "MODIFY",
"diff": "@@ -11,7 +11,6 @@ import org.gotson.komga.application.events.EventPublisher\nimport org.gotson.komga.application.tasks.HIGHEST_PRIORITY\nimport org.gotson.komga.application.tasks.HIGH_PRIORITY\nimport org.gotson.komga.application.tasks.TaskReceiver\n-import org.gotson.kom... | Kotlin | MIT License | gotson/komga | feat(api): batch update book metadata | 1 | feat | api |
889,620 | 20.08.2021 15:00:08 | -28,800 | 4bab0c61c7ce7b353d9e06da3d92c3f68cf9b361 | feat(webui): bulk edit book metadata
closes | [
{
"change_type": "MODIFY",
"diff": ":books=\"updateBooks\"\n/>\n+ <bulk-edit-books-dialog\n+ v-model=\"updateBulkBooksDialog\"\n+ :books=\"updateBulkBooks\"\n+ />\n+\n<edit-series-dialog\nv-model=\"updateSeriesDialog\"\n:series=\"updateSeries\"\n@@ -82,10 +87,12 @@ import {SeriesDto} from '@/types/komga-ser... | Kotlin | MIT License | gotson/komga | feat(webui): bulk edit book metadata
closes #476 | 1 | feat | webui |
711,597 | 20.08.2021 15:11:06 | -7,200 | 6c157ba9f0c3056a7a9427074a04ada68300f3ab | chore: Update to GraphQL v15.5.1 | [
{
"change_type": "MODIFY",
"diff": "\"concurrently\": \"^6.0.0\",\n\"conventional-changelog-core\": \"^4.2.2\",\n\"find\": \"^0.3.0\",\n- \"graphql\": \"15.5.0\",\n+ \"graphql\": \"15.5.1\",\n\"husky\": \"^4.3.0\",\n\"jest\": \"^27.0.6\",\n\"klaw-sync\": \"^6.0.0\",\n",
"new_path": "package.json",
"... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Update to GraphQL v15.5.1 | 1 | chore | null |
889,620 | 20.08.2021 15:28:21 | -28,800 | b528b3d56d02eb837adbe8bd19b21128f0eaf884 | fix: skip duplicate books during reading list import
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -26,3 +26,4 @@ ERR_1019 | Cannot import file that is part of an existing library\nERR_1020 | Book to upgrade does not belong to provided series\nERR_1021 | Destination file already exists\nERR_1022 | Newly imported book could not be scanned\n+ERR_1023 | Book already pr... | Kotlin | MIT License | gotson/komga | fix: skip duplicate books during reading list import
closes #622 | 1 | fix | null |
386,588 | 20.08.2021 15:34:44 | -7,200 | 6bfa83a68c355858ab8ade2d3a2e8a8df45bb6dc | fix(operators): Fix homePageId typo and update tests. | [
{
"change_type": "MODIFY",
"diff": "@@ -51,7 +51,7 @@ function _location({ arrayIndices, context, contexts, env, location, params }) {\nhref: window.location.href,\norigin: window.location.origin,\nprotocol: window.location.protocol,\n- homePageId: context.lowdefy.pageId,\n+ homePageId: context.lowdefy.home... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(operators): Fix homePageId typo and update tests. | 1 | fix | operators |
104,835 | 20.08.2021 15:48:40 | 14,400 | b5b44ddaf24fc8f593e6a520dba1cd8844dffbac | fix(datetimepicker): fix absolute date picker format | [
{
"change_type": "MODIFY",
"diff": "@@ -34,6 +34,8 @@ import { DateRange, DateTimeSelection, RelativeRange } from './date-time-picker.\n(valueChange)=\"absoluteChange($event)\"\n[value]=\"value\"\n[batchText]=\"batchText\"\n+ [dateFormat]=\"dateFormat\"\n+ [placeholder]=\"placeholder\"\n>\n</ai-date-time-ab... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(datetimepicker): fix absolute date picker format | 1 | fix | datetimepicker |
306,444 | 20.08.2021 15:53:31 | -7,200 | a0adde62eb16b102b920a9cda38297d7b8d9a544 | feat(accordion): refactor for readability & extensibility | [
{
"change_type": "ADD",
"diff": "+---\n+'@lion/accordion': minor\n+---\n+\n+Make methods for handling invoker/content protected parts of the Accordion base class, so that they can be overridden easily. Refactor for readability.\n",
"new_path": ".changeset/silent-seahorses-battle.md",
"old_path": nul... | JavaScript | MIT License | ing-bank/lion | feat(accordion): refactor for readability & extensibility | 1 | feat | accordion |
104,835 | 20.08.2021 15:55:39 | 14,400 | 9da1832f6d283dbef42863557e9ce257b063b7eb | fix(datetimepicker): remove console.log | [
{
"change_type": "MODIFY",
"diff": "@@ -314,7 +314,6 @@ export class DateTimePickerComponent implements OnChanges, OnInit {\nupdateI18nTranslationString() {\nthis.i18n.setLocale(this.language, languages.default[this.language]);\n- console.info(this.i18n.get());\n}\nformatCurrentRangeTitle() {\n",
"new_p... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(datetimepicker): remove console.log | 1 | fix | datetimepicker |
711,597 | 20.08.2021 15:56:32 | -7,200 | 5252644f978c7cd9d18385452426ab14147cbc78 | chore: Update various dependencies | [
{
"change_type": "MODIFY",
"diff": "\"lint-staged\": \"^10.5.4\",\n\"prettier\": \"^2.2.1\",\n\"ts-jest\": \"^27.0.4\",\n- \"ts-node\": \"^9.1.1\",\n+ \"ts-node\": \"^10.2.1\",\n\"tslint\": \"^6.1.3\",\n\"typescript\": \"4.3.5\"\n},\n",
"new_path": "package.json",
"old_path": "package.json"
},
{... | TypeScript | MIT License | vendure-ecommerce/vendure | chore: Update various dependencies | 1 | chore | null |
889,620 | 20.08.2021 16:02:34 | -28,800 | 9443f7e3c715b3da0ea801ea67ff4cf700958469 | feat(importer): delete sidecars when upgrading book
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -77,31 +77,34 @@ class BookImporter(\n)\n}\n- val upgradedBook =\n+ val bookToUpgrade =\nif (upgradeBookId != null) {\n- bookRepository.findByIdOrNull(upgradeBookId)?.let {\n+ bookRepository.findByIdOrNull(upgradeBookId)?.also {\nif (it.seriesId != series.id) throw Ill... | Kotlin | MIT License | gotson/komga | feat(importer): delete sidecars when upgrading book
closes #624 | 1 | feat | importer |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.