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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
780,866 | 21.01.2022 19:51:57 | 10,800 | 96987fe31f8311639d78722c841f8ecd3e3e310e | feat(template/cms): make brand colors optional to use (and preview) theme ones | [
{
"change_type": "MODIFY",
"diff": "import BasePreview from '../base-preview'\nimport virtualDoc from '../virtual-doc'\nimport fetchPage from '../fetch-page'\n-import { getColorYiq, getColorRgb, darkenColor } from './lib/color-functions'\n+import { getColorYiq, getColorRgb, darkenColor, getThemeColors } fro... | JavaScript | MIT License | ecomplus/storefront | feat(template/cms): make brand colors optional to use (and preview) theme ones [#607] | 1 | feat | template/cms |
780,866 | 21.01.2022 19:53:39 | 10,800 | 7075576b956176c023aab99267720e712b282e68 | chore(template/settings): empry brand colors by default | [
{
"change_type": "MODIFY",
"diff": "{\n\"domain\": \"storefront-demo.e-com.plus\",\n\"currency_symbol\": \"R$\",\n- \"primary_color\": \"#e83e8c\",\n+ \"primary_color\": \"\",\n\"theme\": {\n\"bootswatch\": \"_\",\n\"custom\": \"_\"\n\"mini_logo\": \"\",\n\"favicon\": \"/img/uploads/favicon.png\",\n\"countr... | JavaScript | MIT License | ecomplus/storefront | chore(template/settings): empry brand colors by default | 1 | chore | template/settings |
756,013 | 21.01.2022 20:59:53 | 21,600 | 50c6e53e819d033a934bea2ac59dab12aa15a064 | ci: use ubiquitous `yarn install --frozen-lockfile` | [
{
"change_type": "MODIFY",
"diff": "@@ -52,8 +52,8 @@ jobs:\nconsole.log(branch);\nreturn branch;\n- - name: yarn install\n- run: yarn install\n+ - name: yarn install --frozen-lockfile\n+ run: yarn install --frozen-lockfile\n# 'yarn build' loops over all workspaces\n- name: yarn build\nrun: yarn build\n",
... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | ci: use ubiquitous `yarn install --frozen-lockfile` | 1 | ci | null |
756,013 | 21.01.2022 21:13:37 | 21,600 | 0a6bee65e7f10e3f3058e070631e291d1da7ab56 | ci: check for differences after `yarn install` | [
{
"change_type": "MODIFY",
"diff": "@@ -33,8 +33,10 @@ jobs:\n# 'yarn install' must be done at the top level, to build all the\n# cross-package symlinks\n- - name: yarn install --frozen-lockfile\n- run: yarn install --frozen-lockfile\n+ - name: yarn install\n+ run: yarn install\n+ - name: check if git is di... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | ci: check for differences after `yarn install` | 1 | ci | null |
756,013 | 21.01.2022 21:25:18 | 21,600 | 43e566c73a71d8537b39f085cc4d34ec7a82890b | build(eslint-config): rely on same version of yarn dependencies | [
{
"change_type": "MODIFY",
"diff": "\"eslint\": \"^7.23.0\",\n\"eslint-config-airbnb-base\": \"^14.0.0\",\n\"eslint-config-jessie\": \"^0.0.4\",\n- \"eslint-config-prettier\": \"^6.9.0\",\n+ \"eslint-config-prettier\": \"^6.15.0\",\n\"eslint-plugin-import\": \"^2.20.0\",\n\"eslint-plugin-jsdoc\": \"^30.4.2\... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | build(eslint-config): rely on same version of yarn dependencies | 1 | build | eslint-config |
217,922 | 21.01.2022 21:29:02 | -3,600 | c5de35fc7c461bba846f2a0bd1c72676444568a0 | fix(list-details): increased debounce on list update to prevent rollbacks | [
{
"change_type": "MODIFY",
"diff": "@@ -229,7 +229,7 @@ export class ListsEffects {\nupdateListProgressInDatabase$ = createEffect(() => this.actions$.pipe(\nofType<UpdateListProgress>(ListsActionTypes.UpdateListProgress),\n- debounceTime(1000),\n+ debounceTime(4000),\nwithLatestFrom(this.listsFacade.selecte... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(list-details): increased debounce on list update to prevent rollbacks | 1 | fix | list-details |
780,866 | 21.01.2022 21:44:05 | 10,800 | 330417ae12e156b68cce207dfea983c1620486db | chore(template/cms): add loading spinner while fetching themes css | [
{
"change_type": "MODIFY",
"diff": "@@ -113,15 +113,15 @@ export default class CodePreview extends BasePreview {\n}\nconst { theme } = entries\n- const themeColors = getThemeColors(theme.bootswatch, theme.custom)\n- console.log({ theme, themeColors })\n- const primaryColor = entries.primary_color || themeCo... | JavaScript | MIT License | ecomplus/storefront | chore(template/cms): add loading spinner while fetching themes css | 1 | chore | template/cms |
104,828 | 21.01.2022 21:52:05 | -3,600 | ef75d006f54a5b784755d7620ab8b346097394bc | fix(table): fix incorrect data proptype | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,6 @@ import deprecate from '../../internal/deprecate';\nimport {\nTableColumnsPropTypes,\n- TableRowPropTypes,\nExpandedRowsPropTypes,\nEmptyStatePropTypes,\nTableSearchPropTypes,\n@@ -28,6 +27,7 @@ import {\nTableOrderingPropType,\nTableFiltersPropType,\nTab... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | fix(table): fix incorrect data proptype | 1 | fix | table |
269,464 | 21.01.2022 22:17:12 | 10,800 | acddce577774268b9616bc120e17d5e845ccdf1d | fix(aur): use StrictHostKeyChecking=accept-new by default | [
{
"change_type": "MODIFY",
"diff": "@@ -25,7 +25,7 @@ import (\nconst (\npkgBuildExtra = \"AURConfig\"\n- defaultSSHCommand = \"ssh -i {{ .KeyPath }} -F /dev/null\"\n+ defaultSSHCommand = \"ssh -i {{ .KeyPath }} -o StrictHostKeyChecking=accept-new -F /dev/null\"\ndefaultCommitMsg = \"Update to {{ .Tag }}\"\... | Go | MIT License | goreleaser/goreleaser | fix(aur): use StrictHostKeyChecking=accept-new by default
Signed-off-by: Carlos A Becker <caarlos0@gmail.com> | 1 | fix | aur |
551,648 | 21.01.2022 22:17:59 | -10,800 | 40357f456c6379509c112894055de27c46e84fb5 | fix(sql): support timestamp formats used by python drivers | [
{
"change_type": "MODIFY",
"diff": "@@ -31,11 +31,11 @@ import io.questdb.griffin.FunctionFactory;\nimport io.questdb.griffin.SqlExecutionContext;\nimport io.questdb.griffin.engine.functions.TimestampFunction;\nimport io.questdb.griffin.engine.functions.UnaryFunction;\n+import io.questdb.griffin.model.Inter... | Java | Apache License 2.0 | questdb/questdb | fix(sql): support timestamp formats used by python drivers (#1816) | 1 | fix | sql |
780,866 | 22.01.2022 00:19:35 | 10,800 | 4c4ff5f2681c4e2d7bf838a439ea2cdffbf32664 | fix(twbs/colors): custom components colors maps must use css vars for brand colors | [
{
"change_type": "MODIFY",
"diff": "@@ -207,8 +207,8 @@ $alert-colors: map-merge(\n$badge-colors: () !default;\n$badge-colors: map-merge(\n(\n- \"primary\": $primary,\n- \"secondary\": $secondary,\n+ \"primary\": var(--primary),\n+ \"secondary\": var(--secondary),\n\"success\": $success,\n\"info\": $info,\n... | JavaScript | MIT License | ecomplus/storefront | fix(twbs/colors): custom components colors maps must use css vars for brand colors | 1 | fix | twbs/colors |
780,866 | 22.01.2022 01:10:14 | 10,800 | d27b64174879c4b033ec6b6bd1bfef7f51b838b3 | feat(template/cms): new select widget to chose icons font | [
{
"change_type": "MODIFY",
"diff": "\"bootswatch\": \"_\",\n\"custom\": \"_\"\n},\n+ \"icons_font\": \"_\",\n\"bg_color\": \"#f5f6fa\",\n\"repository\": \"\",\n\"logo\": \"/img/uploads/logo.webp\",\n",
"new_path": "@ecomplus/storefront-template/content/settings.json",
"old_path": "@ecomplus/storefro... | JavaScript | MIT License | ecomplus/storefront | feat(template/cms): new select widget to chose icons font [#607] | 1 | feat | template/cms |
841,537 | 22.01.2022 01:10:33 | -39,600 | b2bf38d025064a42c398ab321fc2e69401a3f74b | fix(es/module): Remove `.jsx` file extension | [
{
"change_type": "MODIFY",
"diff": "@@ -58,7 +58,7 @@ where\nlet mut p = PathBuf::from(target_path);\nif is_file.unwrap_or_else(|| p.is_file()) {\nif let Some(v) = p.extension() {\n- if v == \"ts\" || v == \"tsx\" || v == \"js\" {\n+ if v == \"ts\" || v == \"tsx\" || v == \"js\" || v == \"jsx\" {\np.set_ext... | Rust | Apache License 2.0 | swc-project/swc | fix(es/module): Remove `.jsx` file extension (#3334) | 1 | fix | es/module |
780,866 | 22.01.2022 01:11:23 | 10,800 | 908fa5428cf1a23c184d2e5bf7ec16285d8029a2 | feat(framework/webpack): inject `icons_font` to scss from settings | [
{
"change_type": "MODIFY",
"diff": "@@ -38,6 +38,14 @@ try {\n// base output name for entry files on production\nconst filenameSchema = process.env.WEBPACK_OUTPUT_FILENAME || '[name].[contenthash]'\n+// inject brand colors\n+let scssInject = `$primary: ${primaryColor}; ` +\n+`$secondary: ${secondaryColor}; ... | JavaScript | MIT License | ecomplus/storefront | feat(framework/webpack): inject `icons_font` to scss from settings [#607] | 1 | feat | framework/webpack |
915,074 | 22.01.2022 02:52:05 | -39,600 | e257f3e6a4549b07533557aab941e5a1aa45337e | docs: recommend to start with one container in prod to complete first-time setup.
This is to ensure multiple concurrent workers don't both generate JWKs needlessly, for example.
See | [
{
"change_type": "MODIFY",
"diff": "@@ -126,3 +126,19 @@ serve:\ngroup: hydra-admin-api\nmode: 770\n```\n+\n+### Key generation and High Availability environments\n+\n+Be aware that on the very first launch of the Hydra container(s), a worker\n+process will perform certain first-time installation tasks, suc... | Go | Apache License 2.0 | ory/hydra | docs: recommend to start with one container in prod to complete first-time setup. (#2945)
This is to ensure multiple concurrent workers don't both generate JWKs needlessly, for example.
See https://github.com/ory/hydra/discussions/2943#discussioncomment-1997531 | 1 | docs | null |
756,013 | 22.01.2022 03:28:56 | 21,600 | 877f30aea8f782254157946750fd3b0a6b79b316 | fix(vats): minor adjustments to legacy bootstrap | [
{
"change_type": "MODIFY",
"diff": "@@ -249,7 +249,7 @@ async function makeChainBundler(\nsharingService,\nboard,\nchainTimerService,\n- { zoeService: zoe, feeMintAccess, feeCollectionPurse },\n+ { zoeService: zoe, feeMintAccess },\n{ priceAuthority, adminFacet: priceAuthorityAdmin },\nwalletManager,\n] = a... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(vats): minor adjustments to legacy bootstrap | 1 | fix | vats |
756,013 | 22.01.2022 03:29:31 | 21,600 | a4ab5062fb5e50026772d82504fcaeb8e2bc76d4 | feat(vats): Cosmos chain core bootstrap with ag-solo client | [
{
"change_type": "MODIFY",
"diff": "@@ -3,10 +3,11 @@ import { E, Far } from '@agoric/far';\nimport { makeIssuerKit } from '@agoric/ertp';\nimport { makeStore } from '@agoric/store';\n+\nimport { makeNameHubKit } from '../nameHub.js';\nimport { BLD_ISSUER_ENTRY } from '../issuers.js';\n-import { feeIssuerCo... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat(vats): Cosmos chain core bootstrap with ag-solo client | 1 | feat | vats |
317,846 | 22.01.2022 11:41:38 | -3,600 | df998f4331a22a0c840767b6e5a825dbfe9542dc | theme: typo in schema | [
{
"change_type": "MODIFY",
"diff": "},\n\"http_timeout\": {\n\"type\": \"integer\",\n- \"title\": \"Http requst timeout\",\n+ \"title\": \"Http request timeout\",\n\"description\": \"Timeout value to use for http request\",\n\"default\": 20\n},\n",
"new_path": "themes/schema.json",
"old_path": "them... | Go | MIT License | jandedobbeleer/oh-my-posh | theme: typo in schema | 1 | theme | null |
866,400 | 22.01.2022 15:08:35 | 18,000 | 276bc7394b2bbf1cc59c74c9fac5174968697b6d | feat(leadspace): add support for background-media usage
### Related Ticket(s)
closes
### Description
Updates `dds-leadspace` component logic and styles to utilize `dds-background-media` for background imagery and videos
### Changelog
**Changed**
`dds-leadspace` web component can use `dds-background-media` for background imagery and video | [
{
"change_type": "MODIFY",
"diff": "@import '@carbon/ibmdotcom-styles/scss/components/background-media/background-media';\n@import 'carbon-web-components/scss/components/tooltip/tooltip';\n+.#{$prefix}--background-media--video {\n+ aspect-ratio: 16 / 9; /* stylelint-disable-line property-no-unknown */\n+ @i... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | feat(leadspace): add support for background-media usage (#7773)
### Related Ticket(s)
closes #7148
### Description
Updates `dds-leadspace` component logic and styles to utilize `dds-background-media` for background imagery and videos
### Changelog
**Changed**
- `dds-leadspace` web component can use `dds-background-media` for background imagery and video | 1 | feat | leadspace |
724,049 | 22.01.2022 16:06:43 | -28,800 | 343cbccaa60ccfd6e759044833c27e986e3bdb6d | docs: fix a mistake in the demo 'Attach to DOM' | [
{
"change_type": "MODIFY",
"diff": "@@ -58,7 +58,7 @@ describe('Foo', () => {\nconst div = document.createElement('div')\ndocument.body.appendChild(div)\nconst wrapper = mount(Foo, {\n- attachTo: true\n+ attachTo: div\n})\nexpect(wrapper.contains('div')).toBe(true)\nwrapper.destroy()\n",
"new_path": "do... | JavaScript | MIT License | vuejs/vue-test-utils | docs: fix a mistake in the demo 'Attach to DOM' (#1947) | 1 | docs | null |
841,479 | 22.01.2022 16:10:59 | -28,800 | da709fe3d351f76b51b526cfd0718d8e6cb8f2a0 | fix(es/typescript): Handle typescript enums with string values | [
{
"change_type": "MODIFY",
"diff": "@@ -991,7 +991,7 @@ where\nlet rhs_should_be_name = members.iter().all(|(m, v): &(TsEnumMember, Expr)| match v {\nExpr::Lit(Lit::Str(s)) => match &m.id {\nTsEnumMemberId::Ident(i) => i.sym == s.value,\n- TsEnumMemberId::Str(s2) => s2.value != s.value,\n+ TsEnumMemberId::S... | Rust | Apache License 2.0 | swc-project/swc | fix(es/typescript): Handle typescript enums with string values (#3339) | 1 | fix | es/typescript |
780,866 | 22.01.2022 16:27:28 | 10,800 | df9521829bdaa3b38581742a1fa3f4f05a6be062 | fix(app/checkout): must check item `available` while validating | [
{
"change_type": "MODIFY",
"diff": "@@ -57,7 +57,7 @@ const validateCartItem = (item, data) => new Promise((resolve, reject) => {\nmin_quantity: typeof data.min_quantity === 'number' ? data.min_quantity : 1,\nmax_quantity: data.quantity\n})\n- item.quantity = data.quantity >= item.min_quantity\n+ item.quant... | JavaScript | MIT License | ecomplus/storefront | fix(app/checkout): must check item `available` while validating | 1 | fix | app/checkout |
780,866 | 22.01.2022 16:28:02 | 10,800 | b435958d588f17d1cea95107f5e4a68d1544ebac | fix(components/cart-item): show item out of stock when unavailable | [
{
"change_type": "MODIFY",
"diff": "@@ -92,6 +92,9 @@ export default {\n},\nmaxQuantity () {\n+ if (this.item.available === false) {\n+ return 0\n+ }\nconst maxQuantity = this.item.max_quantity\nreturn typeof maxQuantity === 'number' && maxQuantity >= 0\n? maxQuantity\n",
"new_path": "@ecomplus/storefro... | JavaScript | MIT License | ecomplus/storefront | fix(components/cart-item): show item out of stock when unavailable | 1 | fix | components/cart-item |
838,025 | 22.01.2022 17:25:34 | -10,800 | 15a608400e2062c707e267f149fc35d077ebd0d3 | feat: api support zstd | [
{
"change_type": "MODIFY",
"diff": "@@ -19,7 +19,8 @@ Version API 5.131.\n- 500+ methods\n- Ability to modify HTTP client\n- Request Limiter\n- - Support [MessagePack](https://pkg.go.dev/github.com/SevereCloud/vksdk/v2/api#VK.EnableMessagePack)\n+ - Support [zstd](https://pkg.go.dev/github.com/SevereCloud/v... | Go | MIT License | severecloud/vksdk | feat: api support zstd | 1 | feat | null |
838,025 | 22.01.2022 17:27:11 | -10,800 | 5ec50a170f9b5ab6452cad25e7eaf741913f162f | test: more vk bad errors | [
{
"change_type": "MODIFY",
"diff": "package api_test\nimport (\n+ \"errors\"\n\"net/http\"\n\"testing\"\n\"time\"\n@@ -105,7 +106,7 @@ func TestVK_MarketAddAlbum(t *testing.T) {\n})\nnoErrorOrFail(t, err)\n- time.Sleep(sleepTime)\n+ time.Sleep(2 * sleepTime)\n_, err = vkUser.MarketReorderItems(api.Params{\n... | Go | MIT License | severecloud/vksdk | test: more vk bad errors | 1 | test | null |
419,528 | 22.01.2022 21:51:02 | -39,600 | 1e0b411dad3cb0ebb456b34e1bcac9a71f059c48 | feat(entity-generator): add enum generation support | [
{
"change_type": "MODIFY",
"diff": "@@ -21,7 +21,7 @@ export interface NamingStrategy {\npropertyToColumnName(propertyName: string): string;\n/**\n- * Return a column name for a property (used in `EntityGenerator`).\n+ * Return a property for a column name (used in `EntityGenerator`).\n*/\ncolumnNameToPrope... | TypeScript | MIT License | mikro-orm/mikro-orm | feat(entity-generator): add enum generation support (#2608) | 1 | feat | entity-generator |
404,827 | 22.01.2022 22:38:08 | -3,600 | 276f986e566d8664f32a8dc75588f138ea138ad8 | chore: rename `appleAccessibility` preset to `accessibility` | [
{
"change_type": "RENAME",
"diff": "",
"new_path": "packages/app/public/preview/accessibility.png",
"old_path": "packages/app/public/preview/appleAccessibility.png"
},
{
"change_type": "RENAME",
"diff": "@@ -124,4 +124,4 @@ const query = {\ntooltip: 'Speak'\n}\n-export const appleAccessi... | JavaScript | MIT License | microlinkhq/cards | chore: rename `appleAccessibility` preset to `accessibility` | 1 | chore | null |
404,827 | 22.01.2022 22:58:31 | -3,600 | 836a6cd1af245becb5a792d11d2f6baa9499db19 | feat: improve `accessibility` query
+ Add colors to query | [
{
"change_type": "MODIFY",
"diff": "/* eslint-disable no-use-before-define */\nimport Inline from '../inline.macro'\n-import { Box, Flex, Text } from './scope'\n+import { Box, Flex, polished, Text } from './scope'\nconst code = (\n<Inline>\n@@ -46,7 +46,7 @@ const code = (\nwidth: 14,\nheight: 14,\nborderRa... | JavaScript | MIT License | microlinkhq/cards | feat: improve `accessibility` query
+ Add colors to query | 1 | feat | null |
404,827 | 22.01.2022 23:02:02 | -3,600 | 97b2e51b3dfdace4c3f00aee2d770dbdd79a8736 | fix: `accessibility` colors and preset preview | [
{
"change_type": "MODIFY",
"diff": "Binary files a/packages/app/public/preview/accessibility.png and b/packages/app/public/preview/accessibility.png differ\n",
"new_path": "packages/app/public/preview/accessibility.png",
"old_path": "packages/app/public/preview/accessibility.png"
},
{
"chang... | JavaScript | MIT License | microlinkhq/cards | fix: `accessibility` colors and preset preview | 1 | fix | null |
603,467 | 23.01.2022 00:21:19 | 0 | c9f3fadd86ec0196f2cdbf76d9628bbef0a3fcba | feat(core): `f` and `d` question description formatters | [
{
"change_type": "MODIFY",
"diff": "export * from './errors';\nexport * from './instance';\n-export { format } from './io';\n+export { d, f, format } from './io';\nexport { Duration, Timestamp } from './model';\nexport * from './screenplay';\nexport * from './Serenity';\n",
"new_path": "packages/core/sr... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | feat(core): `f` and `d` question description formatters | 1 | feat | core |
603,467 | 23.01.2022 00:54:36 | 0 | a9e16907291af2e6e084e73052faf1aad4a2de26 | refactor(core): cleaned up implementation of isAPromise check to avoid `any` | [
{
"change_type": "MODIFY",
"diff": "@@ -152,7 +152,8 @@ function isADate(v: Answerable<any>): v is Date {\n* @param {Answerable<any>} v\n*/\nfunction isAPromise<T>(v: Answerable<T>): v is Promise<T> {\n- return !! (v as any).then;\n+ return typeof v === 'object'\n+ && 'then' in v;\n}\n/**\n",
"new_path"... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | refactor(core): cleaned up implementation of isAPromise check to avoid `any` | 1 | refactor | core |
404,834 | 23.01.2022 01:34:26 | -3,600 | 704b9dbf13d8bf09f1f800df996ee28b216f3fb6 | feat: add mikesanroman preset | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/packages/app/public/preview/mikesanroman.png differ\n",
"new_path": "packages/app/public/preview/mikesanroman.png",
"old_path": "packages/app/public/preview/mikesanroman.png"
},
{
"change_type": "MODIFY",
"diff": "@@ -20,6 +20... | JavaScript | MIT License | microlinkhq/cards | feat: add mikesanroman preset | 1 | feat | null |
306,320 | 23.01.2022 07:44:47 | 0 | cc80c16de7eaeafd743cda6a83783ffdd28735db | refactor: migrate aws_kinesis_firehose_delivery_stream to new structure | [
{
"change_type": "MODIFY",
"diff": "package aws\nimport (\n- \"fmt\"\n-\n+ \"github.com/infracost/infracost/internal/resources/aws\"\n\"github.com/infracost/infracost/internal/schema\"\n- \"github.com/infracost/infracost/internal/usage\"\n- \"github.com/shopspring/decimal\"\n\"github.com/tidwall/gjson\"\n)\... | Go | Apache License 2.0 | infracost/infracost | refactor: migrate aws_kinesis_firehose_delivery_stream to new structure | 1 | refactor | null |
306,320 | 23.01.2022 08:32:08 | 0 | c765c87283df5b6d9aca862ed3dd0ffece06ff45 | refactor: migrate aws_elasticache_cluster and aws_elasticache_replication_group to new structure | [
{
"change_type": "MODIFY",
"diff": "@@ -163,6 +163,9 @@ resource_usage:\naws_elasticache_cluster.my_redis_snapshot:\nsnapshot_storage_size_gb: 10000 # Size of Redis snapshots in GB.\n+ aws_elasticache_replication_group.my_redis_replication_snapshot:\n+ snapshot_storage_size_gb: 10000 # Size of Redis snapsho... | Go | Apache License 2.0 | infracost/infracost | refactor: migrate aws_elasticache_cluster and aws_elasticache_replication_group to new structure | 1 | refactor | null |
76,611 | 23.01.2022 08:32:16 | -3,600 | 94244e0e494fd6709cafd4e621d6555b2d654902 | chore: upgrade node-fetch to latest v2 | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"@nlpjs/directline-connector\",\n\"version\": \"4.22.8\",\n- \"lockfileVersion\": 1,\n+ \"lockfileVersion\": 2,\n\"requires\": true,\n+ \"packages\": {\n+ \"\": {\n+ \"name\": \"@nlpjs/directline-connector\",\n+ \"version\": \"4.22.8\",\n+ \"license\": \"MIT... | JavaScript | MIT License | axa-group/nlp.js | chore: upgrade node-fetch to latest v2 | 1 | chore | null |
76,611 | 23.01.2022 10:24:48 | -3,600 | 985b7db2803fa7d9797b9a644c385252414d763e | chore(lang-ja): update keigo import | [
{
"change_type": "MODIFY",
"diff": "@@ -27,7 +27,7 @@ const { BaseStemmer } = require('@nlpjs/core');\nconst kuromoji = require('kuromoji');\nconst hepburn = require('./hepburn.json');\n-const keigo = require('./keigo');\n+const keigo = require('./keigo.json');\n/**\n* Class for a Japanese Stemmer\n",
"... | JavaScript | MIT License | axa-group/nlp.js | chore(lang-ja): update keigo import | 1 | chore | lang-ja |
306,320 | 23.01.2022 11:15:41 | 0 | d1c8a566428972c676220d4c35c9f61f1bf3ed32 | refactor: migrate aws_efs_file_system to new structure | [
{
"change_type": "MODIFY",
"diff": "package aws\nimport (\n- \"fmt\"\n-\n+ \"github.com/infracost/infracost/internal/resources/aws\"\n\"github.com/infracost/infracost/internal/schema\"\n- \"github.com/shopspring/decimal\"\n- \"github.com/tidwall/gjson\"\n)\n-func GetEFSFileSystemRegistryItem() *schema.Regis... | Go | Apache License 2.0 | infracost/infracost | refactor: migrate aws_efs_file_system to new structure | 1 | refactor | null |
713,832 | 23.01.2022 11:25:34 | -3,600 | badc5e26a8ceb2e36ba99848eeb35d9e87d76503 | chore: fix lowdb, major areo only esm | [
{
"change_type": "MODIFY",
"diff": "\"packageNames\": [\"fast-crc32c\"],\n\"allowedVersions\": \"1.0.7\"\n},\n+ {\n+ \"packageNames\": [\"lowdb\"],\n+ \"allowedVersions\": \"1.0.0\"\n+ },\n{\n\"matchPackagePatterns\": [\"*\"],\n\"matchUpdateTypes\": [\"minor\", \"patch\", \"major\"],\n",
"new_path": "re... | TypeScript | MIT License | verdaccio/monorepo | chore: fix lowdb, major areo only esm | 1 | chore | null |
713,832 | 23.01.2022 11:28:27 | -3,600 | 0c2ea3f78541edadb122afc0c579a26a6cdfd52d | chore: fix node-fetch, major needs esm | [
{
"change_type": "MODIFY",
"diff": "\"packageNames\": [\"lowdb\"],\n\"allowedVersions\": \"1.0.0\"\n},\n+ {\n+ \"packageNames\": [\"node-fetch\"],\n+ \"allowedVersions\": \"< 3.0.0\"\n+ },\n{\n\"matchPackagePatterns\": [\"*\"],\n\"matchUpdateTypes\": [\"minor\", \"patch\", \"major\"],\n",
"new_path": "r... | TypeScript | MIT License | verdaccio/monorepo | chore: fix node-fetch, major needs esm | 1 | chore | null |
317,807 | 23.01.2022 11:29:39 | -28,800 | 9955d9bbb83d59a50043beb2c0fef56f7b5e6356 | theme: update markbull
1. Show the root/admin icon and the current folder name in console title
2. Update the background color of behind status in git segment
3. Update the git_icon, branch_identical_icon and branch_gone_icon in git segment | [
{
"change_type": "MODIFY",
"diff": "{\n\"$schema\": \"https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json\",\n\"osc99\": true,\n+ \"console_title\": true,\n+ \"console_title_style\": \"template\",\n+ \"console_title_template\": \"{{if .Root}}\\u26a1 {{end}}{{.Folder}}\",\n\"b... | Go | MIT License | jandedobbeleer/oh-my-posh | theme: update markbull
1. Show the root/admin icon and the current folder name in console title
2. Update the background color of behind status in git segment
3. Update the git_icon, branch_identical_icon and branch_gone_icon in git segment | 1 | theme | null |
667,636 | 23.01.2022 12:03:26 | -28,800 | ebaec0d8109e18a16231a127a60dfcf02351e146 | refactor(ts): fixed some ts issues | [
{
"change_type": "MODIFY",
"diff": "node_modules*\ndist/\ncoverage\n+// TODO: ts-lint check hippy-vue/types in future\n+packages/hippy-vue/types\npackages/hippy-debug-server/webpack-dev-server/client\npackages/hippy-debug-server/webpack-dev-server/lib\npackages/hippy-vue-loader/lib\n",
"new_path": ".esl... | C++ | Apache License 2.0 | tencent/hippy | refactor(ts): fixed some ts issues | 1 | refactor | ts |
217,922 | 23.01.2022 12:09:08 | -3,600 | b4bbbd349aa7cc1a18fa25e27c50e8152c6d3a6b | feat(log-tracker): better layout using scroll container for pages | [
{
"change_type": "MODIFY",
"diff": "[nzMax]=\"item.amount\"\n[nzMin]=\"0\"\n[nzSize]=\"'small'\"\n- [nzStep]=\"1\"\n- style=\"margin-top:1px\"></nz-input-number>\n+ [nzStep]=\"1\"></nz-input-number>\n<span *ngIf=\"!settings.displayRemaining\" class=\"amount-max\">\n/{{item.amount}} <span *ngIf=\"item.amount... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(log-tracker): better layout using scroll container for pages | 1 | feat | log-tracker |
217,922 | 23.01.2022 12:11:38 | -3,600 | 82339addaf50a554045f148ba12545198b2012ac | chore: let's not forget DoL scrolling too | [
{
"change_type": "MODIFY",
"diff": "<i nzIconfont=\"icon-map\" nz-icon></i>\n<img alt=\"BTN\" class=\"job-icon\" src=\"./assets/icons/BTN.png\">\n</button>\n-\n</div>\n</ng-template>\n<ng-template nz-tab>\nclass=\"job-icon\">{{ tab.name }}\n</ng-template>\n<ng-template nz-tab>\n- <nz-tabset nzAnimated=\"fal... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: let's not forget DoL scrolling too | 1 | chore | null |
847,143 | 23.01.2022 12:26:04 | -28,800 | 688d810ad6af8d8c7c416bc440e57e62117a8701 | test(md-enhance): update demo | [
{
"change_type": "MODIFY",
"diff": "@@ -66,87 +66,3 @@ If you meet a bug during usage, you can\n:::\n::::\n```\n-\n-## Other custom containers\n-\n-::: info\n-Information container\n-:::\n-\n-::: tip\n-Tip container\n-:::\n-\n-::: warning\n-Warning container\n-:::\n-\n-::: danger\n-Dangerous container\n-:::... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | test(md-enhance): update demo | 1 | test | md-enhance |
217,922 | 23.01.2022 12:29:43 | -3,600 | 1438abc69ad5ad0976ecfca4768e392c90f5e1bf | fix(log-tracker): fixed progression not being saved properly | [
{
"change_type": "MODIFY",
"diff": "@@ -211,10 +211,10 @@ export class AuthEffects {\ndebounceBufferTime(2000),\nwithLatestFrom(this.authFacade.user$),\nfilter(([, user]) => user.defaultLodestoneId !== undefined),\n- withLatestFrom(this.authFacade.logTracking$),\n+ withLatestFrom(this.authFacade.serverLogTr... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(log-tracker): fixed progression not being saved properly | 1 | fix | log-tracker |
756,051 | 23.01.2022 13:02:22 | 21,600 | 5c990a3fbcffef79b041b3c495fc5b116af95954 | feat(vats): provide noop agoric.faucet in local-chain | [
{
"change_type": "MODIFY",
"diff": "@@ -180,3 +180,19 @@ export const makeBridgeManager = async ({\nbridgeManager.resolve(myBridge);\n};\nharden(makeBridgeManager);\n+\n+/**\n+ * @param {{\n+ * consume: { client: ERef<ClientManager> },\n+ * }} powers\n+ */\n+export const connectChainFaucet = async ({ consum... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat(vats): provide noop agoric.faucet in local-chain | 1 | feat | vats |
847,143 | 23.01.2022 13:53:10 | -28,800 | e31ff46909c2b72c352a6e05dc9ca55e19e45f84 | feat: stop reading from themeConfig | [
{
"change_type": "MODIFY",
"diff": "@@ -14,8 +14,6 @@ export * from \"../shared\";\n/** Comment Plugin */\nconst commentPlugin: Plugin<CommentOptions> = (options, app) => {\n- const { themeConfig } = app.options;\n-\nconst userWalineLocales =\noptions.type === \"waline\"\n? getLocales(app, walineLocales, op... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | feat: stop reading from themeConfig | 1 | feat | null |
217,922 | 23.01.2022 14:24:56 | -3,600 | 1e563a54a46d0eb99ef1874091753395e230381e | chore(electron): migrate to ES2017 | [
{
"change_type": "MODIFY",
"diff": "// Karma configuration file, see link for more information\n// https://karma-runner.github.io/1.0/config/configuration-file.html\n-\n-const { join } = require('path');\nconst getBaseKarmaConfig = require('../../karma.conf');\nmodule.exports = function(config) {\nconst bas... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore(electron): migrate to ES2017 | 1 | chore | electron |
386,595 | 23.01.2022 15:05:55 | -7,200 | e20cfdfdcb1f079ea80450b87608ae57ab4e30f8 | fix(cli): Change additional base dir references to config. | [
{
"change_type": "MODIFY",
"diff": "@@ -28,7 +28,7 @@ async function runLowdefyBuild({ context }) {\nenv: {\n...process.env,\nLOWDEFY_DIRECTORY_BUILD: context.directories.build,\n- LOWDEFY_DIRECTORY_CONFIG: context.directories.base,\n+ LOWDEFY_DIRECTORY_CONFIG: context.directories.config,\nLOWDEFY_DIRECTORY... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(cli): Change additional base dir references to config. | 1 | fix | cli |
603,467 | 23.01.2022 15:07:53 | 0 | dd5e2f5c7e61444d40899f70d413f38bc9f6691a | fix(core): removed deprecated task to See.if
Task deprecated since Serenity/JS 2.0, removed in 3.0 | [
{
"change_type": "DELETE",
"diff": "-/* eslint-disable unicorn/consistent-function-scoping */\n-import 'mocha';\n-\n-import { AssertionError } from 'chai';\n-\n-import sinon = require('sinon');\n-import { Actor, Question, See } from '../../../src/screenplay';\n-import { Stage } from '../../../src/stage';\n-... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(core): removed deprecated task to See.if
Task deprecated since Serenity/JS 2.0, removed in 3.0 | 1 | fix | core |
756,013 | 23.01.2022 15:11:59 | 21,600 | 39ef923a43871032a0e2b5d88e199165df95683e | test(ERTP): slight change in input validation error message | [
{
"change_type": "MODIFY",
"diff": "@@ -135,10 +135,10 @@ test('issuer.combine bad payments array', async t => {\nlength: 2,\nsplit: () => {},\n};\n- // @ts-ignore Intentional wrong type for testing\n+ // @ts-expect-error Intentional wrong type for testing\nawait t.throwsAsync(() => E(issuer).combine(notAnA... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | test(ERTP): slight change in input validation error message | 1 | test | ERTP |
756,013 | 23.01.2022 15:13:17 | 21,600 | dd0f48b7b66847613bf17486cd865a9b5a17b2ef | feat(eventual-send): harden eventual-send arguments, like SwingSet | [
{
"change_type": "MODIFY",
"diff": "@@ -35,10 +35,11 @@ function EProxyHandler(x, HandledPromise) {\n// allow the handler to synchronously influence the promise returned\n// by the handled methods, so we must freeze it from the outside. See\n// #95 for details.\n- return (...args) => harden(HandledPromise.a... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat(eventual-send): harden eventual-send arguments, like SwingSet | 1 | feat | eventual-send |
603,467 | 23.01.2022 15:13:18 | 0 | d68b44b545f50f6533523ab07008f9f89ac34433 | fix(core): removed deprecated interface DressingRoom; please use Cast instead | [
{
"change_type": "DELETE",
"diff": "-import { Ability, Actor } from '../screenplay';\n-\n-/**\n- * @desc\n- * Prepares the {@link Actor} for the performance.\n- *\n- * @example <caption>A dressing room for actors interacting with a Web UI</caption>\n- *\n- * import { serenity, Actor, DressingRoom } from '@s... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(core): removed deprecated interface DressingRoom; please use Cast instead | 1 | fix | core |
603,467 | 23.01.2022 15:15:32 | 0 | 45d1c2b3e0ff1946ccff97d148d0776f2fa60065 | fix(core): removed deprecated interface WithStage
Please use serenity.actor() and serenity.actorInTheSpotlight() instead | [
{
"change_type": "MODIFY",
"diff": "@@ -26,13 +26,6 @@ describe('Managing a Todo List', () => {\nEnsure.that(RecordedItems(), property('length', equals(0))),\n));\n- // it('marks an item as completed', function (this: WithStage) {\n- // return this.stage.theActorCalled('Jasmine').attemptsTo(\n- // Start.wit... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(core): removed deprecated interface WithStage
Please use serenity.actor() and serenity.actorInTheSpotlight() instead | 1 | fix | core |
737,359 | 23.01.2022 15:49:44 | 0 | c2c1418d92fb6b90092ae81ffd7f5a640413f6d6 | chore(release): publish 10.0.0-alpha.20 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+# [10.0.0-alpha.20](https://github.com/wopian/kitsu/compare/v10.0.0-alpha.19...v10.0.0-alpha.20) (2022-01-23)\n+\n+**... | JavaScript | MIT License | wopian/kitsu | chore(release): publish 10.0.0-alpha.20 | 1 | chore | release |
386,595 | 23.01.2022 16:29:33 | -7,200 | dc7f98827e5b97fe96ac2008779b8d2f456d0adb | fix: Add yarn install to dev scripts for server. | [
{
"change_type": "MODIFY",
"diff": "\"postversion\": \"yarn install\",\n\"prettier\": \"prettier --config .prettierrc --write **/*.js\",\n\"start:server-dev\": \"yarn workspace @lowdefy/server-dev start --package-manager yarn --config-directory ../../app\",\n- \"start\": \"yarn workspace @lowdefy/server bui... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix: Add yarn install to dev scripts for server. | 1 | fix | null |
386,595 | 23.01.2022 16:40:47 | -7,200 | 0a037d1218e652e02e03df36fbb8bf676c16a5d0 | fix: Remove rc-animate from yarnrc config. | [
{
"change_type": "MODIFY",
"diff": "packageExtensions:\necharts-for-react@*:\ndependencies:\n- tslib: \"*\"\n- rc-animate@*:\n- dependencies:\n- react: \"*\"\n- react-dom: \"*\"\n+ tslib: '*'\nrc-cascader@*:\ndependencies:\n- react: \"*\"\n- react-dom: \"*\"\n- classnames: \"*\"\n+ react: '*'\n+ react-dom: ... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix: Remove rc-animate from yarnrc config. | 1 | fix | null |
317,748 | 23.01.2022 17:12:00 | 18,000 | 5588a32434eb7bcf240ba1f4c33ad187b1c9fa84 | theme(nightowl): fix diamond colors | [
{
"change_type": "MODIFY",
"diff": "\"type\": \"java\",\n\"style\": \"diamond\",\n\"leading_diamond\": \"\\uE0B2\",\n- \"trailing_diamond\": \"<transparent,#0e8ac8>\\uE0B2</>\",\n+ \"trailing_diamond\": \"<transparent,#ffffff>\\uE0B2</>\",\n\"foreground\": \"#ec2729\",\n\"background\": \"#ffffff\",\n\"prope... | Go | MIT License | jandedobbeleer/oh-my-posh | theme(nightowl): fix diamond colors | 1 | theme | nightowl |
342,861 | 23.01.2022 17:41:06 | -3,600 | e953601623c31156ec6f5e676a1d28dafd294c5d | fix(Itinerary): truncate possible long texts | [
{
"change_type": "MODIFY",
"diff": "import * as React from \"react\";\nimport styled, { css } from \"styled-components\";\n+import Truncate from \"../../../Truncate\";\nimport { StyledBadge } from \"../../../primitives/BadgePrimitive\";\nimport { left, rtlSpacing } from \"../../../utils/rtl\";\nimport Chevr... | JavaScript | MIT License | kiwicom/orbit | fix(Itinerary): truncate possible long texts (#3247) | 1 | fix | Itinerary |
67,516 | 23.01.2022 17:47:02 | -3,600 | e767d63fc21c9d1aa3136aa434f1136366f2a59a | docs: synthetic view
Closes | [
{
"change_type": "MODIFY",
"diff": "* [Building a realtime cryptocurrency price tracker](tutorials/building-a-realtime-cryptocurrency-price-tracker.md)\n* [Building a widget-based dashboard](tutorials/create-a-dashboard-using-dynamic-composition.md)\n* [Building a todo application](tutorials/building-a-todo... | TypeScript | MIT License | aurelia/aurelia | docs: synthetic view
Closes #1117 | 1 | docs | null |
306,338 | 23.01.2022 17:52:26 | -3,600 | 5db6b1149b0db183c9ab4bdc6eab0626dda70726 | refactor(aws): Migrate CloudwatchMetricAlarm resource to new structure | [
{
"change_type": "MODIFY",
"diff": "package aws\nimport (\n- \"fmt\"\n-\n+ \"github.com/infracost/infracost/internal/resources/aws\"\n\"github.com/infracost/infracost/internal/schema\"\n- \"github.com/shopspring/decimal\"\n)\n-func GetCloudwatchMetricAlarmRegistryItem() *schema.RegistryItem {\n+func getClou... | Go | Apache License 2.0 | infracost/infracost | refactor(aws): Migrate CloudwatchMetricAlarm resource to new structure | 1 | refactor | aws |
667,636 | 23.01.2022 17:54:31 | -28,800 | 1cfe89e32d72b4cdc7bd6c1baaa4fddddc67ed05 | build(debug): add debug example compact script | [
{
"change_type": "MODIFY",
"diff": "\"build\": \"node ./scripts/build.js\",\n\"buildcore\": \"node ./scripts/build-core.js\",\n\"buildexample\": \"node ./scripts/build-example.js\",\n+ \"debugexample\": \"node ./scripts/debug-example.js\",\n\"markdownlint\": \"markdownlint --config .markdownlintrc.json \\\"... | C++ | Apache License 2.0 | tencent/hippy | build(debug): add debug example compact script | 1 | build | debug |
217,922 | 23.01.2022 18:33:44 | -3,600 | f4242f33730d8bf0d7784ef13f7643d32494d1e4 | chore: hotfix for offline lists not loading properly | [
{
"change_type": "MODIFY",
"diff": "@@ -153,7 +153,7 @@ export class LayoutsFacade {\n{\ntitle: row.name,\nrows: orderedAccepted,\n- crafts: orderedAccepted.reduce((acc, r) => acc + (r.requires.length > 0 ? r.amount_needed : 1), 0),\n+ crafts: orderedAccepted.reduce((acc, r) => acc + (r.requires?.length > 0... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: hotfix for offline lists not loading properly | 1 | chore | null |
217,922 | 23.01.2022 19:17:23 | -3,600 | 0d5bf0ce4c1884391c8806d05d00b287cc1197ec | chore: add usage monitoring functions | [
{
"change_type": "MODIFY",
"diff": "@@ -30,6 +30,8 @@ function getAlgoliaEntry(snapshot) {\n};\n}\n+export * as stats from './stats';\n+\n/**\n* SEARCH STUFF\n*/\n@@ -127,6 +129,11 @@ export const desktopUpdater = functions.runWith(runtimeOpts).https.onRequest((re\nreturn;\n} else if (req.path.endsWith('.nu... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: add usage monitoring functions | 1 | chore | null |
404,827 | 23.01.2022 19:27:09 | -3,600 | a2740efcc0a0bbd73e2efea0c2314efc15d122ab | feat: add `githubRepo` preset
+ Via | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/packages/app/public/preview/githubRepo.png differ\n",
"new_path": "packages/app/public/preview/githubRepo.png",
"old_path": "packages/app/public/preview/githubRepo.png"
},
{
"change_type": "ADD",
"diff": "+/* eslint-disable no... | JavaScript | MIT License | microlinkhq/cards | feat: add `githubRepo` preset
+ Via #246 | 1 | feat | null |
404,827 | 23.01.2022 19:34:49 | -3,600 | 7d24ddd9de1f21a6fe2e8be2f7c6597f5d622238 | fix: `githubRepo` spacing | [
{
"change_type": "MODIFY",
"diff": "@@ -124,7 +124,7 @@ const code = (\n<Text\nsx={{ fontSize: 42, letterSpacing: 0.5, fontWeight: 200 }}\n>\n- {data.author}/\n+ {data.author}{'/'}\n<Text sx={{ fontWeight: 600 }}>{data.name}</Text>\n</Text>\n</Box>\n",
"new_path": "packages/app/src/components/presets/gi... | JavaScript | MIT License | microlinkhq/cards | fix: `githubRepo` spacing | 1 | fix | null |
404,827 | 23.01.2022 19:41:24 | -3,600 | 8657ebb55aa2c5cc79be060ddc89eb548b379d18 | fix: `githubRepo` styles | [
{
"change_type": "MODIFY",
"diff": "@@ -75,7 +75,13 @@ const code = (\n}}\n>\n{(payload) => {\n- if (payload === null) return <Spinner />\n+ if (payload === null) {\n+ return (\n+ <Flex sx={{ width: '100%', alignItems: 'center', justifyContent: 'center' }}>\n+ <Spinner />\n+ </Flex>\n+ )\n+ }\nconst { data ... | JavaScript | MIT License | microlinkhq/cards | fix: `githubRepo` styles | 1 | fix | null |
217,922 | 23.01.2022 19:48:47 | -3,600 | 66d94a804fe915407c062bef45f0956077ad8aea | chore: disabling usage monitoring for now | [
{
"change_type": "MODIFY",
"diff": "@@ -30,7 +30,8 @@ function getAlgoliaEntry(snapshot) {\n};\n}\n-export * as stats from './stats';\n+// Uncomment to enable stats monitoring, can have a pretty high GCF usage so be careful with these.\n+// export * as stats from './stats';\n/**\n* SEARCH STUFF\n",
"new... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: disabling usage monitoring for now | 1 | chore | null |
404,827 | 23.01.2022 20:01:25 | -3,600 | 1a12ee1a8267a24bea2f71a584ca3e76cf547c62 | chore: update `githubRepo` preview & url | [
{
"change_type": "MODIFY",
"diff": "Binary files a/packages/app/public/preview/githubRepo.png and b/packages/app/public/preview/githubRepo.png differ\n",
"new_path": "packages/app/public/preview/githubRepo.png",
"old_path": "packages/app/public/preview/githubRepo.png"
},
{
"change_type": "MO... | JavaScript | MIT License | microlinkhq/cards | chore: update `githubRepo` preview & url | 1 | chore | null |
386,595 | 23.01.2022 20:29:30 | -7,200 | 9a033dc2f80d73f431bfecc9dddf9d6d68c496fc | chore: Revert yarn lock recreate and install. | [
{
"change_type": "MODIFY",
"diff": "@@ -5224,7 +5224,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n[\"jest\", \"virtual:babee6e81435a5d101529cd67f2c6b175f4db37a4ab0b58df15adf73dd11be8917ac14caf44ab4e6882a92c61661055072365b349016e85173e049f006fc2305#npm:27.3.1\"],\n[\"js-yaml\", \"npm:4.1.0\"... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | chore: Revert yarn lock recreate and install. | 1 | chore | null |
217,922 | 23.01.2022 20:36:29 | -3,600 | fe5abb08597c0085f2b4412b17518c035387a9b5 | fix(alarms): fixed notification spam when TTS failed | [
{
"change_type": "MODIFY",
"diff": "@@ -36,7 +36,9 @@ export class AlarmBellService {\n* @param itemName\n*/\npublic ring(alarm: Alarm, itemName: string): void {\n+ localStorage.setItem(`played:${alarm.$key}`, Date.now().toString());\nif (this.settings.TTSAlarms) {\n+ try {\nconst notificationSettings = thi... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): fixed notification spam when TTS failed | 1 | fix | alarms |
667,636 | 23.01.2022 20:47:32 | -28,800 | 83a806977dcc16b7a8406c303fca480248499278 | feat(hippy-vue): support value for anim repeatCount | [
{
"change_type": "MODIFY",
"diff": "@@ -35,7 +35,7 @@ const backgroundColorAnimation = {\nmode: 'timing',\ntimingFunction: 'linear',\nfollow: true,\n- repeatCount: -1,\n+ repeatCount: -1, // 'loop' string supported above 2.12.2\n},\n],\n};\n",
"new_path": "examples/hippy-vue-demo/src/components/native-d... | C++ | Apache License 2.0 | tencent/hippy | feat(hippy-vue): support value for anim repeatCount | 1 | feat | hippy-vue |
386,595 | 23.01.2022 21:33:44 | -7,200 | 546798a8fc3ac877b851f31316eb5b0a49d7ac9f | feat(cli): Add port setting to dev command. | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,7 @@ async function runDevServer({ context }) {\nenv: {\n...process.env,\nLOWDEFY_DIRECTORY_CONFIG: context.directories.config,\n+ PORT: context.commandLineOptions.port,\n},\n},\nsilent: false,\n",
"new_path": "packages/cli/src/commands/dev/runDevServer.j... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(cli): Add port setting to dev command. | 1 | feat | cli |
386,595 | 23.01.2022 21:34:12 | -7,200 | f5b0e7e80f8a6002e6d6c6ea426a2b6fee8953bf | feat(server-dev): Add port setting to server-dev. | [
{
"change_type": "MODIFY",
"diff": "@@ -42,10 +42,11 @@ async function getContext() {\nserver: process.cwd(),\n},\npackageManager,\n+ port: argv.port || process.env.PORT || 3000,\nverbose,\n+ version: process.env.npm_package_version,\n};\n- context.version = process.env.npm_package_version;\ncontext.initial... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(server-dev): Add port setting to server-dev. | 1 | feat | server-dev |
386,595 | 23.01.2022 21:41:07 | -7,200 | 9e16e2f9b920a44ce1ed95172b4e960afe404ffa | feat(cli): Add port option for start command. | [
{
"change_type": "MODIFY",
"diff": "@@ -22,7 +22,14 @@ async function runStart({ context }) {\nlogger: context.print,\nargs: ['run', 'start'],\ncommand: context.packageManager, // npm or yarn\n- processOptions: { cwd: context.directories.server },\n+ processOptions: {\n+ cwd: context.directories.server,\n+ ... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(cli): Add port option for start command. | 1 | feat | cli |
386,595 | 23.01.2022 21:42:22 | -7,200 | 295faba2bf0c9dec826fa0c589e3a7e729e635e9 | fix(cli): Fix icon in init command. | [
{
"change_type": "MODIFY",
"diff": "@@ -38,7 +38,7 @@ pages:\ntitle: Welcome to your Lowdefy app\nsubTitle: We are excited to see what you are going to build\nicon:\n- name: HeartTwoTone\n+ name: AiTwoToneHeart\ncolor: '#f00'\nareas:\nextra:\n",
"new_path": "packages/cli/src/commands/init/lowdefyFile.js... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | fix(cli): Fix icon in init command. | 1 | fix | cli |
386,595 | 23.01.2022 21:55:38 | -7,200 | db2338dc349a63c2ccc5d1b091dd21af6a32b80a | chore(cli): Fix to read port from options commandLineOptions. | [
{
"change_type": "MODIFY",
"diff": "@@ -27,7 +27,7 @@ async function runDevServer({ context }) {\nenv: {\n...process.env,\nLOWDEFY_DIRECTORY_CONFIG: context.directories.config,\n- PORT: context.commandLineOptions.port,\n+ PORT: context.options.port,\n},\n},\nsilent: false,\n",
"new_path": "packages/cli/... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | chore(cli): Fix to read port from options commandLineOptions. | 1 | chore | cli |
386,595 | 23.01.2022 22:05:42 | -7,200 | 0425f07e4ada328e76488e3ec0aa164ff475df5c | feat(cli): Pass package manager setting to dev server. | [
{
"change_type": "MODIFY",
"diff": "@@ -26,6 +26,7 @@ async function runDevServer({ context }) {\ncwd: context.directories.devServer,\nenv: {\n...process.env,\n+ LOWDEFY_PACKAGE_MANAGER: context.packageManager,\nLOWDEFY_DIRECTORY_CONFIG: context.directories.config,\nPORT: context.options.port,\n},\n",
"... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(cli): Pass package manager setting to dev server. | 1 | feat | cli |
841,509 | 23.01.2022 22:13:30 | 28,800 | 438649818fb7e7b1ef6cddf5ba244f80cf7e69a9 | refactor(plugin): Remove multivalue polyfill | [
{
"change_type": "MODIFY",
"diff": "@@ -10,7 +10,8 @@ pub mod ast {\npub use swc_ecma_visit::*;\n}\n-#[cfg(target_arch = \"wasm32\")]\n+// We don't set target cfg as it'll block macro expansions\n+// in ide (i.e rust-analyzer) or non-wasm target `cargo check`\npub use swc_plugin_macro::plugin_module;\n#[cfg... | Rust | Apache License 2.0 | swc-project/swc | refactor(plugin): Remove multivalue polyfill (#3346) | 1 | refactor | plugin |
780,866 | 23.01.2022 23:23:47 | 10,800 | 30a07c3ebb692f2f633b1ed3b88c6c807ef69a48 | feat(template/cms): new select widget to chose font family | [
{
"change_type": "MODIFY",
"diff": "\"custom\": \"_\"\n},\n\"icons_font\": \"_\",\n+ \"font_family\": \"_\",\n\"bg_color\": \"#f5f6fa\",\n\"repository\": \"\",\n\"logo\": \"/img/uploads/logo.webp\",\n",
"new_path": "@ecomplus/storefront-template/content/settings.json",
"old_path": "@ecomplus/storefr... | JavaScript | MIT License | ecomplus/storefront | feat(template/cms): new select widget to chose font family [#607] | 1 | feat | template/cms |
780,866 | 23.01.2022 23:25:14 | 10,800 | 7ff3943d4a1a6dd4e43cd1a2833855da1408edef | feat(twbs/fonts): load custom font family from `$web-font-path` scss var | [
{
"change_type": "ADD",
"diff": "+// Custom font families\n+// Google Fonts recommended\n+$web-font-path: null !default;\n+@if $web-font-path {\n+ @import url($web-font-path);\n+}\n",
"new_path": "@ecomplus/storefront-twbs/scss/_imports.scss",
"old_path": null
},
{
"change_type": "MODIFY",
... | JavaScript | MIT License | ecomplus/storefront | feat(twbs/fonts): load custom font family from `$web-font-path` scss var [#607] | 1 | feat | twbs/fonts |
780,866 | 23.01.2022 23:27:56 | 10,800 | 1397ef48ad7f5d71671595a6ee65b90665c2fb17 | feat(framework/webpack): inject `font_family` from settings to scss | [
{
"change_type": "MODIFY",
"diff": "@@ -45,6 +45,16 @@ let scssInject = `$primary: ${primaryColor}; ` +\nif (settings.icons_font && settings.icons_font.length > 2) {\nscssInject += `$icons-font: \"${settings.icons_font}\"; `\n}\n+if (settings.font_family && settings.font_family.length > 2) {\n+ const fontUr... | JavaScript | MIT License | ecomplus/storefront | feat(framework/webpack): inject `font_family` from settings to scss [#607] | 1 | feat | framework/webpack |
269,464 | 23.01.2022 23:49:40 | 10,800 | 45c0e2bcaf0d57e82080f4292cdf17f6f03ebbfa | test: group by id | [
{
"change_type": "MODIFY",
"diff": "@@ -256,6 +256,10 @@ func (artifacts Artifacts) List() []*Artifact {\nfunc (artifacts Artifacts) GroupByID() map[string][]*Artifact {\nresult := map[string][]*Artifact{}\nfor _, a := range artifacts.items {\n+ id := a.ID()\n+ if id == \"\" {\n+ continue\n+ }\nresult[a.ID(... | Go | MIT License | goreleaser/goreleaser | test: group by id | 1 | test | null |
756,051 | 23.01.2022 23:50:38 | 21,600 | da19fca5f6cd7c294248855f5035bcdd0edfcaa6 | chore(vats): update bootstrap for attestation in getRUN contract
- moar attestation pruning | [
{
"change_type": "MODIFY",
"diff": "@@ -9,8 +9,6 @@ import { E, Far } from '@agoric/far';\nimport { makeStore } from '@agoric/store';\nimport { installOnChain as installTreasuryOnChain } from '@agoric/run-protocol/bundles/install-on-chain.js';\nimport { installOnChain as installPegasusOnChain } from '@agori... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | chore(vats): update bootstrap for attestation in getRUN contract
- moar attestation pruning | 1 | chore | vats |
791,323 | 23.01.2022 23:53:23 | 28,800 | fc08c49fc013cbad00642bbba317e02f0ba15a6d | fix(pubsub): pass context into checkOrdering to allow cancel | [
{
"change_type": "MODIFY",
"diff": "@@ -840,7 +840,7 @@ func (s *Subscription) Receive(ctx context.Context, f func(context.Context, *Mes\ns.mu.Unlock()\ndefer func() { s.mu.Lock(); s.receiveActive = false; s.mu.Unlock() }()\n- s.checkOrdering()\n+ s.checkOrdering(ctx)\nmaxCount := s.ReceiveSettings.MaxOutst... | Go | Apache License 2.0 | googleapis/google-cloud-go | fix(pubsub): pass context into checkOrdering to allow cancel (#5316) | 1 | fix | pubsub |
217,922 | 24.01.2022 00:10:17 | -3,600 | a119c60df350e1a8e3b82bee58e35c63a646c2a3 | fix(alarms): fixed alarms not ringing and spamming notifications | [
{
"change_type": "MODIFY",
"diff": "@@ -112,8 +112,8 @@ export class AlarmBellService {\n}\n).subscribe();\nthis.notificationService.info(notificationTitle, notificationBody);\n- this.ring(alarm, itemName);\n}\n+ this.ring(alarm, itemName);\n});\n}\n",
"new_path": "apps/client/src/app/core/alarms/alarm-... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(alarms): fixed alarms not ringing and spamming notifications | 1 | fix | alarms |
217,922 | 24.01.2022 00:42:06 | -3,600 | 1a33c41504f169892f123ce489969da2e45a653a | chore: better history management for lower write operations usage | [
{
"change_type": "MODIFY",
"diff": "@@ -206,6 +206,18 @@ export class FirestoreListStorage extends FirestoreRelationalStorage<List> imple\nreturn res$;\n}\n+ incrementModificationsHistoryEntry(listId: any, entry: { key: string; increment: number }) {\n+ const res$ = new Subject<void>();\n+ from(this.firesto... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | chore: better history management for lower write operations usage | 1 | chore | null |
217,922 | 24.01.2022 00:49:08 | -3,600 | b3e14453c3bf80048319a5508f2cca04401f87e4 | fix(log-tracker): fixed page content not being scrollable with new sidebar nav | [
{
"change_type": "MODIFY",
"diff": "</span>\n</ng-template>\n<nz-spin [nzSpinning]=\"userCompletion === {}\">\n- <div *ngIf=\"dohSelectedPage === page.id\" fxLayout=\"column\">\n+ <div *ngIf=\"dohSelectedPage === page.id\" fxLayout=\"column\" fxLayoutGap=\"5px\" class=\"log-page-container\">\n<div class=\"t... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(log-tracker): fixed page content not being scrollable with new sidebar nav | 1 | fix | log-tracker |
847,143 | 24.01.2022 00:59:25 | -28,800 | b11442ee8e314f3d02276d649a579d3b3da13885 | fix: fix components | [
{
"change_type": "MODIFY",
"diff": "@@ -65,7 +65,8 @@ export default defineComponent({\n// generate breadcrumb config\nfor (let index = 1; index < links.length; index++) {\n- const page = await pages[links[index]]();\n+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n+ const page = awa... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | fix: fix components | 1 | fix | null |
847,143 | 24.01.2022 01:00:22 | -28,800 | db7b04da600f93400f93e0664d80213957abad91 | chore: update rollup script | [
{
"change_type": "MODIFY",
"diff": "@@ -37,7 +37,7 @@ export const rollupTypescript = (\nplugins: [\ntypescript(tsconfig),\n...(useStyle ? [styles()] : []),\n- ...(resolve ? [nodeResolve(), commonjs()] : []),\n+ ...(resolve ? [nodeResolve({ preferBuiltins: true }), commonjs()] : []),\n...(isProduction ? [te... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | chore: update rollup script | 1 | chore | null |
847,143 | 24.01.2022 01:01:33 | -28,800 | 8f59e7c8c24158def3e857a02fca33d2e5fe8631 | chore: fix build config | [
{
"change_type": "MODIFY",
"diff": "{\n\"extends\": \"../../tsconfig.build.base.json\",\n\"references\": [\n+ { \"path\": \"../shared/tsconfig.build.json\" },\n{ \"path\": \"./tsconfig.esm.json\" },\n{ \"path\": \"./tsconfig.cjs.json\" }\n],\n",
"new_path": "packages/add-this/tsconfig.build.json",
"... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | chore: fix build config | 1 | chore | null |
847,143 | 24.01.2022 01:02:06 | -28,800 | 379e46d4bd9a0a67a1f7d05d548405e860bccfaa | fix(md-enhance): fix danger container | [
{
"change_type": "MODIFY",
"diff": "@@ -136,6 +136,7 @@ $darkTextColor: helper.get-color(config.$textColor, $isDark: true);\n--hint-box-title-color: #4b1113;\n.custom-container-title {\n+ &::before {\n@include svg.background-svg(icons.$danger-icon);\n#{config.$darkSelector} & {\n@@ -144,6 +145,7 @@ $darkTex... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | fix(md-enhance): fix danger container | 1 | fix | md-enhance |
847,143 | 24.01.2022 01:02:24 | -28,800 | 3f5279e2677934ab01f87d0a91e0e54511771466 | test(comment2): remove unused file | [
{
"change_type": "DELETE",
"diff": "-<template>\n- <main class=\"page\">\n- <slot name=\"top\" />\n-\n- <PageInfo />\n-\n- <div class=\"theme-default-content\">\n- <Content />\n- </div>\n-\n- <PageMeta />\n-\n- <PageNav />\n-\n- <Comment />\n-\n- <slot name=\"bottom\" />\n- </main>\n-</template>\n-\n-<scrip... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | test(comment2): remove unused file | 1 | test | comment2 |
847,143 | 24.01.2022 01:03:22 | -28,800 | ae5febd698f45d06f0eae50094bd53b2d58db35a | chore(demo): remove plugin-debug | [
{
"change_type": "MODIFY",
"diff": "\"demo:webpack-serve\": \"vuepress-webpack dev src\"\n},\n\"devDependencies\": {\n- \"@vuepress/plugin-debug\": \"2.0.0-beta.33\",\n\"@vuepress/plugin-docsearch\": \"2.0.0-beta.35\",\n\"@vuepress/plugin-pwa\": \"2.0.0-beta.35\",\n\"@vuepress/plugin-pwa-popup\": \"2.0.0-be... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | chore(demo): remove plugin-debug | 1 | chore | demo |
847,143 | 24.01.2022 01:04:18 | -28,800 | 4fd9a7293bfc176801b4987bc72349dda4fcb819 | fix(components): fix pageinfo | [
{
"change_type": "MODIFY",
"diff": "import { defineClientAppEnhance } from \"@vuepress/client\";\nimport Badge from \"@Badge\";\nimport BreadCrumb from \"@BreadCrumb\";\n+import PageInfo from \"@PageInfo\";\nimport Pagination from \"@Pagination\";\nimport ScreenFull from \"@ScreenFull\";\n@@ -10,6 +11,7 @@ ... | TypeScript | MIT License | vuepress-theme-hope/vuepress-theme-hope | fix(components): fix pageinfo | 1 | fix | components |
756,013 | 24.01.2022 01:36:07 | 21,600 | 5e482feb3912a0a3dd409d5f028ebe17e6b8ec0b | fix(anylogger): coherent DEBUG levels, `$DEBUG` always says more | [
{
"change_type": "MODIFY",
"diff": "@@ -3,11 +3,11 @@ import anylogger from 'anylogger';\nimport chalk from 'chalk';\n// Turn on debugging output with DEBUG=agoric\n-\n+const { DEBUG } = process.env;\nlet selectedLevel = 'info';\n-if (process.env.DEBUG === undefined) {\n+if (DEBUG === undefined) {\nselected... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(anylogger): coherent DEBUG levels, `$DEBUG` always says more | 1 | fix | anylogger |
756,013 | 24.01.2022 01:37:46 | 21,600 | d563783cd20da195093f23aa7214f1fd2405f7cc | fix(SwingSet): don't do liveSlots logging in consensus mode | [
{
"change_type": "MODIFY",
"diff": "@@ -1283,7 +1283,7 @@ function build(\n* @param {boolean} enableDisavow\n* @param {boolean} enableVatstore\n* @param {*} gcTools { WeakRef, FinalizationRegistry, waitUntilQuiescent }\n- * @param {Console} [liveSlotsConsole]\n+ * @param {Pick<Console, 'debug' | 'log' | 'in... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(SwingSet): don't do liveSlots logging in consensus mode | 1 | fix | SwingSet |
780,866 | 24.01.2022 02:27:42 | 10,800 | 6243027796cb5de21b8788ed60592c593519489e | chore(dev-deps): remove some dependencies hoisted from framework | [
{
"change_type": "MODIFY",
"diff": "\"resolved\": \"https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz\",\n\"integrity\": \"sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==\",\n\"dev\": true,\n+ \"optional\": true,\n\"requires\": {\n\"ansi-styles\": \"^4.1.0\",... | JavaScript | MIT License | ecomplus/storefront | chore(dev-deps): remove some dependencies hoisted from framework | 1 | chore | dev-deps |
780,866 | 24.01.2022 03:30:19 | 10,800 | 8260d00bf05dc084fa867d8d0494a397905e84e8 | fix(template/cms): prevent skip on first sections load (empty preview) | [
{
"change_type": "MODIFY",
"diff": "@@ -158,7 +158,7 @@ export default class BasePreview extends React.Component {\nif (!isArrayEqual(oldEntry[key], entry[key])) {\nchange = true\n}\n- } else if (typeof oldEntry[key] === 'object') {\n+ } else if (typeof oldEntry[key] === 'object' && this.state.cmsEntrys.len... | JavaScript | MIT License | ecomplus/storefront | fix(template/cms): prevent skip on first sections load (empty preview) | 1 | fix | template/cms |
780,866 | 24.01.2022 04:02:55 | 10,800 | c792bf820e279ccf14adf466d17c683203df9765 | fix(template/cms): never skip component update hooks (sections)
reverts | [
{
"change_type": "MODIFY",
"diff": "@@ -158,9 +158,6 @@ export default class BasePreview extends React.Component {\nif (!isArrayEqual(oldEntry[key], entry[key])) {\nchange = true\n}\n- } else if (typeof oldEntry[key] === 'object' && this.state.cmsEntrys.length) {\n- return\n- // todo\n}\nbreak\n}\n",
"n... | JavaScript | MIT License | ecomplus/storefront | fix(template/cms): never skip component update hooks (sections)
reverts https://github.com/ecomplus/storefront/commit/c967831c49cc54160029aff0098ded1cb9f0eb6a | 1 | fix | template/cms |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.