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
126,276
29.10.2021 10:59:20
10,800
00517b247df5b778eb5f6d50a84e9f78c9632477
feat(embedded/store): included filters in key readers
[ { "change_type": "MODIFY", "diff": "@@ -28,9 +28,18 @@ type Snapshot struct {\nsnap *tbtree.Snapshot\n}\n+type FilterFn func(valRef *ValueRef) bool\n+\n+var (\n+ IgnoreDeleted FilterFn = func(valRef *ValueRef) bool {\n+ return valRef.kvmd == nil || !valRef.kvmd.deleted\n+ }\n+)\n+\ntype KeyReader struct {\n...
Go
Apache License 2.0
codenotary/immudb
feat(embedded/store): included filters in key readers Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
feat
embedded/store
401,116
29.10.2021 11:01:08
-19,080
ae69a5903e61891256c502e896bb68d8b3bd8663
feat(forms): add onRemoveField for CustomFormComponent * fix(forms): update state of custom field onRemoveField affects: ISSUES CLOSED: * docs(forms): update doc for custom/ dynamic form fields affects: * refactor: advanced form documentation affects:
[ { "change_type": "MODIFY", "diff": "@@ -192,7 +192,15 @@ export const Fields: React.FC<FieldsProps> = React.memo(props => {\n/>\n);\ncase 'custom':\n- return <Component {...commonProps} value={value} values={values} onChange={handlers.handleChange} />;\n+ return (\n+ <Component\n+ {...commonProps}\n+ value=...
TypeScript
MIT License
medly/medly-components
feat(forms): add onRemoveField for CustomFormComponent (#500) * fix(forms): update state of custom field onRemoveField affects: @medly-components/forms ISSUES CLOSED: #491 * docs(forms): update doc for custom/ dynamic form fields affects: @medly-components/forms * refactor: advanced form documentation ...
1
feat
forms
126,276
29.10.2021 11:01:25
10,800
f10e2e6c459ca01d06af17c57e0d0e48eea71135
chore(embedded/sql): leverage metadata for logical deletion
[ { "change_type": "MODIFY", "diff": "@@ -386,11 +386,11 @@ func (e *Engine) DumpCatalogTo(srcName, dstName string, targetStore *store.ImmuS\n}\ndefer snap.Close()\n- var entries []*store.KV\n+ var entries []*store.EntrySpec\ndbKey := e.mapKey(catalogDatabasePrefix, EncodeID(db.ID()))\n- entries = append(entr...
Go
Apache License 2.0
codenotary/immudb
chore(embedded/sql): leverage metadata for logical deletion Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
embedded/sql
126,276
29.10.2021 11:02:29
10,800
007ff8e9d13986d0f65b8399cbd8eb9b70b2ce3b
chore(embedded/tools): update stress_tool after metadata-related changes
[ { "change_type": "MODIFY", "diff": "@@ -111,6 +111,20 @@ func main() {\nimmuStore, err := store.Open(*dataDir, opts)\n+ st, err := store.Open(\"data\", store.DefaultOptions())\n+ // handle error\n+\n+ defer st.Close()\n+\n+ tx, err := st.Commit(\n+ &store.TxSpec{\n+ Entries: []*store.EntrySpec{{Key: []byte(...
Go
Apache License 2.0
codenotary/immudb
chore(embedded/tools): update stress_tool after metadata-related changes Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
embedded/tools
915,316
29.10.2021 11:08:17
-19,080
8c2da466edb0e72a4bcb4c854bf80b6a98e3ac7a
fix: use NYT capitalistaion for all Swagger headlines Capitalised all the Swagger headlines for files found in /api. Closes
[ { "change_type": "MODIFY", "diff": "@@ -43,7 +43,7 @@ func (h *CredentialsHandler) SetRoutes(r *x.RouterAPI) {\n// swagger:route GET /.well-known/jwks.json api getWellKnownJSONWebKeys\n//\n-// Lists cryptographic keys\n+// Lists Cryptographic Keys\n//\n// This endpoint returns cryptographic keys that are re...
Go
Apache License 2.0
ory/oathkeeper
fix: use NYT capitalistaion for all Swagger headlines (#859) Capitalised all the Swagger headlines for files found in /api. Closes #503
1
fix
null
277,273
29.10.2021 11:19:22
25,200
9a89e1e42fe97bbfd802ab63068e5e452937376f
ci: Fix setup.py version-bumping to match changes for nightly
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ clean: purge ## Clean\n.PHONY: tag\ntag: # Bump version\n- sed -i -r -e \"s/version.+/version='$(VERSION)',/\" setup.py\n+ sed -i -r -e \"s/version.+/version=os.getenv('VERSION', '$(VERSION)'),/\" setup.py\nsed -i -r -e \"s/__version__.+/__version__ = '$...
Python
Apache License 2.0
h2oai/wave
ci: Fix setup.py version-bumping to match changes for nightly
1
ci
null
277,273
29.10.2021 11:20:59
25,200
50791e9e18147b8d4f745a759df9ceca21937ded
chore: Release v0.19.0
[ { "change_type": "ADD", "diff": "+POST http://localhost:8000\n+Authorization: Basic Zm9vOmJhcg==\n+Content-Type: application/json\n+@increment.json\n", "new_path": "attack.txt", "old_path": null }, { "change_type": "ADD", "diff": "+{\"increment\":true}\n", "new_path": "increment.json...
Python
Apache License 2.0
h2oai/wave
chore: Release v0.19.0
1
chore
null
791,474
29.10.2021 11:34:31
25,200
a9ece03a8239bf54a2a5e07f564bf4cea067e3fa
test(bigtable): randomize app profile names to avoid test collision
[ { "change_type": "MODIFY", "diff": "@@ -2207,11 +2207,15 @@ func TestIntegration_InstanceAdminClient_AppProfile(t *testing.T) {\nreturn\n}\n- err = iAdminClient.DeleteAppProfile(ctx, adminClient.instance, \"app_profile1\")\n+ uniqueID := make([]byte, 4)\n+ _, err = rand.Read(uniqueID)\n+ profileID := fmt.Sp...
Go
Apache License 2.0
googleapis/google-cloud-go
test(bigtable): randomize app profile names to avoid test collision (#5047)
1
test
bigtable
826,708
29.10.2021 11:37:17
-7,200
f6b4171c41fcd03cbbf5fa61b0ad9b4d16179e2b
fix: add pkg-config
[ { "change_type": "MODIFY", "diff": "@@ -53,7 +53,7 @@ RUN mkdir -p \"$GOPATH/src\" \"$GOPATH/bin\" && chmod -R 777 \"$GOPATH\"\nRUN curl -sL https://deb.nodesource.com/setup_15.x | bash - && apt-get install -y nodejs\n# the following is a workaround for openjdk-11-jre-headless erroring due to not having a m...
C#
Apache License 2.0
ory/sdk
fix: add pkg-config (#125)
1
fix
null
815,577
29.10.2021 11:40:26
-28,800
5a9a249f79a07765de387a854b1879d1199c00d1
chore: move sentry scope
[ { "change_type": "MODIFY", "diff": "@@ -620,16 +620,6 @@ impl<T: ExitHandler> ServiceHandle for EventHandler<T> {\n}\nServiceError::ProtocolHandleError { proto_id, error } => {\ndebug!(\"ProtocolHandleError: {:?}, proto_id: {}\", error, proto_id);\n- #[cfg(feature = \"with_sentry\")]\n- with_scope(\n- |scop...
Rust
MIT License
nervosnetwork/ckb
chore: move sentry scope
1
chore
null
14,244
29.10.2021 12:48:16
-7,200
51cfb943d87a25eb863a48b9444637c49c22aa7c
fix(getEnvironmentProps): remove obsolete check causing tap not to close
[ { "change_type": "MODIFY", "diff": "-import { createPlayground } from '../../../../test/utils';\n+import {\n+ createPlayground,\n+ createSource,\n+ runAllMicroTasks,\n+} from '../../../../test/utils';\nimport { createAutocomplete } from '../createAutocomplete';\n+beforeEach(() => {\n+ document.body.innerHTM...
TypeScript
MIT License
algolia/autocomplete
fix(getEnvironmentProps): remove obsolete check causing tap not to close (#803)
1
fix
getEnvironmentProps
386,581
29.10.2021 13:27:34
-7,200
dcd28f51c4ef9d73a1afc47cdb377a330a3f01a6
feat: Add default public files to
[ { "change_type": "ADD", "diff": "Binary files /dev/null and b/packages/client/src/public/apple-touch-icon.png differ\n", "new_path": "packages/client/src/public/apple-touch-icon.png", "old_path": "packages/client/src/public/apple-touch-icon.png" }, { "change_type": "ADD", "diff": "Binary...
JavaScript
Apache License 2.0
lowdefy/lowdefy
feat: Add default public files to @lowdefy/client
1
feat
null
386,581
29.10.2021 13:28:12
-7,200
83b885bc415e6e3bc7e67db6efc5f04f6f70db6e
feat: Use logger in request api call.
[ { "change_type": "MODIFY", "diff": "import { ConfigurationError } from '../../context/errors';\n-function authorizeRequest({ authorize }, { request }) {\n- if (!authorize(request)) {\n+function authorizeRequest({ authorize, logger }, { requestConfig }) {\n+ if (!authorize(requestConfig)) {\n+ logger.warn({ ...
JavaScript
Apache License 2.0
lowdefy/lowdefy
feat: Use logger in request api call.
1
feat
null
71,371
29.10.2021 13:28:43
-7,200
7a333b018c9bb2430165177d3e65614cf1d66519
feat(core): subtract Durations Add a `.minus()` method to `Duration`. Closes *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "@@ -172,6 +172,13 @@ Duration.days(7) // 7 days\nDuration.parse('PT5M') // 5 minutes\n```\n+Durations can be added or subtracted together:\n+\n+```ts\n+Duration.minutes(1).plus(Duration.seconds(60)); // 2 minutes\n+Duration.minutes(5).minus(Duration.seconds(10)); // 290 s...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(core): subtract Durations (#16734) Add a `.minus()` method to `Duration`. Closes #16535 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
feat
core
277,286
29.10.2021 13:33:09
-7,200
5d96c1cc308a3081a970319f26b958600ccfa212
fix: handle a few dropdown dialog edge cases
[ { "change_type": "MODIFY", "diff": "-# Info / Wide\n-# Create a wide information card displaying a title, caption, and either an icon or image.\n+# Stat / Pie / Wide\n+# Create a wide stat pie card displaying a pie chart.\n# ---\nfrom h2o_wave import site, ui\n", "new_path": "py/examples/stat_wide_pie.p...
Python
Apache License 2.0
h2oai/wave
fix: handle a few dropdown dialog edge cases #153
1
fix
null
269,464
29.10.2021 14:03:29
10,800
c9c285583c09da322e855f3a78250bf9b31e1357
docs: fix jsonschema links
[ { "change_type": "MODIFY", "diff": "@@ -12,12 +12,12 @@ GoReleaser also has a [jsonschema][] file which you can use to have better edito\n=== \"OSS\"\n```sh\n- https://goreleaser.com/schema.json\n+ https://goreleaser.com/static/schema.json\n```\n=== \"Pro\"\n```sh\n- https://goreleaser.com/schema-pro.json\n...
Go
MIT License
goreleaser/goreleaser
docs: fix jsonschema links
1
docs
null
126,276
29.10.2021 14:04:58
10,800
827e2b63ea15aa784f2f05bcdf5c93db18248d6d
chore(pkg/database): updates after metadata-related changes
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,7 @@ import (\n// ExecAll like Set it permits many insertions at once.\n// The difference is that is possible to to specify a list of a mix of key value set and zAdd insertions.\n// If zAdd reference is not yet present on disk it's possible to add it as a reg...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/database): updates after metadata-related changes Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/database
126,276
29.10.2021 14:08:46
10,800
5a0d85899672d0ed400abdc46c8c7fc3b4ebe735
chore(pkg/server): updates after metadata-related changes
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ func (s *ImmuServer) CurrentState(ctx context.Context, _ *empty.Empty) (*schema.\n}\n// Set ...\n-func (s *ImmuServer) Set(ctx context.Context, kv *schema.SetRequest) (*schema.TxMetadata, error) {\n+func (s *ImmuServer) Set(ctx context.Context, kv *schem...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/server): updates after metadata-related changes Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/server
277,286
29.10.2021 14:11:40
-7,200
510b7d343da69b59f367202caf1a1ca491a956be
chore: Remove everything related to git hooks.
[ { "change_type": "MODIFY", "diff": "@@ -63,19 +63,19 @@ You will need [Go](https://golang.org/) 1.13+, [Node.js](http://nodejs.org) 10+,\nTo set up all development dependencies, clone the repo and run:\n``` bash\n-$ make all\n+make all\n```\nTo launch the Wave server, run:\n``` bash\n-$ make run\n+make run\...
Python
Apache License 2.0
h2oai/wave
chore: Remove everything related to git hooks.
1
chore
null
126,276
29.10.2021 14:17:50
10,800
2d45b9197e97cbc6fad6da70c89cee8892f9ebd7
chore(pkg/integration): updates after metadata-related changes
[ { "change_type": "MODIFY", "diff": "@@ -18,13 +18,14 @@ package integration\nimport (\n\"context\"\n\"errors\"\n- \"github.com/codenotary/immudb/pkg/client/homedir\"\n- \"github.com/codenotary/immudb/pkg/client/tokenservice\"\n\"os\"\n\"path\"\n\"testing\"\n\"time\"\n+ \"github.com/codenotary/immudb/pkg/cli...
Go
Apache License 2.0
codenotary/immudb
chore(pkg/integration): updates after metadata-related changes Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
pkg/integration
777,376
29.10.2021 14:18:14
14,400
f3915f36063e90c9ea88d5ba6843f346215104f3
feat: Make SSH RSA key size configurable
[ { "change_type": "MODIFY", "diff": "@@ -719,6 +719,11 @@ The master supports the following configuration settings:\n- ``cert``: Certificate file to use for serving TLS.\n- ``key``: Key file to use for serving TLS.\n+ - ``ssh``: Specifies configuration settings for SSH.\n+\n+ - ``rsa_key_size``: Number of bi...
Python
Apache License 2.0
determined-ai/determined
feat: Make SSH RSA key size configurable [DET-5983] (#3141)
1
feat
null
126,276
29.10.2021 14:20:52
10,800
450250f59a287949c7c94b849ab44fae322494a8
chore(cmd/immuclient): deleteKeys functioin and updates after metadata-related changes
[ { "change_type": "MODIFY", "diff": "@@ -41,6 +41,8 @@ func (cli *cli) initCommands() {\ncli.Register(&command{\"safezadd\", \"Add and verify new key with score to a new or existing sorted set\", cli.safeZAdd, []string{\"setname\", \"score\", \"key\"}, false})\ncli.Register(&command{\"zadd\", \"Add new key w...
Go
Apache License 2.0
codenotary/immudb
chore(cmd/immuclient): deleteKeys functioin and updates after metadata-related changes Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
1
chore
cmd/immuclient
71,579
29.10.2021 14:26:41
-7,200
56974ac4152bc082470d56dd66e4ef7aad042815
fix(lambda-event-sources): dynamo batch size cannot be a CfnParameter fixes *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "import * as dynamodb from '@aws-cdk/aws-dynamodb';\nimport * as lambda from '@aws-cdk/aws-lambda';\n-import { Names } from '@aws-cdk/core';\n+import { Names, Token } from '@aws-cdk/core';\nimport { StreamEventSource, StreamEventSourceProps } from './stream';\nexport inter...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(lambda-event-sources): dynamo batch size cannot be a CfnParameter (#16540) fixes #16221 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
fix
lambda-event-sources
866,394
29.10.2021 14:32:43
14,400
6ff8ac10534f2e89c40e4f2c301da481f9d76d00
fix(browserstack): update cypress configs for browserstack This fixes the Cypress configs for browserstack automate for the fixtures folder to use the default location.
[ { "change_type": "MODIFY", "diff": "\"browser\": \"chrome\",\n\"headless\": true,\n\"video\": false,\n- \"fixturesFolder\": false,\n\"nodeVersion\": \"system\",\n\"includeShadowDom\": true,\n\"testFiles\": \"**/*.e2e.js\",\n", "new_path": "packages/react/tests/e2e-storybook/cypress-canary.json", "ol...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(browserstack): update cypress configs for browserstack (#7543) This fixes the Cypress configs for browserstack automate for the fixtures folder to use the default location.
1
fix
browserstack
217,922
29.10.2021 14:44:20
-7,200
37f52ba94bd395c0a1f42ec4ad13ee5f92243745
chore: better files loading system for beta env
[ { "change_type": "MODIFY", "diff": "@@ -16,7 +16,8 @@ import { uniq } from 'lodash';\n@Injectable()\nexport class LazyDataEffects {\n- private static readonly EXTRACTS_PATH = `/assets/extracts/extracts${environment.production ? '.' + extractsHash : ''}.json`;\n+\n+ private static readonly EXTRACTS_PATH = `/...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: better files loading system for beta env
1
chore
null
551,634
29.10.2021 14:48:52
-3,600
06cb9443d68bfd39303adf183fbe79205fa89a4e
fix(cairo): 6.1 migration issues
[ { "change_type": "MODIFY", "diff": "@@ -42,6 +42,8 @@ final class Mig607 {\npath.trimTo(plen).concat(META_FILE_NAME).$();\n+ long metaFileSize;\n+ long txFileSize;\ntry (MemoryMARW metaMem = migrationContext.getRwMemory()) {\nmetaMem.of(ff, path, ff.getPageSize(), ff.length(path), MemoryTag.NATIVE_DEFAULT);...
Java
Apache License 2.0
questdb/questdb
fix(cairo): 6.1 migration issues (#1494)
1
fix
cairo
791,682
29.10.2021 14:58:20
25,200
36b21068db4f55c51b024c1ca79634404b5d27eb
core(image-elements): remove mimeType from artifact
[ { "change_type": "MODIFY", "diff": "@@ -89,8 +89,7 @@ class ImageAspectRatio extends Audit {\n// - filter all svgs as they have no natural dimensions to audit\n// - filter out images that have falsy naturalWidth or naturalHeight\nreturn !image.isCss &&\n- image.mimeType &&\n- image.mimeType !== 'image/svg+x...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(image-elements): remove mimeType from artifact (#13265)
1
core
image-elements
71,371
29.10.2021 15:20:26
-7,200
56033a2a6d4be0444694d9f88260c574a4fa1a1d
feat(lambda-nodejs): esbuild charset option Support `esbuild` charset option. Closes *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
[ { "change_type": "MODIFY", "diff": "@@ -189,6 +189,7 @@ new lambda.NodejsFunction(this, 'my-handler', {\nmetafile: true, // include meta file, defaults to false\nbanner: '/* comments */', // requires esbuild >= 0.9.0, defaults to none\nfooter: '/* comments */', // requires esbuild >= 0.9.0, defaults to none...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(lambda-nodejs): esbuild charset option (#16726) Support `esbuild` charset option. Closes #16668 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1
feat
lambda-nodejs
317,842
29.10.2021 15:38:52
-7,200
1b29ae136d41b686a52cfdb420740059d3a19b02
fix: wrong background for powerline in some cases activeBackground color is wrong when a diamong segment follows a powerline segment.
[ { "change_type": "MODIFY", "diff": "@@ -89,6 +89,9 @@ func (b *Block) renderSegments() string {\ncontinue\n}\nb.activeSegment = segment\n+ b.activeBackground = b.activeSegment.background()\n+ b.activeForeground = b.activeSegment.foreground()\n+ b.writer.setColors(b.activeBackground, b.activeForeground)\nb.e...
Go
MIT License
jandedobbeleer/oh-my-posh
fix: wrong background for powerline in some cases activeBackground color is wrong when a diamong segment follows a powerline segment.
1
fix
null
777,399
29.10.2021 15:53:44
25,200
e8011b82678d8cbc791be5cc188af7632d64d5ab
docs: add release notes for 0.17.2
[ { "change_type": "MODIFY", "diff": "Version 0.17\n**************\n+Version 0.17.2\n+==============\n+\n+**Release Date:** October 29, 2021\n+\n+**New Features**\n+\n+- Model Registry APIs: Add new APIs to create a model with labels and to update the labels of an\n+ existing model.\n+\n+**Improvement**\n+\n+...
Python
Apache License 2.0
determined-ai/determined
docs: add release notes for 0.17.2 (#3146) (cherry picked from commit 0e73d67a79dd592c8139b090ddee406809eaeb3d)
1
docs
null
791,704
29.10.2021 16:05:43
25,200
70ad127cbc497724feb14cea6024e35dba8dd989
core(errors-in-console): remove url property from items
[ { "change_type": "MODIFY", "diff": "@@ -200,27 +200,27 @@ const expectations = {\n0: {\nsource: 'exception',\ndescription: /^Error: A distinctive error\\s+at http:\\/\\/localhost:10200\\/dobetterweb\\/dbw_tester.html:\\d+:\\d+$/,\n- url: 'http://localhost:10200/dobetterweb/dbw_tester.html',\n+ sourceLocatio...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(errors-in-console): remove url property from items (#13286)
1
core
errors-in-console
826,662
29.10.2021 16:07:55
-28,800
8f041bc726253834a61e20cbb87ea80ad425a271
fix: docker-compose-postgres.yml SQL migration service
[ { "change_type": "MODIFY", "diff": "./keto-patch 0.02s user 0.01s system 6% cpu 0.425 total\n```\n+- Bugfix docker-compose-postgres.yml bug with Migrations were not applied\n+ ([bf09c33](https://github.com/ory/keto/commit/bf09c33194aed71e9800ff38bfc4449be24dcf7a))\n+\n# [0.7.0-alpha.1](https://github.com/or...
Go
Apache License 2.0
ory/keto
fix: docker-compose-postgres.yml SQL migration service (#779)
1
fix
null
531,793
29.10.2021 17:03:06
-3,600
473cb583bf14a585a8e6e7f648b1deaaf9c7ac67
fix(ci): remove old stage
[ { "change_type": "MODIFY", "diff": "@@ -563,23 +563,3 @@ jobs:\n- name: Rollback on failure\nif: failure()\nrun: /usr/local/bin/heroku releases:rollback --app karma-demo\n-\n- stage-build-and-deploy:\n- name: \"=== Build and deploy stage ===\"\n- needs:\n- - benchmark-go\n- - webpack-bundle-size\n- - percy\...
TypeScript
Apache License 2.0
prymitive/karma
fix(ci): remove old stage
1
fix
ci
877,015
29.10.2021 17:08:08
-7,200
3872608a56c4993887e2d482bb8dc0954c155d93
refactor(@vtmn/css-card): semantic color and import of shadows
[ { "change_type": "MODIFY", "diff": "@import '@vtmn/css-design-tokens/src/themes/default';\n@import '@vtmn/css-design-tokens/src/typography';\n@import '@vtmn/css-design-tokens/src/opacities';\n+@import '@vtmn/css-design-tokens/src/shadows';\n.vtmn-card {\nborder-radius: 8px;\nmargin: 16px;\ndisplay: flex;\nf...
JavaScript
Apache License 2.0
decathlon/vitamin-web
refactor(@vtmn/css-card): semantic color and import of shadows (#720)
1
refactor
@vtmn/css-card
251,188
29.10.2021 17:31:18
-10,800
58f3933c16bcee8ed286da9dfc9dce2b9107cec3
chore: update for compatibility with jdk 1.8
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ package org.gluu.oxauth.client;\nimport java.io.UnsupportedEncodingException;\nimport java.net.URLEncoder;\n-import java.nio.charset.StandardCharsets;\n+\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\n@@ -465,7 +465,13 @@ ...
Java
MIT License
gluufederation/oxauth
chore: update for compatibility with jdk 1.8
1
chore
null
317,646
29.10.2021 18:27:42
-7,200
7197d58080d0236cf9710cb58b5253ebde626858
docs(faq): how to stop conda from hijacking the prompt
[ { "change_type": "MODIFY", "diff": "@@ -123,12 +123,21 @@ https://ohmyposh.dev/docs/faq#powershell-running-in-constrainedlanguage-mode\nWhen running PowerShell in ConstrainedLanguage mode, we can't set the console to UTF-8. This will cause the prompt to be rendered incorrectly.\nThere's a few [options][utf-...
Go
MIT License
jandedobbeleer/oh-my-posh
docs(faq): how to stop conda from hijacking the prompt
1
docs
faq
791,834
29.10.2021 19:36:14
18,000
162047beba7833d97e8eacf1e9bbf5e307995a53
misc: revert missing bundle tests
[ { "change_type": "MODIFY", "diff": "\"start\": \"yarn build-report --standalone && node ./lighthouse-cli/index.js\",\n\"jest\": \"node --experimental-vm-modules ./node_modules/jest/bin/jest.js\",\n\"test\": \"yarn diff:sample-json && yarn lint --quiet && yarn unit && yarn type-check\",\n- \"test-bundle\": \...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc: revert missing bundle tests (#13289)
1
misc
null
306,638
29.10.2021 20:36:21
-19,080
d2a9600233bb0d9920d359d2b307d3ac9e748233
fix(Table): Add search term in key for Grid to force re-render on searching.
[ { "change_type": "MODIFY", "diff": "@@ -718,6 +718,7 @@ export class Table extends React.Component<TableProps, TableState> {\n<div className=\"Table-grid\">\n<Grid\n{...this.state}\n+ key={this.state.searchTerm}\nupdateData={this.updateData}\nupdateSchema={this.updateSchema}\nupdateSortingList={this.updateS...
TypeScript
MIT License
innovaccer/design-system
fix(Table): Add search term in key for Grid to force re-render on searching.
1
fix
Table
791,807
29.10.2021 23:08:54
-19,080
4da2012945c65fe4a9657f6af203a44c2a12da8f
core(image-size-responsive): remove elidedUrl, elide url property instead
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,7 @@ const LARGE_IMAGE_FACTOR = 0.75;\n// considered SMALL.\nconst SMALL_IMAGE_THRESHOLD = 64;\n-/** @typedef {{url: string, node: LH.Audit.Details.NodeValue, elidedUrl: string, displayedSize: string, actualSize: string, actualPixels: number, expectedSize: st...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(image-size-responsive): remove elidedUrl, elide url property instead (#13226) Co-authored-by: Adam Raine <ad.st.raine@gmail.com>
1
core
image-size-responsive
76,643
30.10.2021 00:13:16
-3,600
cea7b9ffb09e0f41ff69c7fe26711bf85be2b99f
chore: clean-up webassembly files
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ const importObject = {\n};\n/* eslint-disable */\n-const source = fs.readFileSync(path.resolve(__dirname, './leven.wasm'));\n+const source = fs.readFileSync(path.resolve(__dirname, '../wa/leven.wasm'));\nconst mod = new WebAssembly.Module(new Uint8Array(...
JavaScript
MIT License
axa-group/nlp.js
chore: clean-up webassembly files
1
chore
null
217,237
30.10.2021 00:51:39
-10,800
0c59a3dc90bd786ad9b9fe3fb8906a079d9e153c
chore(metrics): add analitycs (hotjar) + fix
[ { "change_type": "MODIFY", "diff": "@@ -196,6 +196,11 @@ const metrics = {\ntrackingID: process.env.GA_ID, // the Google Analytics Tracking ID\nanonymizeIP: true, // Should IPs be anonymized?\n},\n+ // to integrate Hotjar feedback\n+ // @see https://github.com/symblai/docusaurus-plugin-hotjar\n+ hotjar: {\n...
JavaScript
MIT License
feature-sliced/documentation
chore(metrics): add analitycs (hotjar) + fix
1
chore
metrics
217,237
30.10.2021 01:16:25
-10,800
8d17defae90e34ebc3648a10b3ca2a4441d54653
chore(metrics): fix dotenv init
[ { "change_type": "MODIFY", "diff": "/website/build/**\n/node_modules/\n.idea\n+.env\n", "new_path": ".gitignore", "old_path": ".gitignore" }, { "change_type": "ADD", "diff": "+ALGOLIA_KEY=\n+GA_ID=\n+HOTJAR_ID=\n", "new_path": "website/.env.sample", "old_path": null }, { ...
JavaScript
MIT License
feature-sliced/documentation
chore(metrics): fix dotenv init
1
chore
metrics
217,237
30.10.2021 02:35:41
-10,800
ea0fcb10c0e70790d34c9884386e39b6bc3ba7d2
chore(metrics): add cookie consent
[ { "change_type": "MODIFY", "diff": "\"dotenv\": \"^10.0.0\",\n\"file-loader\": \"^6.2.0\",\n\"react\": \"^17.0.1\",\n+ \"react-cookie-consent\": \"^6.4.1\",\n\"react-dom\": \"^17.0.1\",\n\"url-loader\": \"^4.1.1\"\n},\n", "new_path": "website/package.json", "old_path": "website/package.json" }, ...
JavaScript
MIT License
feature-sliced/documentation
chore(metrics): add cookie consent
1
chore
metrics
217,237
30.10.2021 03:47:41
-10,800
ad2771bafe613018ea5cb84156af27f3bb992545
chore(metrics): add privacy page
[ { "change_type": "ADD", "diff": "+# Privacy\n+\n+**We use cookies for collect data about documentation usage (only for further analytics and improvement of the site, and for no other purpose)**\n+\n+The only plugins this site relies on are [@docusaurus/plugin-google-analytics](https://docusaurus.io/docs/api...
JavaScript
MIT License
feature-sliced/documentation
chore(metrics): add privacy page
1
chore
metrics
217,237
30.10.2021 04:06:54
-10,800
cd8d923f1f65fe37ef5842258ccac478774be733
chore(metrics): add privacy mentions (at cookie-alert)
[ { "change_type": "MODIFY", "diff": "import React from \"react\";\nimport ReactCookieConsent from \"react-cookie-consent\";\n+import Link from \"@docusaurus/Link\";\nimport { translate } from \"@docusaurus/Translate\";\nimport styles from \"./styles.module.css\";\n@@ -17,6 +18,7 @@ export const CookieConsent...
JavaScript
MIT License
feature-sliced/documentation
chore(metrics): add privacy mentions (at cookie-alert)
1
chore
metrics
217,237
30.10.2021 04:14:13
-10,800
c7d57bf67d069a6a82c809259541df47c80f5ce8
refactor(metrics): group index page into directory
[ { "change_type": "RENAME", "diff": "", "new_path": "website/src/pages/_home/_config.jsx", "old_path": "website/src/pages/_config.jsx" }, { "change_type": "ADD", "diff": "+import React from \"react\";\n+// It's utility, not hook =)\n+import getBaseUrl from \"@docusaurus/useBaseUrl\";\n+//...
JavaScript
MIT License
feature-sliced/documentation
refactor(metrics): group index page into directory
1
refactor
metrics
269,464
30.10.2021 09:11:51
10,800
26ce9462237ab1e5a41b3817a55c4088ad416aa1
docs: fix pro jsonschema
[ { "change_type": "MODIFY", "diff": "\"After\": {\n\"properties\": {\n\"after\": {\n+ \"items\": {\n\"oneOf\": [\n{\n\"type\": \"string\"\n}\n]\n}\n+ }\n},\n\"additionalProperties\": false,\n\"type\": \"object\"\n\"Before\": {\n\"properties\": {\n\"hooks\": {\n+ \"items\": {\n\"oneOf\": [\n{\n\"type\": \"str...
Go
MIT License
goreleaser/goreleaser
docs: fix pro jsonschema
1
docs
null
269,464
30.10.2021 09:27:05
10,800
cb29c1ea27f0f4359325ad10c899f11db658cbba
chore(ci): run docs build only when changing docs
[ { "change_type": "MODIFY", "diff": "@@ -7,7 +7,10 @@ on:\npaths:\n- '.github/workflows/htmltest.yml'\n- 'www/*'\n- pull_request: {}\n+ pull_request:\n+ paths:\n+ - '.github/workflows/htmltest.yml'\n+ - 'www/*'\njobs:\nhtmltest:\n", "new_path": ".github/workflows/docs.yml", "old_path": ".github/workf...
Go
MIT License
goreleaser/goreleaser
chore(ci): run docs build only when changing docs
1
chore
ci
269,464
30.10.2021 09:43:54
10,800
a875ac8c7009b56f3850c2a26823de2f938eb536
docs: improvign docs and search refs
[ { "change_type": "MODIFY", "diff": "@@ -66,10 +66,13 @@ tasks:\ndesc: Generate docs\ncmds:\n- cp -rf CONTRIBUTING.md www/docs/contributing.md\n+ - cp -rf USERS.md www/docs/users.md\nsources:\n- CONTRIBUTING.md\n+ - USERS.md\ngenerates:\n- www/docs/contributing.md\n+ - www/docs/users.md\ndocs:imgs:\ndesc: Do...
Go
MIT License
goreleaser/goreleaser
docs: improvign docs and search refs #2616
1
docs
null
67,516
30.10.2021 09:48:18
-7,200
cba53c7ce866b150225b47a31a27870d90ec975e
refactor(runtime-html): coercing configuration options
[ { "change_type": "MODIFY", "diff": "/* eslint-disable @typescript-eslint/no-unsafe-assignment */\n-import { Class, noop } from '@aurelia/kernel';\n-import { Aurelia, bindable, customElement, CustomElement, IPlatform, coercer, coercionConfiguration, customAttribute, CustomAttribute } from '@aurelia/runtime-h...
TypeScript
MIT License
aurelia/aurelia
refactor(runtime-html): coercing configuration options
1
refactor
runtime-html
866,394
30.10.2021 09:58:30
14,400
bd5f90e4a509c336a28187122a71a4b4e155563a
fix(deploy): fix to properly tag the repo after publish
[ { "change_type": "MODIFY", "diff": "name: deploy\non:\n- create:\n+ push:\ntags:\n- 'v*'\n", "new_path": ".github/workflows/deploy.yml", "old_path": ".github/workflows/deploy.yml" }, { "change_type": "MODIFY", "diff": "@@ -25,6 +25,14 @@ jobs:\nuses: JS-DevTools/npm-publish@v1\nwith:\nto...
TypeScript
Apache License 2.0
carbon-design-system/carbon-for-ibm-dotcom
fix(deploy): fix to properly tag the repo after publish (#724)
1
fix
deploy
317,646
30.10.2021 11:39:08
-7,200
3a1cbb904c2880256820599a0e32bae0e331621b
fix: clear parent colors after block rendering relates to
[ { "change_type": "MODIFY", "diff": "@@ -49,6 +49,7 @@ type colorWriter interface {\nreset()\nsetColors(background, foreground string)\nsetParentColors(background, foreground string)\n+ clearParentColors()\n}\n// AnsiColor writes colorized strings\n@@ -90,6 +91,10 @@ func (a *AnsiColor) setParentColors(backg...
Go
MIT License
jandedobbeleer/oh-my-posh
fix: clear parent colors after block rendering relates to #1137
1
fix
null
306,320
30.10.2021 12:01:57
-3,600
5563683a959ad850b91d5cde64709cb8d3e50625
fix(azure): PostgreSQL flexible updated mappings
[ { "change_type": "MODIFY", "diff": "@@ -2,6 +2,7 @@ package azure\nimport (\n\"fmt\"\n+ \"regexp\"\n\"strings\"\n\"github.com/infracost/infracost/internal/schema\"\n@@ -23,21 +24,23 @@ func NewAzureRMPostrgreSQLFlexibleServer(d *schema.ResourceData, u *schema.Usage\nregion := d.Get(\"location\").String()\ns...
Go
Apache License 2.0
infracost/infracost
fix(azure): PostgreSQL flexible updated mappings
1
fix
azure
269,618
30.10.2021 14:24:23
-7,200
cd6da5c3e94a92850479a4dc3defe14d0eabc08e
docs: add Numary is USERS.md
[ { "change_type": "MODIFY", "diff": "@@ -6,6 +6,7 @@ you are using GoReleaser.\nCurrently, the following organizations are using GoReleaser:\n1. [Hugo](https://gohugo.io/)\n+1. [Numary](https://numary.com)\n1. [Schwarz IT](https://jobs.schwarz/)\n1. [TOTVS Labs](https://totvslabs.com)\n", "new_path": "US...
Go
MIT License
goreleaser/goreleaser
docs: add Numary is USERS.md (#2614) Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
1
docs
null
269,464
30.10.2021 15:14:33
10,800
5dc82f78da3df5a86f2317f716f59b79c648a0ce
docs: add charm to users
[ { "change_type": "MODIFY", "diff": "@@ -5,6 +5,7 @@ you are using GoReleaser.\nCurrently, the following organizations are using GoReleaser:\n+1. [Charm](https://charm.sh)\n1. [Hugo](https://gohugo.io/)\n1. [Numary](https://numary.com)\n1. [Schwarz IT](https://jobs.schwarz/)\n", "new_path": "USERS.md", ...
Go
MIT License
goreleaser/goreleaser
docs: add charm to users
1
docs
null
217,241
30.10.2021 18:51:59
-19,080
5bd6a3be567d005a88c7c12d5d92265487d41cb4
chore(website): fix scrollbar firefox
[ { "change_type": "MODIFY", "diff": "/* Inherited from docusaurus scrollbar stylesheets for inner containers */\nhtml {\nscroll-behavior: smooth;\n+ scrollbar-color: var(--ifm-scrollbar-thumb-background-color) transparent;\n+ scrollbar-width: thin;\n}\nhtml::-webkit-scrollbar {\n", "new_path": "website/s...
JavaScript
MIT License
feature-sliced/documentation
chore(website): fix scrollbar firefox
1
chore
website
67,516
30.10.2021 19:33:17
-7,200
2fc83891480998a7934ef3d18d75b579488ee99c
docs(bindable-coercion): edited
[ { "change_type": "MODIFY", "diff": "# Coercing bindable values\n-You have seen in the [bindable setter](bindable-setter.md) section how to adapt the value that is being bound to a `@bindable` property.\n-One of frequent usage of the setter is to coerce the values that are bound from the view.\n-\n+The [bind...
TypeScript
MIT License
aurelia/aurelia
docs(bindable-coercion): edited
1
docs
bindable-coercion
791,255
30.10.2021 23:36:13
25,200
6d07eca680362807f6dd870ba9df8c26256601ab
feat(bigquery): allow construction of jobs from other projects Adds a `JobfromProject()` method to allow users to get metadata from a job that was created within another project. Fixes:
[ { "change_type": "MODIFY", "diff": "@@ -250,6 +250,70 @@ func TestIntegration_DetectProjectID(t *testing.T) {\n}\n}\n+func TestIntegration_JobFrom(t *testing.T) {\n+ if client == nil {\n+ t.Skip(\"Integration tests skipped\")\n+ }\n+ ctx := context.Background()\n+\n+ // Create a job we can use for referenci...
Go
Apache License 2.0
googleapis/google-cloud-go
feat(bigquery): allow construction of jobs from other projects (#5048) Adds a `JobfromProject()` method to allow users to get metadata from a job that was created within another project. Fixes: https://github.com/googleapis/google-cloud-go/issues/4228
1
feat
bigquery
217,237
31.10.2021 07:05:45
-10,800
933eb2bb0099b3d2bd45e16231e0b1ed32860d3a
hotfix: pass metric secrets to workflows
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,8 @@ jobs:\ntimeout-minutes: 15\nenv:\nALGOLIA_KEY: ${{ secrets.ALGOLIA_KEY }}\n+ GA_ID: ${{ secrets.GA_ID }}\n+ HOTJAR_ID: ${{ secrets.HOTJAR_ID }}\nsteps:\n- uses: actions/checkout@v2\n", "new_path": ".github/workflows/deploy.yml", "old_path": ".git...
JavaScript
MIT License
feature-sliced/documentation
hotfix: pass metric secrets to workflows
1
hotfix
null
67,516
31.10.2021 08:27:19
-3,600
518e5a97fec04102f529b03a8ee15ff2dffdfcd8
docs: bindable-coercing
[ { "change_type": "MODIFY", "diff": "@@ -246,7 +246,24 @@ export class MyEl {\n```\nFor the example above, the type metadata supplied by TypeScript will be `Object` disabling the auto-coercion.\n-It can be worked around by specifying an explicit `type` or `set` function in the bindable definition.\n+\n+To co...
TypeScript
MIT License
aurelia/aurelia
docs: bindable-coercing
1
docs
null
67,516
31.10.2021 08:47:26
-3,600
e5b16b47f3fac01d60c4c1f6dbc1a2667b16e90b
docs(bindable-coercing): coerceNullish renaming
[ { "change_type": "MODIFY", "diff": "@@ -209,7 +209,7 @@ new Aurelia()\nStandardConfiguration\n.customize((config) => {\nconfig.coercingOptions.disableCoercion = true;\n- config.coercingOptions.coerceNullLike = false;\n+ config.coercingOptions.coerceNullish = false;\n}),\n...\n);\n@@ -217,7 +217,7 @@ new Aur...
TypeScript
MIT License
aurelia/aurelia
docs(bindable-coercing): coerceNullish renaming
1
docs
bindable-coercing
426,637
31.10.2021 12:36:42
14,400
c21c4c3ccdd1669dbe4f4a5999852273d795496a
docs: update TransformAssetFunction docs to match type
[ { "change_type": "MODIFY", "diff": "@@ -374,7 +374,7 @@ export type TransformHtmlFunction = (\n) => string | Promise<string>;\nexport type TransformAssetFunction = (\n- filePath: string,\ncontent: Buffer,\n+ filePath: string,\n) => string | Buffer | Promise<string | Buffer>;\n```\n", "new_path": "docs/d...
TypeScript
MIT License
modernweb-dev/web
docs: update TransformAssetFunction docs to match type (#1741)
1
docs
null
76,643
31.10.2021 13:45:29
0
5d65d7f4ea2006e108dc3322563ac7f88846077b
test: cosine similarity
[ { "change_type": "ADD", "diff": "+/*\n+ * Copyright (c) AXA Group Operations Spain S.A.\n+ *\n+ * Permission is hereby granted, free of charge, to any person obtaining\n+ * a copy of this software and associated documentation files (the\n+ * \"Software\"), to deal in the Software without restriction, includ...
JavaScript
MIT License
axa-group/nlp.js
test: cosine similarity
1
test
null
847,143
31.10.2021 16:19:58
-28,800
de67510c683e757a88c2fd5496269fea380ae24f
fix(pwa2): add missing manifest options
[ { "change_type": "MODIFY", "diff": "@@ -50,5 +50,6 @@ export interface ManifestOption {\ncategories?: string[];\nshortcuts?: ManifestShortCuts[];\niarc_rating_id?: string;\n+ features?: string[];\nscreenshots?: ManifestImage[];\n}\n", "new_path": "packages/pwa2/src/shared/manifest.ts", "old_path": "...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(pwa2): add missing manifest options
1
fix
pwa2
847,143
31.10.2021 16:20:39
-28,800
3fd5bfe4c47765ef2ee801a27aaf0852877862e5
fix(pwa2): fix screenshots button not working
[ { "change_type": "MODIFY", "diff": "</div>\n<div v-if=\"manifest.screenshots\" class=\"screenshot-wrapper\">\n- <button :aria-label=\"locales.prevImage\" @click=\"scrollToLeft\">\n+ <button :aria-label=\"locales.prevImage\" @click=\"scrolltoLeft\">\n<ArrowLeftIcon />\n</button>\n<section class=\"screenshot\...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(pwa2): fix screenshots button not working
1
fix
pwa2
847,143
31.10.2021 16:25:21
-28,800
513c05d82664efc5c3b37cdc7ff189a5fe7e1f5a
fix(theme): fix ToggleDarkModeButton
[ { "change_type": "MODIFY", "diff": "<path d=\"M15 2.005h2v5h-2z\" fill=\"currentColor\" />\n</svg>\n- <svg v-show=\"isDark\" class=\"icon\" focusable=\"false\" viewBox=\"0 0 32 32\">\n+ <svg v-show=\"isDarkMode\" class=\"icon\" focusable=\"false\" viewBox=\"0 0 32 32\">\n<path\nd=\"M13.502 5.414a15.075 15.0...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(theme): fix ToggleDarkModeButton
1
fix
theme
847,143
31.10.2021 16:26:07
-28,800
992a320334c298a63f89ad052ce7cf857e219c29
fix(md-enhance): fix mermaid import
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,6 @@ import {\nimport { LoadingIcon } from \"./icons\";\nimport MermaidAPI from \"mermaid/mermaidAPI\";\n-import type { Mermaid } from \"mermaid\";\nimport type { VNode } from \"vue\";\nimport \"../styles/mermaid.scss\";\n@@ -39,7 +38,7 @@ export default define...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(md-enhance): fix mermaid import
1
fix
md-enhance
847,143
31.10.2021 16:45:12
-28,800
a19da977206a1822094c41ad695967b2dcc80a68
fix(theme): fix DropdownLink
[ { "change_type": "MODIFY", "diff": "@focusout=\"\nisLastItemOfArray(child, item.children) &&\nchild.children.length === 0 &&\n- setOpen(false)\n+ (open = false)\n\"\n/>\n<span v-else>{{ child.text }}</span>\n@focusout=\"\nisLastItemOfArray(grandchild, child.children) &&\nisLastItemOfArray(child, item.childr...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(theme): fix DropdownLink
1
fix
theme
847,143
31.10.2021 17:00:01
-28,800
797f2fa248224cbfc711006c8ff6a0c893edcbe6
fix(theme): fix darkLogo layout
[ { "change_type": "MODIFY", "diff": "vertical-align: top;\n&.light {\n- display: block;\n+ display: inline-block;\n}\n&.dark {\n}\n&.dark {\n- display: block;\n+ display: inline-block;\n}\n}\n}\n", "new_path": "packages/theme/src/client/components/navbar/styles/navbar.scss", "old_path": "packages/the...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(theme): fix darkLogo layout
1
fix
theme
847,143
31.10.2021 17:06:55
-28,800
2416989d187e612bac004dbaa0d4386af102d685
fix(md-enhance): correct component name
[ { "change_type": "MODIFY", "diff": "@@ -27,7 +27,7 @@ ${demo}\n`);\nexpect(renderResult).toMatch(\n- /<Mermaid id=\"mermaid.*?\" data-code=\".*?\"><\\/Mermaid>/\n+ /<MermaidChart id=\"mermaid.*?\" data-code=\".*?\"><\\/MermaidChart>/\n);\nexpect(renderResult).toMatchSnapshot();\n});\n@@ -63,7 +63,7 @@ Alice...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(md-enhance): correct component name
1
fix
md-enhance
847,143
31.10.2021 17:10:17
-28,800
e6f8e069c7263414a300f25680d7fc6a6e7d145e
refactor(md-enhance): use function slots for icons
[ { "change_type": "MODIFY", "diff": "@@ -6,18 +6,24 @@ export const BackIcon: FunctionalComponent = () =>\nh(\nIconBase,\n{ name: \"back\" },\n+ {\n+ default: () =>\nh(\"path\", {\nd: \"M1014.749 449.156v125.688H260.626l345.64 345.64-89.239 89.237L19.307 512l497.72-497.721 89.238 89.238-345.64 345.64h754.124...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
refactor(md-enhance): use function slots for icons
1
refactor
md-enhance
847,143
31.10.2021 17:22:00
-28,800
2c3c4387032b63bd239ff0e1d6213149c682eefe
chore(theme): update rollup config
[ { "change_type": "MODIFY", "diff": "@@ -48,7 +48,7 @@ export default [\n}),\n...rollupVue(\"client/layouts/Layout.ts\", {\nexternal: [\n- \"@Common\",\n+ \"@CommonWrapper\",\n\"@mr-hope/vuepress-shared/client\",\n\"@vuepress/client\",\n\"@vuepress/plugin-theme-data/lib/client\",\n@@ -61,7 +61,7 @@ export de...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
chore(theme): update rollup config
1
chore
theme
847,143
31.10.2021 17:28:29
-28,800
d4943bd27b34c26051f7d61ff36abe582393ffa6
fix(theme): fix home style
[ { "change_type": "MODIFY", "diff": "min-height: calc(100vh - var(--navbar-height));\npadding: var(--navbar-height) 2rem 0;\nmargin: 0px auto;\n- // TODO: check this\n- overflow-x: hidden;\n@media (max-width: config.$pad) {\nmin-height: calc(100vh - var(--mobile-navbar-height));\n", "new_path": "packages...
TypeScript
MIT License
vuepress-theme-hope/vuepress-theme-hope
fix(theme): fix home style
1
fix
theme
426,731
31.10.2021 17:36:09
-3,600
daa8e2c90faad1a575e99642987eae7c63a1b9f2
docs: rename incorrect url in serving guide
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,7 @@ This represents the default server root for Apache web server on linux.\n| Contact | `https://my-domain.com/about/contact.html` | `/var/www/html/about/contact.html` |\nNow if you were to request `https://my-domain.com/main.html`, the server would send ba...
TypeScript
MIT License
modernweb-dev/web
docs: rename incorrect url in serving guide (#1738)
1
docs
null
76,643
31.10.2021 18:27:03
0
59db43e33680b5c3d7bb4262b3278c9c3095a12d
fix: fixed WebAssembly implementation of Cosine Similarity
[ { "change_type": "MODIFY", "diff": "@@ -32,7 +32,7 @@ class CosineSimilarity {\nthis.wa_memory = new WebAssembly.Memory({ initial: 2 });\n/* eslint-enable */\n- this.wa_buffer = new Uint8Array(this.wa_memory.buffer);\n+ this.wa_buffer = new Uint32Array(this.wa_memory.buffer);\nthis.wa_importObject = {\njs: ...
JavaScript
MIT License
axa-group/nlp.js
fix: fixed WebAssembly implementation of Cosine Similarity
1
fix
null
76,643
31.10.2021 18:50:03
0
f5432255bc84d4f0b78295cea74244da000874cc
fix: sonarqube issues fix
[ { "change_type": "MODIFY", "diff": "const fs = require('fs');\nconst path = require('path');\n+const CosineSimilarity = require('../../similarity/src/cosine-similarity');\n-class CosineSimilarity {\n+class CosineSimilarityWA {\nconstructor(container) {\nthis.container = container;\n+ this.cosineSimilarityTo...
JavaScript
MIT License
axa-group/nlp.js
fix: sonarqube issues fix
1
fix
null
426,654
31.10.2021 19:03:48
-7,200
dfc8f6e10a1235a4acdffd2a81a51e6acb513f0d
test: uncomment test-runner-selenium tests
[ { "change_type": "MODIFY", "diff": "import selenium from 'selenium-standalone';\nimport { Builder } from 'selenium-webdriver';\nimport { Options as ChromeOptions } from 'selenium-webdriver/chrome';\n-// import { Options as FirefoxOptions } from 'selenium-webdriver/firefox';\n+import { Options as FirefoxOpti...
TypeScript
MIT License
modernweb-dev/web
test: uncomment test-runner-selenium tests (#1744)
1
test
null
76,643
31.10.2021 19:26:20
0
08f348807a7a458b69eb20c10b9d9a41d22476e4
fix: sonarqube code duplication
[ { "change_type": "MODIFY", "diff": "@@ -121,19 +121,11 @@ class CosineSimilarityWA {\nif (strA === strB) {\nreturn 1;\n}\n- const termFreqA = this.termFreqMap(strA, locale);\n- const termFreqB = this.termFreqMap(strB, locale);\n-\n- if (!Object.keys(termFreqA).length || !Object.keys(termFreqB).length) {\n- ...
JavaScript
MIT License
axa-group/nlp.js
fix: sonarqube code duplication
1
fix
null
306,635
31.10.2021 19:51:11
-19,080
00bbd7e6ab2c632bdc0ba6054fabfc825d0961ce
fix(InlineMessage): fix height of description container
[ { "change_type": "MODIFY", "diff": "@@ -38970,22 +38970,22 @@ exports[`DateRangePicker component\nclass=\"Calendar-valueRow\"\n>\n<div\n- class=\"Calendar-value Calendar-monthValue Calendar-monthValue--large Calendar-value--currDateMonthYear\"\n+ class=\"Calendar-value Calendar-monthValue Calendar-monthValu...
TypeScript
MIT License
innovaccer/design-system
fix(InlineMessage): fix height of description container
1
fix
InlineMessage
317,646
31.10.2021 19:52:12
-3,600
64b63be4d2a8941fc7bf1fe92081e73ecf30949e
refactor(git): add template capabilities
[ { "change_type": "MODIFY", "diff": "@@ -9,29 +9,33 @@ import (\n\"gopkg.in/ini.v1\"\n)\n-type gitRepo struct {\n- working *gitStatus\n- staging *gitStatus\n- ahead int\n- behind int\n+// Repo represents a git repository\n+type Repo struct {\n+ Working *GitStatus\n+ Staging *GitStatus\n+ Ahead int\n+ Behind ...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor(git): add template capabilities
1
refactor
git
426,654
31.10.2021 20:01:06
-7,200
8faba9e0650159537b267426e2c782d245d46543
docs: update Chrome args for latest selenium
[ { "change_type": "MODIFY", "diff": "@@ -19,7 +19,7 @@ module.exports = {\ncapabilities: {\nbrowserName: 'chrome',\n'goog:chromeOptions': {\n- args: ['headless', 'disable-gpu']\n+ args: ['--no-sandbox', '--headless']\n}\n}\n})\n", "new_path": "docs/docs/test-runner/browser-launchers/webdriver.md", "o...
TypeScript
MIT License
modernweb-dev/web
docs: update Chrome args for latest selenium (#1745)
1
docs
null
317,646
31.10.2021 20:34:13
-3,600
f8fa3ae8af1fb303d60d87d10f5cc3455434cb32
refactor(git): allow status in template
[ { "change_type": "MODIFY", "diff": "@@ -131,6 +131,8 @@ func setupHEADContextEnv(context *detachedContext) *git {\nenv: env,\nrepo: &Repo{\ngitWorkingFolder: \"\",\n+ Working: &GitStatus{},\n+ Staging: &GitStatus{},\n},\n}\nreturn g\n@@ -453,7 +455,7 @@ func TestGitStatusUnmerged(t *testing.T) {\nstatus := ...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor(git): allow status in template
1
refactor
git
76,643
31.10.2021 20:40:21
0
3c128cef77a772eae3cb9b0089e1c02176cfc077
doc: improved similarity example documentation
[ { "change_type": "MODIFY", "diff": "@@ -26,8 +26,9 @@ const levenjs = require('../../packages/similarity/src/leven.js');\nconst levenAlgs = [levenjs, levenwa];\nconst execTimeWord = [];\n+const execTimeMedium = [];\nconst execTimeLong = [];\n-const execTimeVeryLong = [];\n+\nfunction getTime(hrTime) {\nretu...
JavaScript
MIT License
axa-group/nlp.js
doc: improved similarity example documentation
1
doc
null
317,646
31.10.2021 20:45:55
-3,600
4dbed1176c5bdc77afe1f9bf5d339ed66fc81336
refactor(git): add upstream icon to repo
[ { "change_type": "MODIFY", "diff": "package main\nimport (\n- \"bytes\"\n\"fmt\"\n\"strconv\"\n\"strings\"\n@@ -17,6 +16,7 @@ type Repo struct {\nBehind int\nHEAD string\nUpstream string\n+ UpstreamIcon string\nStashCount int\nWorktreeCount int\nIsWorkTree bool\n@@ -107,10 +107,6 @@ const (\nBranchBehindIco...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor(git): add upstream icon to repo
1
refactor
git
317,646
31.10.2021 20:59:35
-3,600
3f8400e8f18659f225305e67342f8548892b2614
refactor(git): add branch status to template
[ { "change_type": "MODIFY", "diff": "@@ -15,6 +15,7 @@ type Repo struct {\nAhead int\nBehind int\nHEAD string\n+ BranchStatus string\nUpstream string\nUpstreamIcon string\nStashCount int\n@@ -191,7 +192,9 @@ func (g *git) shouldIgnoreRootRepository(rootDir string) bool {\nfunc (g *git) string() string {\nsta...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor(git): add branch status to template
1
refactor
git
317,646
31.10.2021 21:10:18
-3,600
42f18697fd30ef527ed4796a93fc1427fe46c68f
refactor(git): move deprecated functions
[ { "change_type": "MODIFY", "diff": "@@ -3,6 +3,7 @@ package main\nimport (\n\"bytes\"\n\"fmt\"\n+ \"strings\"\n)\nconst (\n@@ -26,13 +27,18 @@ const (\nBehindColor Property = \"behind_color\"\n// AheadColor if set, the color to use when the branch is ahead and behind the remote\nAheadColor Property = \"ahea...
Go
MIT License
jandedobbeleer/oh-my-posh
refactor(git): move deprecated functions
1
refactor
git
426,654
31.10.2021 21:20:35
-7,200
bfa1d1ca15949c0b1021fdd9c6b47e4bae049f97
feat: update webdriver dependency to 7.16.0
[ { "change_type": "ADD", "diff": "+---\n+'@web/test-runner-saucelabs': patch\n+'@web/test-runner-webdriver': patch\n+---\n+\n+Update webdriver dependency to 7.16.0\n", "new_path": ".changeset/wicked-steaks-tickle.md", "old_path": null }, { "change_type": "MODIFY", "diff": "\"ip\": \"^1.1....
TypeScript
MIT License
modernweb-dev/web
feat: update webdriver dependency to 7.16.0 (#1746)
1
feat
null
401,148
31.10.2021 21:25:51
-19,080
84ab8d1806324ba83079973cf003b514be263d76
doc: add documentation for useWindowSize in utils package
[ { "change_type": "ADD", "diff": "+export * from './useWindowSize';\n", "new_path": "packages/utils/src/hooks/useWindowSize/index.ts", "old_path": null }, { "change_type": "ADD", "diff": "+import { useWindowSize } from './useWindowSize.ts';\n+import { Meta } from '@storybook/addon-docs/bl...
TypeScript
MIT License
medly/medly-components
doc: add documentation for useWindowSize in utils package (#502)
1
doc
null
667,633
31.10.2021 21:35:15
-28,800
fd914129c9a1a83897b56de48b85d33d81c9bcc2
fix(ios): fix compile-time error on Xcode 12 and previous versions
[ { "change_type": "MODIFY", "diff": "_tableView.allowsSelection = NO;\n_tableView.estimatedRowHeight = 0;\n_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;\n+#ifdef __IPHONE_15_0\nif (@available(iOS 15.0, *)) {\n[_tableView setSectionHeaderTopPadding:0.0f];\n}\n+#endif\nif (@available(iOS 11.0,...
C++
Apache License 2.0
tencent/hippy
fix(ios): fix compile-time error on Xcode 12 and previous versions
1
fix
ios
426,650
31.10.2021 22:12:43
-7,200
8afaf847e081e463560f9dca1d47abff66ffe375
docs(css): registering properties inheritance
[ { "change_type": "MODIFY", "diff": "@@ -106,3 +106,21 @@ html {\n--theme-gap: 16px;\n}\n```\n+\n+However, you might still need to contain custom properties in a self containing component.\n+For example\n+\n+```html\n+<my-layout gap=\"md\">\n+ <!-- will set its --layout-gap to 16px -->\n+ <my-layout>\n+ <!--...
TypeScript
MIT License
modernweb-dev/web
docs(css): registering properties inheritance (#1737)
1
docs
css
531,793
31.10.2021 22:29:45
0
c90a5063ef23729ad45f9f5cc9ef89a1a7646cea
fix(api): move static & valueOnly label information to a map
[ { "change_type": "ADD", "diff": "+karma.bin-should-fail --config.file=karma.yaml\n+! stdout .\n+cmp stderr stderr.txt\n+\n+-- stderr.txt --\n+level=error msg=\"Execution failed\" error=\"valueOnly regex rule '.++++' is invalid: error parsing regexp: invalid nested repetition operator: `++`\"\n+-- karma.yaml...
TypeScript
Apache License 2.0
prymitive/karma
fix(api): move static & valueOnly label information to a map
1
fix
api
531,793
31.10.2021 22:29:58
0
4fcab63639d02cc6d293a1fe65b176bfad8c88ca
fix(ui): move static & valueOnly label information to a map
[ { "change_type": "MODIFY", "diff": "@@ -86,7 +86,11 @@ describe(\"<FilterInputLabel /> className\", () => {\nit(\"applied filter included in staticColorLabels with '=' matcher should use 'btn-info' class\", () => {\nalertStore.settings.setValues({\n...alertStore.settings.values,\n- ...{ staticColorLabels: [...
TypeScript
Apache License 2.0
prymitive/karma
fix(ui): move static & valueOnly label information to a map
1
fix
ui
791,682
01.11.2021 08:32:47
25,200
1d3800cc08f7d46a75bb878033326785116c6560
report(flow): fix report anchors
[ { "change_type": "MODIFY", "diff": "*/\nimport {FunctionComponent} from 'preact';\n-import {useEffect, useRef, useState} from 'preact/hooks';\n+import {useLayoutEffect, useRef, useState} from 'preact/hooks';\nimport {ReportRendererProvider} from './wrappers/report-renderer';\nimport {Sidebar} from './sideba...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(flow): fix report anchors (#13233)
1
report
flow
504,026
01.11.2021 08:51:29
14,400
8e3c8d0e18588c6083a4956b76227d059f8ea110
chore(charts): Added ResizeObserver and updated examples Fixes
[ { "change_type": "MODIFY", "diff": "@@ -12,7 +12,7 @@ propComponents: [\nhideDarkMode: true\n---\n-import { Chart, ChartArea, ChartAxis, ChartGroup, ChartThreshold, ChartThemeColor, ChartLegendTooltip, ChartThemeVariant, ChartVoronoiContainer, createContainer } from '@patternfly/react-charts';\n+import { Ch...
TypeScript
MIT License
patternfly/patternfly-react
chore(charts): Added ResizeObserver and updated examples (#6528) Fixes https://github.com/patternfly/patternfly-react/issues/5995
1
chore
charts
504,026
01.11.2021 08:51:38
14,400
31d873a165035c0078cfa70bd701efd7375e2d5a
fix(textInput): Use resizeObserver to trigger trimLeft calculation Fixes
[ { "change_type": "MODIFY", "diff": "@@ -2,8 +2,9 @@ import * as React from 'react';\nimport styles from '@patternfly/react-styles/css/components/FormControl/form-control';\nimport { css } from '@patternfly/react-styles';\nimport { ValidatedOptions } from '../../helpers/constants';\n-import { debounce, trimL...
TypeScript
MIT License
patternfly/patternfly-react
fix(textInput): Use resizeObserver to trigger trimLeft calculation (#6529) Fixes https://github.com/patternfly/patternfly-react/issues/4710
1
fix
textInput
865,939
01.11.2021 08:58:52
-3,600
96a3f3e0f2aea676ec846f669083495868eef7e7
feat(toggle): allow `onChange` handler Related to camunda/cloud-connect-modeler-plugin/pull/65
[ { "change_type": "MODIFY", "diff": "@@ -36,7 +36,7 @@ export default function ToggleSwitch(props) {\ntype=\"checkbox\"\n{ ...field }\n{ ...restProps }\n- checked={ field.value }\n+ defaultChecked={ field.value }\n/>\n<span className=\"toggle-switch__slider\" />\n</label>\n", "new_path": "client/src/shar...
JavaScript
MIT License
camunda/camunda-modeler
feat(toggle): allow `onChange` handler Related to camunda/cloud-connect-modeler-plugin/pull/65
1
feat
toggle
531,793
01.11.2021 09:39:40
0
0f34e13c53e439d6d57eb4bb71d85b551907a88c
chore(ui): save some screen space on overview modal
[ { "change_type": "MODIFY", "diff": "### Changed\n- Refactored internal APIs.\n+- Overview modal won't show label name for every value to save screen space.\n## v0.92\n", "new_path": "CHANGELOG.md", "old_path": "CHANGELOG.md" }, { "change_type": "MODIFY", "diff": "@@ -8,9 +8,6 @@ exports[...
TypeScript
Apache License 2.0
prymitive/karma
chore(ui): save some screen space on overview modal
1
chore
ui
141,525
01.11.2021 09:44:14
-39,600
22068cc9b7be6269d770fa7b88a2bfce3b766223
feat: Update visibleMenus state in nav bar
[ { "change_type": "MODIFY", "diff": "@@ -128,6 +128,9 @@ const withTrigger = (Component: React.ComponentType<any>) =>\n}\n}\n-export default withDeprecatedComponent(withTrigger(OffCanvas), {\n+export default withDeprecatedComponent(\n+ withContextProvider(withTrigger(OffCanvas)),\n+ {\nwarning: \"OffCanvas i...
TypeScript
MIT License
cultureamp/kaizen-design-system
feat: Update visibleMenus state in nav bar (#2192)
1
feat
null
4,988
01.11.2021 09:50:00
-3,600
87c1f247cd762768d18cc42526a3dc8bb93fa673
docs(csv-parse): new cast header with column true sample
[ { "change_type": "RENAME", "diff": "", "new_path": "packages/csv-parse/samples/option.cast.header.column.fn.js", "old_path": "packages/csv-parse/samples/option.cast.header.js" }, { "change_type": "ADD", "diff": "+\n+import {parse} from 'csv-parse/sync';\n+import assert from 'assert';\n+\...
JavaScript
MIT License
adaltas/node-csv
docs(csv-parse): new cast header with column true sample
1
docs
csv-parse
791,682
01.11.2021 09:52:18
25,200
0a840872298c70d1c63c41c1d4a48f78d1db76f0
report(flow): use filmstrip thumbnail in navigation
[ { "change_type": "MODIFY", "diff": "@@ -76,7 +76,7 @@ export const FlowStepThumbnail: FunctionComponent<{\nwidth?: number,\nheight?: number,\n}> = ({lhr, width, height}) => {\n- const screenshot = getFullPageScreenshot(lhr);\n+ const fullPageScreenshot = getFullPageScreenshot(lhr);\nconst frames = getFilmst...
JavaScript
Apache License 2.0
googlechrome/lighthouse
report(flow): use filmstrip thumbnail in navigation (#13283)
1
report
flow