author int64 4.98k 943k | date stringdate 2017-04-15 16:45:02 2022-02-25 15:32:15 | timezone int64 -46,800 39.6k | hash stringlengths 40 40 | message stringlengths 8 468 | mods listlengths 1 16 | language stringclasses 9
values | license stringclasses 2
values | repo stringclasses 119
values | original_message stringlengths 12 491 | is_CCS int64 1 1 | commit_type stringclasses 129
values | commit_scope stringlengths 1 44 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
815,601 | 25.08.2021 23:12:44 | -28,800 | f2e09f46860bf4b553ec019dcf711ef28a591ea3 | chore: bump arc-swap from 0.4 to 1.3 | [
{
"change_type": "MODIFY",
"diff": "@@ -87,9 +87,9 @@ checksum = \"28ae2b3dec75a406790005a200b1bd89785afc02517a00ca99ecfe093ee9e6cf\"\n[[package]]\nname = \"arc-swap\"\n-version = \"0.4.8\"\n+version = \"1.3.1\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"dabe5a181f837... | Rust | MIT License | nervosnetwork/ckb | chore: bump arc-swap from 0.4 to 1.3 | 1 | chore | null |
185,950 | 25.08.2021 23:12:44 | -7,200 | f1cf91e7ef37967ed9d5e058e8f37df7557bb639 | fix: title bar alignment on macOS | [
{
"change_type": "MODIFY",
"diff": "user-select: none;\n}\n}\n+\n+ .big_sur_or_later {\n+ height: 30px !important;\n+ }\n}\n",
"new_path": "src/less/components/chrome-mac.less",
"old_path": "src/less/components/chrome-mac.less"
},
{
"change_type": "MODIFY",
"diff": "@@ -9,6 +9,14 @@ inte... | TypeScript | MIT License | electron/fiddle | fix: title bar alignment on macOS (#722) | 1 | fix | null |
306,653 | 26.08.2021 00:33:14 | -19,080 | fa82992a3afca9147e57185112783bb17d63ca66 | Test(Slider): adds test cases for slider component | [
{
"change_type": "MODIFY",
"diff": "@@ -114,12 +114,12 @@ export class Handle extends React.Component<InternalHandleProps, HandleState> {\nif (this.props.disabled) return;\nconst { stepSize, value } = this.props;\n- const { which } = event;\n+ const { keyCode } = event;\n- if (which === Keys.ARROW_LEFT) {\n... | TypeScript | MIT License | innovaccer/design-system | Test(Slider): adds test cases for slider component | 1 | test | Slider |
306,635 | 26.08.2021 00:36:33 | -19,080 | 0443446cd852b985d3f4c5ccd1cd28a1b18f7705 | test(ChatMessage): adds test cases for ChatMessage Component | [
{
"change_type": "MODIFY",
"diff": "@@ -34,7 +34,7 @@ export const Box = (props: InternalBoxProps) => {\n);\nreturn (\n- <div {...baseProps} className={MessageClass} onClick={onClick}>\n+ <div {...baseProps} className={MessageClass} onClick={onClick} data-test=\"DesignSystem-ChatMessage--Box\">\n{children}\... | TypeScript | MIT License | innovaccer/design-system | test(ChatMessage): adds test cases for ChatMessage Component | 1 | test | ChatMessage |
815,585 | 26.08.2021 01:50:15 | -28,800 | ae67511584c7750700c6b4cf760880f37f0361d3 | feat: improve ci workflows | [
{
"change_type": "MODIFY",
"diff": "@@ -47,5 +47,6 @@ jobs:\nREPOSITPRY: ${{ github.repository }}\nTOKEN: ${{ secrets.WORKFLOW_TOKEN }}\nPR_COMMIT_SHA: ${{ github.event.pull_request.head.sha }}\n+ PR_COMMONS_BODY: \"${{ github.event.pull_request.body }}\"\nCOMMIT_SHA: ${{ github.sha }}\nworkspace: ${{ githu... | Rust | MIT License | nervosnetwork/ckb | feat: improve ci workflows | 1 | feat | null |
530,289 | 26.08.2021 03:36:10 | 25,200 | 36a76faf81cf8278e7787aa5e0c6da2d300779a5 | fix: release workflow using npm token where github token expected
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": "@@ -560,6 +560,17 @@ test('githubOptions.workflows:false disables github workflows but not github int\nexpect(Object.keys(output).filter(p => p.startsWith('.github/'))).toStrictEqual(['.github/pull_request_template.md']);\n});\n+test('using GitHub npm registry will defaul... | TypeScript | Apache License 2.0 | projen/projen | fix: release workflow using npm token where github token expected (#1005)
Fixes #1004
---
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. | 1 | fix | null |
386,595 | 26.08.2021 08:46:41 | -7,200 | e4dd10e4b35e6fc957abe955d4c1a5b6767ecc66 | fix(renderer): Fix loading skeletons, closes | [
{
"change_type": "MODIFY",
"diff": "@@ -28,11 +28,7 @@ const Block = ({ block, Blocks, context, isRoot, lowdefy }) => {\nlowdefy.updaters[block.id] = () => setUpdate(updates + 1);\nreturn (\n<ErrorBoundary>\n- <Suspense\n- fallback={() => (\n- <LoadingBlock block={block} highlightBorders={lowdefy.lowdefyGlo... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(renderer): Fix loading skeletons, closes #798 | 1 | fix | renderer |
126,276 | 26.08.2021 09:01:52 | 10,800 | e6293a87a5202479772a34cd4251a76292d63320 | test(pkg/server): minor error checking changes | [
{
"change_type": "MODIFY",
"diff": "@@ -1065,7 +1065,7 @@ func TestServerUpdateConfigItem(t *testing.T) {\nreturn nil, errors.New(errReadFile)\n}\nexpectedErr :=\n- fmt.Errorf(\"error reading config file %s: %s\", configFile, errReadFile)\n+ fmt.Errorf(\"error reading config file '%s'. Reason: %s\", configF... | Go | Apache License 2.0 | codenotary/immudb | test(pkg/server): minor error checking changes
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | test | pkg/server |
126,276 | 26.08.2021 09:08:23 | 10,800 | f4dc7811461cfb09b025c696e28bae9d21aab65c | chore(embedded/sql): expose primary key index id
chore(pkg/client): adjust row mapping | [
{
"change_type": "MODIFY",
"diff": "@@ -563,7 +563,7 @@ func keyFromIDs(ids []uint64) string {\nfunc (e *Engine) loadMaxPK(dataSnap *store.Snapshot, table *Table) (TypedValue, error) {\npkReaderSpec := &store.KeyReaderSpec{\n- Prefix: e.mapKey(PIndexPrefix, EncodeID(table.db.id), EncodeID(table.id), EncodeI... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/sql): expose primary key index id
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
chore(pkg/client): adjust row mapping
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/sql |
815,585 | 26.08.2021 09:33:49 | -28,800 | 86e1f9f4b7b40e2cbf08f0fed265f9dd3c6412fc | feat: upload coverage report artifact | [
{
"change_type": "MODIFY",
"diff": "@@ -36,3 +36,8 @@ jobs:\nfiles: ${{github.workspace}}/lcov-integration-test.info\nflags: integration\noverride_commit: ${{github.sha}}\n+ - uses: actions/upload-artifact@v2\n+ with:\n+ name: coverage_report\n+ path: ${{github.workspace}}/*.info\n+ if-no-files-found: error... | Rust | MIT License | nervosnetwork/ckb | feat: upload coverage report artifact | 1 | feat | null |
679,913 | 26.08.2021 09:57:25 | -7,200 | a309faca831651f611b9b056d9c7587f85b60087 | feat(api): add DeepArrayValue type | [
{
"change_type": "MODIFY",
"diff": "+import type { TypedArray } from \"./typedarray\";\n+\n/**\n- * Returns an array's value type.\n+ * Returns an array's value type. Assumes array is homogeneous (only type of\n+ * first element will be considered).\n*/\nexport type ArrayValue<T extends unknown[]> = T[0];\n... | TypeScript | Apache License 2.0 | thi-ng/umbrella | feat(api): add DeepArrayValue type | 1 | feat | api |
276,986 | 26.08.2021 10:10:49 | 10,800 | 546196b26cb9a17c289d67db0df46e8a57747528 | feat(icons): add TimeFilled icon | [
{
"change_type": "MODIFY",
"diff": "@@ -118,6 +118,7 @@ import {\nSystemStatus,\nPriceTag,\nTime,\n+ TimeFilled,\nToken,\nTrash,\nTrendingUp,\n@@ -257,6 +258,7 @@ export {\nSystemStatus,\nPriceTag,\nTime,\n+ TimeFilled,\nToken,\nTrash,\nTrendingUp,\n",
"new_path": "packages/icons/src/index.js",
"old... | JavaScript | MIT License | gympass/yoga | feat(icons): add TimeFilled icon | 1 | feat | icons |
401,147 | 26.08.2021 10:18:54 | -19,080 | ffdcddc8f07db55a129612b4e542508f8929788d | docs: update modal component docs
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -10,8 +10,17 @@ Basic modal component. You can play with the component in the canvas tab.\nModal consists of three sections Header, Content and Actions. All of these you can directly use from Modal component only like bellow . . .\n-```typescript\n-<Modal open={openSta... | TypeScript | MIT License | medly/medly-components | docs: update modal component docs (#400)
affects: @medly-components/core | 1 | docs | null |
873,699 | 26.08.2021 10:21:43 | -7,200 | a4dc0f6f5f1b878d4428c9ac90bea41713a8da9a | fix: do not resubscribe to errors on every render | [
{
"change_type": "MODIFY",
"diff": "@@ -44,7 +44,7 @@ export const FieldWrapper: React.FC<FieldWrapperProps> = function (props: FieldW\nreturn field.onSchemaErrorsChanged((errors: unknown[]) => {\nsetHasErrors((errors || []).length > 0);\n});\n- });\n+ }, [field]);\nreturn (\n<FieldGroup\n",
"new_path":... | TypeScript | MIT License | contentful/field-editors | fix: do not resubscribe to errors on every render (#808) | 1 | fix | null |
276,989 | 26.08.2021 10:37:15 | 10,800 | afe0acd9c4fc10b3f51bfdeced5f40be7efea900 | docs(tag.informative): udjusting Tag.Informative positionings | [
{
"change_type": "MODIFY",
"diff": "@@ -3,10 +3,14 @@ import { Link as GatsbyLink } from 'gatsby';\n### Usage\n```javascript state\n-const Wrapper = styled.div`\n- display: flex;\n- flex-direction: column;\n-`;\n+const Wrapper = props => (\n+ <Box\n+ display=\"inline-flex\"\n+ alignItems=\"center\"\n+ flexD... | JavaScript | MIT License | gympass/yoga | docs(tag.informative): udjusting Tag.Informative positionings | 1 | docs | tag.informative |
276,989 | 26.08.2021 10:39:22 | 10,800 | df62dd5d3092802f7c402b4da68b7ee27c6433cc | chore(expo): adding to expo dependencies | [
{
"change_type": "MODIFY",
"diff": "@@ -59,6 +59,7 @@ const packages = [\n];\nconst peerDependencies = [\n+ { path: '@react-native-picker/picker' },\n{ path: 'styled-components' },\n{ path: 'react-native-svg' },\n{ path: 'react-is' },\n",
"new_path": "packages/doc/src/components/CodeBlock/CodeBlock.jsx"... | JavaScript | MIT License | gympass/yoga | chore(expo): adding @rect-native-picker to expo dependencies
Co-authored-by: @coelhucas | 1 | chore | expo |
386,581 | 26.08.2021 10:45:29 | -7,200 | bb64d3e850b0c60a5129babbb5b144a577d8635d | fix(docs): Update node server docs. | [
{
"change_type": "MODIFY",
"diff": "@@ -41,29 +41,55 @@ _ref:\nTo add the server as a dependency, run\n```\n- npm install @lowdefy/server-node --save\n+ npm install @lowdefy/server-node --save --save-exact\n```\n- ### Step 3 - Build the Lowdefy project\n+ ### Step 3 - Add the Lowdefy CLI to you project as a... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(docs): Update node server docs. | 1 | fix | docs |
126,276 | 26.08.2021 10:45:53 | 10,800 | 766b37c0ec83bfa02f06b0755c6fc11a12542e73 | chore(embedded/tbtree): adjust seekKey based on prefix even when a value is set | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,7 @@ limitations under the License.\npackage tbtree\nimport (\n+ \"bytes\"\n\"encoding/binary\"\n\"errors\"\n\"io\"\n@@ -115,20 +116,21 @@ func (s *Snapshot) NewReader(spec *ReaderSpec) (r *Reader, err error) {\nseekKey := spec.SeekKey\ninclusiveSeek := spec.... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/tbtree): adjust seekKey based on prefix even when a value is set
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/tbtree |
815,577 | 26.08.2021 10:47:45 | -28,800 | fca5c4d301c3a805f9c31f05be3be53e39bb7d8d | chore: impl review comments | [
{
"change_type": "MODIFY",
"diff": "@@ -24,6 +24,9 @@ pub(crate) const ADDR_COUNT_LIMIT: usize = 16384;\nconst ADDR_TIMEOUT_MS: u64 = 7 * 24 * 3600 * 1000;\n/// The timeout that peer's address should be added to the feeler list again\npub(crate) const ADDR_TRY_TIMEOUT_MS: u64 = 3 * 24 * 3600 * 1000;\n+/// W... | Rust | MIT License | nervosnetwork/ckb | chore: impl review comments | 1 | chore | null |
276,989 | 26.08.2021 11:16:16 | 10,800 | 168ffac6d073ce63b1420cc717cc70a6e003d033 | refactor(avatar): using RNImage in styled | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ import { Image as RNImage } from 'react-native';\nimport Box from '../../Box';\nimport Icon from '../../Icon';\n-const Image = styled.Image`\n+const Image = styled(RNImage)`\nwidth: 100%;\nheight: 100%;\n`;\n",
"new_path": "packages/yoga/src/Avatar/nat... | JavaScript | MIT License | gympass/yoga | refactor(avatar): using RNImage in styled
Co-authored-by: @willianpossa | 1 | refactor | avatar |
667,713 | 26.08.2021 11:17:27 | -28,800 | 113c095d0cf794108df96ec265a25c814d015a84 | fix(android): add useAndroidX to sdk gradle properties | [
{
"change_type": "MODIFY",
"diff": "android.enableD8=true\nandroid.enableR8=false\n+android.enableJetifier=true\n+android.useAndroidX=true\n#android base config\nCOMPILE_SDK_VERSION=29\n",
"new_path": "android/sdk/gradle.properties",
"old_path": "android/sdk/gradle.properties"
},
{
"change_t... | C++ | Apache License 2.0 | tencent/hippy | fix(android): add useAndroidX to sdk gradle properties | 1 | fix | android |
276,989 | 26.08.2021 11:27:33 | 10,800 | afb9d0fd6488fefa0b57b4b23a042741138db4ee | refactor(expo): adding peerDependencies to expo snack dynamically | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\nimport { node, bool, oneOf } from 'prop-types';\n+import yogaPkg from '@gympass/yoga/package.json';\n+import iconsPkg from '@gympass/yoga-icons/package.json';\n+import systemPkg from '@gympass/yoga-system/package.json';\n+\nimport CodeBlockCont... | JavaScript | MIT License | gympass/yoga | refactor(expo): adding peerDependencies to expo snack dynamically
Co-authored-by: @tcK1 | 1 | refactor | expo |
730,417 | 26.08.2021 11:31:12 | 14,400 | 2445285a72d84f1eddcdba141be378a48a6e9abd | fix(style): maintain font consistency | [
{
"change_type": "MODIFY",
"diff": "}\n.pendingStatusText {\n- font-family: 'CiscoSansTT Light', 'Helvetica Neue', Arial;\n+ font-family: 'CiscoSansTT Regular', 'Helvetica Neue', Arial;\nfont-size: 12px;\nline-height: 20px;\nletter-spacing: .3px;\ndisplay: flex;\nflex: 1 1 auto;\nalign-items: center;\n- fon... | JavaScript | MIT License | webex/react-widgets | fix(style): maintain font consistency | 1 | fix | style |
104,857 | 26.08.2021 11:40:46 | 10,800 | 3370c2c80dd4f51c190bb2a715e8e13d8ae58f07 | chore(test): minor tests updates | [
{
"change_type": "MODIFY",
"diff": "@@ -295,7 +295,11 @@ const List = forwardRef((props, ref) => {\n{!isLoading ? (\n<>{listItems.length ? listItems : emptyContent}</>\n) : (\n- <SkeletonText className={`${iotPrefix}--list--skeleton`} width=\"90%\" />\n+ <SkeletonText\n+ className={`${iotPrefix}--list--skel... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | chore(test): minor tests updates | 1 | chore | test |
667,636 | 26.08.2021 11:55:47 | -28,800 | f6717be35c5d42d27bfaea0b41f7795efbf14f22 | fix(hippy-react): add callUIFunction default options | [
{
"change_type": "MODIFY",
"diff": "@@ -45,7 +45,7 @@ function unregisterNativeEventHub(eventName: string) {\nfunction receiveNativeEvent(nativeEvent: EventParam) {\ntrace(...componentName, 'receiveNativeEvent', nativeEvent);\n- if (!nativeEvent || !(nativeEvent instanceof Array) || nativeEvent.length < 2) ... | C++ | Apache License 2.0 | tencent/hippy | fix(hippy-react): add callUIFunction default options | 1 | fix | hippy-react |
730,538 | 26.08.2021 12:05:39 | -7,200 | 553fdcc7efdcf2595107fa474bd3a4f111fdcf5c | feat(internal-conversation): allow space avatars to be uploaded | [
{
"change_type": "MODIFY",
"diff": "@@ -1115,6 +1115,8 @@ const Conversation = WebexPlugin.extend({\n* @returns {Promise<Activity>}\n*/\nassign(conversation, avatar) {\n+ const uploadOptions = {role: 'spaceAvatar'};\n+\nif ((avatar.size || avatar.length) > 1024 * 1024) {\nreturn Promise.reject(new Error('Ro... | JavaScript | MIT License | webex/webex-js-sdk | feat(internal-conversation): allow space avatars to be uploaded | 1 | feat | internal-conversation |
104,828 | 26.08.2021 12:18:05 | -7,200 | 4bb62480fec0017cfaef03d3f5302286559257ea | test(editorutils): improved unit test coverage
quote> | [
{
"change_type": "MODIFY",
"diff": "@@ -25,6 +25,7 @@ module.exports = {\ncoverageReporters: ['html', 'text-summary', 'lcov', 'json'],\ncoverageDirectory: 'jest/coverage',\ncoverageThreshold: {\n+ './src/components/DashboardEditor/editorUtils.jsx': all90Covered,\n'./src/components/TimePickerSpinner/TimePick... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(editorutils): improved unit test coverage
quote> #2553 | 1 | test | editorutils |
217,922 | 26.08.2021 12:27:48 | -7,200 | 8ee18609f6914ba7c9204113cb4a03b5d4509354 | perf(list): better loading performances with new menu system | [
{
"change_type": "MODIFY",
"diff": "</ng-container>\n<ng-container *ngIf=\"!overlay\">\n- <button (click)=\"$event.stopPropagation()\" [disabled]=\"permissionLevel < 20\"\n+ <button (click)=\"$event.stopPropagation();openMenu($event)\" [disabled]=\"permissionLevel < 20\"\ntutorialStep=\"TUTORIAL.LIST.More_a... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | perf(list): better loading performances with new menu system | 1 | perf | list |
777,396 | 26.08.2021 12:50:58 | 21,600 | 4ab688c7197b184463013e89da020634882dd0f8 | fix: load pre-0.13.8 checkpoints properly
Als add test for loading old formats of keras. | [
{
"change_type": "ADD",
"diff": "+:orphan:\n+\n+**Fixes**\n+\n+- Properly load very old checkpoints with TFKerasTrial (pre-0.13.8).\n",
"new_path": "docs/release-notes/2876-ancient-checkpoints.txt",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "@@ -573,9 +573,7 @@ class TFKeras... | Python | Apache License 2.0 | determined-ai/determined | fix: load pre-0.13.8 checkpoints properly (#2876)
Als add test for loading old formats of keras. | 1 | fix | null |
265,942 | 26.08.2021 13:28:57 | 14,400 | 176dbb5223f4442d10fd098ffa2cda5cf12144f2 | fix: update getLabels definition to actually allow no arguments when used in typescript | [
{
"change_type": "MODIFY",
"diff": "@@ -2439,7 +2439,7 @@ class Bucket extends ServiceObject {\n);\n}\n- getLabels(options: GetLabelsOptions): Promise<GetLabelsResponse>;\n+ getLabels(options?: GetLabelsOptions): Promise<GetLabelsResponse>;\ngetLabels(callback: GetLabelsCallback): void;\ngetLabels(options: ... | TypeScript | Apache License 2.0 | googleapis/nodejs-storage | fix: update getLabels definition to actually allow no arguments when used in typescript (#1559) | 1 | fix | null |
386,595 | 26.08.2021 13:29:17 | -7,200 | 5c31dacda32ec8688dcf6605756c6a1262867adf | fix(docs): Add responsive layout docs and video. | [
{
"change_type": "MODIFY",
"diff": "@@ -320,6 +320,56 @@ _ref:\n- `size`: _String_ | _Number_ - Set the [`flex-basis`](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis) CSS property. Default `auto`.\n- `span`: _Number_ - Number of grid cells the block should occupy.\n+ ### Responsive layouts\n+ -... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(docs): Add responsive layout docs and video. | 1 | fix | docs |
266,154 | 26.08.2021 13:30:57 | 25,200 | c5ad4973ea03788cac2c76c5168483279edf1b3d | refactor(owl-bot): Add more detail to invalid file error messages
* refactor(owl-bot): Add more detail to invalid file error messages
Fixes
* refactor: Improve error message with additional details | [
{
"change_type": "MODIFY",
"diff": "@@ -272,14 +272,18 @@ export async function refreshConfigs(\nyaml.load(lockContent) as Record<string, any>\n);\n} catch (e) {\n- logger.error(\n- `${repoFull} has an invalid ${owlBotLockPath} file: ${e.message}`\n- );\n+ logger.error(`${repoFull} has an invalid ${owlBotLo... | TypeScript | Apache License 2.0 | googleapis/repo-automation-bots | refactor(owl-bot): Add more detail to invalid file error messages (#2365)
* refactor(owl-bot): Add more detail to invalid file error messages
Fixes #2252
* refactor: Improve error message with additional details | 1 | refactor | owl-bot |
126,276 | 26.08.2021 13:42:03 | 10,800 | 5b64e83cbdca35a8a95c2f78a101108be50b0cf9 | feat(embedded/tbtree): include endKey to instruct scan termination | [
{
"change_type": "MODIFY",
"diff": "@@ -23,10 +23,11 @@ type Reader struct {\nsnapshot *Snapshot\nid int\nseekKey []byte\n+ endKey []byte\nprefix []byte\ninclusiveSeek bool\n+ inclusiveEnd bool\ndescOrder bool\n- asBeforeTs uint64\npath path\nleafNode *leafNode\noffset int\n@@ -35,8 +36,10 @@ type Reader st... | Go | Apache License 2.0 | codenotary/immudb | feat(embedded/tbtree): include endKey to instruct scan termination
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | feat | embedded/tbtree |
730,467 | 26.08.2021 13:45:18 | 21,600 | cb329d6a85a7739c35a86d8c638e89f86b4e1e21 | fix(board): fix unit tests | [
{
"change_type": "MODIFY",
"diff": "@@ -174,8 +174,7 @@ describe('plugin-board', () => {\n.then(() => {\nassert.calledWith(webex.request, sinon.match({\nmethod: 'PATCH',\n- api: 'board',\n- resource: `/channels/${boardId}`,\n+ uri: channel.channelUrl,\nbody: {\nimage: {\nurl: fakeURL,\n",
"new_path": "p... | JavaScript | MIT License | webex/webex-js-sdk | fix(board): fix unit tests | 1 | fix | board |
306,309 | 26.08.2021 13:48:20 | -3,600 | c0c0bf659b4af43932250fae9842165b5caaa667 | fix: include the new all --fields | [
{
"change_type": "MODIFY",
"diff": "@@ -571,14 +571,7 @@ The following notes are general guidelines, please leave a comment in your pull\n2. In the infracost repo, run `git tag vx.y.z && git push origin vx.y.z`\n3. Wait for the GH Actions to complete, the [newly created draft release](https://github.com/inf... | Go | Apache License 2.0 | infracost/infracost | fix: include the new all --fields (#918) | 1 | fix | null |
104,828 | 26.08.2021 14:05:46 | -7,200 | 7d68e4a9f041d8cb2e400a4dcd4440266cf1fb54 | test(thresholdsformitem): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -52,6 +52,7 @@ module.exports = {\n'./src/components/ComposedStructuredList/ComposedStructuredList.jsx': all90Covered,\n'./src/components/NavigationBar/NavigationBar.jsx': all90Covered,\n'./src/components/TileCatalog/CatalogContent.jsx': all90Covered,\n+ './src/compone... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(thresholdsformitem): improved unit test coverage
#2564 | 1 | test | thresholdsformitem |
126,276 | 26.08.2021 14:11:54 | 10,800 | 33c0f74ab17ed54a16c2201417decc29503e07be | test(embedded/tbtree): unit testing with explicit endkey | [
{
"change_type": "MODIFY",
"diff": "@@ -104,6 +104,59 @@ func TestReaderAscendingScan(t *testing.T) {\nrequire.Equal(t, ErrAlreadyClosed, err)\n}\n+func TestReaderAscendingScanWithEndingKey(t *testing.T) {\n+ tbtree, err := Open(\"test_tree_rasc_ending\", DefaultOptions().WithMaxNodeSize(MinNodeSize))\n+ re... | Go | Apache License 2.0 | codenotary/immudb | test(embedded/tbtree): unit testing with explicit endkey
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | test | embedded/tbtree |
126,276 | 26.08.2021 14:20:05 | 10,800 | 9266a8a4dab3714044f68d6d04d50b3f77a223b1 | feat(embedded/store): leverage endKey from tbtree key reader | [
{
"change_type": "MODIFY",
"diff": "@@ -36,8 +36,10 @@ type KeyReader struct {\ntype KeyReaderSpec struct {\nSeekKey []byte\n+ EndKey []byte\nPrefix []byte\nInclusiveSeek bool\n+ InclusiveEnd bool\nDescOrder bool\n}\n@@ -79,8 +81,10 @@ func (s *Snapshot) NewKeyReader(spec *KeyReaderSpec) (*KeyReader, error)... | Go | Apache License 2.0 | codenotary/immudb | feat(embedded/store): leverage endKey from tbtree key reader
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | feat | embedded/store |
104,828 | 26.08.2021 14:36:56 | -7,200 | 0bbd3e6b8818f0df735f8b80ea675197cfdb7913 | test(imagecardformcontent): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -31,6 +31,7 @@ module.exports = {\n'./src/components/List/ListItem/ListItemWrapper.jsx': all90Covered,\n'./src/components/Table/TableBody/RowActionsCell/RowActionsError.jsx': all90Covered,\n'./src/components/Breadcrumb/Breadcrumb.jsx': all90Covered,\n+ './src/component... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(imagecardformcontent): improved unit test coverage
#2571 | 1 | test | imagecardformcontent |
276,989 | 26.08.2021 14:41:20 | 10,800 | 8ea967ebc37a6a96b702343ce5d39e015b5f9f3f | refactor(avatar): remove styled reference | [
{
"change_type": "MODIFY",
"diff": "import React from 'react';\n-import styled from 'styled-components';\nimport { BuildingFilled } from '@gympass/yoga-icons';\nimport { string, func } from 'prop-types';\n-import { Image as RNImage } from 'react-native';\n+import { Image } from 'react-native';\nimport Box f... | JavaScript | MIT License | gympass/yoga | refactor(avatar): remove styled reference | 1 | refactor | avatar |
815,577 | 26.08.2021 14:46:24 | -28,800 | ab7e580dbd8b8d2a86b0409f585c11932c98a361 | perf: regex new is expensive | [
{
"change_type": "MODIFY",
"diff": "# This file is automatically @generated by Cargo.\n# It is not intended for manual editing.\n+version = 3\n+\n[[package]]\nname = \"addr2line\"\nversion = \"0.15.2\"\n@@ -1306,6 +1308,7 @@ version = \"0.100.0-pre\"\ndependencies = [\n\"ckb-fixed-hash\",\n\"linked-hash-map... | Rust | MIT License | nervosnetwork/ckb | perf: regex new is expensive | 1 | perf | null |
127,946 | 26.08.2021 14:59:12 | -10,800 | 69762b3b81935785d31890e3b8a20c16be5b1f74 | fix: LogoBetaddaFull colours | [
{
"change_type": "MODIFY",
"diff": "@@ -9,6 +9,7 @@ const sharedDefaultProps = '';\nconst customDefaultProps = {\nLogoSportsbet: 'color: \"bulma.100\",',\nLogoSportsbetSponsor: 'color: \"bulma.100\",',\n+ LogoBetaddaFull: 'color: \"goku.100\",',\nPatternCircles: 'color: \"piccolo.100\",',\nPatternRipple: 'c... | TypeScript | MIT License | coingaming/moon-design | fix: LogoBetaddaFull colours (#1348) | 1 | fix | null |
667,635 | 26.08.2021 15:02:03 | -28,800 | c6c3962c0148e0aa7345aa22fb6301f7bae21b22 | refactor(ios): delete debug log from layout code | [
{
"change_type": "MODIFY",
"diff": "@@ -134,9 +134,6 @@ MeasureResult* MTTLayoutCache::useMeasureCacheIfPossible(MTTSize availableSize,\n}\nif (widthCanUse && heightCanUse) {\n-#ifdef __DEBUG__\n- MTTLogd(\"cache: action:%d\\n\", cacheMeasure.layoutAction);\n-#endif\nreturn &cacheMeasure;\n}\n}\n@@ -154,9 +... | C++ | Apache License 2.0 | tencent/hippy | refactor(ios): delete debug log from layout code | 1 | refactor | ios |
815,598 | 26.08.2021 15:38:21 | -28,800 | cd9c9815ebb8433d65a08389d52f08204b359073 | chore: use rust-toolchain to override toolchain | [
{
"change_type": "MODIFY",
"diff": "@@ -17,7 +17,9 @@ jobs:\n- uses: actions-rs/toolchain@v1\nwith:\ntoolchain: nightly\n- override: true\n+ - name: overwrite toolchain\n+ # It's easier to clean than `rustup override`\n+ run: echo nightly > rust-toolchain\n- name: unit coverage\nrun: make cov\n- name: integ... | Rust | MIT License | nervosnetwork/ckb | chore: use rust-toolchain to override toolchain | 1 | chore | null |
386,595 | 26.08.2021 15:47:55 | -7,200 | 127642294ac962ac215303612e16455e395860d4 | fix(build): Add async to actions schema. | [
{
"change_type": "MODIFY",
"diff": "\"additionalProperties\": false,\n\"required\": [\"id\", \"type\"],\n\"properties\": {\n+ \"async\": {\n+ \"type\": \"boolean\",\n+ \"errorMessage\": {\n+ \"type\": \"Action \\\"async\\\" should be a boolean.\"\n+ }\n+ },\n\"id\": {\n\"type\": \"string\",\n\"errorMessage\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(build): Add async to actions schema. | 1 | fix | build |
749,519 | 26.08.2021 15:58:38 | 14,400 | 29778379269e1de48f12ae7fe3097b1f8923f5c5 | chore(changelog): add v8.39.1 [skip ci] | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,57 @@ _Note: Gaps between patch versions are faulty, broken or test releases._\n<!-- DO NOT MODIFY BELOW THIS COMMENT -->\n<!-- insert-new-changelog-here -->\n+\n+## v8.39.1 (2021-08-26)\n+\n+#### :bug: Bug Fix\n+* `dropdowns`\n+ * [#1168](https://github.com/... | TypeScript | Apache License 2.0 | zendeskgarden/react-components | chore(changelog): add v8.39.1 [skip ci] | 1 | chore | changelog |
815,601 | 26.08.2021 16:01:21 | -28,800 | 5db28c4b357d4447b674e031176a4ab49c07cc22 | fix: tx-pool snapshot consistency | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,7 @@ ckb-chain-spec = { path = \"../spec\", version = \"= 0.100.0-pre\" }\nckb-store = { path = \"../store\", version = \"= 0.100.0-pre\" }\nckb-db = { path = \"../db\", version = \"= 0.100.0-pre\" }\nckb-proposal-table = { path = \"../util/proposal-table\", ... | Rust | MIT License | nervosnetwork/ckb | fix: tx-pool snapshot consistency | 1 | fix | null |
730,428 | 26.08.2021 16:50:56 | 0 | bc5b161d9c09ffd8a397e923d22e178acd706f92 | chore(release): 0.32.0 [skip ci] | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+## [0.32.0](https://github.com/webex/react-widgets/compare/v0.31.0...v0.32.0) (2021-08-26)\n+\n... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.32.0 [skip ci] | 1 | chore | release |
730,428 | 26.08.2021 17:33:26 | 0 | 3eb5be0b6bb0252f60426de7c91478dc77930bbe | chore(release): 0.33.0 [skip ci] | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+## [0.33.0](https://github.com/webex/react-widgets/compare/v0.32.0...v0.33.0) (2021-08-26)\n+\n... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.33.0 [skip ci] | 1 | chore | release |
104,828 | 26.08.2021 17:36:35 | -7,200 | 9acba5d642361f631136e440ae5af445bac84cbb | test(scrollingcontrols): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -41,6 +41,7 @@ module.exports = {\n'./src/components/Card/CardRangePicker.jsx': all90Covered,\n'./src/components/TableCard/tableCardUtils.jsx': all90Covered,\n'./src/components/Table/TableBody/RowActionsCell/RowActionsCell.jsx': all90Covered,\n+ './src/components/MapCa... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(scrollingcontrols): improved unit test coverage | 1 | test | scrollingcontrols |
126,276 | 26.08.2021 17:42:10 | 10,800 | edc83779a90f1d58046028927d2dcad17d723ce5 | chore(embedded/sql): leverage endKey to optimize indexing scanning | [
{
"change_type": "MODIFY",
"diff": "@@ -1164,8 +1164,7 @@ func TestIndexing(t *testing.T) {\nrequire.NotNil(t, scanSpecs)\nrequire.NotNil(t, scanSpecs.index)\nrequire.True(t, scanSpecs.index.isPrimary())\n- require.Empty(t, scanSpecs.valuesByColID)\n- require.Zero(t, scanSpecs.fixedValuesCount)\n+ require.E... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/sql): leverage endKey to optimize indexing scanning
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/sql |
126,276 | 26.08.2021 17:54:57 | 10,800 | 179cca8e8f50cf108c4df7ea46df30d620882b28 | fix(embedded/sql): consider boolean type in maxKeyVal | [
{
"change_type": "MODIFY",
"diff": "@@ -938,9 +938,13 @@ func EncodeID(id uint64) []byte {\nfunc maxKeyVal(colType SQLValueType) []byte {\nswitch colType {\n+ case BooleanType:\n+ {\n+ return mKeyVal[:EncLenLen+1]\n+ }\ncase IntegerType:\n{\n- return mKeyVal[:EncIDLen]\n+ return mKeyVal[:EncLenLen+EncIDLen]... | Go | Apache License 2.0 | codenotary/immudb | fix(embedded/sql): consider boolean type in maxKeyVal
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | fix | embedded/sql |
915,101 | 26.08.2021 18:14:34 | -7,200 | df08c7fca52bee51a3a379ef675dc9ac71641b9f | fix: typo in errors.go | [
{
"change_type": "MODIFY",
"diff": "@@ -31,7 +31,7 @@ var (\nErrNotFound = &fosite.RFC6749Error{\nCodeField: http.StatusNotFound,\nErrorField: http.StatusText(http.StatusNotFound),\n- DescriptionField: \"Unable to located the requested resource\",\n+ DescriptionField: \"Unable to locate the requested resour... | Go | Apache License 2.0 | ory/hydra | fix: typo in errors.go (#2699) | 1 | fix | null |
426,654 | 26.08.2021 18:18:00 | -10,800 | 09f0fed866ebb3995fdc648e0d8d27d9e084d342 | docs: document npm test and start scripts | [
{
"change_type": "MODIFY",
"diff": "@@ -28,6 +28,20 @@ Install Web Dev Server:\nnpm i --save-dev @web/dev-server\n```\n+Then add the following to the `\"scripts\"` section in `package.json`:\n+\n+```\n+\"start\": \"web-dev-server --node-resolve --open\"\n+```\n+\n+Or use the shorthand:\n+\n+```\n+\"start\":... | TypeScript | MIT License | modernweb-dev/web | docs: document npm test and start scripts | 1 | docs | null |
104,828 | 26.08.2021 18:20:33 | -7,200 | 786245cb7ac0742020f125045865b484c93c6461 | test(errortable): improved unit test coverage | [
{
"change_type": "MODIFY",
"diff": "@@ -30,6 +30,7 @@ module.exports = {\n'./src/components/ValueCard/ValueRenderer.jsx': all90Covered,\n'./src/components/List/ListItem/ListItemWrapper.jsx': all90Covered,\n'./src/components/Table/TableBody/RowActionsCell/RowActionsError.jsx': all90Covered,\n+ './src/compone... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | test(errortable): improved unit test coverage
#2585 | 1 | test | errortable |
71,412 | 26.08.2021 19:30:15 | -7,200 | 5cec2f8c4f2e08838e20b9757cda446f428b80c9 | chore(rds): add new versions of MariaDB, MySQL and SQL Server engines
Added every change as a separate commit, feel free to rebase as you see fit.
*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": "@@ -247,6 +247,8 @@ export class MariaDbEngineVersion {\npublic static readonly VER_10_2_32 = MariaDbEngineVersion.of('10.2.32', '10.2');\n/** Version \"10.2.37\". */\npublic static readonly VER_10_2_37 = MariaDbEngineVersion.of('10.2.37', '10.2');\n+ /** Version \"10.2.3... | TypeScript | Apache License 2.0 | aws/aws-cdk | chore(rds): add new versions of MariaDB, MySQL and SQL Server engines (#16115)
Added every change as a separate commit, feel free to rebase as you see fit.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | chore | rds |
730,428 | 26.08.2021 19:41:34 | 0 | ace9479a8a38c2ba3e6fc1cf05684282019122f6 | chore(release): 0.34.0 [skip ci] | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+## [0.34.0](https://github.com/webex/react-widgets/compare/v0.33.0...v0.34.0) (2021-08-26)\n+\n... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.34.0 [skip ci] | 1 | chore | release |
71,433 | 26.08.2021 19:53:35 | -3,600 | 04d45474d80d3687a3fdf27f4d76dd1c8521eff0 | fix(docs): unnecessary log group in Step Functions state machine x-ray example
Removes an unnecessary log group definition from the code example for enabling X-Ray in the State Machine.
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": "@@ -593,8 +593,6 @@ new sfn.StateMachine(stack, 'MyStateMachine', {\nEnable X-Ray tracing for StateMachine:\n```ts\n-const logGroup = new logs.LogGroup(stack, 'MyLogGroup');\n-\nnew sfn.StateMachine(stack, 'MyStateMachine', {\ndefinition: sfn.Chain.start(new sfn.Pass(stac... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(docs): unnecessary log group in Step Functions state machine x-ray example (#16159)
Removes an unnecessary log group definition from the code example for enabling X-Ray in the State Machine.
fixes https://github.com/aws/aws-cdk/issues/16158
----
*By submitting this pull request, I confirm that my contribu... | 1 | fix | docs |
730,428 | 26.08.2021 19:54:52 | 0 | fc73362ba0bee199878f50ecccc15c431bec3e6a | chore(release): 0.35.0 [skip ci] | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+## [0.35.0](https://github.com/webex/react-widgets/compare/v0.34.0...v0.35.0) (2021-08-26)\n+\n... | JavaScript | MIT License | webex/react-widgets | chore(release): 0.35.0 [skip ci] | 1 | chore | release |
815,609 | 26.08.2021 20:07:41 | -28,800 | 0daa10aeb9f6e65081b1252bb726e82088bed3ac | chore: improve the coverage report generate commands | [
{
"change_type": "MODIFY",
"diff": "@@ -8,19 +8,45 @@ CLIPPY_OPTS := -D warnings -D clippy::clone_on_ref_ptr -D clippy::enum_glob_use\nCKB_TEST_ARGS := ${CKB_TEST_ARGS} -c 4\nINTEGRATION_RUST_LOG := info,ckb_test=debug,ckb_sync=debug,ckb_relay=debug,ckb_network=debug\nCARGO_TARGET_DIR ?= $(shell pwd)/target... | Rust | MIT License | nervosnetwork/ckb | chore: improve the coverage report generate commands | 1 | chore | null |
67,479 | 26.08.2021 20:42:21 | -36,000 | 3e66020fa8d807962c075461b548b2c19c6482fb | chore(dev): beter setup for store test scripts | [
{
"change_type": "MODIFY",
"diff": "@@ -20,5 +20,8 @@ document.write(`<script type=\"importmap\">${JSON.stringify({\n].reduce((map, pkg) => {\nmap[`@aurelia/${pkg}`] = `/base/packages/${pkg}/dist/esm/index.js`;\nreturn map;\n- }, {})\n+ }, {\n+ 'rxjs': '/base/node_modules/rxjs/_esm5/index.js',\n+ 'rxjs/oper... | TypeScript | MIT License | aurelia/aurelia | chore(dev): beter setup for store test scripts | 1 | chore | dev |
151,430 | 26.08.2021 21:10:27 | 25,200 | 455950f647e5ac450a0ef13380a2f7ee74a9fdbe | docs: update session util docs | [
{
"change_type": "MODIFY",
"diff": "<a href=\"https://github.com/DavidWells/analytics/tree/master/packages/analytics-util-session\" class=\"github-corner\" aria-label=\"View source on GitHub\"><svg viewBox=\"0 0 250 250\" aria-hidden=\"true\"><path d=\"M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z\"></p... | JavaScript | MIT License | davidwells/analytics | docs: update session util docs
Signed-off-by: David Wells <> | 1 | docs | null |
67,479 | 26.08.2021 21:36:11 | -36,000 | 2177b79a5927b360011e8a54571361063dff20e3 | fix(store-v1): rename _state to $state, short timeout | [
{
"change_type": "MODIFY",
"diff": "@@ -38,7 +38,7 @@ function arrange() {\nreturn { initialState, store };\n}\n-describe.only(\"using decorators\", function () {\n+describe(\"using decorators\", function () {\nit(\"should lazy load the store inside the decorator\", function () {\narrange();\n",
"new_pa... | TypeScript | MIT License | aurelia/aurelia | fix(store-v1): rename _state to $state, short timeout | 1 | fix | store-v1 |
151,430 | 26.08.2021 22:06:58 | 25,200 | 5acaea4dd2eb8ccd8aea8e5009d1f90ff8364ca4 | fix: remove prototype issue | [
{
"change_type": "MODIFY",
"diff": "@@ -5,7 +5,6 @@ export const config = {\ndataLayer: undefined,\npreview: undefined,\nauth: undefined,\n- customScriptSrc: 'https://www.googletagmanager.com/gtm.js',\n// assumesPageview: true,\n}\n@@ -44,6 +43,7 @@ function googleTagManager(pluginConfig = {}) {\nif (previe... | JavaScript | MIT License | davidwells/analytics | fix: remove prototype issue
Signed-off-by: David Wells <> | 1 | fix | null |
67,479 | 26.08.2021 22:25:28 | -36,000 | 6453bb8352f284900677e33f81a490e1a3c44170 | chore(store-v1): fix all tests | [
{
"change_type": "MODIFY",
"diff": "@@ -3,7 +3,8 @@ import {\nStoreOptions,\nStateHistory,\nDevToolsOptions,\n- IStoreWindow\n+ IStoreWindow,\n+ STORE\n} from '@aurelia/store-v1';\nimport { DI, ILogger, IPlatform, Registration } from '@aurelia/kernel';\nimport { BrowserPlatform, IWindow } from '@aurelia/run... | TypeScript | MIT License | aurelia/aurelia | chore(store-v1): fix all tests | 1 | chore | store-v1 |
306,346 | 26.08.2021 22:33:39 | -15,480 | 6d4b3bb3cf89f7fceac03cda4d696c97131ca661 | feat: automatic args usage fill with tags | [
{
"change_type": "MODIFY",
"diff": "package aws\nimport (\n+ \"github.com/infracost/infracost/internal/resources\"\n\"github.com/infracost/infracost/internal/schema\"\n\"github.com/shopspring/decimal\"\n)\n@@ -9,13 +10,11 @@ type NATGatewayArguments struct {\nAddress string `json:\"address,omitempty\"`\nReg... | Go | Apache License 2.0 | infracost/infracost | feat: automatic args usage fill with tags | 1 | feat | null |
67,479 | 26.08.2021 22:37:32 | -36,000 | 3220d4364fe3c89a7944f8bb3017334d77591a5b | chore: ability to pick tests to run from cli | [
{
"change_type": "MODIFY",
"diff": "const path = require('path');\n+\nconst basePath = path.resolve(__dirname, '..', '..');\nconst smsPath = path.dirname(require.resolve('source-map-support'));\n@@ -19,7 +20,7 @@ const commonChromeFlags = [\n'--disable-translate',\n];\n-const testDirs = [\n+const allTestDir... | TypeScript | MIT License | aurelia/aurelia | chore: ability to pick tests to run from cli | 1 | chore | null |
67,479 | 26.08.2021 22:46:20 | -36,000 | fe6c5e7ea22be0323462406a2663db8210884607 | chore(tests): better filter for base karma args | [
{
"change_type": "MODIFY",
"diff": "@@ -34,7 +34,8 @@ const allTestDirs = [\n'validation-i18n',\n];\n-const cliArgs = process.argv.slice(3);\n+const baseKarmaArgs = 'karma start karma.conf.cjs --browsers=ChromeDebugging --browsers=ChromeHeadlessOpt --coverage --watch-extensions js,html'.split(' ');\n+const ... | TypeScript | MIT License | aurelia/aurelia | chore(tests): better filter for base karma args | 1 | chore | tests |
471,178 | 26.08.2021 22:59:37 | -10,800 | 4ff1c6cbf5ae69da3dd9b4c4c07ed8371d569324 | docs: make link to exporters filter only exporters | [
{
"change_type": "MODIFY",
"diff": "@@ -233,7 +233,7 @@ Maintainers ([@open-telemetry/js-maintainers](https://github.com/orgs/open-telem\nOpenTelemetry is vendor-agnostic and can upload data to any backend with various exporter implementations. Even though, OpenTelemetry provides support for many backends, ... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js | docs: make link to exporters filter only exporters (#2408) | 1 | docs | null |
67,516 | 26.08.2021 23:06:09 | -7,200 | 477695d087be90c602091fc83a8cb02dc629e667 | test(runtime): single destructuring assgnmnt expr
To iron out the requirements. | [
{
"change_type": "MODIFY",
"diff": "@@ -2370,6 +2370,79 @@ describe.only('DestructuringAssignmentExpression', function () {\nassert.strictEqual(bc.a, '42');\n});\n+ it('[a] = [42]', function () {\n+ const bc: Record<string, any> = {};\n+ new DestructuringAssignmentSingleExpression(\n+ new AccessMemberExpres... | TypeScript | MIT License | aurelia/aurelia | test(runtime): single destructuring assgnmnt expr
To iron out the requirements. | 1 | test | runtime |
71,243 | 27.08.2021 03:11:57 | -32,400 | f40e8d6a502dd42e0a52d81f72abecaa2cdd920a | feat(ecs-patterns): add capacity provider strategies to queue processing service pattern
closes
*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": "@@ -484,6 +484,57 @@ const queueProcessingFargateService = new QueueProcessingFargateService(stack, '\n});\n```\n+### Set capacityProviderStrategies for QueueProcessingFargateService\n+\n+```ts\n+const vpc = new ec2.Vpc(stack, 'Vpc', { maxAzs: 1 });\n+const cluster = new ... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(ecs-patterns): add capacity provider strategies to queue processing service pattern (#15684)
closes #14781
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | ecs-patterns |
71,105 | 27.08.2021 04:18:44 | 21,600 | f42b233a76ae810634fa43a25604dbc65bdd63b9 | feat(aws-cloudfront-origins): add custom headers to S3Origin
Closes
Can you please review this when time permits and see if it needs any further polishing.
cc
*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": "@@ -11,14 +11,7 @@ import { Construct } from '@aws-cdk/core';\n/**\n* Properties to use to customize an S3 Origin.\n*/\n-export interface S3OriginProps {\n- /**\n- * An optional path that CloudFront appends to the origin domain name when CloudFront requests content from t... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(aws-cloudfront-origins): add custom headers to S3Origin (#16161)
Closes #16160.
@njlynch Can you please review this when time permits and see if it needs any further polishing.
cc @nwitte-rocketloans
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the A... | 1 | feat | aws-cloudfront-origins |
679,913 | 27.08.2021 08:44:28 | -7,200 | 9b36b844f35deb4bcc2fef622a7d4602b9e90f54 | refactor(examples): add generics in wolfram ex | [
{
"change_type": "MODIFY",
"diff": "@@ -105,8 +105,7 @@ const app = ({ id, ksize, sim }: any) => [\n[\n\"a.link.blue\",\n{\n- href:\n- \"https://en.wikipedia.org/wiki/Elementary_cellular_automaton#Random_initial_state\",\n+ href: \"https://en.wikipedia.org/wiki/Elementary_cellular_automaton#Random_initial_s... | TypeScript | Apache License 2.0 | thi-ng/umbrella | refactor(examples): add generics in wolfram ex | 1 | refactor | examples |
277,286 | 27.08.2021 08:53:03 | -7,200 | 3584c50ce20b27e3767bb068f4985d40e859110e | fix: unify ui.picker label with th rest of the form components, add 'required' prop to picker. Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -4290,6 +4290,7 @@ class Picker:\nlabel: Optional[str] = None,\nvalues: Optional[List[str]] = None,\nmax_choices: Optional[int] = None,\n+ required: Optional[bool] = None,\ndisabled: Optional[bool] = None,\nwidth: Optional[str] = None,\nvisible: Optional[bool] = None,\... | Python | Apache License 2.0 | h2oai/wave | fix: unify ui.picker label with th rest of the form components, add 'required' prop to picker. Closes #979 | 1 | fix | null |
277,286 | 27.08.2021 10:01:23 | -7,200 | bf21267754510471c261809397ec926306ab0c95 | fix: Datepicker color contrast for date selection. Closes | [
{
"change_type": "MODIFY",
"diff": "import * as Fluent from '@fluentui/react'\nimport { B, Id, S, U } from 'h2o-wave'\nimport React from 'react'\n+import { cssVar } from './theme'\nimport { wave } from './ui'\n/**\n@@ -74,6 +75,18 @@ export const\nreturn (\n<Fluent.DatePicker\ndata-test={m.name}\n+ styles={... | Python | Apache License 2.0 | h2oai/wave | fix: Datepicker color contrast for date selection. Closes #978 | 1 | fix | null |
71,222 | 27.08.2021 10:09:42 | 25,200 | f1bf935c47006096b33fb7bf0c847ffab9230870 | feat(ecs): add support for Fargate PV1.4 ephemeral storage
Add support for ephemeral storage on Fargate PV 1.4.0 or later.
Closes
*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": "@@ -231,6 +231,17 @@ const fargateTaskDefinition = new ecs.FargateTaskDefinition(this, 'TaskDef', {\n});\n```\n+On Fargate Platform Version 1.4.0 or later, you may specify up to 200GiB of\n+[ephemeral storage](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fa... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(ecs): add support for Fargate PV1.4 ephemeral storage (#15440)
Add support for ephemeral storage on Fargate PV 1.4.0 or later.
Closes #14570
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | ecs |
531,793 | 27.08.2021 10:20:03 | -3,600 | 9dc15872a37a4d6fcb53a5b2a7b6bb4df1715940 | fix(ui): fix typescript 4.4 errors | [
{
"change_type": "MODIFY",
"diff": "@@ -22,6 +22,9 @@ describe(\"useFetchAny\", () => {\nfetchMock.mock(\"http://localhost/error\", {\nthrows: new TypeError(\"failed to fetch\"),\n});\n+ fetchMock.mock(\"http://localhost/unknown\", {\n+ throws: \"foo\",\n+ });\n});\nbeforeEach(() => {\n@@ -168,6 +171,25 @@ ... | TypeScript | Apache License 2.0 | prymitive/karma | fix(ui): fix typescript 4.4 errors | 1 | fix | ui |
126,276 | 27.08.2021 10:30:48 | 10,800 | e7e9aba06e00f19f9b2eb979aa810381a671e0e3 | feat(embedded/sql): use explicitelly specified index as preffered one | [
{
"change_type": "MODIFY",
"diff": "@@ -229,9 +229,12 @@ func (i *Index) sortableUsing(colID uint64, rangesByColID map[uint64]*typedValue\nif id == colID {\nreturn true\n}\n- if rangesByColID[colID].unitary() {\n+\n+ colRange, ok := rangesByColID[id]\n+ if ok && colRange.unitary() {\ncontinue\n}\n+\nreturn ... | Go | Apache License 2.0 | codenotary/immudb | feat(embedded/sql): use explicitelly specified index as preffered one
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | feat | embedded/sql |
276,951 | 27.08.2021 10:48:00 | 10,800 | c6f73d4dc29493b51c28147357e6cef9c341b86d | docs(list): add box component | [
{
"change_type": "MODIFY",
"diff": "@@ -7,10 +7,13 @@ If you need to use an anchor, `<List.LinkItem/>` is also available.\n### Usage\n```javascript state\n-const SwitchLine = styled.div`\n- display: flex;\n- justify-content: space-between;\n-`;\n+const Wrapper = props => (\n+ <Box\n+ display=\"flex\"\n+ jus... | JavaScript | MIT License | gympass/yoga | docs(list): add box component | 1 | docs | list |
276,951 | 27.08.2021 11:01:18 | 10,800 | fa05c0c822f03c4240985d7ca14e0d443dc5d7c1 | docs(components): add box component | [
{
"change_type": "MODIFY",
"diff": "@@ -70,7 +70,7 @@ render(() => {\nreturn (\n<>\n- <section style={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between' }}>\n+ <Box display=\"flex\" flexDirection=\"column\" justifyContent=\"space-between\">\n<Button.Outline onClick={() => handleOpen... | JavaScript | MIT License | gympass/yoga | docs(components): add box component | 1 | docs | components |
791,682 | 27.08.2021 11:15:59 | 14,400 | 244364ce480da57bed7c105726804938cb5b86e0 | report: accessible n/a icon | [
{
"change_type": "MODIFY",
"diff": "}\n.lh-audit--manual .lh-audit__score-icon,\n.lh-audit--notapplicable .lh-audit__score-icon {\n+ border: 2px solid var(--color-gray-400);\nborder-radius: 100%;\n- background: var(--color-gray-400);\n+ background: none;\n}\n.lh-audit--informative .lh-audit__display-text {\... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | report: accessible n/a icon (#12984) | 1 | report | null |
401,147 | 27.08.2021 11:46:03 | -19,080 | b793bdd8a3670a3c9b0bc5c8ec0c613e1abf4c26 | feat: provide feature to add only url as first param in useSWRAxios
* feat: provide feature to add only url as first param in useSWRAxios
affects:
* test: update tests for useSWRAxios
affects:
* fix: typo issue
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -7,12 +7,14 @@ import { Preview, Meta, Props } from '@storybook/addon-docs/blocks';\nThis react hook can be used to call the api using `swr` and `axios`. `swr` helps to cache the data. With SWR, components will get a stream of data updates constantly and automatically.... | TypeScript | MIT License | medly/medly-components | feat: provide feature to add only url as first param in useSWRAxios (#404)
* feat: provide feature to add only url as first param in useSWRAxios
affects: @medly-components/utils
* test: update tests for useSWRAxios
affects: @medly-components/utils
* fix: typo issue
affects: @medly-components/utils | 1 | feat | null |
401,147 | 27.08.2021 12:52:12 | -19,080 | 7239a8c8426a1608e415f0aeb0279495a8925a8d | docs: add simple example in table component
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -32,17 +32,39 @@ import { groupedData, getGroupedData } from './groupedData';\nSimple `Table` component to show set of data.\n+```tsx\n+import { Table } from '@medly-components/core';\n+import { useSWRAxios } from '@medly-components/utils';\n+import React from 'react';... | TypeScript | MIT License | medly/medly-components | docs: add simple example in table component (#402)
affects: @medly-components/core | 1 | docs | null |
942,586 | 27.08.2021 12:57:46 | 25,200 | a8848f361a02ff97a5bd6378c9770ea52269ad8a | feat(labs): Add convertToStaticStates to useThemeRTL | [
{
"change_type": "MODIFY",
"diff": "-import {useIsRTL, useTheme} from '@workday/canvas-kit-react/common';\n+import {\n+ convertToStaticStates,\n+ CanvasTheme,\n+ useIsRTL,\n+ useTheme,\n+} from '@workday/canvas-kit-react/common';\nimport {CSSProperties} from '@workday/canvas-kit-react/tokens';\nimport {useM... | TypeScript | Apache License 2.0 | workday/canvas-kit | feat(labs): Add convertToStaticStates to useThemeRTL (#1216) | 1 | feat | labs |
791,284 | 27.08.2021 13:23:32 | 18,000 | 3c2bf7b15ccb96b5e91a432fc052836f68935d29 | docs(storage): add comment in doc on how to use STORAGE_EMULATOR_HOST | [
{
"change_type": "MODIFY",
"diff": "@@ -48,6 +48,31 @@ an unauthenticated client with\nclient, err := storage.NewClient(ctx, option.WithoutAuthentication())\n+To use an emulator with this library, you can set the STORAGE_EMULATOR_HOST\n+environment variable to the address at which your emulator is running. ... | Go | Apache License 2.0 | googleapis/google-cloud-go | docs(storage): add comment in doc on how to use STORAGE_EMULATOR_HOST (#4656) | 1 | docs | storage |
494,296 | 27.08.2021 13:30:07 | -7,200 | 85337bf65af767d7296b14e8fd21bab5c64d23e2 | fix: facebook sign in regression
Closes
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -20,7 +20,7 @@ func NewProviderFacebook(\nconfig *Configuration,\npublic *url.URL,\n) *ProviderFacebook {\n- config.IssuerURL = \"https://facebook.com\"\n+ config.IssuerURL = \"https://www.facebook.com\"\nreturn &ProviderFacebook{\nProviderGenericOIDC: &ProviderGeneric... | Go | Apache License 2.0 | ory/kratos | fix: facebook sign in regression (#1689)
Closes #1687
Closes #1686 | 1 | fix | null |
777,367 | 27.08.2021 13:56:42 | 14,400 | 489b1c62650ca1849c9b2510e965713f367c0ca2 | docs: use virtual environments | [
{
"change_type": "MODIFY",
"diff": "@@ -191,7 +191,50 @@ Determined. This can be done under ``image`` and ``registry_auth`` in the\n:ref:`master-configuration`. Please note that for this to take effect you will have to restart the\nmaster.\n+.. _virtual-env:\n+\n+**********************\n+ Virtual Environmen... | Python | Apache License 2.0 | determined-ai/determined | docs: use virtual environments [DET-5361] (#2862) | 1 | docs | null |
815,609 | 27.08.2021 14:46:43 | -28,800 | ddc5cdc4a553910f745a788abdafa05228933649 | chore: remove several useless files | [
{
"change_type": "DELETE",
"diff": "-#!/usr/bin/env python3\n-import os\n-import sys\n-\n-argv = sys.argv[1:]\n-\n-try:\n- pkg_name = os.environ['CARGO_PKG_NAME']\n-except KeyError:\n- pass\n-else:\n- if pkg_name == 'proptest':\n- try:\n- pos = list(zip(argv, argv[1:])).index(('-C', 'link-dead-code'))\n- ex... | Rust | MIT License | nervosnetwork/ckb | chore: remove several useless files | 1 | chore | null |
71,499 | 27.08.2021 14:48:32 | -3,600 | b838f95f0905316fe706779381c93bedaa9ad504 | feat(assertions): 'not' matcher
Supply a 'not' matcher that can be used to invert the matching pattern
relates
*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": "@@ -238,6 +238,35 @@ target array. Out of order will be recorded as a match failure.\nAlternatively, the `Match.arrayEquals()` API can be used to assert that the target is\nexactly equal to the pattern array.\n+### Not Matcher\n+\n+The not matcher inverts the search patte... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(assertions): 'not' matcher (#16240)
Supply a 'not' matcher that can be used to invert the matching pattern
relates #15868
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | assertions |
942,581 | 27.08.2021 14:51:00 | 21,600 | 97b4860849f7cbe0b7f22f48ab005fd923843de8 | ci: Filter Travis jobs
Disable Travis on all pull requests
Disable `support-release` for non-support branches | [
{
"change_type": "MODIFY",
"diff": "@@ -18,10 +18,10 @@ stages:\nif: branch =~ /^support\\// AND type != pull_request\n- name: release\n- if: (branch = master OR branch =~ /^prerelease\\//) AND tag =~ /^v\\d+\\.\\d+(\\.\\d+)?(-\\S*)?$/ AND tag IS present\n+ if: (branch = master OR branch =~ /^prerelease\\//... | TypeScript | Apache License 2.0 | workday/canvas-kit | ci: Filter Travis jobs
- Disable Travis on all pull requests
- Disable `support-release` for non-support branches | 1 | ci | null |
942,581 | 27.08.2021 15:09:12 | 21,600 | 6d9785ea07fc2629c5b1de048c24cfd6ce670c4e | ci: Fix Travis support branch | [
{
"change_type": "MODIFY",
"diff": "@@ -80,7 +80,7 @@ jobs:\nscript:\n- >- # Chromatic relies on a built Storybook, so exit early if build-storybook fails\nyarn build-storybook --quiet &&\n- yarn chromatic --quiet --auto-accept-changes --exit-once-uploaded --storybook-build-dir docs &&\n+ yarn chromatic --q... | TypeScript | Apache License 2.0 | workday/canvas-kit | ci: Fix Travis support branch | 1 | ci | null |
127,956 | 27.08.2021 15:10:24 | -10,800 | 011e199246f6220552fd91158276db7b35343527 | fix: carousel freezing when step equal one | [
{
"change_type": "MODIFY",
"diff": "@@ -27,12 +27,13 @@ const findFirstVisibleIndex = (childRefs: any[]): any => {\nconst scrollToIndex = (\nitemRef: HTMLElement,\nscrollIntoViewSmoothly: any,\n- containerRef?: any\n+ containerRef?: any,\n+ scrollStep?: number\n) => {\nif (itemRef) {\nscrollIntoViewSmoothly... | TypeScript | MIT License | coingaming/moon-design | fix: carousel freezing when step equal one [B1M2-2794] (#1352) | 1 | fix | null |
67,479 | 27.08.2021 15:19:16 | -36,000 | 443dc3380f677c99ced522117ec8668864928f6e | chore(tests): more powerful pattern matching for running tests | [
{
"change_type": "MODIFY",
"diff": "@@ -20,7 +20,7 @@ const commonChromeFlags = [\n'--disable-translate',\n];\n-const allTestDirs = [\n+const testDirs = [\n'1-kernel',\n'2-runtime',\n'3-runtime-html',\n@@ -34,11 +34,8 @@ const allTestDirs = [\n'validation-i18n',\n];\n-const baseKarmaArgs = 'karma start karm... | TypeScript | MIT License | aurelia/aurelia | chore(tests): more powerful pattern matching for running tests | 1 | chore | tests |
276,951 | 27.08.2021 15:21:46 | 10,800 | 4344caf68674aa246f5b0b780a9fcd396e8776fb | docs(list): refactor SwitchLine | [
{
"change_type": "MODIFY",
"diff": "@@ -7,10 +7,13 @@ If you need to use an anchor, `<List.LinkItem/>` is also available.\n### Usage\n```javascript state\n-const SwitchLine = styled.div`\n- display: flex;\n- justify-content: space-between;\n-`;\n+const SwitchLine = props => (\n+ <Box\n+ display=\"flex\"\n+ ... | JavaScript | MIT License | gympass/yoga | docs(list): refactor SwitchLine | 1 | docs | list |
127,948 | 27.08.2021 15:33:14 | -10,800 | 15207c1b89cc371918c9be1e77518fc6ec18ed18 | fix: input background and transition | [
{
"change_type": "MODIFY",
"diff": "@@ -83,7 +83,7 @@ export const SearchInput = styled.input<\n({\nhasBorder,\n$size,\n- theme: { breakpoint, color, fontSize, fontWeight, radius, space },\n+ theme: { breakpoint, color, fontSize, fontWeight, radius, space, transitionDuration },\n}) => ({\nfontWeight: fontWe... | TypeScript | MIT License | coingaming/moon-design | fix: B1M2-3594 input background and transition (#1354) | 1 | fix | null |
276,986 | 27.08.2021 15:50:17 | 10,800 | 49263139752220fad30151e7de3db2fd6b9089f4 | chore: generate new lock | [
{
"change_type": "MODIFY",
"diff": "\"@graphql-tools/utils\" \"^7.7.0\"\ntslib \"~2.2.0\"\n-\"@graphql-tools/merge@7.0.0\":\n- version \"7.0.0\"\n- resolved \"https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-7.0.0.tgz#af3380f5dc4536870397a3bac5afd0cd53e11add\"\n- integrity sha512-u7TTwKQ7cybAkn6snY... | JavaScript | MIT License | gympass/yoga | chore: generate new lock | 1 | chore | null |
276,986 | 27.08.2021 15:50:49 | 10,800 | 270e67e2f1daea2c1d21b6460c6671f128743274 | refactor(icons): use only one file to export icons | [
{
"change_type": "MODIFY",
"diff": "@@ -2,7 +2,7 @@ module.exports = {\nplugins: [\n[\n'transform-rename-import',\n- { original: '^(.+?)\\\\.svg$', replacement: '$1.js' },\n+ { original: '^(.+?)\\\\.svg$', replacement: '$1' },\n],\n],\nenv: {\n@@ -19,7 +19,6 @@ module.exports = {\n},\n],\n],\n- ignore: ['**... | JavaScript | MIT License | gympass/yoga | refactor(icons): use only one file to export icons | 1 | refactor | icons |
276,951 | 27.08.2021 15:52:35 | 10,800 | dbe574fe0b9f086733b5ac6e89b805d9d99bd041 | docs(snackbar): change section to box component | [
{
"change_type": "MODIFY",
"diff": "@@ -70,7 +70,7 @@ render(() => {\nreturn (\n<>\n- <section style={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between' }}>\n+ <Box display=\"flex\" flexDirection=\"column\" justifyContent=\"space-between\">\n<Button.Outline onClick={() => handleOpen... | JavaScript | MIT License | gympass/yoga | docs(snackbar): change section to box component | 1 | docs | snackbar |
276,951 | 27.08.2021 15:54:11 | 10,800 | 1e9ae4dc4798beed67cd5c287e6139f5c8adafa0 | docs(stepper): refactor Section and Actions | [
{
"change_type": "MODIFY",
"diff": "@@ -12,15 +12,21 @@ You can use it with or without children.\nrender(() => {\nconst [activeStep, setActiveStep] = useState(0);\n- const Section = styled.div`\n- text-align: center;\n- padding: 20px;\n- `;\n+ const Section = props => (\n+ <Box\n+ textAlign=\"center\"\n+ pa... | JavaScript | MIT License | gympass/yoga | docs(stepper): refactor Section and Actions | 1 | docs | stepper |
276,951 | 27.08.2021 15:55:01 | 10,800 | 2951d8ba61e9a42ec436ae7214e31b8493a26ef8 | docs(tag): remove Wrapper and add box component | [
{
"change_type": "MODIFY",
"diff": "@@ -3,18 +3,13 @@ import { Link as GatsbyLink } from 'gatsby';\n### Usage\n```javascript state\n-const Wrapper = styled.div`\n- display: flex;\n- flex-direction: column;\n-`;\n-\nrender(\n- <Wrapper>\n+ <Box display=\"flex\" flexDirection=\"column\">\n<Tag>default</Tag>\n... | JavaScript | MIT License | gympass/yoga | docs(tag): remove Wrapper and add box component | 1 | docs | tag |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.