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
551,647
23.06.2021 09:22:05
-3,600
5c6fbdd8bc185f24bfc84599cec2c40027ec6203
chore: Change pom.xml such that the web console is built at the same time binary is built
[ { "change_type": "MODIFY", "diff": "</properties>\n</configuration>\n</plugin>\n+ <plugin>\n+ <groupId>org.codehaus.mojo</groupId>\n+ <artifactId>exec-maven-plugin</artifactId>\n+ <version>1.6.0</version>\n+ <configuration>\n+ <longModulepath>false</longModulepath>\n+ </configuration>\n+ <executions>\n+ <ex...
Java
Apache License 2.0
questdb/questdb
chore: Change pom.xml such that the web console is built at the same time binary is built (#1130)
1
chore
null
791,394
23.06.2021 09:22:07
-36,000
634847b7499fb58575e3e5001dd8e6da0661fccd
fix(pubsublite): fixes for background partition count updates When refreshing topic partition counts in the background for Publishers, retry slowly upon resource exhausted errors. partitionCountWatcher ignores errors after the first update.
[ { "change_type": "MODIFY", "diff": "@@ -51,7 +51,7 @@ func newPartitionCountWatcher(ctx context.Context, adminClient *vkit.AdminClient\nadminClient: adminClient,\ntopicPath: topicPath,\nreceiver: receiver,\n- callOption: retryableReadOnlyCallOption(),\n+ callOption: resourceExhaustedRetryer(),\n}\n// Pollin...
Go
Apache License 2.0
googleapis/google-cloud-go
fix(pubsublite): fixes for background partition count updates (#4293) - When refreshing topic partition counts in the background for Publishers, retry slowly upon resource exhausted errors. - partitionCountWatcher ignores errors after the first update.
1
fix
pubsublite
889,620
23.06.2021 09:37:04
-28,800
8a5abf24fb9d6679507f8ce6599450e6997c6ead
fix(epub): incorrect genres parsing when empty
[ { "change_type": "MODIFY", "diff": "@@ -66,7 +66,7 @@ class EpubMetadataProvider(\nval refineRole = authorRoles[id]?.ifBlank { null }\nAuthor(name, relators[opfRole ?: refineRole] ?: \"writer\")\n}\n- }\n+ }.ifEmpty { null }\nval isbn = opf.select(\"metadata > dc|identifier\")\n?.map { it.text().toLowerCase...
Kotlin
MIT License
gotson/komga
fix(epub): incorrect genres parsing when empty
1
fix
epub
791,394
23.06.2021 09:46:23
-36,000
5b5d0f782b224f324dcfa13cc4145ee33a395d09
fix(pubsublite): make SubscriberClient.Receive identical to pubsub Ensures that pscompat.SubscriberClient.Receive and pubsub.Subscription.Receive have identical interfaces. Adds examples for how to declare common interfaces for pubsublite and pubsub.
[ { "change_type": "MODIFY", "diff": "@@ -29,14 +29,30 @@ https://cloud.google.com/pubsub/docs/choosing-pubsub-or-lite.\nMore information about Pub/Sub Lite is available at\nhttps://cloud.google.com/pubsub/lite.\n+See https://pkg.go.dev/cloud.google.com/go for authentication, timeouts,\n+connection pooling an...
Go
Apache License 2.0
googleapis/google-cloud-go
fix(pubsublite): make SubscriberClient.Receive identical to pubsub (#4281) - Ensures that pscompat.SubscriberClient.Receive and pubsub.Subscription.Receive have identical interfaces. - Adds examples for how to declare common interfaces for pubsublite and pubsub.
1
fix
pubsublite
889,620
23.06.2021 09:51:18
-28,800
7b30835e88401c769f21aa285121e259b0b739ce
refactor(webui): remove dead code
[ { "change_type": "MODIFY", "diff": "<script lang=\"ts\">\nimport {debounce} from 'lodash'\nimport Vue, {PropType} from 'vue'\n-import {BookDto} from '@/types/komga-books'\n-import {SeriesDto} from \"@/types/komga-series\";\nexport default Vue.extend({\nname: 'SearchBoxBase',\n@@ -73,9 +71,6 @@ export defaul...
Kotlin
MIT License
gotson/komga
refactor(webui): remove dead code
1
refactor
webui
889,620
23.06.2021 09:52:09
-28,800
626ef3eb40c82f8107f465d90fa9854504547a94
feat(webui): show library name on series picker dialog (import) closes
[ { "change_type": "MODIFY", "diff": "<v-row v-if=\"results\">\n<v-col>\n- <v-list elevation=\"5\" v-if=\"results.length > 0\">\n+ <v-list elevation=\"5\" v-if=\"results.length > 0\" two-line>\n<div v-for=\"(s, index) in results\"\n:key=\"index\"\n>\n<v-list-item @click=\"select(s)\">\n<v-list-item-content>\n...
Kotlin
MIT License
gotson/komga
feat(webui): show library name on series picker dialog (import) closes #559
1
feat
webui
889,620
23.06.2021 09:57:18
-28,800
3d159d16b27e41dbc53d4267ba0527ae90e11dc8
feat(webui): remove early feature warning in book import screen
[ { "change_type": "MODIFY", "diff": "\"number\": \"Number\",\n\"series\": \"Series\"\n},\n- \"title\": \"Import\",\n- \"warning_early_feature\": \"Book Import is still an early feature, and must be used with caution. Make sure your source and destination files are backed up before using the Import feature.\"...
Kotlin
MIT License
gotson/komga
feat(webui): remove early feature warning in book import screen
1
feat
webui
711,597
23.06.2021 09:57:31
-7,200
cb5b10017a86ee33f6ac8fcf2a3120bb4ce39993
fix(core): Improve fault-tolerance of JobQueue
[ { "change_type": "MODIFY", "diff": "@@ -91,7 +91,12 @@ export class JobQueue<Data extends JobData<Data> = {}> {\nqueueName: this.options.name,\nretries: options?.retries ?? 0,\n});\n+ try {\nconst addedJob = await this.jobQueueStrategy.add(job);\nreturn new SubscribableJob(addedJob, this.jobQueueStrategy);\...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Improve fault-tolerance of JobQueue
1
fix
core
889,620
23.06.2021 09:58:09
-28,800
6af6f5be405ace295d704deab3a12b769397ece5
feat(webui): remove early feature warning (extension repair, convert to cbz)
[ { "change_type": "MODIFY", "diff": "</template>\n</v-checkbox>\n- <v-alert type=\"warning\" text class=\"text-subtitle-2 mt-4\">{{ $t('dialog.edit_library.warning_early_feature_repair_extensions') }}</v-alert>\n<v-checkbox\nv-model=\"form.repairExtensions\"\n:label=\"$t('dialog.edit_library.field_repair_ext...
Kotlin
MIT License
gotson/komga
feat(webui): remove early feature warning (extension repair, convert to cbz)
1
feat
webui
217,237
23.06.2021 10:04:29
-10,800
358d13e002553e295a94cb4f308742a772be6e77
feat(main): add companies list
[ { "change_type": "MODIFY", "diff": "@@ -18,3 +18,33 @@ html[data-theme='dark'] .schemeImg {\nwidth: 100%;\n}\n}\n+\n+.companies {\n+ /* Set later to \"220px\" when companies amound will be increased */\n+ --logoCardSize: 320px;\n+ --logoCardGap: 2rem;\n+\n+ display: grid;\n+ width: 100%;\n+ padding: 40px 20...
JavaScript
MIT License
feature-sliced/documentation
feat(main): add companies list
1
feat
main
667,676
23.06.2021 10:11:59
-28,800
eb745be9bab38eedf29fd05384d1599f6cef2ded
feat(core): refactor ctx value
[ { "change_type": "MODIFY", "diff": "@@ -120,7 +120,7 @@ void CallFunction(JNIEnv* j_env,\n}\nstd::shared_ptr<CtxValue> action = context->CreateString(action_name);\n- std::shared_ptr<CtxValue> params = nullptr;\n+ std::shared_ptr<CtxValue> params;\nif (runtime->IsEnableV8Serialization()) {\nv8::Isolate* iso...
C++
Apache License 2.0
tencent/hippy
feat(core): refactor ctx value
1
feat
core
217,237
23.06.2021 10:13:28
-10,800
257c30fe9349d9a8adcc0463bac7865800b01b9f
feat(community): add more social links
[ { "change_type": "MODIFY", "diff": "Binary files a/assets/social_twitter.png and b/assets/social_twitter.png differ\n", "new_path": "assets/social_twitter.png", "old_path": "assets/social_twitter.png" }, { "change_type": "MODIFY", "diff": "Binary files a/assets/social_youtube.png and b/a...
JavaScript
MIT License
feature-sliced/documentation
feat(community): add more social links
1
feat
community
217,237
23.06.2021 10:31:15
-10,800
d636fd49e7b054e6825205e817e78f03e3961373
review(companies): fix for dark mode
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,12 @@ html[data-theme='dark'] .schemeImg {\nfont-style: italic;\n}\n+/* Protected from dark mode (and flickering) */\n+.companiesContainer {\n+ background: #fff;\n+ color: #1c1e21;\n+}\n+\n@media screen and (max-width: 966px) {\n.companies {\n--logoCardSize: ...
JavaScript
MIT License
feature-sliced/documentation
review(companies): fix for dark mode
1
review
companies
185,944
23.06.2021 10:32:21
18,000
45c7ad377aef7463796b24f2437fa5989dfa79e7
fix: close popup windows before running batch cmds
[ { "change_type": "MODIFY", "diff": "@@ -135,14 +135,14 @@ export class AppState {\n@observable public isQuitting = false;\n// -- Various \"isShowing\" settings ------------------\n+ @observable public isAddVersionDialogShowing = false;\n@observable public isBisectCommandShowing: boolean;\n+ @observable publ...
TypeScript
MIT License
electron/fiddle
fix: close popup windows before running batch cmds (#734)
1
fix
null
889,620
23.06.2021 10:33:31
-28,800
15bad4b20a8213dc489ba83affc57a00763e468c
fix(webui): add contain property to thumbnail in searchbox
[ { "change_type": "MODIFY", "diff": "height=\"50\"\nmax-width=\"35\"\nclass=\"my-1 mx-3\"\n+ contain\n>\n<span v-if=\"data.item.booksUnreadCount !== 0\"\nclass=\"white--text pa-0 px-1 text-caption\"\nheight=\"50\"\nmax-width=\"35\"\nclass=\"my-1 mx-3\"\n+ contain\n>\n<div class=\"unread\" v-if=\"isUnread(dat...
Kotlin
MIT License
gotson/komga
fix(webui): add contain property to thumbnail in searchbox
1
fix
webui
889,620
23.06.2021 10:34:20
-28,800
10cdedcf5d6e35c0a5928d0e92761832f699b099
fix(webui): don't reload card thumbnail if one was successfully loaded
[ { "change_type": "MODIFY", "diff": "aspect-ratio=\"0.7071\"\ncontain\n@error=\"thumbnailError = true\"\n+ @load=\"thumbnailError = false\"\n>\n<!-- unread tick for book -->\n<div class=\"unread\" v-if=\"isUnread\"/>\n", "new_path": "komga-webui/src/components/ItemCard.vue", "old_path": "komga-webui/...
Kotlin
MIT License
gotson/komga
fix(webui): don't reload card thumbnail if one was successfully loaded
1
fix
webui
889,620
23.06.2021 10:35:04
-28,800
cb096e21175f83ea73ca0bbc5a4391a5b684355d
fix(webui): add thumbnail to series picker dialog
[ { "change_type": "MODIFY", "diff": ":key=\"index\"\n>\n<v-list-item @click=\"select(s)\">\n+ <v-img :src=\"seriesThumbnailUrl(s.id)\"\n+ height=\"50\"\n+ max-width=\"35\"\n+ class=\"my-1 mx-3\"\n+ contain\n+ />\n<v-list-item-content>\n<v-list-item-title>{{ s.metadata.title }}</v-list-item-title>\n<v-list-it...
Kotlin
MIT License
gotson/komga
fix(webui): add thumbnail to series picker dialog
1
fix
webui
104,831
23.06.2021 10:42:29
18,000
49d392b51bb1a201702ed0724a45f68562b77664
fix(dashboard-grid): grid should generate layouts for all supported breakpoints for each card
[ { "change_type": "MODIFY", "diff": "@@ -486,143 +486,6 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/C\n</div>\n`;\n-exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Card is editable 1`] = `\n-<div\n- className=\"storybook-container\"\n->\n- ...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(dashboard-grid): grid should generate layouts for all supported breakpoints for each card
1
fix
dashboard-grid
777,389
23.06.2021 10:49:32
25,200
27e321f68b33c337eda75fe6f71e6b7bb60d0691
fix: avoid presenting gpu uuids in profiler if there are no uuids remove the gpu dropdown when there are no uuids to pick
[ { "change_type": "MODIFY", "diff": "import { Select } from 'antd';\nimport { SelectValue } from 'antd/es/select';\n-import React, { useCallback } from 'react';\n+import React, { useCallback, useMemo } from 'react';\nimport SelectFilter from 'components/SelectFilter';\nimport { useProfilesFilterContext } fro...
Python
Apache License 2.0
determined-ai/determined
fix: avoid presenting gpu uuids in profiler if there are no uuids [gh-2604] (#2608) remove the gpu dropdown when there are no uuids to pick
1
fix
null
141,585
23.06.2021 10:49:41
-36,000
890752c666898ee3430e1f3ed89a728d6d72f400
feat: Add brand moment and empty state animations Use `video` to render webm files for supported animations (empty states and brand moments).
[ { "change_type": "RENAME", "diff": "@@ -7,11 +7,11 @@ import {\nwaitForElementToBeRemoved,\n} from \"@testing-library/react\"\nimport * as React from \"react\"\n-import { AnimatedBase } from \"./AnimatedBase\"\n-import * as utils from \"./utils\"\n-import { LottieAnimation } from \"./types\"\n+import * as u...
TypeScript
MIT License
cultureamp/kaizen-design-system
feat: Add brand moment and empty state animations (#1710) Use `video` to render webm files for supported animations (empty states and brand moments).
1
feat
null
276,983
23.06.2021 11:11:56
10,800
4211b033b229913c0a9b7af7f85cef57efdbac7d
fix: refactor imports
[ { "change_type": "MODIFY", "diff": "import React from 'react';\nimport styled from 'styled-components';\nimport { oneOf, bool } from 'prop-types';\n-import textStyle from '../textStyle.native';\n+import textStyle from '../textStyle';\nconst styledText = type => styled.Text`\n${textStyle(type)}\n", "new_...
JavaScript
MIT License
gympass/yoga
fix: refactor imports
1
fix
null
866,394
23.06.2021 11:16:57
14,400
774010c82ce38c956dc97a2fdb41d7330534df1a
docs(rtl): adding rtl versions of components in storybook documentation ### Related Ticket(s) No related issue ### Description Missed the documentation on the rtl versions of CDN artifacts. This should add in all of the storybook docs. ### Changelog **Changed** Added RTL documentation for Web Components CDN
[ { "change_type": "MODIFY", "diff": "@@ -11,16 +11,21 @@ import packageJson from '../../../package.json';\n/* eslint-disable import/prefer-default-export,max-len */\n+/**\n+ *\n+ */\n/**\n* Renders the component(s) script tag content and returns back the string\n*\n* @param {Array} components array of compon...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
docs(rtl): adding rtl versions of components in storybook documentation (#6449) ### Related Ticket(s) No related issue ### Description Missed the documentation on the rtl versions of CDN artifacts. This should add in all of the storybook docs. ### Changelog **Changed** - Added RTL documentation for W...
1
docs
rtl
777,389
23.06.2021 11:31:36
25,200
252351ab708306efd96a7f462ab8f35ee3022fb4
feat: display active table filter count and option to reset
[ { "change_type": "ADD", "diff": "+.base {\n+ align-items: center;\n+ display: flex;\n+\n+ .launchButton {\n+ background-color: transparent;\n+ border-color: var(--theme-colors-monochrome-7);\n+ border-radius: var(--theme-sizes-border-radius);\n+ border-style: solid;\n+ border-width: var(--theme-sizes-border...
Python
Apache License 2.0
determined-ai/determined
feat: display active table filter count and option to reset [gh-2584] (#2603)
1
feat
null
531,793
23.06.2021 11:42:10
-3,600
3913e944ea5575c58f288eac693997670f54426e
fix(ui): fix sass warnings
[ { "change_type": "MODIFY", "diff": "@@ -62,7 +62,7 @@ $pixSize: math.div($fetcherWidth, 5);\n}\n$tx: (($pixSize * 2) * $num);\n- $ty: (($pixSize * 2) * (floor(($i - 1)/3)));\n+ $ty: (($pixSize * 2) * (floor(math.div(($i - 1), 3))));\n&:nth-of-type(#{$i}) {\ntransform: translate($tx, $ty);\n", "new_path"...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): fix sass warnings
1
fix
ui
104,831
23.06.2021 11:44:45
18,000
816096a2e57c173032f77a452459fbf3fe7a7277
test(dashboard-grid): use describe and add comment
[ { "change_type": "MODIFY", "diff": "@@ -135,6 +135,7 @@ export const findLayoutOrGenerate = (layouts, cards, supportedLayouts) => {\n// iterate through each breakpoint\nreturn supportedLayouts.reduce((acc, layoutName) => {\nlet layout = layouts && layouts[layoutName];\n+ // If layouts exists and there is on...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
test(dashboard-grid): use describe and add comment
1
test
dashboard-grid
67,479
23.06.2021 11:45:23
-36,000
bee73ccaae6c3f07d9e17cfc45b14a445dea7f52
fix(let): camel-case let target when using with interpolation/literal
[ { "change_type": "ADD", "diff": "+import { ILogger } from '@aurelia/kernel';\n+import { assert, createFixture } from '@aurelia/testing';\n+\n+describe('3-runtime-html/let.spec.ts', function () {\n+ for (const command of [\n+ 'from-view',\n+ 'two-way',\n+ 'trigger',\n+ 'delegate',\n+ 'one-time',\n+ 'capture'...
TypeScript
MIT License
aurelia/aurelia
fix(let): camel-case let target when using with interpolation/literal
1
fix
let
711,597
23.06.2021 11:49:16
-7,200
2abd0189f4fa3820e62247faa4aaf11d6a05499a
feat(admin-ui): Support "text" custom fields with textarea control Relates to
[ { "change_type": "MODIFY", "diff": "class=\"form\"\n[formGroup]=\"detailForm\"\n*ngIf=\"product$ | async as product\"\n- (keydown.enter)=\"$event.preventDefault()\"\n>\n+ <button type=\"submit\" hidden x-data=\"prevents enter key from triggering other buttons\"></button>\n<clr-tabs>\n<clr-tab>\n<button clrT...
TypeScript
MIT License
vendure-ecommerce/vendure
feat(admin-ui): Support "text" custom fields with textarea control Relates to #885
1
feat
admin-ui
711,597
23.06.2021 11:51:32
-7,200
424819c10779986729faf198f11ac08658aa421d
chore(dev-server): Add cookie secret to config
[ { "change_type": "MODIFY", "diff": "import { AdminUiPlugin } from '@vendure/admin-ui-plugin';\nimport { AssetServerPlugin } from '@vendure/asset-server-plugin';\nimport { ADMIN_API_PATH, API_PORT, SHOP_API_PATH } from '@vendure/common/lib/shared-constants';\n-import { DefaultJobQueuePlugin, DefaultLogger, D...
TypeScript
MIT License
vendure-ecommerce/vendure
chore(dev-server): Add cookie secret to config
1
chore
dev-server
711,591
23.06.2021 11:58:03
-7,200
39b393795930772c70bbe6bb1753f1fe50727371
fix(core): Make verifyCustomerAccount channel-independent
[ { "change_type": "MODIFY", "diff": "@@ -376,10 +376,15 @@ export class CustomerService {\nif (isGraphQlErrorResult(result)) {\nreturn result;\n}\n- const customer = await this.findOneByUserId(ctx, result.id);\n+ const customer = await this.findOneByUserId(ctx, result.id, false);\nif (!customer) {\nthrow new...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Make verifyCustomerAccount channel-independent (#945)
1
fix
core
531,793
23.06.2021 12:09:13
-3,600
9d6ddf9efeba92d07e2cfb2bb4d96a68d83ab60c
fix(ci): change sentry uri
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,8 @@ afterEach(() => {\n});\n});\n-const FakeDSN = \"https://81a9ef37a6ed4fdb80e9ea2310d1ed28@127.0.0.1/1234123\";\n+const FakeDSN =\n+ \"https://81a9ef37a6ed4fdb80e9ea2310d1ed28@sentry.example.com/1234123\";\nconst MockSettings = (\nversion: string,\n", ...
TypeScript
Apache License 2.0
prymitive/karma
fix(ci): change sentry uri
1
fix
ci
104,831
23.06.2021 12:10:48
18,000
4a7ac5828a1c747932fdb640e5c2f0c26a99460c
chore(component-utility-functions): add comment
[ { "change_type": "MODIFY", "diff": "@@ -174,6 +174,7 @@ export const stopPropagationAndCallback = (evt, callback, ...args) => {\n/**\n* Determines the smallest possible height that the dashboard can be while fitting all cards\n+ * Cards have a max height of 16 units\n* @param {array} cards list of cards\n*/...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(component-utility-functions): add comment
1
chore
component-utility-functions
342,861
23.06.2021 12:11:14
-7,200
e7a35445280505f6d92184cd3e7aa2cc316e3b1b
fix(contributors): write only if changed
[ { "change_type": "MODIFY", "diff": "@@ -52,7 +52,12 @@ exports.sourceNodes = async ({ actions, createContentDigest, createNodeId }, { r\n...(await prettier.resolveConfig(__dirname)),\nparser: \"json\",\n});\n- await fs.writeFile(path.join(__dirname, \"fetchedUsers.json\"), fetchedUsersContent);\n+\n+ const ...
JavaScript
MIT License
kiwicom/orbit
fix(contributors): write only if changed
1
fix
contributors
866,412
23.06.2021 12:33:50
25,200
1c522b6c13e88d47a17cc018134a5c8be9e0a758
fix(link): use protected & bump version
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"carbon-web-components\",\n- \"version\": \"1.14.0\",\n+ \"version\": \"1.14.1\",\n\"license\": \"Apache-2.0\",\n\"main\": \"es/index.js\",\n\"module\": \"es/index.js\",\n", "new_path": "package.json", "old_path": "package.json" }, { "change_...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(link): use protected & bump version (#662)
1
fix
link
126,276
23.06.2021 12:38:01
10,800
b4802e75079f7e7e72465b6c8358199f70c2e1ca
test(embedded/sql): test query with parameters
[ { "change_type": "MODIFY", "diff": "@@ -580,7 +580,10 @@ func TestQuery(t *testing.T) {\n_, _, err = engine.ExecStmt(\"CREATE TABLE table1 (id INTEGER, ts INTEGER, title VARCHAR, active BOOLEAN, payload BLOB, PRIMARY KEY id)\", nil, true)\nrequire.NoError(t, err)\n- r, err := engine.QueryStmt(\"SELECT id FR...
Go
Apache License 2.0
codenotary/immudb
test(embedded/sql): test query with parameters Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
test
embedded/sql
269,464
23.06.2021 12:46:24
0
1faebabdae31bdac132746b5fb56981ae2c0c2e4
docs: details about announcements
[ { "change_type": "MODIFY", "diff": "@@ -29,6 +29,10 @@ release:\ndraft: true\n# If set, will create a release discussion in the category specified.\n+ #\n+ # Warning: do not use categories in the 'Announcement' format.\n+ # Check https://github.com/goreleaser/goreleaser/issues/2304 for more info.\n+ #\n# De...
Go
MIT License
goreleaser/goreleaser
docs: details about announcements https://github.com/goreleaser/goreleaser/issues/2304 Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
1
docs
null
126,276
23.06.2021 12:53:50
10,800
0f1b209db807e009513e2de784f61b24eb41d4b7
chore(pkg/database): add IsReplica method
[ { "change_type": "MODIFY", "diff": "@@ -29,7 +29,6 @@ import (\n\"github.com/codenotary/immudb/pkg/api/schema\"\n\"github.com/codenotary/immudb/pkg/logger\"\n- \"github.com/golang/protobuf/ptypes/empty\"\n)\nconst MaxKeyResolutionLimit = 1\n@@ -45,7 +44,6 @@ var ErrIsReplica = errors.New(\"database is read-...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/database): add IsReplica method Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/database
551,636
23.06.2021 13:01:09
-3,600
841aadb4ec9fc91a1af1d1a28cfc60ca24e6c91a
chore(log): fix log crash on empty sink
[ { "change_type": "MODIFY", "diff": "@@ -125,9 +125,8 @@ public class LogFileWriter extends SynchronizedJob implements Closeable, LogWrit\n}\nprivate void copyToBuffer(LogRecordSink sink) {\n- if ((sink.getLevel() & this.level) != 0) {\n- int l = sink.length();\n-\n+ final int l = sink.length();\n+ if ((sink...
Java
Apache License 2.0
questdb/questdb
chore(log): fix log crash on empty sink (#1145)
1
chore
log
777,367
23.06.2021 13:07:55
14,400
09d18c097e8b369c186a0321ad0ae27b5665d888
fix: helm chart version in Makefile
[ { "change_type": "MODIFY", "diff": "@@ -16,4 +16,4 @@ release: export NGC_API_USERNAME ?=\nrelease: export NGC_API_KEY ?=\nrelease:\nhelm repo add determined $$NGC_REPO --username $$NGC_API_USERNAME --password $$NGC_API_KEY\n- helm push -f build/determined-0.5.0.tgz determined\n+ helm push -f build/determin...
Python
Apache License 2.0
determined-ai/determined
fix: helm chart version in Makefile (#2609)
1
fix
null
392,551
23.06.2021 13:11:03
-7,200
c268f8515f5c7204621caa3172fae8fb93a5870c
docs: add custom render map sync example
[ { "change_type": "MODIFY", "diff": "@@ -47,6 +47,7 @@ jobs:\nrun: |\nyarn --cwd doc install && \\\nyarn --cwd doc build-mods\n+\n- name: Lint\nrun: yarn --cwd doc ci\n@@ -54,5 +55,6 @@ jobs:\nrun: |\nyarn --cwd doc build-api && \\\nyarn --cwd doc clear-api\n+\n- name: Build doc website\nrun: yarn --cwd doc ...
TypeScript
MIT License
mapillary/mapillary-js
docs: add custom render map sync example
1
docs
null
392,551
23.06.2021 13:26:32
-7,200
56c74dbb94b239c81f1071561a547db0db3b3f44
chore: build lib and doc in different jobs
[ { "change_type": "MODIFY", "diff": "@@ -22,24 +22,37 @@ jobs:\n- name: Lint\nrun: yarn lint\n+ - name: Build\n+ run: yarn build\n+\n- name: Test\nrun: yarn test\n+ doc:\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v2\n- - name: Build\n- run: yarn build\n+ - name: Setup Node.js\n+ uses: ac...
TypeScript
MIT License
mapillary/mapillary-js
chore: build lib and doc in different jobs
1
chore
null
877,015
23.06.2021 13:49:18
-7,200
2a77b9155db257212b5e5dc5a73b0cba6f1143bf
feat(@vtmn/svelte): add icons in button component
[ { "change_type": "MODIFY", "diff": "import { withDesign } from 'storybook-addon-designs';\nimport backgrounds from '@vtmn/showcase-core/addons/backgrounds.json';\nimport viewports from '@vtmn/showcase-core/addons/viewports.json';\n+import '@vtmn/icons/dist/vitamix/font/vitamix.css';\nexport const decorators...
JavaScript
Apache License 2.0
decathlon/vitamin-web
feat(@vtmn/svelte): add icons in button component (#381)
1
feat
@vtmn/svelte
877,015
23.06.2021 13:49:29
-7,200
6ea5eb8f009e48edb368fbc278f1a5c2de0e748d
feat(@vtmn/vue): add icons in button component
[ { "change_type": "MODIFY", "diff": "import { VtmnButton } from '@vtmn/vue/dist/esm/VtmnButton';\n+import vitamixIconsList from '@vtmn/icons/dist/vitamix/font/vitamix.json';\nexport default {\ntitle: 'Components/VtmnButton',\n@@ -29,6 +30,33 @@ export default {\noptions: ['small', 'medium', 'large', 'stretch...
JavaScript
Apache License 2.0
decathlon/vitamin-web
feat(@vtmn/vue): add icons in button component (#382)
1
feat
@vtmn/vue
873,657
23.06.2021 13:50:46
-7,200
befc60f9f495b0d1e072e9cba969d139da8f674a
feat: [] bump forma tokens really this commit exists to test the pipeline
[ { "change_type": "MODIFY", "diff": "\"@contentful/app-sdk\": \"^3.36.0\"\n},\n\"dependencies\": {\n- \"@contentful/forma-36-tokens\": \"^0.10.1\",\n+ \"@contentful/forma-36-tokens\": \"^0.10.2\",\n\"emotion\": \"^10.0.17\",\n\"lodash\": \"^4.17.15\",\n\"lodash-es\": \"^4.17.15\"\n", "new_path": "package...
TypeScript
MIT License
contentful/field-editors
feat: [] bump forma tokens (#756) really this commit exists to test the pipeline
1
feat
null
791,268
23.06.2021 13:57:25
-32,400
9bb82c3d5133af3832924d3a6615feca4c447a13
docs: clarify MaxIdle in SessionPoolConfig
[ { "change_type": "MODIFY", "diff": "@@ -404,7 +404,8 @@ type SessionPoolConfig struct {\n// Defaults to 100.\nMinOpened uint64\n- // MaxIdle is the maximum number of idle sessions, pool is allowed to keep.\n+ // MaxIdle is the maximum number of idle sessions that are allowed in the\n+ // session pool.\n//\n...
Go
Apache License 2.0
googleapis/google-cloud-go
docs: clarify MaxIdle in SessionPoolConfig (#4304) Co-authored-by: Hengfeng Li <hengfeng@google.com>
1
docs
null
688,456
23.06.2021 14:01:16
-10,800
87553c17fd349bb83cd810c59a90b31b3f88f4b4
feat(tooltip): show tooltip on both label and control
[ { "change_type": "MODIFY", "diff": "@@ -3,12 +3,14 @@ import { mount } from '@cypress/react'\nimport {\nAutocomplete,\nButton,\n+ Checkbox,\nContainer,\nDropdown,\nGrid,\nLink,\nMenu,\nModal,\n+ Radio,\nTooltip,\nTooltipProps,\nTypography\n@@ -165,6 +167,30 @@ const LinkTooltipExample = () => {\n)\n}\n+cons...
TypeScript
MIT License
toptal/picasso
feat(tooltip): show tooltip on both label and control (#2102)
1
feat
tooltip
756,026
23.06.2021 14:04:30
25,200
065ca94acc2dd8092374a4f324fe85c5c4a782f3
refactor: regularize grouped awaits await'ing only the last message sent to the same recipient is an anti-pattern.
[ { "change_type": "MODIFY", "diff": "@@ -62,19 +62,15 @@ async function committeeBinaryStart(\nconst bobP = E(voterCreator).createVoter('Bob', invitations[1], 'Meeny');\nconst carolP = E(voterCreator).createVoter('Carol', invitations[2], 'Eeny');\nconst daveP = E(voterCreator).createVoter('Dave', invitations...
JavaScript
Apache License 2.0
agoric/agoric-sdk
refactor: regularize grouped awaits (#3400) await'ing only the last message sent to the same recipient is an anti-pattern.
1
refactor
null
711,597
23.06.2021 14:04:45
-7,200
be59bf9d578349093a20b0ebb97f738809d7052b
fix(core): Improve fault tolerance of "apply-collection-filters" job
[ { "change_type": "MODIFY", "diff": "@@ -87,17 +87,23 @@ export class CollectionService implements OnModuleInit {\nLogger.verbose(`Processing ${job.data.collectionIds.length} Collections`);\nlet completed = 0;\nfor (const collectionId of job.data.collectionIds) {\n- const collection = await this.connection.g...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(core): Improve fault tolerance of "apply-collection-filters" job
1
fix
core
815,598
23.06.2021 14:24:51
-28,800
3cced6a9eac82760890e4c12e9ab5b7a9af36eac
ci: add jobs dependencies in ci.yaml
[ { "change_type": "MODIFY", "diff": "@@ -37,6 +37,7 @@ jobs:\nif-simple-tests-enabled:\nname: Check If Simple Tests is Enabled\n+ needs: if-workflow-is-required\nif: |\ncontains(github.event_name, 'pull_request')\n|| contains('refs/heads/master,\n@@ -45,12 +46,12 @@ jobs:\nrefs/heads/staging2', github.ref)\n...
Rust
MIT License
nervosnetwork/ckb
ci: add jobs dependencies in ci.yaml
1
ci
null
777,367
23.06.2021 14:27:32
14,400
7d094de6c029bd94db76539aa57c9b74809c7ba1
fix: print out errors when agent setup script generating fails
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,7 @@ package provisioner\nimport (\n\"bytes\"\n+ \"fmt\"\n\"text/template\"\n\"github.com/determined-ai/determined/master/pkg/device\"\n@@ -30,7 +31,7 @@ func mustMakeAgentSetupScript(config agentSetupScriptConfig) []byte {\ntpl := template.Must(template.New(\"...
Python
Apache License 2.0
determined-ai/determined
fix: print out errors when agent setup script generating fails (#2612)
1
fix
null
401,123
23.06.2021 14:40:14
-19,080
57103b3d30b2f999d01e6e9b3823be1d9e88a2c5
fix(layout): updates the defaultOpen prop's default value to false affects:
[ { "change_type": "MODIFY", "diff": "@@ -57,5 +57,6 @@ SideNav.Context = SideNavContext;\nSideNav.displayName = 'SideNav';\nSideNav.Style = Styled.Aside;\nSideNav.defaultProps = {\n- hideShadow: false\n+ hideShadow: false,\n+ defaultOpen: false\n};\n", "new_path": "packages/layout/src/components/SideNav/...
TypeScript
MIT License
medly/medly-components
fix(layout): updates the defaultOpen prop's default value to false affects: @medly-components/layout
1
fix
layout
815,598
23.06.2021 14:40:18
-28,800
3aa8ad8677d5e22feaf794851cf6ac3d1ac65b40
ci: enable ci for develop when not bors
[ { "change_type": "MODIFY", "diff": "@@ -26,8 +26,7 @@ jobs:\n&& ( contains('refs/heads/master,\nrefs/heads/develop,\nrefs/heads/trying,\n- refs/heads/staging,\n- refs/heads/staging2', github.ref)\n+ refs/heads/staging', github.ref)\n|| startsWith(github.ref, 'refs/heads/rc/')))\n|| contains(github.event.hea...
Rust
MIT License
nervosnetwork/ckb
ci: enable ci for develop when not bors
1
ci
null
126,276
23.06.2021 14:40:30
10,800
623f5016aad8f3a077ec801c1a2ab19dd3ec7009
chore(pkg/auth): list of supported operations in maintenance mode
[ { "change_type": "MODIFY", "diff": "@@ -16,6 +16,40 @@ limitations under the License.\npackage auth\n+var maintenanceMethods = map[string]struct{}{\n+ \"Get\": {},\n+ \"VerifiableGet\": {},\n+ \"StreamGet\": {},\n+ \"StreamVerifiableGet\": {},\n+ \"GetAll\": {},\n+ \"ZScan\": {},\n+ \"StreamZScan\": {},\n+ ...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/auth): list of supported operations in maintenance mode Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/auth
401,123
23.06.2021 14:41:01
-19,080
ddd4dac75668c18fb40a236c092b870b0f6f5b38
test(layout): updates tests affects:
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,12 @@ export const StaticProps: FC<SideNavStaticProps> = () => null;\nexport const SidenavContextTheme: FC<Context> = () => null;\nexport const Basic = () => (\n- <SideNav onChange={action('NavItem clicked')} defaultActive=\"/\" hideShadow={boolean('Hide Shad...
TypeScript
MIT License
medly/medly-components
test(layout): updates tests affects: @medly-components/layout
1
test
layout
126,276
23.06.2021 14:41:14
10,800
6403f7c0afe9edeb3b3ac4a4645868a98b814539
feat(pkg/client): deprecate CleanIndex operation
[ { "change_type": "MODIFY", "diff": "@@ -23,13 +23,14 @@ import (\n\"crypto/tls\"\n\"crypto/x509\"\n\"fmt\"\n- \"github.com/codenotary/immudb/pkg/client/errors\"\n\"io\"\n\"io/ioutil\"\n\"os\"\n\"sync\"\n\"time\"\n+ \"github.com/codenotary/immudb/pkg/client/errors\"\n+\n\"github.com/codenotary/immudb/pkg/str...
Go
Apache License 2.0
codenotary/immudb
feat(pkg/client): deprecate CleanIndex operation Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
feat
pkg/client
126,276
23.06.2021 14:41:46
10,800
ec4a62cbae996d89a1aea2f45326ff0e6cebc372
chore(cmd/immuclient): update error comparisson
[ { "change_type": "MODIFY", "diff": "@@ -52,8 +52,8 @@ func (i *immuc) Login(args []string) (string, error) {\nctx := context.Background()\nresponse, err := i.ImmuClient.Login(ctx, user, pass)\nif err != nil {\n- if strings.Contains(err.Error(), \"authentication is disabled on server\") {\n- return \"authent...
Go
Apache License 2.0
codenotary/immudb
chore(cmd/immuclient): update error comparisson Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
cmd/immuclient
942,615
23.06.2021 14:53:07
25,200
49949c03eccd14fcc78af004961729066714cbab
docs: Fix codemod link in v5 migration guide
[ { "change_type": "MODIFY", "diff": "@@ -29,7 +29,7 @@ any questions about the update.\n## Codemod\n-We've introduced a [new codemod package](./modules/codemod) you can use to automatically update your\n+We've introduced a [new codemod package](../../codemod) you can use to automatically update your\ncode to...
TypeScript
Apache License 2.0
workday/canvas-kit
docs: Fix codemod link in v5 migration guide
1
docs
null
711,597
23.06.2021 14:58:55
-7,200
56ab5bdbd65812eb5388ec3eb35cf00ed8921117
fix(admin-ui): Correctly export relation selector components Relates to
[ { "change_type": "MODIFY", "diff": "@@ -213,6 +213,9 @@ const DECLARATIONS = [\nLocaleDatePipe,\nLocaleCurrencyPipe,\nTagSelectorComponent,\n+ ManageTagsDialogComponent,\n+ RelationSelectorDialogComponent,\n+ RelationCardComponent,\n];\nconst DYNAMIC_FORM_INPUTS = [\n@@ -238,13 +241,7 @@ const DYNAMIC_FORM_...
TypeScript
MIT License
vendure-ecommerce/vendure
fix(admin-ui): Correctly export relation selector components Relates to #941
1
fix
admin-ui
392,551
23.06.2021 14:59:43
-7,200
cda8664703d2e4311c9b04f2d686c486362ed404
fix: correct example title for correct code link
[ { "change_type": "MODIFY", "diff": "@@ -77,5 +77,5 @@ slug: /\n| [Three.js Renderer](/examples/three-renderer) | Render | Use [Three.js](https://threejs.org/) to render a cube |\n| [Animation](/examples/animation) | Render | Make a rotating cube [animation](https://developer.mozilla.org/en-US/docs/Web/API/W...
TypeScript
MIT License
mapillary/mapillary-js
fix: correct example title for correct code link
1
fix
null
392,551
23.06.2021 15:28:08
-7,200
86586f0ca46984685cc8a4b3f842a53292814d5c
fix: use correct reference
[ { "change_type": "MODIFY", "diff": "@@ -474,7 +474,7 @@ export function init(opts) {\nconst image = await viewer.getImage();\nonImage(image);\nawait onPosition();\n- cubeLayer.setReference(image.lngLat);\n+ cubeLayer.setReference(cubeRenderer.reference);\n});\nviewer.on('image', (event) => onImage(event.ima...
TypeScript
MIT License
mapillary/mapillary-js
fix: use correct reference
1
fix
null
777,422
23.06.2021 15:35:22
25,200
d3b55edb68107f2450f186920053b70a8d59353b
fix: linting error in circle ci
[ { "change_type": "MODIFY", "diff": "@@ -261,10 +261,8 @@ class PyTorchTrialContext(det.TrialContext, pytorch._PyTorchReducerContext):\nSets a torch profiler instance on the trial context to be called in _pytorch_trial\nwhen training.\n\"\"\"\n- self.profiler = torch.profiler.profile( # type: ignore\n- on_tr...
Python
Apache License 2.0
determined-ai/determined
fix: linting error in circle ci (#2613)
1
fix
null
756,013
23.06.2021 15:56:48
21,600
225e900b87fef8a01294402689aea93870ddf89c
fix: upgrade to allow `gentx --keyring-dir=...`
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,8 @@ replace google.golang.org/grpc => google.golang.org/grpc v1.33.2\n// replace github.com/tendermint/tendermint => github.com/agoric-labs/tendermint v0.33.1-dev2.0.20210310191408-9156bacf449c\n// At least until GetABCIEventHistory() is implemented and rele...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix: upgrade to allow `gentx --keyring-dir=...`
1
fix
null
401,123
23.06.2021 16:09:09
-19,080
0b118d3e206a57321de6e2121b78caf9b1340334
fix(layout): removes defaultOpen from SideNav's defaultProps affects:
[ { "change_type": "MODIFY", "diff": "@@ -38,11 +38,11 @@ describe('SideNav', () => {\nexpect(container).toMatchSnapshot();\n});\n- it('should be closed by default on 1025+ screen sizes', () => {\n+ it('should open by default on 1025+ screen sizes', () => {\nObject.defineProperty(window, 'innerWidth', { writa...
TypeScript
MIT License
medly/medly-components
fix(layout): removes defaultOpen from SideNav's defaultProps affects: @medly-components/layout
1
fix
layout
438,921
23.06.2021 16:42:43
-32,400
e84a4f1a326d595c67cfe344d6ae453307496d8b
fix(zoom,grid): fix grid line pos during zoom Make .xv() to use zoom scale when is present Specify data type parameter within scale.ts Fix
[ { "change_type": "MODIFY", "diff": "@@ -24,3 +24,9 @@ export interface IArcData {\nendAngle: number;\nvalue: number;\n}\n+\n+export interface IGridData {\n+ axis?: string;\n+ text: string;\n+ value: number;\n+}\n", "new_path": "src/ChartInternal/data/IData.ts", "old_path": "src/ChartInternal/data/ID...
TypeScript
MIT License
naver/billboard.js
fix(zoom,grid): fix grid line pos during zoom - Make .xv() to use zoom scale when is present - Specify data type parameter within scale.ts Fix #2156
1
fix
zoom,grid
276,989
23.06.2021 16:48:02
10,800
ef903f57d8c8f5ac0665b0f23792c5e6843a5ca1
feat(system): adding width and height modules
[ { "change_type": "MODIFY", "diff": "@@ -127,6 +127,24 @@ const paddingVertical = props =>\ntransform: toPx,\n});\n+const width = props =>\n+ generator({\n+ props,\n+ prop: ['width', 'w'],\n+ cssProperty: 'width',\n+ getter: getSpacing,\n+ transform: toPx,\n+ });\n+\n+const height = props =>\n+ generator({\n...
JavaScript
MIT License
gympass/yoga
feat(system): adding width and height modules
1
feat
system
276,989
23.06.2021 16:49:31
10,800
12ae7733cc5aa7c840c4b22eb22e19c79c8cf755
feat(system): adding layout module with display, positions, position, top, right, bottom, left submodules
[ { "change_type": "ADD", "diff": "+import { toPx } from './unit';\n+import { compose, generator, getSpacing } from './theme';\n+\n+const display = props =>\n+ generator({\n+ props,\n+ prop: ['display', 'd'],\n+ cssProperty: 'display',\n+ getter: () => ({}),\n+ });\n+\n+const position = props =>\n+ generator(...
JavaScript
MIT License
gympass/yoga
feat(system): adding layout module with display, positions, position, top, right, bottom, left submodules
1
feat
system
276,989
23.06.2021 16:50:42
10,800
d8b1359fc319e8e626d80bc307ac93fc0fcf4e2e
feat(system): adding flex module with flex, flexBasis, flexFlow, flexGrow, flexShrink, flexWrap, flexDirection, alignItems, alignContent, alignSelf, justifyContent, justifySelf, flexes submodules
[ { "change_type": "ADD", "diff": "+import { compose, generator } from './theme';\n+\n+const flexDirection = props =>\n+ generator({\n+ props,\n+ prop: ['flexDirection'],\n+ cssProperty: 'flexDirection',\n+ getter: () => ({}),\n+ });\n+\n+const alignItems = props =>\n+ generator({\n+ props,\n+ prop: ['alignIt...
JavaScript
MIT License
gympass/yoga
feat(system): adding flex module with flex, flexBasis, flexFlow, flexGrow, flexShrink, flexWrap, flexDirection, alignItems, alignContent, alignSelf, justifyContent, justifySelf, flexes submodules
1
feat
system
71,766
23.06.2021 16:53:11
25,200
6c68136a1d1542b720a1e802950d87e74b400ff8
chore(mergify): add bryanpan342 to mergify
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ pull_request_rules:\nlabel:\nadd: [ contribution/core ]\nconditions:\n- - author~=^(eladb|RomainMuller|garnaat|nija-at|skinny85|rix0rrr|NGL321|Jerry-AWS|MrArnoldPalmer|NetaNir|iliapolo|njlynch|ericzbeard|ccfife|fulghum|pkandasamy91|SoManyHs|uttarasridhar|o...
TypeScript
Apache License 2.0
aws/aws-cdk
chore(mergify): add bryanpan342 to mergify (#15236) Co-authored-by: Pan <panbrya@88665a1ea529.ant.amazon.com>
1
chore
mergify
276,989
23.06.2021 16:54:24
10,800
1d1359baa25898524b116031c5f4436d1cdb6cc4
feat(system): add display, positions, and flexes submodules into system module
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,8 @@ import { backgroundColor } from './color';\nimport { elevation } from './elevation';\nimport { spacing } from './spacing';\nimport { typography } from './typography';\n+import { display, positions } from './layout';\n+import { flexes } from './flex';\nimpo...
JavaScript
MIT License
gympass/yoga
feat(system): add display, positions, and flexes submodules into system module
1
feat
system
276,989
23.06.2021 16:55:08
10,800
2711379c5055c8747ddf6d7f703994d01cb8894e
feat(system): exporting new modules
[ { "change_type": "MODIFY", "diff": "-export * from './spacing';\n-export * from './color';\nexport * from './border';\n-export * from './typography';\n+export * from './color';\nexport * from './elevation';\n+export * from './flex';\n+export * from './layout';\n+export * from './spacing';\nexport * from './...
JavaScript
MIT License
gympass/yoga
feat(system): exporting new modules
1
feat
system
276,989
23.06.2021 17:03:25
10,800
f233f1782aa2d9983a3da7fbcf335e6df98508a8
test(system): add tests for width and height submodules
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,8 @@ import {\npaddingLeft,\npaddingHorizontal,\npaddingVertical,\n+ width,\n+ height,\nspacing,\n} from './spacing';\n@@ -597,4 +599,76 @@ describe('spacings', () => {\nexpect(pv).toStrictEqual(expectedNoTheme);\n});\n});\n+\n+ describe('width', () => {\n+ i...
JavaScript
MIT License
gympass/yoga
test(system): add tests for width and height submodules
1
test
system
401,123
23.06.2021 17:26:35
-19,080
4a7ea494e8fbd36d9c92fbac6a3de9a5e0800c36
chore: rebase with master affects:
[ { "change_type": "MODIFY", "diff": "@@ -248,6 +248,25 @@ To show Custom Component, you need pass props in below format.\n**Note:** It is advisable to wrap your component in `<tr>` tag to avoid warnings.\n+### Custom Column Cell Component\n+\n+You can pass a Custom Component to the `columns` prop of the Tabl...
TypeScript
MIT License
medly/medly-components
chore: rebase with master affects: @medly-components/core
1
chore
null
401,123
23.06.2021 17:27:16
-19,080
8eba7c68ff6eec765811070b8ca2265e17ba6ddb
docs(core): adds withMinimap knob to the Table component's canvas affects:
[ { "change_type": "MODIFY", "diff": "@@ -213,6 +213,7 @@ export const RowHoverActions: RowHoverActionsType = ({ rowId, rowData }) => {\nexpandedRowComponent={ExpandedRowComponent}\nwithActionBar={boolean('Enable action bar', true)}\nactions={Actions}\n+ withMinimap={boolean('Enable minimap', false)}\nwithPag...
TypeScript
MIT License
medly/medly-components
docs(core): adds withMinimap knob to the Table component's canvas affects: @medly-components/core
1
docs
core
711,597
23.06.2021 17:28:13
-7,200
d76c306acd3a0d17b98c6f6197ac99d0b645fa69
docs: Add docs on ui for relation custom fields Relates to
[ { "change_type": "MODIFY", "diff": "@@ -273,4 +273,12 @@ mutation {\n}\n}\n```\n+#### UI for relation type\n+The Admin UI app has built-in selection components for \"relation\" custom fields which reference certain common entity types, such as Asset, Product, ProductVariant and Customer. If you are relating...
TypeScript
MIT License
vendure-ecommerce/vendure
docs: Add docs on ui for relation custom fields Relates to #941
1
docs
null
815,609
23.06.2021 17:38:07
-28,800
db218247f6e9cf708511a71f88fd2fd7d4c81fbd
fix(hardfork): tx-pool drain the proposed in the incorrect order and not clear pending
[ { "change_type": "MODIFY", "diff": "use crate::{component::entry::TxEntry, error::Reject};\nuse ckb_types::{\n- core::{Capacity, TransactionView},\n+ core::Capacity,\npacked::{OutPoint, ProposalShortId},\n};\nuse std::borrow::Cow;\n@@ -400,15 +400,11 @@ impl SortedTxMap {\n.map(move |key| self.entries.get(&...
Rust
MIT License
nervosnetwork/ckb
fix(hardfork): tx-pool drain the proposed in the incorrect order and not clear pending
1
fix
hardfork
599,886
23.06.2021 17:51:08
-32,400
11378549c64c364ba3f0a4effbf4eb16ecd43f51
refactor(ui): only show fixed top border on pwa desktop widths
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,7 @@ const Layout: React.FC = ({ children }) => {\nreturn (\n<div className=\"flex h-full min-w-0 min-h-full bg-gray-900\">\n- <div className=\"fixed inset-0 z-20 w-full h-1 border-t border-gray-700 pwa-only\" />\n+ <div className=\"fixed inset-0 z-20 w-full ...
TypeScript
MIT License
sct/overseerr
refactor(ui): only show fixed top border on pwa desktop widths
1
refactor
ui
104,828
23.06.2021 17:51:20
-7,200
094597bb2b40e628859a2e819b99bf849980722a
fix(hotspoteditormodal): hide data tab content
[ { "change_type": "MODIFY", "diff": "@@ -494,7 +494,7 @@ const HotspotEditorModal = ({\n/>\n</Tab>\n<Tab disabled={hasNonEditableContent} label={fixedTypeDataSourceTabLabelText}>\n- {renderDataSourceTab()}\n+ {hasNonEditableContent ? null : renderDataSourceTab()}\n</Tab>\n</Tabs>\n)}\n@@ -541,7 +541,7 @@ con...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
fix(hotspoteditormodal): hide data tab content
1
fix
hotspoteditormodal
780,866
23.06.2021 17:57:37
10,800
4f3d78899d76894d8d69f99c9f302ed1d69aefbd
fix(framework/build): ensure node process exits
[ { "change_type": "MODIFY", "diff": "@@ -231,4 +231,5 @@ bundler.then(async ({ assetsByChunkName }) => {\npath.join(process.cwd(), '.bundles.json'),\nJSON.stringify({ assetsByChunkName }, null, 2)\n)\n+ process.exit(0)\n})\n", "new_path": "@ecomplus/storefront-framework/src/bin/scripts/build.js", "ol...
JavaScript
MIT License
ecomplus/storefront
fix(framework/build): ensure node process exits
1
fix
framework/build
780,866
23.06.2021 17:58:35
10,800
ceeccbe474f4206388a17093b44cb5a9c16a142a
feat(app/payment-methods): custom class name and data-layer for each gateway element
[ { "change_type": "MODIFY", "diff": ">\n<a\nhref=\"#\"\n- class=\"payment__gateway list-group-item list-group-item-action\"\nv-for=\"(gateway, i) in paymentGateways\"\nv-if=\"gateway.payment_method.code !== 'loyalty_points'\"\nv-show=\"selectedGateway === -1 || selectedGateway === i\"\n:key=\"gateway.app_id ...
JavaScript
MIT License
ecomplus/storefront
feat(app/payment-methods): custom class name and data-layer for each gateway element
1
feat
app/payment-methods
756,064
23.06.2021 18:37:25
25,200
a061a3e92f4ab90d293dfb5bff0223a24ed12d87
fix: use 'local' worker, not xsnap, on both solo and chain closes
[ { "change_type": "MODIFY", "diff": "{\n\"bootstrap\": \"bootstrap\",\n- \"defaultManagerType\": \"xs-worker\",\n+ \"defaultManagerType\": \"local\",\n\"vats\": {\n\"spawner\": {\n\"sourceSpec\": \"./src/vat-spawner.js\"\n", "new_path": "packages/solo/solo-config.json", "old_path": "packages/solo/sol...
JavaScript
Apache License 2.0
agoric/agoric-sdk
fix: use 'local' worker, not xsnap, on both solo and chain closes #3403
1
fix
null
815,593
23.06.2021 18:37:30
-32,400
6fe7f8b31aa7270629d5a27a486d511486485a3f
chore: skip updating tx_verify_cache about the cellbase tx
[ { "change_type": "MODIFY", "diff": "@@ -745,11 +745,8 @@ impl ChainService {\nswitch,\n) {\nOk((cycles, cache_entries)) => {\n- let txs_fees = cache_entries\n- .into_iter()\n- .skip(1)\n- .map(|entry| entry.fee)\n- .collect();\n+ let txs_fees =\n+ cache_entries.into_iter().map(|entry| entry.fee).collect();\...
Rust
MIT License
nervosnetwork/ckb
chore: skip updating tx_verify_cache about the cellbase tx
1
chore
null
777,422
23.06.2021 18:41:52
25,200
2ab89edcb5fec4bb76985c085b2a3f25215d3380
fix: update custom-env docs with new versions
[ { "change_type": "MODIFY", "diff": "@@ -93,10 +93,10 @@ In the current version of Determined, experiments and tasks are executed\nin containers with the following:\n- Ubuntu 18.04\n-- CUDA 10.2\n+- CUDA 11.1\n- Python 3.7\n-- TensorFlow 1.15.5\n-- PyTorch 1.7.1\n+- TensorFlow 2.4.2\n+- PyTorch 1.9.0\nDeterm...
Python
Apache License 2.0
determined-ai/determined
fix: update custom-env docs with new versions (#2611)
1
fix
null
471,257
23.06.2021 19:01:48
-10,800
6fb4fd1712babdbb5de216c26e1283a94f7159ea
fix(xhr): make performance observer work with relative urls
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ export function urlMatches(url: string, urlToMatch: string | RegExp): boolean {\nif (typeof urlToMatch === 'string') {\nreturn url === urlToMatch;\n} else {\n- return !!url.match(urlToMatch);\n+ return urlToMatch.test(url);\n}\n}\n/**\n", "new_path":...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js
fix(xhr): make performance observer work with relative urls (#2226) Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com> Co-authored-by: Bartlomiej Obecny <bobecny@gmail.com> Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr>
1
fix
xhr
217,922
23.06.2021 19:38:36
-7,200
54f360458c3ddaf1868b63b9af5eed947395e7d9
chore(release): 8.2.14
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"8.2.14\"></a>\n+## [8.2.14](https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/compar...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 8.2.14
1
chore
release
780,866
23.06.2021 19:58:31
10,800
bfa14bb9f20b4cbe9aa2eca954a99bc727fe29c7
fix(renderer/redirects): add `proxy-revalidate` to cache control for 302 redirects new X-SSR-ID header for all requests
[ { "change_type": "MODIFY", "diff": "@@ -18,18 +18,24 @@ exports.ssr = (req, res, getCacheControl) => {\nconst url = req.url.replace(/\\?.*$/, '').replace(/\\.html$/, '')\nconst setStatusAndCache = (status, defaultCache) => {\n- return res.status(status).set(\n+ return res.status(status)\n+ .set('X-SSR-ID', ...
JavaScript
MIT License
ecomplus/storefront
fix(renderer/redirects): add `proxy-revalidate` to cache control for 302 redirects new X-SSR-ID header for all requests
1
fix
renderer/redirects
869,315
23.06.2021 20:10:41
-7,200
51c7c21043363faadada7ee05e03e3bb41fea533
feat: swopfi driver
[ { "change_type": "MODIFY", "diff": "@@ -283,6 +283,7 @@ exports.Stex = require('./stex');\nexports.Surface = require('./surface');\nexports.Sushiswap = require('./sushiswap');\nexports.Switcheo = require('./switcheo');\n+exports.Swopfi = require('./swopfi');\nexports.Tchapp = require('./tchapp');\nexports.T...
JavaScript
MIT License
coinranking/exchanges
feat: swopfi driver
1
feat
null
217,237
23.06.2021 20:36:31
-10,800
506f4097f195243c474999c1f29001c7dc56d152
feat(companies): add yet more
[ { "change_type": "MODIFY", "diff": "@@ -65,6 +65,11 @@ export const companies = [\n{\nurl: \"https://kode.ru/\",\nsrc: \"kode.png\",\n- alt: \"kode\",\n+ alt: \"KODE\",\n+ },\n+ {\n+ url: \"https://uptarget.co/\",\n+ src: \"uptarget.png\",\n+ alt: \"Uptarget\",\n},\n];\n", "new_path": "website/src/pages...
JavaScript
MIT License
feature-sliced/documentation
feat(companies): add yet more
1
feat
companies
71,272
23.06.2021 20:40:23
-36,000
1fe680c198542fbbb9ba54bc50f9a303755a62b0
feat(msk): IAM access control for clusters MSK now supports IAM access control for client authentication with a MSK cluster. *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": "@@ -76,6 +76,10 @@ const cluster = msk.Cluster.fromClusterArn(this, 'Cluster', 'arn:aws:kafka:us-we\n## Client Authentication\n+[MSK supports](https://docs.aws.amazon.com/msk/latest/developerguide/kafka_apis_iam.html) the following authentication mechanisms.\n+\n+> Only o...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(msk): IAM access control for clusters (#14647) MSK now supports IAM access control for client authentication with a MSK cluster. https://aws.amazon.com/about-aws/whats-new/2021/05/introducing-iam-access-control-amazon-msk/ ---- *By submitting this pull request, I confirm that my contribution is made und...
1
feat
msk
217,922
23.06.2021 20:41:36
-7,200
5c47d67b899c84c1afaa88436641afcfb3fd3d94
fix(layouts): removed export button for default layout
[ { "change_type": "MODIFY", "diff": "<nz-option *ngFor=\"let availableLayout of allLayouts\" [nzLabel]=\"availableLayout.name\"\n[nzValue]=\"availableLayout\"></nz-option>\n</nz-select>\n- <div>{{'LIST_DETAILS.LAYOUT_DIALOG.Want_to_learn_more' | translate}}&nbsp;<a href=\"https://wiki.ffxivteamcraft.com/base...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(layouts): removed export button for default layout
1
fix
layouts
791,639
23.06.2021 20:55:13
-7,200
ca13e2b03193c7ab9963696fce1ec9d19988dd90
chore: delete unused api-extractor dependencies Fixes
[ { "change_type": "MODIFY", "diff": "},\n\"devDependencies\": {\n\"@grpc/proto-loader\": \"^0.6.0\",\n- \"@microsoft/api-documenter\": \"^7.8.10\",\n- \"@microsoft/api-extractor\": \"^7.8.10\",\n\"@opentelemetry/tracing\": \"^0.22.0\",\n\"@types/execa\": \"^0.9.0\",\n\"@types/extend\": \"^3.0.0\",\n", "n...
TypeScript
Apache License 2.0
googleapis/nodejs-pubsub
chore: delete unused api-extractor dependencies (#1339) Fixes https://github.com/googleapis/nodejs-pubsub/issues/1338
1
chore
null
129,350
23.06.2021 20:57:34
-7,200
986f2d8fda44bd69e1d1763ab3a3cadf120566df
fix: correct indentation for json config for better readability
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ class JsonConfig(BaseConfig):\nparser[\"commitizen\"][key] = value\nwith open(self.path, \"w\") as f:\n- json.dump(parser, f)\n+ json.dump(parser, f, indent=2)\nreturn self\ndef _parse_setting(self, data: Union[bytes, str]):\n", "new_path": "commitiz...
Python
MIT License
commitizen-tools/commitizen
fix: correct indentation for json config for better readability
1
fix
null
317,646
23.06.2021 21:50:05
-7,200
fb83354186f0d27be50291d1785cb8c923ad338f
fix: int comes in as float from json resolves
[ { "change_type": "MODIFY", "diff": "@@ -121,12 +121,17 @@ func (p *properties) getInt(property Property, defaultValue int) int {\nreturn defaultValue\n}\n- intValue, ok := val.(int)\n+ if intValue, ok := val.(int); ok {\n+ return intValue\n+ }\n+\n+ // json parses a float\n+ intValue, ok := val.(float64)\ni...
Go
MIT License
jandedobbeleer/oh-my-posh
fix: int comes in as float from json resolves #755
1
fix
null
317,646
23.06.2021 22:00:40
-7,200
3fd70ce716cde73b437d009325d2804963f5f990
refactor: remove vertical_offset for transient prompt relates to
[ { "change_type": "MODIFY", "diff": "@@ -123,8 +123,6 @@ The configuration has the following properties:\n- foreground: `string` [color][colors]\n- template: `string` - A go [text/template][go-text-template] template extended with [sprig][sprig] utilizing the\nproperties below. Defaults to `{{ .Shell }}> <#f...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor: remove vertical_offset for transient prompt relates to #807
1
refactor
null
317,646
23.06.2021 22:19:43
-7,200
db1f6bb751aab6edfdf60122d7c21ec02c06331e
fix(dotnet): correct exit code for different OS architectures closes
[ { "change_type": "ADD", "diff": "+// +build !windows\n+\n+package main\n+\n+const (\n+ dotnetExitCode = 142\n+)\n", "new_path": "src/constants_unix.go", "old_path": null }, { "change_type": "ADD", "diff": "+// +build windows\n+// +build amd64\n+\n+package main\n+\n+const (\n+ dotnetExitC...
Go
MIT License
jandedobbeleer/oh-my-posh
fix(dotnet): correct exit code for different OS architectures closes #819
1
fix
dotnet
185,953
24.06.2021 03:21:08
25,200
4ccdaa56bfbb0b0df778a8e3cef9884c802a59b4
fix: update webcontents demo with loadURL
[ { "change_type": "MODIFY", "diff": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n- <title>Print Example</title>\n+ <title>Load URL Example</title>\n</head>\n<body>\n- <h1>Print Example</h1>\n+ <h1>Load URL Example</h1>\n<p>\n- Almost immediately after opening the page, the print\n- dialog should show up.\n+...
TypeScript
MIT License
electron/fiddle
fix: update webcontents demo with loadURL (#736)
1
fix
null
126,276
24.06.2021 08:28:11
10,800
cec9179c018a91a96e1f8a11e24a1f0ee00d5f0f
chore(pkg/database): log when a database is sucessfully opened
[ { "change_type": "MODIFY", "diff": "@@ -133,6 +133,7 @@ func OpenDb(op *DbOptions, systemDB DB, log logger.Logger) (DB, error) {\n}\nif op.replicationOpts.Replica {\n+ dbi.Logger.Infof(\"Database '%s' successfully opened (replica = %v)\", op.dbName, op.replicationOpts.Replica)\nreturn dbi, nil\n}\n@@ -176,6...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/database): log when a database is sucessfully opened Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/database
126,276
24.06.2021 08:28:38
10,800
a8cd12c6ac563686242c836e0320c32959c1a7bd
chore(pkg/server): fix typo in error message
[ { "change_type": "MODIFY", "diff": "@@ -377,7 +377,7 @@ func (s *ImmuServer) ChangePermission(ctx context.Context, r *schema.ChangePermi\n//do not allow to change own permissions, user can lock itsself out\nif r.Username == user.Username {\n- return nil, status.Errorf(codes.InvalidArgument, \"changing you o...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/server): fix typo in error message Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/server
126,276
24.06.2021 08:29:20
10,800
411c18724e19e69830b4b5ee7f3354b490f85733
feat(pkg/server): enable simultaneous replication of systemdb and defaultdb
[ { "change_type": "MODIFY", "diff": "@@ -112,16 +112,18 @@ func (s *ImmuServer) Initialize() error {\nreturn logErr(s.Logger, \"Unable to load system database: %v\", err)\n}\n- if s.sysDB.IsReplica() {\n- s.Logger.Infof(\"Started in maintenance mode - systemdb in recovery mode\")\n- }\n-\nif !s.sysDB.IsRepli...
Go
Apache License 2.0
codenotary/immudb
feat(pkg/server): enable simultaneous replication of systemdb and defaultdb Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
feat
pkg/server
386,581
24.06.2021 09:04:48
-7,200
d2325b9e463b7abee329b83926b22b9742a196dd
chore: Update bug report template.
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,13 @@ labels: bug\nassignees: ''\n---\n+**README**\n+We use Github Discussions as a forum to discuss ideas and troubleshoot problems. If you are unsure if the problem you are experiencing is a bug, or would like to request a feature, please rather create a disc...
JavaScript
Apache License 2.0
lowdefy/lowdefy
chore: Update bug report template.
1
chore
null
386,581
24.06.2021 09:08:33
-7,200
9bf6ddbfd012157909a0dbd6f8c0595fe01a7d78
chore: Update issue template formating
[ { "change_type": "MODIFY", "diff": "@@ -6,24 +6,30 @@ labels: bug\nassignees: ''\n---\n-**README**\n+### README\n+\nWe use Github Discussions as a forum to discuss ideas and troubleshoot problems. If you are unsure if the problem you are experiencing is a bug, or would like to request a feature, please rath...
JavaScript
Apache License 2.0
lowdefy/lowdefy
chore: Update issue template formating
1
chore
null
103,510
24.06.2021 09:28:10
10,800
d4c594b0c6c9f8e4eadb1499b8a1b6cceaf5dfa5
fix: TextInput border being cut out
[ { "change_type": "MODIFY", "diff": "@@ -116,7 +116,7 @@ const TextInputExample = () => {\nreturn (\n<TextInputAvoidingView>\n<ScreenWrapper\n- style={styles.container}\n+ contentContainerStyle={styles.container}\nkeyboardShouldPersistTaps={'always'}\nremoveClippedSubviews={false}\n>\n@@ -435,6 +435,15 @@ co...
TypeScript
MIT License
callstack/react-native-paper
fix: TextInput border being cut out (#2786)
1
fix
null