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
217,922
16.11.2021 22:50:12
-3,600
04cf0cf6f7ead22060db1b3cd3535e3e0d49e289
fix(list): fixed an issue with FC crafts not being added to lists properly
[ { "change_type": "MODIFY", "diff": "@@ -534,7 +534,7 @@ export class ListController {\nused: 0,\nyield: 1,\nusePrice: true,\n- requires: reqRecipeId ? recipes.find((r) => (r as any).result.toString() === element.id.toString()).ingredients : getItemSource(reqDetails, DataType.REQUIREMENTS),\n+ requires: reqR...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed an issue with FC crafts not being added to lists properly
1
fix
list
217,922
16.11.2021 22:53:55
-3,600
e06d81e43cf0b9e39db94c427f486ed4af9291a0
fix(levequests): fixed levequests page not loading
[ { "change_type": "MODIFY", "diff": "<div fxLayout=\"column\" fxLayoutAlign=\"flex-start center\" nz-col nzSm=\"8\">\n<b>{{'LEVEQUESTS.Deliver_to' | translate: { placename: leve.deliveryPlaceId | i18nRow:'places' | i18n } }}</b>\n<div>\n- <a href=\"https://ffxiv.gamerescape.com/wiki/{{leve.name.en.split(' ')...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(levequests): fixed levequests page not loading
1
fix
levequests
471,431
16.11.2021 23:05:34
-3,600
82ebc497337a63304f7d26e0b8bffcc99d52a70c
chore: update graphql example to latest
[ { "change_type": "MODIFY", "diff": "@@ -3,13 +3,14 @@ services:\n# Collector\ncollector:\n# image: otel/opentelemetry-collector:latest\n- image: otel/opentelemetry-collector:0.27.0\n- command: [\"--config=/conf/collector-config.yaml\", \"--log-level=DEBUG\"]\n+ image: otel/opentelemetry-collector:0.38.0\n+ ...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js-contrib
chore: update graphql example to latest (#734)
1
chore
null
217,922
16.11.2021 23:12:25
-3,600
c12c26a916fb8574e4d0b51b44970c967bccbbaf
fix(inventory-optimizer): fixed item icons and names acting up when scrolling
[ { "change_type": "MODIFY", "diff": "</ng-template>\n<ng-container *ngIf=\"panel.nzActive\">\n<nz-list [nzItemLayout]=\"'horizontal'\">\n- <app-lazy-scroll rowSize=\"73\" [rowTemplate]=\"rowTemplate\" [displayedRows]=\"6\" [data]=\"container.items\">\n- <ng-template #rowTemplate let-entry>\n+ <div class=\"pa...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(inventory-optimizer): fixed item icons and names acting up when scrolling
1
fix
inventory-optimizer
217,922
16.11.2021 23:19:05
-3,600
25e807c6024365b05a6178db330de61f9ce2ee49
fix(recipe-finder): fixed item input not working anymore
[ { "change_type": "MODIFY", "diff": "</nz-autocomplete>\n<nz-input-group [nzPrefix]=\"prefixTemplate\" fxFlex=\"0 0 100px\"\nfxFlex.lt-md=\"0 0 auto\">\n- <input #amount [value]=\"0\" class=\"amount-input\" nz-input type=\"number\"/>\n+ <input #amount [ngModel]=\"0\" (ngModelChange)=\"amount$.next($event)\" ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(recipe-finder): fixed item input not working anymore
1
fix
recipe-finder
902,122
16.11.2021 23:32:27
-3,600
50485847fd678753f3efc7655c98bf17eb7c3509
chore(functions): improve interface
[ { "change_type": "MODIFY", "diff": "@@ -7,12 +7,12 @@ const createVm = require('./vm')\nconst scriptPath = path.resolve(__dirname, 'function.js')\nconst createFn = code => `\n-async ({ url, query, gotoOpts, browserWSEndpoint }) => {\n+async ({ url, gotoOpts, browserWSEndpoint, ...opts }) => {\nconst { seria...
JavaScript
MIT License
microlinkhq/browserless
chore(functions): improve interface
1
chore
functions
217,922
16.11.2021 23:37:10
-3,600
863df4fd439c7d4679895fd8fbd43789bfa6b1d5
fix(allagan-reports): fixed allagan reports count not loading for data checkers
[ { "change_type": "MODIFY", "diff": "@@ -179,7 +179,7 @@ export class AppComponent implements OnInit {\n@ViewChild('vmAdRef')\npublic vmAdRef: ElementRef;\n- public allaganReportsQueueCount$: Observable<number>;\n+ public allaganReportsQueueCount$: Observable<number> = of(0);\nconstructor(private gt: Garland...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(allagan-reports): fixed allagan reports count not loading for data checkers
1
fix
allagan-reports
603,467
16.11.2021 23:55:13
0
5ccff2df38578a19b3230ed5e288f57df228cf45
refactor(web): moved the various Page implementations to 'model' so that they're consistent
[ { "change_type": "RENAME", "diff": "@@ -8,6 +8,7 @@ import { Ensure, equals } from '@serenity-js/assertions';\ndescribe('Page', () => {\n/*\n+ todo:\nTitle.of(Page.current()) === Page.current().title() === Page.title()\nPage.called(..) => Page.called(\nPage.title()\n", "new_path": "integration-web/web/s...
TypeScript
Apache License 2.0
serenity-js/serenity-js
refactor(web): moved the various Page implementations to 'model' so that they're consistent
1
refactor
web
902,122
17.11.2021 00:01:41
-3,600
4e53b0212165f00cada58cf8859ecbcf114de007
test(functions): update interface
[ { "change_type": "MODIFY", "diff": "@@ -33,11 +33,11 @@ test('handle errors', async t => {\nt.is(result.reason.message, 'oh no')\n})\n-test('access to query', async t => {\n+test('provide a mechanism to pass things to the function ', async t => {\nconst code = ({ query }) => query.foo\nconst myFn = browserl...
JavaScript
MIT License
microlinkhq/browserless
test(functions): update interface
1
test
functions
902,122
17.11.2021 00:13:43
-3,600
086fad1111f335b62fbdb628a86de0183e2ad12f
chore(release): v9.3.0-beta.6
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+# [9.3.0-beta.6](https://github.com/microlinkhq/browserless/compare/v9.3.0-beta.5...v9.3.0-beta.6) (2021-11-16)\n+\n+...
JavaScript
MIT License
microlinkhq/browserless
chore(release): v9.3.0-beta.6
1
chore
release
306,309
17.11.2021 00:34:02
-10,800
2c416bdbac505615df5ad7ff14b268a49a402591
feat: increase TF plan cache from 10 to 30mins This is useful when re-running the CLI to debug or do what-if analysis.
[ { "change_type": "MODIFY", "diff": "@@ -17,7 +17,7 @@ import (\nvar cacheFileVersion = \"0.1\"\nvar infracostDir = \".infracost\"\nvar cacheFileName = \".infracost-cache\"\n-var cacheMaxAgeSecs int64 = 60 * 10 // 10 minutes\n+var cacheMaxAgeSecs int64 = 60 * 30 // 30 minutes\ntype terraformConfigFileState s...
Go
Apache License 2.0
infracost/infracost
feat: increase TF plan cache from 10 to 30mins (#1139) This is useful when re-running the CLI to debug or do what-if analysis.
1
feat
null
185,970
17.11.2021 02:47:07
-28,800
968fbc36b47c3224099000002f218b9ddc95f406
fix(show-me/screen): refactor to use current Electron security defaults
[ { "change_type": "MODIFY", "diff": "<body>\n<h1>Screen Example</h1>\n<pre></pre>\n- <script>\n- require('./renderer.js')\n- </script>\n</body>\n</html>\n\\ No newline at end of file\n", "new_path": "static/show-me/screen/index.html", "old_path": "static/show-me/screen/index.html" }, { "chang...
TypeScript
MIT License
electron/fiddle
fix(show-me/screen): refactor to use current Electron security defaults (#895) Co-authored-by: Timothy Lim <tim.lim@intercom.io>
1
fix
show-me/screen
448,031
17.11.2021 03:41:57
21,600
044b47ae15fa91fcc658e33e74b28f6d4baf2022
docs: add details about exporting styles for APF 13 This change adds a new documentation page detailing how to export any style assets that should be part of a library's public API. This represents a change in how styles are treated since APF 13.
[ { "change_type": "MODIFY", "diff": "@@ -21,3 +21,33 @@ You can copy these assets by using the `assets` option.\n}\n}\n```\n+\n+## Exporting Styles\n+When including additional assets like Sass mixins or pre-compiled CSS, you need to add these manually to the conditional \"exports\" in the `package.json` of t...
TypeScript
MIT License
ng-packagr/ng-packagr
docs: add details about exporting styles for APF 13 This change adds a new documentation page detailing how to export any style assets that should be part of a library's public API. This represents a change in how styles are treated since APF 13.
1
docs
null
317,646
17.11.2021 07:16:43
-3,600
4f39b68d9642bf3518921e60ee2a0875d9c8942a
refactor: remove trace struct
[ { "change_type": "MODIFY", "diff": "@@ -115,34 +115,30 @@ const (\nDebug logType = \"debug\"\n)\n-type tracer interface {\n- init()\n- string() string\n- trace(start time.Time, function string, args ...string)\n- log(lt logType, function, message string)\n-}\n-\n-type logTracer struct {\n- builder strings.B...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor: remove trace struct
1
refactor
null
815,734
17.11.2021 07:34:36
28,800
be960c94e47b1a0c5d74fe1b3160a235ddd095d4
fix: include themes as part of the exports
[ { "change_type": "MODIFY", "diff": "\"autocomplete\",\n\"angular2\"\n],\n+ \"exports\": {\n+ \"./scss/ant.design.theme\": {\n+ \"style\": \"./scss/ant.design.theme.scss\"\n+ },\n+ \"./scss/default.theme\": {\n+ \"style\": \"./scss/default.theme.scss\"\n+ },\n+ \"./scss/material.theme\": {\n+ \"style\": \"./...
TypeScript
MIT License
ng-select/ng-select
fix: include themes as part of the exports (#2007)
1
fix
null
777,379
17.11.2021 08:23:50
18,000
612312f2cd1ea83106800cf5b1867c578e036634
fix: use ListValue to receive empty list on labels field
[ { "change_type": "MODIFY", "diff": "@@ -49,7 +49,15 @@ def test_model_registry() -> None:\nassert db_model.labels == [\"hello\", \"world\"]\n# confirm patch does not overwrite other fields\n+ mnist.set_description(\"abcde\")\n+ db_model = d.get_model(mnist.model_id)\nassert db_model.metadata == {\"testing\"...
Python
Apache License 2.0
determined-ai/determined
fix: use ListValue to receive empty list on labels field (#3198)
1
fix
null
317,646
17.11.2021 08:25:52
-3,600
14bd8b0f29914f7bdcc20b87dac00520487fdca3
chore: show total duration in debug
[ { "change_type": "MODIFY", "diff": "@@ -163,6 +163,7 @@ func (e *engine) debug() string {\nsegmentName := fmt.Sprintf(\"%s(%t)\", segment.name, segment.enabled)\ne.write(fmt.Sprintf(\"%-*s - %3d ms - %s\\n\", largestSegmentNameLength, segmentName, duration, segment.stringValue))\n}\n+ e.write(fmt.Sprintf(\"...
Go
MIT License
jandedobbeleer/oh-my-posh
chore: show total duration in debug
1
chore
null
126,276
17.11.2021 08:54:09
10,800
a4f5d9831aec01d0a3ec3e3118f32ec55475179b
feat(embedded/store): logical key deletion api
[ { "change_type": "MODIFY", "diff": "@@ -232,6 +232,19 @@ func (tx *OngoingTx) Set(key []byte, md *KVMetadata, value []byte) error {\nreturn nil\n}\n+func (tx *OngoingTx) Delete(key []byte) error {\n+ valRef, err := tx.Get(key)\n+ if err != nil {\n+ return err\n+ }\n+\n+ if valRef.KVMetadata() != nil && valR...
Go
Apache License 2.0
codenotary/immudb
feat(embedded/store): logical key deletion api Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
feat
embedded/store
276,993
17.11.2021 09:13:04
10,800
d85d286bfd102a996cc1a42a97cd2f25e877f6ff
fix: adjust bottom sheet positioning for safari
[ { "change_type": "MODIFY", "diff": "@@ -15,7 +15,7 @@ const StyledBottomSheet = styled(Dialog)`\nwidth: ${bottomsheet.width.default}%;\nborder-radius: ${bottomsheet.border.radius}px ${bottomsheet.border.radius}px 0 0;\n`}\n- align-self: end;\n+ align-self: flex-end;\nanimation: content;\nanimation-duration:...
JavaScript
MIT License
gympass/yoga
fix: adjust bottom sheet positioning for safari
1
fix
null
217,922
17.11.2021 09:13:37
-3,600
d52398cdbf3a7c43b5ffdf4269036708d287667a
fix(log-tracker): fixed an issue with the "show not required for achievement" toggle
[ { "change_type": "MODIFY", "diff": "@@ -123,7 +123,7 @@ export class LogTrackerComponent extends TrackerComponent {\nconst isPageDone = [this.isDoHPageDone, this.isDoLPageDone][selectedTabIndex];\nif (pages) {\nconst currentPage = pages[selectedPageIndex];\n- if ((showNotRequired || currentPage.requiredForA...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(log-tracker): fixed an issue with the "show not required for achievement" toggle
1
fix
log-tracker
688,524
17.11.2021 09:18:22
-3,600
bcd6909aa4ac0e579144dfd17fd7d6b8f61424d7
fix: job_params needs to be in JSON format
[ { "change_type": "MODIFY", "diff": "@@ -116,9 +116,9 @@ jobs:\njob_name: ${{ env.JENKINS_JOB_NAME }}\njob_params: |\n{\n- BRANCH: \"master\",\n- VERSION: \"${{ github.sha }}\",\n- IMAGE_NAME: \"${{ env.REPOSITORY_NAME }}\"\n+ \"BRANCH\": \"master\",\n+ \"VERSION\": \"${{ github.sha }}\",\n+ \"IMAGE_NAME\": ...
TypeScript
MIT License
toptal/picasso
fix: job_params needs to be in JSON format (#2253)
1
fix
null
866,394
17.11.2021 09:19:28
18,000
50646446be80f05a98243577ad0b764a28c65c5a
chore(github-actions): avoid duplicate ci-checks on non-forks ### Related Ticket(s) No related issue ### Description This PR will add restrictions for non-forked PRs so that ci-checks will not run twice. ### Changelog **Changed** restrict github action event triggers for `ci-check`
[ { "change_type": "MODIFY", "diff": "name: ci-check\n-on: [push, pull_request]\n+on:\n+ push:\n+ branches: [ master, release/* ]\n+ pull_request:\n+ branches: [ master, release/* ]\nconcurrency:\ngroup: ci-check-${{ github.ref }}\n", "new_path": ".github/workflows/ci-check.yml", "old_path": ".github/...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
chore(github-actions): avoid duplicate ci-checks on non-forks (#7669) ### Related Ticket(s) No related issue ### Description This PR will add restrictions for non-forked PRs so that ci-checks will not run twice. ### Changelog **Changed** - restrict github action event triggers for `ci-check`
1
chore
github-actions
217,922
17.11.2021 09:19:59
-3,600
69697f54dcf49c0540f8dc7fca402893a20752cb
fix(list): fixed "copy panel as text" for panels with tiers display
[ { "change_type": "MODIFY", "diff": "@@ -485,9 +485,7 @@ export class ListDetailsPanelComponent implements OnChanges, OnInit {\npublic getTextExport = (tiers?: ListRow[][]) => {\nlet rows: ListRow[];\nif (tiers) {\n- rows = tiers.reduce((res, tier) => {\n- return [...res, ...tier];\n- }, []);\n+ rows = tiers...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed "copy panel as text" for panels with tiers display
1
fix
list
217,922
17.11.2021 09:28:16
-3,600
ce029d0c62300b1a72d60910481fde81aac2e7f5
fix(list): fixed reversed tiers panels not loading at all
[ { "change_type": "MODIFY", "diff": "<ng-template #display>\n<ng-container *ngIf=\"hasAlreadyBeenOpened || !collapsed || overlay\">\n<ng-template #tiersTpl>\n- <ng-container *ngIf=\"tiers$ | async as tiers\">\n+ <ng-container *ngIf=\"tiers$ | async as tiers; else loader\">\n<div *ngFor=\"let tier of tiers; t...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list): fixed reversed tiers panels not loading at all
1
fix
list
603,467
17.11.2021 09:33:55
0
d63696586618cd701e703e33dd8b476efaac65b6
fix(web): corrected timestamp rounding when retrieving the expiry date of a cookie
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import 'mocha';\nimport { certificates, expect } from '@integration/testing-tools';\nimport { Ensure, equals, isFalse, isTrue } from '@serenity-js/assertions';\n-import { actorCalled, Answerable, q, Question, Timestamp } from '@serenity-js/core';\n+import ...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(web): corrected timestamp rounding when retrieving the expiry date of a cookie
1
fix
web
688,423
17.11.2021 09:44:46
-7,200
95b6159716cef8deeae5bfd816c540ea6d7352a3
feat(Link): update link according to spec
[ { "change_type": "ADD", "diff": "+---\n+'@toptal/picasso': major\n+---\n+\n+Updated link appearence according to the designs\n+- Removed ColorType `Black`\n+- Link with ColorType `White`, has underline always\n+- Link with ColorType `Blue`, has underline on hover only\n+- `textDecoration` property, has a si...
TypeScript
MIT License
toptal/picasso
feat(Link): [FX-2253] update link according to spec (#2234)
1
feat
Link
617,459
17.11.2021 09:45:33
-3,600
eb09cbb8564f5ffdf984255e993d903727297696
feat(tracking): cc treated or untreated are tracked
[ { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"bootstrap\": \"lerna bootstrap\",\n\"build\": \"lerna run build\",\n- \"build:ui\": \"lerna run build --scope={@socialgouv/cdtn-ui,@socialgouv/react-fiche-service-public,@socialgouv/modeles-social,@cdt/frontend}\",\n- \"build:npm\": \"lerna run build --s...
TypeScript
Apache License 2.0
socialgouv/code-du-travail-numerique
feat(tracking): cc treated or untreated are tracked (#3872) Co-authored-by: Martial Maillot <martial.maillot@gmail.com>
1
feat
tracking
217,922
17.11.2021 09:46:59
-3,600
4539b64c3ac1f7b9f9b10c9dfe3a8ce9e331bcd9
fix(fishing-reporter): fixed wrong spot detection and bite time detection
[ { "change_type": "MODIFY", "diff": "import { DataReporter } from './data-reporter';\nimport { BehaviorSubject, combineLatest, merge, Observable } from 'rxjs';\nimport { ofMessageType } from '../rxjs/of-message-type';\n-import { delay, distinctUntilChanged, filter, map, mapTo, shareReplay, startWith, tap, wi...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(fishing-reporter): fixed wrong spot detection and bite time detection
1
fix
fishing-reporter
217,922
17.11.2021 09:58:11
-3,600
94219188e0daf270ab6e7da9436bba442c569d70
fix(core): fixed names not updating accordingly in a lot of pages/overlays
[ { "change_type": "MODIFY", "diff": "@@ -73,6 +73,9 @@ export class I18nPipe implements PipeTransform, OnDestroy {\nprivate i18nEquals(current: any, next: any) {\nif (current === next) return true;\nif ((!current && !!next) || (!!current && !next)) return false;\n+ if (isObservable(current) && isObservable(n...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(core): fixed names not updating accordingly in a lot of pages/overlays
1
fix
core
126,276
17.11.2021 10:17:34
10,800
de027acca8a7d9967af2fb0120a0c1d462be5fe6
feat(embedded/store): keyReader in tx scope
[ { "change_type": "MODIFY", "diff": "@@ -260,6 +260,21 @@ func (tx *OngoingTx) Get(key []byte, filters ...FilterFn) (ValueRef, error) {\nreturn tx.snap.Get(key, filters...)\n}\n+func (tx *OngoingTx) NewKeyReader(spec *KeyReaderSpec) (*KeyReader, error) {\n+ tx.rwmutex.RLock()\n+ defer tx.rwmutex.RUnlock()\n+...
Go
Apache License 2.0
codenotary/immudb
feat(embedded/store): keyReader in tx scope Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
feat
embedded/store
317,779
17.11.2021 10:21:08
-3,600
340c79e2e704de055413fd17d84256de07203d94
chore: fix not unique id
[ { "change_type": "MODIFY", "diff": "@@ -26,7 +26,7 @@ body:\nvalidations:\nrequired: true\n- type: textarea\n- id: logs\n+ id: posh-debug-logs\nattributes:\nlabel: Log output\ndescription: Please copy and paste the output generated by `Write-PoshDebug` (PowerShell) or `oh-my-posh --debug --shell uni --confi...
Go
MIT License
jandedobbeleer/oh-my-posh
chore: fix not unique id
1
chore
null
217,922
17.11.2021 10:30:29
-3,600
fb90509be050ff2025882516ebd96be756657b76
chore: costs optimization for SSR
[ { "change_type": "MODIFY", "diff": "@@ -64,26 +64,30 @@ app.get('*.*', express.static(DIST_FOLDER, {\n}));\napp.get('*', async (req, res) => {\n- if (!browserWSEndpoint) {\n+ try {\n+ const isPrerender = req.query['prerender'];\n+ if (!browserWSEndpoint && isPrerender) {\nconst browser = await puppeteer.lau...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: costs optimization for SSR
1
chore
null
217,922
17.11.2021 10:33:05
-3,600
007bb9251035d7d7004f7445420ecd61335651d4
fix(desktop): possible fix for opening from external apps
[ { "change_type": "MODIFY", "diff": "@@ -286,6 +286,14 @@ export class AppComponent implements OnInit {\n// Translation\nthis.use(this.getLang());\nif (this.platformService.isDesktop()) {\n+ this.ipc.on('displayed', () => {\n+ setTimeout(() => {\n+ window.resizeBy(100, 100);\n+ }, 50);\n+ setTimeout(() => {\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): possible fix for opening from external apps
1
fix
desktop
217,922
17.11.2021 10:57:03
-3,600
4b00b04965e06be33db9029f87723d9f45680bbd
fix(list-details): fixed progress bar not updating closes
[ { "change_type": "MODIFY", "diff": "</div>\n<nz-progress nz-tooltip\nfxFlex=\"1 1 auto\"\n- nzTooltipTitle=\"{{progression | number:'1.0-1':translate.currentLang}}%\"\n+ *ngIf=\"progression$ | async as progression\"\n+ nzTooltipTitle=\"{{progression.progress | number:'1.0-1':translate.currentLang}}%\"\n[nzS...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list-details): fixed progress bar not updating closes #2057
1
fix
list-details
699,187
17.11.2021 10:57:51
28,800
a25d9ef3a28dc3e7044d71ca59f02629a8c0d065
feat(website): update TableOfContents styles
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,8 @@ import {Box} from '@twilio-paste/box';\nimport {Anchor} from '@twilio-paste/anchor';\nimport {FeedbackPopover} from '../shortcodes/feedback-popover';\nimport {STICKY_COLUMN_OFFSET} from '../../constants';\n-import {TableOfContentsList, TableOfContentsListI...
TypeScript
MIT License
twilio-labs/paste
feat(website): update TableOfContents styles (#2042)
1
feat
website
777,379
17.11.2021 11:08:38
18,000
d82530d30b7db5f844aafc8d14f959990976131b
Fix: add user_id to previous model_versions
[ { "change_type": "ADD", "diff": "", "new_path": "master/static/migrations/20211117104045_model_version_user_id.down.sql", "old_path": "master/static/migrations/20211117104045_model_version_user_id.down.sql" }, { "change_type": "ADD", "diff": "+UPDATE public.model_versions\n+SET user_id =...
Python
Apache License 2.0
determined-ai/determined
Fix: add user_id to previous model_versions (#3208)
1
fix
null
276,993
17.11.2021 11:08:56
10,800
e97b1df792c4bacfc1353efe35bcd6d82cff44f5
refactor(Dialog): verify if onClose is defined
[ { "change_type": "MODIFY", "diff": "@@ -59,7 +59,7 @@ const Dialog = ({ isOpen, children, onClose, ...props }) => {\nconst closeDialog = useCallback(\ne => {\n- if (dialogRef.current === e.target && isOpen) {\n+ if (dialogRef.current === e.target && isOpen && onClose) {\nonClose(e);\n}\nreturn true;\n@@ -69...
JavaScript
MIT License
gympass/yoga
refactor(Dialog): verify if onClose is defined
1
refactor
Dialog
317,646
17.11.2021 11:21:23
-3,600
01c923c13bbdb6ec552ae794a2e87815c30734d7
chore: fix bug issue form
[ { "change_type": "MODIFY", "diff": "@@ -25,14 +25,6 @@ body:\nvalue: \"A bug happened!\"\nvalidations:\nrequired: true\n- - type: textarea\n- id: posh-debug-logs\n- attributes:\n- label: Log output\n- description: Please copy and paste the output generated by `Write-PoshDebug` (PowerShell) or `oh-my-posh --...
Go
MIT License
jandedobbeleer/oh-my-posh
chore: fix bug issue form
1
chore
null
304,860
17.11.2021 11:28:48
-3,600
6f47f787a140c46787ef3611023b6cbd18a2e868
fix: Give better error messages when fluxdoc errors Tried running it and encountered some bad errors. This should give some additional context.
[ { "change_type": "MODIFY", "diff": "@@ -394,6 +394,19 @@ version = \"1.0.1\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\nchecksum = \"b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca\"\n+[[package]]\n+name = \"env_logger\"\n+version = \"0.9.0\"\n+source = \"registry+...
Go
MIT License
influxdata/flux
fix: Give better error messages when fluxdoc errors (#4273) Tried running it and encountered some bad errors. This should give some additional context.
1
fix
null
815,747
17.11.2021 11:41:25
18,000
e4b53b1e914e285d1b112a35f682484bf7ff269f
chore: update deprecated build --prod flag build flag `--prod` is deprecated. Updates package.json to use `--configuration production` instead.
[ { "change_type": "MODIFY", "diff": "},\n\"scripts\": {\n\"build\": \"ng build ng-select && ng build ng-option-highlight && yarn build:themes && yarn copy-sass\",\n- \"build:demo\": \"ng build demo --prod --baseHref=/ng-select && yarn copy-examples\",\n+ \"build:demo\": \"ng build demo --configuration produc...
TypeScript
MIT License
ng-select/ng-select
chore: update deprecated build --prod flag (#2006) build flag `--prod` is deprecated. Updates package.json to use `--configuration production` instead.
1
chore
null
942,581
17.11.2021 11:46:54
25,200
d9138f82c851c6eebb0e8023e6536c769d76a765
fix: Fix codemod command Fix the incorrect usage of `spawn` from This update uses `spawn`'s streaming API instead of `exec`s API. [category:Infrastructure]
[ { "change_type": "MODIFY", "diff": "@@ -42,18 +42,19 @@ const transform = commands[0];\nconsole.log(transform, path);\nconsole.log(`\\nApplying ${transform} transform to '${path}'\\n`.brightBlue);\n+const args = `-t ${__dirname}/dist/es6/${transform} ${path} --parser tsx --extensions js,jsx,ts,tsx`.split(\n...
TypeScript
Apache License 2.0
workday/canvas-kit
fix: Fix codemod command (#1346) Fix the incorrect usage of `spawn` from #1340. This update uses `spawn`'s streaming API instead of `exec`s API. [category:Infrastructure]
1
fix
null
603,467
17.11.2021 11:49:52
0
8b49b2fc9f80f7f3760741f862f88cd54abec6b0
test(web): cleaned up Cookie specs and removed Window class, which wasn't used
[ { "change_type": "MODIFY", "diff": "@@ -28,10 +28,8 @@ describe('Cookie', () => {\nreturn q`${ LocalServer.url() }${ path }`;\n}\n- describe('over HTTP', () => {\n-\n- // Fun fact: Before Cookie Monster ate his first cookie, he believed his name was Sid. You're welcome.\nbefore(() =>\n+ // Fun fact: Before ...
TypeScript
Apache License 2.0
serenity-js/serenity-js
test(web): cleaned up Cookie specs and removed Window class, which wasn't used
1
test
web
277,286
17.11.2021 12:06:53
-3,600
7fd8e0b88b741422212384e8074a908259118714
fix: CSS style leak
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,11 @@ const css = stylesheet({\nlineHeight: px(20),\ncolor: cssVar('$text7')\n},\n- '.ms-Persona-image, .ms-Persona-imageArea': {\n+ '.ms-Persona-image': {\n+ height: '40px !important',\n+ width: '40px !important',\n+ },\n+ '.ms-Persona-imageArea': {\nheight:...
Python
Apache License 2.0
h2oai/wave
fix: CSS style leak #1069
1
fix
null
104,828
17.11.2021 12:35:18
-3,600
9717bf589c25e579aa283bdc10e618b107122964
chore(list): update comment in test
[ { "change_type": "MODIFY", "diff": "@@ -391,6 +391,7 @@ describe('List', () => {\nexpect(mockLoadMore).toHaveBeenCalledWith('site-02');\nexpect(mockLoadMore).toHaveBeenCalledTimes(1);\n+ // Call load more from the top level\nmockLoadMore.mockClear();\nrerender(\n<List\n", "new_path": "packages/react/src...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(list): update comment in test
1
chore
list
386,584
17.11.2021 12:42:33
-7,200
509655409ea81aed398e67e45829d0c8603fc56f
fix(build): Updated formatErrorMessage function to show descriptive error paths.
[ { "change_type": "MODIFY", "diff": "@@ -26,7 +26,9 @@ async function testSchema({ components, context }) {\n});\nif (!valid) {\nawait context.logger.warn('Schema not valid.');\n- const promises = errors.map((err) => context.logger.warn(formatErrorMessage(err, components)));\n+ const promises = errors.map((e...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(build): Updated formatErrorMessage function to show descriptive error paths.
1
fix
build
386,584
17.11.2021 12:45:23
-7,200
751814cec6950dee06dfb2844e952c7a985c691a
fix(build): Updated formatErrorMessage and testSchema tests.
[ { "change_type": "MODIFY", "diff": "@@ -98,11 +98,9 @@ test('invalid schema', async () => {\nexpect(mockLogWarn.mock.calls).toEqual([\n['Schema not valid.'],\n[\n- `\n---------- Schema Error ---------\n-message: App \"global\" should be an object.\n-path: /global\n---------------------------------`,\n+ `Sch...
JavaScript
Apache License 2.0
lowdefy/lowdefy
fix(build): Updated formatErrorMessage and testSchema tests.
1
fix
build
815,609
17.11.2021 13:24:00
-28,800
b5d65a445a60f246301d0b8f9479fb1e7c6481b6
feat: add a syscall to pause the script execution (only enabled in tests)
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,9 @@ mod load_witness;\nmod utils;\nmod vm_version;\n+#[cfg(test)]\n+mod pause;\n+\n#[cfg(test)]\nmod tests;\n@@ -28,6 +31,9 @@ pub use self::load_tx::LoadTx;\npub use self::load_witness::LoadWitness;\npub use self::vm_version::VMVersion;\n+#[cfg(test)]\n+pub...
Rust
MIT License
nervosnetwork/ckb
feat: add a syscall to pause the script execution (only enabled in tests)
1
feat
null
780,866
17.11.2021 13:24:06
10,800
2b7e8e8b9a36a3fedcaafefd14a79d29b0229c9a
fix(app/checkout): ensure discount is applied also when summary is not shown apply discounts on lp checkouts
[ { "change_type": "MODIFY", "diff": "</transition>\n</div>\n</div>\n+\n+ <discount-applier\n+ v-if=\"canHideSummary && enabledCheckoutStep > 1\"\n+ class=\"checkout__discount mt-4\"\n+ :amount=\"amount\"\n+ :coupon-code.sync=\"localDiscountCoupon\"\n+ @set-discount-rule=\"discountRule => $emit('set-discount-...
JavaScript
MIT License
ecomplus/storefront
fix(app/checkout): ensure discount is applied also when summary is not shown apply discounts on lp checkouts
1
fix
app/checkout
141,516
17.11.2021 13:27:18
-39,600
019b03f4201e4b971104a7c41d9ec18c8f92eec9
fix: bump stale issues tagging and close
[ { "change_type": "MODIFY", "diff": "@@ -15,8 +15,8 @@ jobs:\nclose-issue-message: \"This issue was closed due to 2 months of inactivity. Feel free to reopen it if still relevant.\"\ndays-before-pr-stale: 60\ndays-before-pr-close: 14\n- days-before-issue-stale: 60\n- days-before-issue-close: 14\n+ days-befor...
TypeScript
MIT License
cultureamp/kaizen-design-system
fix: bump stale issues tagging and close (#2294)
1
fix
null
551,636
17.11.2021 13:32:31
0
d14310ae4172130255262eab32c9a04db0120dbf
chore(cairo): output telemetry log message as "advisory" to avoid false positive errors
[ { "change_type": "MODIFY", "diff": "@@ -174,12 +174,12 @@ public class TelemetryJob extends SynchronizedJob implements Closeable {\n// we need to update the table to reflect that\nif (enabled != _enabled || !configuration.getBuildInformation().getQuestDbVersion().equals(lastVersion)) {\nappendConfigRow(comp...
Java
Apache License 2.0
questdb/questdb
chore(cairo): output telemetry log message as "advisory" to avoid false positive errors (#1585)
1
chore
cairo
688,524
17.11.2021 13:56:03
-3,600
48377ffdc1f7fa7570d3b630c3f0dfc3854d9add
chore: disable GHA for changesets PR
[ { "change_type": "MODIFY", "diff": "@@ -15,9 +15,9 @@ on:\njobs:\ntests:\n+ if: ${{ github.event.pull_request.head.ref != 'changeset-release/master' }}\nruns-on: ubuntu-latest\ntimeout-minutes: 45\n-\nenv:\nNPM_TOKEN: ${{ secrets.NPM_TOKEN }}\nGITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n", "new_path": "....
TypeScript
MIT License
toptal/picasso
chore: disable GHA for changesets PR (#2241)
1
chore
null
141,508
17.11.2021 14:01:42
-39,600
d9769e195f43e7eed93c4628aa9fd7e4e3e8804e
chore: Delete draft-slider package
[ { "change_type": "DELETE", "diff": "-# Change Log\n-\n-All notable changes to this project will be documented in this file.\n-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n-\n-## [1.8.12](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/draft-slider@1....
TypeScript
MIT License
cultureamp/kaizen-design-system
chore: Delete draft-slider package (#2295)
1
chore
null
217,922
17.11.2021 14:03:30
-3,600
25c90099e81eed781ef999523de3abbaf32cbdc5
fix(desktop): fixed teamcraft:// links not opening properly
[ { "change_type": "MODIFY", "diff": "(nzOpenChange)=\"onOpenChange('other', $event)\" nz-submenu>\n<span title>\n<i nz-icon nzType=\"info-circle\"></i>\n- <span>{{'SIDEBAR.Other' | translate}}</span>\n+ <span class=\"nav-text\">{{'SIDEBAR.Other' | translate}}</span>\n</span>\n<a (click)=\"onNavLinkClick()\" ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): fixed teamcraft:// links not opening properly
1
fix
desktop
791,704
17.11.2021 14:24:16
21,600
0f3bada483b7ef3ce47045eccb60845dc43b5779
tests: increase timeout for axe test
[ { "change_type": "MODIFY", "diff": "@@ -76,9 +76,9 @@ describe('ReportRendererAxe', () => {\nconst axeResults = await axe.run(output, config);\nexpect(axeResults.violations).toEqual([]);\n},\n- // This test takes 40s on fast hardware, and 50-60s on GHA.\n+ // This test takes 40s on fast hardware, and 50-60s...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests: increase timeout for axe test (#13386)
1
tests
null
71,350
17.11.2021 14:25:56
28,800
62fbcbfae537ca5612a811460e4499e3c9b553b3
chore: move to aws issue triage action Released my action as an aws open source project [https://github.com/aws-github-ops/aws-issue-triage-manager](aws-issue-triage-manager) *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": "@@ -14,7 +14,7 @@ jobs:\npull-requests: write\nruns-on: ubuntu-latest\nsteps:\n- - uses: peterwoodworth/issue-action@main\n+ - uses: aws-github-ops/aws-issue-triage-manager@main\nwith:\ngithub-token: \"${{ secrets.GITHUB_TOKEN }}\"\nexcluded-expressions: \"[CDK CLI Versio...
TypeScript
Apache License 2.0
aws/aws-cdk
chore: move to aws issue triage action (#17549) Released my action as an aws open source project [https://github.com/aws-github-ops/aws-issue-triage-manager](aws-issue-triage-manager) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
chore
null
777,389
17.11.2021 14:37:48
18,000
7311d66dee840ea26e086dd7f7852010a71d0caf
chore: reusable action dropdown
[ { "change_type": "MODIFY", "diff": "@@ -92,6 +92,7 @@ module.exports = {\n'object-property-newline': [ 'error', { allowAllPropertiesOnSameLine: true } ],\n'quote-props': [ 'error', 'consistent-as-needed' ],\n'quotes': [ 'error', 'single', { avoidEscape: true } ],\n+ 'react/display-name': 'off',\n'react/jsx-...
Python
Apache License 2.0
determined-ai/determined
chore: reusable action dropdown (#3194)
1
chore
null
135,449
17.11.2021 14:43:03
-28,800
e25f0542e38d8bf8b0d17e50c634ddd11fa36729
chore: add v8.3.6 to changelog
[ { "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+## [8.3.6](https://github.com/conventional-changelog/commitlint/compare/v8.3.5...v8.3.6) (2021-11-17)\n+\n+**Note:** ...
TypeScript
MIT License
conventional-changelog/commitlint
chore: add v8.3.6 to changelog
1
chore
null
877,015
17.11.2021 14:54:52
-3,600
51709d7559915d8d4bb8420e7668e760b20108a9
docs(@vtmn/css-tailwind-preset): improve README file
[ { "change_type": "MODIFY", "diff": "@@ -121,7 +121,7 @@ For more details about CSS utility classes from this package, [see Tailwind CSS\n## Tailwind preset\n-Are you already using [Tailwind CSS](https://tailwindcss.com/) in your project? Do you want to take full advantage of all its features like functions ...
JavaScript
Apache License 2.0
decathlon/vitamin-web
docs(@vtmn/css-tailwind-preset): improve README file
1
docs
@vtmn/css-tailwind-preset
135,449
17.11.2021 14:56:35
-28,800
bf6df51e9e1db84a563ce087518fa96153fa6e1a
docs: add v15 release
[ { "change_type": "MODIFY", "diff": "@@ -198,6 +198,7 @@ Features will only be applied to the current main version.\n| Release | Inital release | End-of-life |\n| -------------------------------------------------------------------------------- | -------------- | ----------- |\n+| [v15](https://github.com/con...
TypeScript
MIT License
conventional-changelog/commitlint
docs: add v15 release
1
docs
null
401,109
17.11.2021 14:58:20
-19,080
eacd684be330e4fa75cca0222fe25e333cd1d57b
fix(core): fix table select issue when rowSelectionDisableKey is not provided affects:
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,7 @@ const useRowSelector = ({ data, rowSelectionDisableKey = '', rowIdentifier, sele\n);\nuseEffect(() => {\n- setUniqueIds(data.filter(dt => rowSelectionDisableKey && !dt[rowSelectionDisableKey]).map(dt => dt[rowIdentifier]));\n+ setUniqueIds(data.filter(dt...
TypeScript
MIT License
medly/medly-components
fix(core): fix table select issue when rowSelectionDisableKey is not provided (#528) affects: @medly-components/core
1
fix
core
428,449
17.11.2021 14:59:24
18,000
4f368c4064075d5e9529d92763e05d4b39579d84
docs: remove toc option, update links
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ The official [MongoDB](https://www.mongodb.com/) driver for Node.js.\n| what | where |\n| ------------- | ------------------------------------------------------------------------------------------------------- |\n| documentation | [docs.mongodb.com/drivers...
TypeScript
Apache License 2.0
mongodb/node-mongodb-native
docs: remove toc option, update links (#3042)
1
docs
null
777,389
17.11.2021 15:07:37
18,000
6dd7410fa37f4e32a4f396ba0da18e760dd69b49
chore: enforce consistent spacing around operators
[ { "change_type": "MODIFY", "diff": "@@ -122,6 +122,7 @@ module.exports = {\nnatural: true,\n} ],\n'space-in-parens': [ 'error', 'never' ],\n+ 'space-infix-ops': [ 'error', { int32Hint: true } ],\n},\nsettings: {\n'import/resolver': { typescript: {} }, // This loads <rootdir>/tsconfig.json to eslint\n", ...
Python
Apache License 2.0
determined-ai/determined
chore: enforce consistent spacing around operators (#3200)
1
chore
null
141,585
17.11.2021 15:26:43
-39,600
8928426ba6bcbeda235bb27e4d984c5cb944b6af
chore(site): Update Footer to allow users to manage their cookies for GDPR requirements chore(site): Update Footer to allow users to manage their cookies for GDPR requirements
[ { "change_type": "MODIFY", "diff": "@import \"~@kaizen/design-tokens/sass/color\";\n@import \"~@kaizen/design-tokens/sass/spacing\";\n+@import \"~@kaizen/design-tokens/sass/layout\";\n$reverse-variant-color: $color-blue-100;\n@@ -12,9 +13,6 @@ $reverse-variant-color: $color-blue-100;\n.footer {\ndisplay: fl...
TypeScript
MIT License
cultureamp/kaizen-design-system
chore(site): Update Footer to allow users to manage their cookies for GDPR requirements (#2193) chore(site): Update Footer to allow users to manage their cookies for GDPR requirements
1
chore
site
135,449
17.11.2021 15:34:50
-28,800
77dc3bf3e4cbf308aac5b5e79ac2dd65c6bc4446
docs: add patch publish info
[ { "change_type": "MODIFY", "diff": "@@ -266,7 +266,7 @@ yarn run publish --otp <one-time password>\n1. Create release for the new tag: https://github.com/conventional-changelog/commitlint/releases\n1. Post in the [commitlint Slack-channel][12]\n-#### Publish a `next` release\n+#### Publish a `next` release ...
TypeScript
MIT License
conventional-changelog/commitlint
docs: add patch publish info
1
docs
null
438,921
17.11.2021 15:40:01
-32,400
679ce7366d96dae7b2d16e2d2bbc8565d20b36c7
fix(api): Fix zoom reset for regions(), grids() api call Add withLegend option on .redrawWithoutRescale() Fix
[ { "change_type": "MODIFY", "diff": "@@ -16,8 +16,7 @@ export default {\nstate.redrawing = true;\nconst targetsToShow = $$.filterTargetsToShow($$.data.targets);\n- const initializing = options.initializing;\n- const flow = options.flow;\n+ const {flow, initializing} = options;\nconst wth = $$.getWithOption(o...
TypeScript
MIT License
naver/billboard.js
fix(api): Fix zoom reset for regions(), grids() api call Add withLegend option on .redrawWithoutRescale() Fix #2411
1
fix
api
104,828
17.11.2021 15:50:27
-3,600
0f0a2b3b9b17c4f5ff5ee4941bdde997c012355a
chore(cardcodeeditor): update failing click in e2e test
[ { "change_type": "MODIFY", "diff": "@@ -38,7 +38,7 @@ describe('CardCodeEditor loaded editor test', () => {\n);\ncy.findByTitle(/Copy to clipboard/)\n.should('be.visible')\n- .click()\n+ .realClick()\n.then(() => {\nexpect(onCopy).to.be.called;\n});\n", "new_path": "packages/react/src/components/CardCod...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
chore(cardcodeeditor): update failing click in e2e test
1
chore
cardcodeeditor
667,631
17.11.2021 16:09:24
-28,800
fa6fd48db99d7c159f94c7be2f91e0dd7a04718e
fix(hippy-react-web): event.path is not supported for safari
[ { "change_type": "MODIFY", "diff": "@@ -148,7 +148,8 @@ export class Image extends React.Component {\nisLoadSuccess: true,\n});\nif (onLoad) {\n- const imageInfo = e.path[0];\n+ const path = e.path || (e.composedPath && e.composedPath());\n+ const imageInfo = path[0];\nonLoad({\nwidth: imageInfo.naturalWidt...
C++
Apache License 2.0
tencent/hippy
fix(hippy-react-web): event.path is not supported for safari
1
fix
hippy-react-web
780,868
17.11.2021 16:41:07
10,800
43a175a34ad2a3fd8d8cc8b40a9fbff9eb64e556
fix(components/cart): reset freebies on cart items (paid) changes * Fix Freebie Rules * Fix Freebie Rules * Update [skip ci] * Update [skip ci] fixes
[ { "change_type": "MODIFY", "diff": "@@ -119,17 +119,24 @@ export default {\nthis.canApplyDiscount = !this.localZipCode\n})\nconst { ecomCart } = this\n- let oldSubtotal = ecomCart.data.subtotal\n- const cartWatcher = ({ data }) => {\n+ const getNumItems = () => ecomCart.data.items.reduce((numItems, { flags,...
JavaScript
MIT License
ecomplus/storefront
fix(components/cart): reset freebies on cart items (paid) changes (#565) * Fix Freebie Rules * Fix Freebie Rules * Update @ecomplus/storefront-components/src/js/TheCart.js [skip ci] * Update @ecomplus/storefront-components/src/js/TheCart.js [skip ci] Co-authored-by: Leonardo Matos <leomp120894@gmail....
1
fix
components/cart
276,941
17.11.2021 16:42:03
10,800
e74d19766444d3766313cfddc8dfb62f964e6e6f
fix(result): changing the limitLabel default props and remove the 0 from numberOfItemsLeft when using this component without passing anything in the limitLabel property the text undefined was showing and this change was made to fix this problem
[ { "change_type": "MODIFY", "diff": "@@ -83,7 +83,7 @@ const ResultDetails = ({\n<>\n<Separator />\n<StyledText variant={variant}>\n- + {numberOfItemsLeft.toString().padStart(2, '0')}\n+ + {numberOfItemsLeft.toString()}\n{limitLabel !== '' && ` ${limitLabel}`}\n</StyledText>\n<Separator />\n@@ -117,7 +117,7 ...
JavaScript
MIT License
gympass/yoga
fix(result): changing the limitLabel default props and remove the 0 from numberOfItemsLeft when using this component without passing anything in the limitLabel property the text undefined was showing and this change was made to fix this problem
1
fix
result
780,866
17.11.2021 17:09:13
10,800
192edb6180bb08369dda9e4bd0cfd8fa0342888c
chore(pkg): remove bash from version script (release from windows)
[ { "change_type": "MODIFY", "diff": "\"build\": \"npm run run:main -- build\",\n\"build:demo\": \"npm run run:main -- build:site\",\n\"preversion\": \"lerna run build --since\",\n- \"version\": \"export $(cat .env | xargs) && lerna version\",\n+ \"version\": \"lerna version\",\n\"config\": \"npm config set /...
JavaScript
MIT License
ecomplus/storefront
chore(pkg): remove bash from version script (release from windows)
1
chore
pkg
603,467
17.11.2021 17:12:27
0
68534dbc446e1f30fae8865572af57e8cf72d2c7
refactor(web): consistent naming and package structure for Page-related models
[ { "change_type": "MODIFY", "diff": "export * from './screenplay';\n-export * from './ui';\n", "new_path": "packages/protractor/src/index.ts", "old_path": "packages/protractor/src/index.ts" }, { "change_type": "MODIFY", "diff": "@@ -4,8 +4,7 @@ import { ActionSequence, ElementArrayFinder,...
TypeScript
Apache License 2.0
serenity-js/serenity-js
refactor(web): consistent naming and package structure for Page-related models
1
refactor
web
679,923
17.11.2021 17:24:07
-3,600
cd39c8c8b5841fba60659a60d06fe2ac69a74c9a
refactor(make-example): removed .gitignore tpl
[ { "change_type": "MODIFY", "diff": "@@ -24,6 +24,9 @@ coverage\ndev\ndoc\ndocs\n+\n+!examples/**/snowpack.config.js\n+!examples/**/*.d.ts\nexamples/crdt\nexamples/delaunay-draw\nexamples/diagram\n", "new_path": ".gitignore", "old_path": ".gitignore" }, { "change_type": "MODIFY", "diff": ...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(make-example): removed .gitignore tpl
1
refactor
make-example
428,449
17.11.2021 17:32:59
18,000
ac445991a48b1c7b7a436a71fdad67c7b1cf9d4a
chore: script populating integration spec topics
[ { "change_type": "ADD", "diff": "+#! /usr/bin/env bash\n+\n+if [[ -z $MONGODB_SPECIFICATIONS_DIRECTORY ]]; then\n+ tmpdir=$(mktemp -d -t spec_testsXXXX)\n+ curl -sL \"https://github.com/mongodb/specifications/archive/master.zip\" -o \"$tmpdir/specs.zip\"\n+ unzip -d \"$tmpdir\" \"$tmpdir/specs.zip\" > /dev/...
TypeScript
Apache License 2.0
mongodb/node-mongodb-native
chore: script populating integration spec topics (#3035)
1
chore
null
791,834
17.11.2021 18:09:20
21,600
fe3daf0b8c760d1144ecc336e5206133adfa1ae0
docs(throttling): clarify throttle npm name
[ { "change_type": "MODIFY", "diff": "@@ -41,13 +41,13 @@ We plan to improve the experience of viewing a trace under simulated throttling.\nThis Performance Calendar article, [Testing with Realistic Networking Conditions](https://calendar.perfplanet.com/2016/testing-with-realistic-networking-conditions/), has...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs(throttling): clarify throttle npm name (#13371)
1
docs
throttling
815,601
17.11.2021 18:16:01
-28,800
dba6756e45af981011c7aaf32c60fc2387ceb591
test: retain candidate uncles
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,10 @@ use ckb_launcher::SharedBuilder;\nuse ckb_shared::Shared;\nuse ckb_shared::Snapshot;\nuse ckb_store::ChainStore;\n-use ckb_tx_pool::{PlugTarget, TxEntry};\n+use ckb_tx_pool::{\n+ block_assembler::{BlockAssembler, CandidateUncles},\n+ PlugTarget, TxEntry,\...
Rust
MIT License
nervosnetwork/ckb
test: retain candidate uncles
1
test
null
304,860
17.11.2021 18:29:58
-3,600
53d527e531116cf03eef285156ca228b91328488
feat: Make error messages more consistent * refactor: Make semantic::check use Located * refactor: Make ast::check use Located * feat: Add locations to conversion errors The location is readily available so there is little reason not to include it. * chore: make generate
[ { "change_type": "MODIFY", "diff": "@@ -440,6 +440,7 @@ version = \"0.5.1\"\ndependencies = [\n\"anyhow\",\n\"criterion\",\n+ \"expect-test\",\n\"flatbuffers\",\n\"flux-core\",\n\"getrandom\",\n", "new_path": "libflux/Cargo.lock", "old_path": "libflux/Cargo.lock" }, { "change_type": "MODIFY"...
Go
MIT License
influxdata/flux
feat: Make error messages more consistent (#4274) * refactor: Make semantic::check use Located * refactor: Make ast::check use Located * feat: Add locations to conversion errors The location is readily available so there is little reason not to include it. * chore: make generate
1
feat
null
217,254
17.11.2021 18:40:47
-7,200
e8b14ade0a1334012203bec191f27efb8b3abbe7
feat(examples): add the loripsum-generator project
[ { "change_type": "MODIFY", "diff": "@@ -59,4 +59,12 @@ export const examples = [\npreview: require(\"./img/projentry.png\"),\nversion: VERSIONS.V2,\n},\n+ {\n+ title: \"Loripsum-generator\",\n+ description: \"Simple fish text generator\",\n+ website: \"https://loripsum-generator.vercel.app\",\n+ source: \"h...
JavaScript
MIT License
feature-sliced/documentation
feat(examples): add the loripsum-generator project
1
feat
examples
217,254
17.11.2021 18:50:29
-7,200
0850365a658204b0b75b3f8bcbfaa67fee702131
chore: correct the name
[ { "change_type": "MODIFY", "diff": "@@ -60,7 +60,7 @@ export const examples = [\nversion: VERSIONS.V2,\n},\n{\n- title: \"Loripsum-generator\",\n+ title: \"Loripsum generator\",\ndescription: \"Simple fish text generator\",\nwebsite: \"https://loripsum-generator.vercel.app\",\nsource: \"https://github.com/y...
JavaScript
MIT License
feature-sliced/documentation
chore: correct the name
1
chore
null
749,530
17.11.2021 18:55:44
18,000
080e5bd6c8f8f4f787453c0445d1c7b7637a0ef6
chore(changelog): add v8.45.0 [skip ci]
[ { "change_type": "MODIFY", "diff": "@@ -12,6 +12,23 @@ _Note: Gaps between patch versions are faulty, broken or test releases._\n<!-- DO NOT MODIFY BELOW THIS COMMENT -->\n<!-- insert-new-changelog-here -->\n+## v8.45.0 (2021-11-17)\n+\n+#### :rocket: New Feature\n+* `accordions`\n+ * [#1242](https://github...
TypeScript
Apache License 2.0
zendeskgarden/react-components
chore(changelog): add v8.45.0 [skip ci]
1
chore
changelog
217,922
17.11.2021 19:46:33
-3,600
7ca1a4c6ca1679902d2c6400044cb5954a3488cf
fix(recipe-finder): fixed import from clipboard
[ { "change_type": "MODIFY", "diff": "@@ -333,10 +333,10 @@ export class RecipeFinderComponent implements OnDestroy {\n);\n}\nitem$.pipe(\n- filter(item => {\n- return !!item && !cumulative && this.pool.some(i => i.id === item.id);\n- }),\nmap(item => {\n+ if(!item || (!cumulative && this.pool.some(i => i.id ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(recipe-finder): fixed import from clipboard
1
fix
recipe-finder
217,922
17.11.2021 19:58:24
-3,600
70f4e4c17ee50a7243e346ca86dc150ae56fd4ec
fix(simulator): fixed simulator not loading for chinese and korean users
[ { "change_type": "MODIFY", "diff": "@@ -19,9 +19,28 @@ import { LazyRecipe } from '../../../../lazy-data/model/lazy-recipe';\n})\nexport class SimulatorPageComponent extends AbstractSimulationPage {\n- recipe$: Observable<Craft | LazyRecipe>;\n+ recipe$: Observable<Craft | LazyRecipe> = this.route.paramMap....
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed simulator not loading for chinese and korean users
1
fix
simulator
67,516
17.11.2021 20:07:27
-3,600
0c05befa96096c6f98773c9c8876cf817d877696
chore: post-review changes 4
[ { "change_type": "MODIFY", "diff": "@@ -86,9 +86,9 @@ Be mindful when dealing with `bigint` as the `BigInt(value)` will throw if the `\nIt is also possible to coerce values to instances of classes.\nThere are two ways how that can be done.\n-### Using a static `coercer` method\n+### Using a static `coerce` ...
TypeScript
MIT License
aurelia/aurelia
chore: post-review changes 4
1
chore
null
756,039
17.11.2021 20:19:25
28,800
305cf92a22a27259d2e5eca39feab688882a73b3
feat(wallet): add reject button for dapps
[ { "change_type": "MODIFY", "diff": "import { E } from '@agoric/eventual-send';\nimport Chip from '@mui/material/Chip';\nimport CheckIcon from '@mui/icons-material/Check';\n+import CloseIcon from '@mui/icons-material/Close';\nimport Request from './Request';\nimport Dapp from './Dapp';\nconst DappConnection ...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(wallet): add reject button for dapps
1
feat
wallet
217,922
17.11.2021 20:23:43
-3,600
e7398a595c43b658ca8d147e06fbe4c5581a57f3
fix(desktop): new startup system to avoid freezing app on launch closes
[ { "change_type": "MODIFY", "diff": "<app-loading-screen *ngIf=\"!dataLoaded; else appLayout\"></app-loading-screen>\n<ng-template #appLayout>\n<nz-layout *ngIf=\"!(hasDesktop$ | async); else desktopOpenedMessage\" [class.no-panel-borders]=\"settings.noPanelBorders\"\n- class=\"app-container\">\n+ class=\"ap...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): new startup system to avoid freezing app on launch closes #1966
1
fix
desktop
217,922
17.11.2021 20:52:45
-3,600
80a88bbd438711763d102f68468595ee7a4ac0e0
perf(desktop): fixed massive performance issues and FPS drops
[ { "change_type": "MODIFY", "diff": "@@ -3,8 +3,8 @@ import { PlatformService } from '../tools/platform.service';\nimport { IpcRenderer, IpcRendererEvent } from 'electron';\nimport { Router } from '@angular/router';\nimport { Vector2 } from '../tools/vector2';\n-import { BehaviorSubject, interval, Observable...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
perf(desktop): fixed massive performance issues and FPS drops
1
perf
desktop
667,636
17.11.2021 20:59:10
-28,800
6470d12d1841523894a57ce5de738f7e3ee8600f
feat(react,vue): improve managing node performance
[ { "change_type": "MODIFY", "diff": "@@ -42,10 +42,6 @@ class ViewNode {\npublic parentNode: ViewNode | null = null;\n- public prevSibling: ViewNode | null = null;\n-\n- public nextSibling: ViewNode | null = null;\n-\nconstructor() {\n// Virtual DOM node id, will used in native to identify.\nthis.nodeId = ge...
C++
Apache License 2.0
tencent/hippy
feat(react,vue): improve managing node performance
1
feat
react,vue
217,922
17.11.2021 21:07:58
-3,600
a7aeeb915a346ea414a7de80003d10953e669b08
fix(desktop): fixed fishing bite timer sometimes off
[ { "change_type": "MODIFY", "diff": "@@ -145,7 +145,7 @@ export class AppComponent implements OnInit {\npublic dataLoaded = false;\n- public desktopLoading$ = new BehaviorSubject(this.platformService.isDesktop());\n+ public desktopLoading$ = new BehaviorSubject(this.platformService.isDesktop() && !this.overl...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(desktop): fixed fishing bite timer sometimes off
1
fix
desktop
217,922
17.11.2021 21:14:30
-3,600
87bb4680f7506629da2c2f5a6092716b550deefc
fix(lists): fixed merge lists dialog box
[ { "change_type": "MODIFY", "diff": "@@ -148,6 +148,7 @@ export class ListController {\n/**\n* Merges the list with another one, used for list additions to me more efficient.\n+ * @param list\n* @param {List} otherList\n* @returns {List}\n*/\n", "new_path": "apps/client/src/app/modules/list/list-controll...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(lists): fixed merge lists dialog box
1
fix
lists
815,609
17.11.2021 22:54:39
-28,800
d9874136691d4b2fd77bbf8dda224fa4dd2ae1df
test(script): resume from snapshot with loading codes many times
[ { "change_type": "MODIFY", "diff": "@@ -600,7 +600,7 @@ fn check_typical_secp256k1_blake160_2_in_2_out_tx_with_complete() {\n}\n#[test]\n-fn check_resume_from_snapshot() {\n+fn check_resume_from_snapshot_with_load_code_once() {\nlet script_version = SCRIPT_VERSION;\nlet (dyn_lib_cell, dyn_lib_data_hash) = l...
Rust
MIT License
nervosnetwork/ckb
test(script): resume from snapshot with loading codes many times
1
test
script
815,601
17.11.2021 23:02:20
-28,800
eeafcc9cc6abfadcf1bdf20c71992afd7b0431fc
test: delay txs during hardfork
[ { "change_type": "MODIFY", "diff": "@@ -525,6 +525,7 @@ fn all_specs() -> Vec<Box<dyn Spec>> {\nBox::new(CheckVmVersion),\nBox::new(CheckVmBExtension),\nBox::new(ImmatureHeaderDeps),\n+ Box::new(DelayTxs),\n];\nspecs.shuffle(&mut thread_rng());\nspecs\n", "new_path": "test/src/main.rs", "old_path": ...
Rust
MIT License
nervosnetwork/ckb
test: delay txs during hardfork
1
test
null
791,682
17.11.2021 23:05:47
-3,600
7eedb3154d96093df2ea972d40c47e00928d9659
core(installable-manifest): pipeline-restarted check
[ { "change_type": "MODIFY", "diff": "@@ -95,6 +95,8 @@ const UIStrings = {\n'warn-not-offline-capable': `Page does not work offline. The page will not be regarded as installable after Chrome 93, stable release August 2021.`,\n/** Error message explaining that Lighthouse failed while detecting a service worke...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(installable-manifest): pipeline-restarted check (#13365)
1
core
installable-manifest
815,609
17.11.2021 23:28:15
-28,800
794c539ee6787aacd1f1ec15c331ed8dfae96d78
test(script): current cycles should be always monotonically increased
[ { "change_type": "MODIFY", "diff": "@@ -104,6 +104,38 @@ fn test_cycles_difference() {\nassert_eq!(cycles_actual, cycles_expected);\n}\n+#[test]\n+fn check_current_cycles() {\n+ let script_version = SCRIPT_VERSION;\n+\n+ let (current_cycles_cell, current_cycles_data_hash) =\n+ load_cell_from_path(\"testdata...
Rust
MIT License
nervosnetwork/ckb
test(script): current cycles should be always monotonically increased
1
test
script
679,923
17.11.2021 23:29:44
-3,600
a74ff4ffd2853f6832c795522e38dcd86e1533d1
build(yarn3): YN0076 - INCOMPATIBLE_ARCHITECTURE I think annoying on this can be very safely muted:)
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,12 @@ nmMode: \"hardlinks-global\"\nnpmRegistryServer: \"https://registry.npmjs.org\"\n+# Muting YN0076 - INCOMPATIBLE_ARCHITECTURE\n+# https://yarnpkg.com/advanced/error-codes#yn0076---incompatible_architecture\n+logFilters:\n+ - code: \"YN0076\"\n+ level: \"d...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(yarn3): YN0076 - INCOMPATIBLE_ARCHITECTURE I think annoying on this can be very safely muted:) https://yarnpkg.com/advanced/error-codes#yn0076---incompatible_architecture
1
build
yarn3
679,913
17.11.2021 23:32:05
-3,600
4604552853539b75d934769117858d258eab41e9
build: update deps/yarn.lock, gitignore
[ { "change_type": "MODIFY", "diff": "@@ -27,29 +27,7 @@ docs\n!examples/**/snowpack.config.js\n!examples/**/*.d.ts\n-examples/crdt\n-examples/delaunay-draw\n-examples/diagram\n-examples/dunes\n-examples/formgen\n-examples/growth\n-examples/dataflow-scenegraph\n-examples/hdc\n-examples/hdom-class\n-examples/h...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update deps/yarn.lock, gitignore
1
build
null
603,467
17.11.2021 23:38:52
0
b8e471dc92fe7d930895571ce0bcb99066eb2206
fix(protractor): removed interaction to ResizeBrowserWindow in favour of Page.setViewportSize()
[ { "change_type": "MODIFY", "diff": "\"test:acceptance\": \"cross-env PORT=8080 start-server-and-test start http://localhost:8080 test:acceptance:run\",\n\"start\": \"node start.js\",\n\"test:acceptance:run\": \"failsafe test:acceptance:run:webdriverio test:acceptance:run:protractor\",\n- \"test:acceptance:r...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(protractor): removed interaction to ResizeBrowserWindow in favour of Page.setViewportSize()
1
fix
protractor
471,306
17.11.2021 23:42:52
-25,200
aff24b82e2654d6c42e1a9b03351dd94b9869793
feat(instrumentation-pino): bump supported pino version to v7.x
[ { "change_type": "MODIFY", "diff": "@@ -14,6 +14,10 @@ jobs:\n- container: \"node:8\"\nlerna-extra-args: >-\n--ignore @opentelemetry/instrumentation-aws-sdk\n+ --ignore @opentelemetry/instrumentation-pino\n+ - container: \"node:10\"\n+ lerna-extra-args: >-\n+ --ignore @opentelemetry/instrumentation-pino\nru...
TypeScript
Apache License 2.0
open-telemetry/opentelemetry-js-contrib
feat(instrumentation-pino): bump supported pino version to v7.x (#724) Co-authored-by: Rauno Viskus <rauno56@gmail.com> Co-authored-by: Tine Jozelj <tine@tjo.space> Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr>
1
feat
instrumentation-pino
679,913
17.11.2021 23:50:23
-3,600
c4395621b15ed4cce3a1edbce5d0a265a12ba092
docs: update main readme (masthead)
[ { "change_type": "MODIFY", "diff": "-# ![thi.ng/umbrella](https://media.thi.ng/umbrella/banners/thing-umbrella.svg?1581297779)\n+![thi.ng/umbrella](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/banners/thing-umbrella-masthead.jpg)\n[![Build status](https://img.shields.io/github/workflow/s...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: update main readme (masthead)
1
docs
null
756,039
17.11.2021 23:56:19
28,800
995890254cf917b6731858f3daf19986a21629e5
feat(wallet): implement import issuer button
[ { "change_type": "ADD", "diff": "+/* eslint-disable import/no-extraneous-dependencies */\n+import { useEffect, useState } from 'react';\n+import Button from '@mui/material/Button';\n+import TextField from '@mui/material/TextField';\n+import Dialog from '@mui/material/Dialog';\n+import DialogActions from '@m...
JavaScript
Apache License 2.0
agoric/agoric-sdk
feat(wallet): implement import issuer button
1
feat
wallet
603,467
17.11.2021 23:58:36
0
336472b1a6882412f6a88483e51266909a1d51d0
fix(web): standardised getters across PageElement implementations
[ { "change_type": "MODIFY", "diff": "@@ -59,7 +59,7 @@ export class ProtractorPageElement implements PageElement {\nreturn Array.from({ length }).map(() => key);\n}\n- const currentValue = await this.getValue();\n+ const currentValue = await this.value();\nif (currentValue !== null && currentValue !== undefi...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(web): standardised getters across PageElement implementations
1
fix
web
730,489
18.11.2021 00:54:45
28,800
85cda8d72a35f35db25924bcb108ddf73f5fafee
fix(plugin-meetings): locus-info changes to store two different types of share
[ { "change_type": "MODIFY", "diff": "-import {CONTENT} from '../constants';\n+import {CONTENT, WHITEBOARD} from '../constants';\nconst MediaSharesUtils = {};\n@@ -10,8 +10,15 @@ const MediaSharesUtils = {};\nMediaSharesUtils.parse = (mediaShares) => {\nif (mediaShares) {\nreturn {\n- contentId: MediaSharesUt...
JavaScript
MIT License
webex/webex-js-sdk
fix(plugin-meetings): locus-info changes to store two different types of share
1
fix
plugin-meetings