hash
stringlengths
40
40
diff
stringlengths
172
2.63k
message
stringlengths
12
593
project
stringlengths
7
65
split
stringclasses
1 value
diff_languages
stringclasses
54 values
7add9fb1da5a00669ac870917820a8c8b1fe643c
diff --git a/core/lib/engine_util.js b/core/lib/engine_util.js index <HASH>..<HASH> 100644 --- a/core/lib/engine_util.js +++ b/core/lib/engine_util.js @@ -644,6 +644,6 @@ function randomInt (low, high) { } function sanitiseValue (value) { - if (value === 0 || value === false) return value; + if (value === 0 || va...
fix: prevent sanitize form converting null/undefined to ''
artilleryio_artillery
train
js
a210d8fa5f5a744412f43d422f7cddf7b12d1211
diff --git a/src/ducks/connections/index.js b/src/ducks/connections/index.js index <HASH>..<HASH> 100644 --- a/src/ducks/connections/index.js +++ b/src/ducks/connections/index.js @@ -50,12 +50,11 @@ export const updateConnectionRunningStatus = (konnector, account, isRunning = fa // selectors const getKonnectorIconU...
fix: konnector icons in queue :ambulance::lipstick:
cozy_cozy-home
train
js
31e5e3b99b1ffb790fcb70a98165f365cd1d424c
diff --git a/webapps/client/scripts/tasklist/directives/cam-tasklist-sorting-choices.js b/webapps/client/scripts/tasklist/directives/cam-tasklist-sorting-choices.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/tasklist/directives/cam-tasklist-sorting-choices.js +++ b/webapps/client/scripts/tasklist/directiv...
fix(sorting): do not lowercase label related to CAM-<I>
camunda_camunda-bpm-platform
train
js
765c6cd1cbef5df518129396713a09c2d347a51f
diff --git a/tests/system/CommonFunctionsTest.php b/tests/system/CommonFunctionsTest.php index <HASH>..<HASH> 100644 --- a/tests/system/CommonFunctionsTest.php +++ b/tests/system/CommonFunctionsTest.php @@ -606,4 +606,15 @@ final class CommonFunctionsTest extends CIUnitTestCase $this->assertStringStartsWith(...
test: add test for lang() error on CLI
codeigniter4_CodeIgniter4
train
php
8e267a7b3f2cb0bf41d84b4646d5d4fa9fafec91
diff --git a/browser/browser.js b/browser/browser.js index <HASH>..<HASH> 100644 --- a/browser/browser.js +++ b/browser/browser.js @@ -40,7 +40,7 @@ var browser = { version: 0 }; -if (window && window.navigator) { +if (typeof window !== 'undefined' && window.navigator) { detectBrowser(); }
fix: prevent access to the window object in the node (fix #<I>) (#<I>)
nhn_tui.code-snippet
train
js
eda2b65f5cdcc44644ef88147ca8245f462bfbc9
diff --git a/system/Commands/Database/ShowTableInfo.php b/system/Commands/Database/ShowTableInfo.php index <HASH>..<HASH> 100644 --- a/system/Commands/Database/ShowTableInfo.php +++ b/system/Commands/Database/ShowTableInfo.php @@ -82,7 +82,7 @@ class ShowTableInfo extends BaseCommand /** * @var bool Sort the...
refactor: rename property name
codeigniter4_CodeIgniter4
train
php
a48327672d6c70d9db793b48459ac682319b7a2d
diff --git a/src/Checkbox.js b/src/Checkbox.js index <HASH>..<HASH> 100644 --- a/src/Checkbox.js +++ b/src/Checkbox.js @@ -25,6 +25,7 @@ const Checkbox = ({ useEffect(() => { setChecked(props.checked); + _input.current.checked = props.checked; }, [props.checked]); return (
fix: make sure that checked property equals checked state
react-materialize_react-materialize
train
js
f8f45d00bc8edc355f2e7bf572959dfa4195ef2e
diff --git a/packages/ringcentral-widgets-test/test/integration-test/LogBasicInfo/LogBasicInfo.spec.js b/packages/ringcentral-widgets-test/test/integration-test/LogBasicInfo/LogBasicInfo.spec.js index <HASH>..<HASH> 100644 --- a/packages/ringcentral-widgets-test/test/integration-test/LogBasicInfo/LogBasicInfo.spec.js +...
fix: test case (#<I>)
ringcentral_ringcentral-js-widgets
train
js
f18f193f9e930b59d5f6461c93d3e69a1a076d88
diff --git a/packages/site/src/install/index.js b/packages/site/src/install/index.js index <HASH>..<HASH> 100644 --- a/packages/site/src/install/index.js +++ b/packages/site/src/install/index.js @@ -8,20 +8,6 @@ export default _ => <h1>Install FTW!</h1> </Heading> <Doc>{` -## Recommended Usage - -Use n...
refactor(site): remove recommended paragraph
pluralsight_design-system
train
js
28b79a76a874d329c53068976ecf2d69e7536c1d
diff --git a/test/pubsub/operation.node.js b/test/pubsub/operation.node.js index <HASH>..<HASH> 100644 --- a/test/pubsub/operation.node.js +++ b/test/pubsub/operation.node.js @@ -311,7 +311,11 @@ describe('Pubsub subsystem operates correctly', () => { expect(handlerSpy.args.map(([message]) => uint8ArrayToString(...
test: fix pubsub intermittent test (#<I>)
libp2p_js-libp2p
train
js
aec176d53df28a7f0e7d768f1893b19d2057276a
diff --git a/django_tenants/management/commands/migrate_schemas.py b/django_tenants/management/commands/migrate_schemas.py index <HASH>..<HASH> 100644 --- a/django_tenants/management/commands/migrate_schemas.py +++ b/django_tenants/management/commands/migrate_schemas.py @@ -35,6 +35,8 @@ class MigrateSchemasCommand(Syn...
fix(migrations): Fix migrate_schemas not working on Django <I>
tomturner_django-tenants
train
py
afc0b1bce1d0f91f61e81b2888f569bf62a2db40
diff --git a/src/notebook/components/transforms/image.js b/src/notebook/components/transforms/image.js index <HASH>..<HASH> 100644 --- a/src/notebook/components/transforms/image.js +++ b/src/notebook/components/transforms/image.js @@ -6,8 +6,14 @@ export default class ImageDisplay extends React.Component { } re...
fix(display): pass width and height through to img component
nteract_nteract
train
js
a5193c3f04c2c2f53fbe5184ba25fc6324fda3f0
diff --git a/stories/examples/react-autosuggest.js b/stories/examples/react-autosuggest.js index <HASH>..<HASH> 100644 --- a/stories/examples/react-autosuggest.js +++ b/stories/examples/react-autosuggest.js @@ -23,7 +23,7 @@ class Examples extends Component { changes.type === Downshift.stateChangeTypes.keyDown...
docs(example): reset selected as empty str, not null (#<I>)
downshift-js_downshift
train
js
39223d1e78f649b2c638885107fb742b70834110
diff --git a/packages/docs/build/pug-to-json.js b/packages/docs/build/pug-to-json.js index <HASH>..<HASH> 100644 --- a/packages/docs/build/pug-to-json.js +++ b/packages/docs/build/pug-to-json.js @@ -46,10 +46,10 @@ module.exports = function (content) { } else if (node.name === 'code') { const lang =...
docs(pug-to-json): fix json generation of snippets resolves #<I>
vuetifyjs_vuetify
train
js
8831db31e7d5de03cb9744f811ffd256494f97f6
diff --git a/src/lib/isTaxID.js b/src/lib/isTaxID.js index <HASH>..<HASH> 100644 --- a/src/lib/isTaxID.js +++ b/src/lib/isTaxID.js @@ -280,7 +280,7 @@ function elGrCheck(tin) { for (let i = 0; i < 8; i++) { checksum += digits[i] * (2 ** (8 - i)); } - return checksum % 11 === digits[8]; + return ((checksum ...
fix(isTaxID): fix el-GR locale when checksum is <I> (#<I>) Add correct tax identifier to demonstrate issue and fix. Thanks to: Panos Papadopoulos
chriso_validator.js
train
js,js
42a90c70c36c714ac291a8c406eec3d7d4f947b7
diff --git a/packages/ui-time-select/src/TimeSelect/__tests__/TimeSelect.test.js b/packages/ui-time-select/src/TimeSelect/__tests__/TimeSelect.test.js index <HASH>..<HASH> 100644 --- a/packages/ui-time-select/src/TimeSelect/__tests__/TimeSelect.test.js +++ b/packages/ui-time-select/src/TimeSelect/__tests__/TimeSelect.t...
fix(ui-time-select): make TimeSelect test less brittle This commit prevents a test from failing during DST TEST PLAN: - automated tests should pass Change-Id: I3db<I>d6d0d1f<I>e<I>f<I>e7f<I>b<I>d Reviewed-on: <URL>
instructure_instructure-ui
train
js
32cc5aac15de0f62687863074e85b12a60f26da6
diff --git a/packages/taro-weapp/src/component.js b/packages/taro-weapp/src/component.js index <HASH>..<HASH> 100644 --- a/packages/taro-weapp/src/component.js +++ b/packages/taro-weapp/src/component.js @@ -1,4 +1,5 @@ import { enqueueRender } from './render-queue' +import { updateComponent } from './lifecycle' impor...
feat(weapp): 补充forceUpdate
NervJS_taro
train
js
ae5c6c5a2cc0c76c6fc9ce5e5e56e3f17b752b1e
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -31,9 +31,11 @@ module.exports = async function (packagePath) { dirFilter: subdirPath => basename(subdirPath).startsWith("_") }); if (testDirnameFilenames && testDirnameFilenames.length) { - testFilenames =...
feat: ignore '_' prefixed files in tests
medikoo_tape-index
train
js
ce89cdaf91ca7d0215fe5b5f5ca4ca064257f439
diff --git a/lib/inspectors/data.js b/lib/inspectors/data.js index <HASH>..<HASH> 100644 --- a/lib/inspectors/data.js +++ b/lib/inspectors/data.js @@ -228,6 +228,9 @@ function addTimeout(req, res, timeout) { if (!(timeout > 0) || req.disable.timeout) { return; } + if (util.isMultipart(req)) { + timeout *= 2; + ...
fix: The timeout of post request
avwo_whistle
train
js
88cbea3325d7414a1ea60d2bcde3e71e9f5dfd7b
diff --git a/workflow/util/util.go b/workflow/util/util.go index <HASH>..<HASH> 100644 --- a/workflow/util/util.go +++ b/workflow/util/util.go @@ -810,8 +810,8 @@ func retryWorkflow(ctx context.Context, kubeClient kubernetes.Interface, hydrato return nil, errors.InternalErrorf("Workflow cannot be retried with node ...
fix: pod name shown in log when pod deletion (#<I>)
argoproj_argo
train
go
322ca4de82e5e89f34c2a1096c4602e71880bb59
diff --git a/packages/cli/src/git.js b/packages/cli/src/git.js index <HASH>..<HASH> 100644 --- a/packages/cli/src/git.js +++ b/packages/cli/src/git.js @@ -30,7 +30,7 @@ async function fetchLatestFromUpstream() { 'git@github.com:carbon-design-system/carbon.git', ]); } - await execa('git', ['fetch', 'upst...
fix(carbon-cli): change MASTER reference to MAIN (#<I>)
carbon-design-system_carbon-components
train
js
0079e3f45e7a777fddcbe3e2f2ed37346903381e
diff --git a/src/js/mixin/modal.js b/src/js/mixin/modal.js index <HASH>..<HASH> 100644 --- a/src/js/mixin/modal.js +++ b/src/js/mixin/modal.js @@ -42,7 +42,7 @@ export default { }, beforeDisconnect() { - if (this.isToggled()) { + if (includes(active, this)) { this.toggleElement(th...
fix: ensure modal is fully hidden, if removed from DOM while hide transition is in progress Resolves #<I>
uikit_uikit
train
js
7f964ff45bd02c4e76a5f49f666c513842f00fd8
diff --git a/test/unit/index.spec.js b/test/unit/index.spec.js index <HASH>..<HASH> 100644 --- a/test/unit/index.spec.js +++ b/test/unit/index.spec.js @@ -20,6 +20,7 @@ const preprocessor = require('../../dist/index') describe('webpack preprocessor', function () { beforeEach(function () { + webpack.reset() ...
chore: always reset webpack stub
cypress-io_cypress
train
js
2dea36c4169a0fb038ecceb48eb99ddfa98e45db
diff --git a/test/runner/runner.go b/test/runner/runner.go index <HASH>..<HASH> 100644 --- a/test/runner/runner.go +++ b/test/runner/runner.go @@ -319,6 +319,7 @@ func (r *Runner) build(b *Build) (err error) { fmt.Fprintln(mainLog, "DUMPING LOGS") c.DumpLogs(buildLog) } + c.Shutdown() buildLog.Close() ...
test: Don't shutdown cluster before dumping logs
flynn_flynn
train
go
b95a66e055d596976c08be8320eba507a9a24d78
diff --git a/testng/container/src/main/java/org/jboss/arquillian/testng/container/TestNGTestRunner.java b/testng/container/src/main/java/org/jboss/arquillian/testng/container/TestNGTestRunner.java index <HASH>..<HASH> 100644 --- a/testng/container/src/main/java/org/jboss/arquillian/testng/container/TestNGTestRunner.jav...
fix: propagates exception from running runner.run() method (#<I>) If someone omits required runtime class in a deployment archive there will be ClassDefNotFoundError when executing run() method in TestNGRunner. Arquillian servlet will return HTTP code <I> which is ignored in servlet protocol runner and consequently re...
arquillian_arquillian-core
train
java
3fee633565464054103f959609f500be86acc5dd
diff --git a/tests/integration/routes/profile/get-profile-test.js b/tests/integration/routes/profile/get-profile-test.js index <HASH>..<HASH> 100644 --- a/tests/integration/routes/profile/get-profile-test.js +++ b/tests/integration/routes/profile/get-profile-test.js @@ -95,9 +95,9 @@ getServer(function (error, server) ...
test(routes): GET /session/account/profile error for admins
hoodiehq_hoodie-account-server
train
js
98087c7a948721ec1c5181986edec74656c943fa
diff --git a/ngTranslate/directive/translate.js b/ngTranslate/directive/translate.js index <HASH>..<HASH> 100644 --- a/ngTranslate/directive/translate.js +++ b/ngTranslate/directive/translate.js @@ -25,8 +25,10 @@ angular.module('ngTranslate') element.html(translate(scope.translationId, scope.interpolateParams...
fix(translateDirective): check for truthy value in watch callback - check if the watched value is truthy - only replace contents with translation if truthy Closes #<I>
angular-translate_angular-translate
train
js
18ea5faecdb599ce5d28eadeb7a4a00fcff93d1d
diff --git a/src/connection.js b/src/connection.js index <HASH>..<HASH> 100644 --- a/src/connection.js +++ b/src/connection.js @@ -1927,6 +1927,8 @@ Connection.prototype.STATE = { this.debug.payload(function() { return payload.toString(' '); }); + + this.ntlmpacket = undefin...
fix: clear the ntlm packet after sending an ntlm response
tediousjs_tedious
train
js
e54ddc2ab93455c6bf231a0f8032387407561334
diff --git a/src/Ufo/Cache/CacheRedisStorage.php b/src/Ufo/Cache/CacheRedisStorage.php index <HASH>..<HASH> 100644 --- a/src/Ufo/Cache/CacheRedisStorage.php +++ b/src/Ufo/Cache/CacheRedisStorage.php @@ -42,7 +42,7 @@ class CacheRedisStorage implements CacheStorageInterface /** * @var string */ - pro...
fix: changed redis cache storage host
enikeishik_ufoframework
train
php
94a6122c9e3ddd3066e7bb652cd420e90be27a45
diff --git a/lib/grape-active_model_serializers/formatter.rb b/lib/grape-active_model_serializers/formatter.rb index <HASH>..<HASH> 100644 --- a/lib/grape-active_model_serializers/formatter.rb +++ b/lib/grape-active_model_serializers/formatter.rb @@ -18,10 +18,8 @@ module Grape if serializer = options.fetc...
fix: when resource is empty, keep json resource root
ruby-grape_grape-active_model_serializers
train
rb
aa0d25e8ebf22d3cf5ee12300917f9f38e896e70
diff --git a/packages/node_modules/@webex/webex-core/src/lib/services/services.js b/packages/node_modules/@webex/webex-core/src/lib/services/services.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/webex-core/src/lib/services/services.js +++ b/packages/node_modules/@webex/webex-core/src/lib/services/s...
fix(webex-core): services error cannot read message
webex_spark-js-sdk
train
js
7637d44fbc31af7f786f150259408371c8b88ff4
diff --git a/packages/webpack-config/plugins/config/extractCssChunks.js b/packages/webpack-config/plugins/config/extractCssChunks.js index <HASH>..<HASH> 100644 --- a/packages/webpack-config/plugins/config/extractCssChunks.js +++ b/packages/webpack-config/plugins/config/extractCssChunks.js @@ -1,7 +1,8 @@ const Extrac...
fix(webpack-config): do not run extract-css-chunks-webpack-plugin when target is not web affects: @goldwasserexchange/webpack-config
goldwasserexchange_public
train
js
2f08337ccd0b22619344d8a357faa8f8a018fab3
diff --git a/networktest.go b/networktest.go index <HASH>..<HASH> 100644 --- a/networktest.go +++ b/networktest.go @@ -397,7 +397,11 @@ func (l *lightningNode) lightningNetworkWatcher() { panic(fmt.Errorf("unable read update ntfn: %v", err)) } - graphUpdates <- update + select { + case graphUpdates <- ...
test: allow lightningNetworkWatcher to gracefully exit when ntfn pending
lightningnetwork_lnd
train
go
0e49dd67768a728ec3c9e5d1137e22a993119994
diff --git a/packages/text/src/react/p.js b/packages/text/src/react/p.js index <HASH>..<HASH> 100644 --- a/packages/text/src/react/p.js +++ b/packages/text/src/react/p.js @@ -1,7 +1,7 @@ import * as glamor from 'glamor' import PropTypes from 'prop-types' import React from 'react' -import { names as themeNames } from...
fix(text): Text.P should have a default theme
pluralsight_design-system
train
js
cce89d9518cbca348eca2503bd7377168b2efa1d
diff --git a/test/core/test_tasks_notification.py b/test/core/test_tasks_notification.py index <HASH>..<HASH> 100644 --- a/test/core/test_tasks_notification.py +++ b/test/core/test_tasks_notification.py @@ -245,6 +245,7 @@ class TestNotificationTasksRaceCondition(TransactionTestCase): self.assertEqual(1, not...
test: core: test_tasks_notification: skip test for sqlite This skips the race condition test for sqlite, as it does not handle multi-thread well
Linaro_squad
train
py
f7347526978f08803887467133c993df53575e35
diff --git a/src/scripts/directives/fa-index.js b/src/scripts/directives/fa-index.js index <HASH>..<HASH> 100644 --- a/src/scripts/directives/fa-index.js +++ b/src/scripts/directives/fa-index.js @@ -76,19 +76,19 @@ angular.module('famous.angular') restrict: 'A', scope: false, priority: 16, - c...
refactor: satisfy jslint just semicolons and styling
Famous_famous-angular
train
js
9b0c1e093c23770f673e4929301e3e58b4e50564
diff --git a/src/color/adjustHue.js b/src/color/adjustHue.js index <HASH>..<HASH> 100644 --- a/src/color/adjustHue.js +++ b/src/color/adjustHue.js @@ -32,7 +32,7 @@ function adjustHue(degree: number | string, color: string): string { const hslColor = parseToHsl(color) return toColorString({ ...hslColor, - ...
refactor(adjustHue): remove redundant % Since the % operation is already performed inside `hslToRgb()` in `src/internalHelpers/_hslToRgb.js` (which `adjustHue()` eventually calls through `toColorString()`), this % is completely redundant. refactor #<I>
styled-components_polished
train
js
9c25b5c0b21a48df30394f7f24af0840de9d8368
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -96,14 +96,10 @@ var SauceLabsBrowser = function(id, args, sauceConnect, /* config.sauceLabs */ c 'record-screenshots': args.recordScreenshots || config.recordScreenshots || true, 'build': args.build || config.bu...
refactor: just make it the same style
karma-runner_karma-sauce-launcher
train
js
dd9b3b4ed0675c682759bb9a2b6dc1e37f78057a
diff --git a/docs/typescript-definition-package/processors/code_gen.js b/docs/typescript-definition-package/processors/code_gen.js index <HASH>..<HASH> 100644 --- a/docs/typescript-definition-package/processors/code_gen.js +++ b/docs/typescript-definition-package/processors/code_gen.js @@ -49,6 +49,8 @@ DtsSerializer.p...
docs(typings): don't emit @private members during the d.ts generation Some of our class/interface members are "package private". Typescript doesn't have this concept, so we need to hide them via the @private doc annotation. Closes #<I> Closes #<I>
angular_angular
train
js
a5200b161c1ccb17dde810afa8c8ce53fd173236
diff --git a/android/src/main/java/com/reactlibrary/utils/FileUtils.java b/android/src/main/java/com/reactlibrary/utils/FileUtils.java index <HASH>..<HASH> 100644 --- a/android/src/main/java/com/reactlibrary/utils/FileUtils.java +++ b/android/src/main/java/com/reactlibrary/utils/FileUtils.java @@ -24,10 +24,14 @@ publi...
fix: improve copy method to prevent lagging
aliyun_aliyun-oss-react-native
train
java
4b2fbf8bc002449e89c48b6496a0a2d4c8e60aca
diff --git a/tasks/webpack-dev-server.js b/tasks/webpack-dev-server.js index <HASH>..<HASH> 100644 --- a/tasks/webpack-dev-server.js +++ b/tasks/webpack-dev-server.js @@ -116,11 +116,6 @@ npm install --save-dev webpack-dev-server WebpackDevServer.addDevServerEntrypoints(webpackOptions, opts); - if (...
fix: remove adding of HMR plugin, since addDevServerEntrypoints already does it BREAKING CHANGE: Requires webpack-dev-server <I> or newer
webpack-contrib_grunt-webpack
train
js
63386b9b4009912346d234c842681c7caa2e93c2
diff --git a/lib/enterprise-setup.js b/lib/enterprise-setup.js index <HASH>..<HASH> 100644 --- a/lib/enterprise-setup.js +++ b/lib/enterprise-setup.js @@ -1,11 +1,13 @@ +const { resolve } = require('url') const PouchDB = require('pouchdb-http') const env = require('./env') module.exports = async function () { ...
fix: more reliable db instantiation
greenkeeperio_greenkeeper
train
js
7027900f4993dcd00745a4db045ed1c0e3255f8a
diff --git a/src/renderer/ForeignObjectRenderer.js b/src/renderer/ForeignObjectRenderer.js index <HASH>..<HASH> 100644 --- a/src/renderer/ForeignObjectRenderer.js +++ b/src/renderer/ForeignObjectRenderer.js @@ -16,6 +16,7 @@ export default class ForeignObjectRenderer { this.canvas.height = Math.floor(options.h...
fix: context scale for high resolution displays with foreignobjectrendering (#<I>)
niklasvh_html2canvas
train
js
449f908b1752e04a6b5189d9da739908b030a5f0
diff --git a/test/browser/browser.test.js b/test/browser/browser.test.js index <HASH>..<HASH> 100644 --- a/test/browser/browser.test.js +++ b/test/browser/browser.test.js @@ -948,7 +948,7 @@ describe('browser', () => { }); describe('multipartUpload()', () => { - it.skip('should initMultipartUpload with...
fix: add CORS for server-side-encryption
ali-sdk_ali-oss
train
js
ae48e274de37408dc8504d3092ba11d0fc1b1e23
diff --git a/app/src/components/nav-bar/NavButton.js b/app/src/components/nav-bar/NavButton.js index <HASH>..<HASH> 100644 --- a/app/src/components/nav-bar/NavButton.js +++ b/app/src/components/nav-bar/NavButton.js @@ -11,6 +11,7 @@ import { constants as robotConstants } from '../../robot' import {getAnyRobotUpdat...
feat(app): Add notification to "More" icon if app update available
Opentrons_opentrons
train
js
da7ad5b3426cc66df40d4a6bb7b375739d4ad4aa
diff --git a/lib/platform/github/gh-got-wrapper.js b/lib/platform/github/gh-got-wrapper.js index <HASH>..<HASH> 100644 --- a/lib/platform/github/gh-got-wrapper.js +++ b/lib/platform/github/gh-got-wrapper.js @@ -13,7 +13,7 @@ async function get(path, opts, retries = 5) { const method = opts && opts.method ? opts.meth...
chore: downgrade cached result log to trace
renovatebot_renovate
train
js
928dbc77ed11a61985f5161b5772763c1567afaa
diff --git a/camunda-bpm-osgi/src/test/java/org/camunda/bpm/extension/osgi/application/BlueprintBundleLocalELResolverIntegrationTest.java b/camunda-bpm-osgi/src/test/java/org/camunda/bpm/extension/osgi/application/BlueprintBundleLocalELResolverIntegrationTest.java index <HASH>..<HASH> 100644 --- a/camunda-bpm-osgi/src/...
chore(test): increase timeout for CI some more
camunda_camunda-bpm-platform-osgi
train
java
603c7228dea92d4fb964d815473313e5e4d8fe89
diff --git a/packages/app-frontend/src/features/timeline/index.js b/packages/app-frontend/src/features/timeline/index.js index <HASH>..<HASH> 100644 --- a/packages/app-frontend/src/features/timeline/index.js +++ b/packages/app-frontend/src/features/timeline/index.js @@ -149,7 +149,7 @@ function addEvent (appId, event, ...
fix(timeline): event that were not stacked but ignored anyway
vuejs_vue-devtools
train
js
28239f420460bdb9dd3b71f8088a0dfc1277dca6
diff --git a/lib/server.js b/lib/server.js index <HASH>..<HASH> 100644 --- a/lib/server.js +++ b/lib/server.js @@ -197,7 +197,11 @@ var start = function(injector, config, launcher, globalEmitter, preprocess, file // TODO(vojta): change the client to not send the event (if disconnected by purpose) var sockets ...
fix(server): Force clients disconnect on Windows It occurs that only on Windows, socket.io clients are not properly disconnected, which causes Karma to not exit immediately when everything is done. We have to wait for some internal disconnection socket.io event timeout. This PR basically check if all sockets are disc...
karma-runner_karma
train
js
69f3eecc1f47a97b57a0e36e4156df1ac76e0be5
diff --git a/src/module.js b/src/module.js index <HASH>..<HASH> 100644 --- a/src/module.js +++ b/src/module.js @@ -61,6 +61,7 @@ export default function NetlifyCmsModule(moduleOptions) { netlifyCompiler.plugin("done", async stats => { // Don't reload failed builds if (stats.hasErrors()) { + ...
chore(ci): skip error conditions, improve coverage
medfreeman_nuxt-netlify-cms-module
train
js,js
9293914b557c46a60bbb9eabfcea501e6d73d9e2
diff --git a/scripts/update-rules.js b/scripts/update-rules.js index <HASH>..<HASH> 100755 --- a/scripts/update-rules.js +++ b/scripts/update-rules.js @@ -99,5 +99,5 @@ internals.parse = new Transform({ // Request(internals.src) .pipe(internals.parse) - .pipe(JSONStream.stringify('[', ',', ']')) + .pipe(JSONStre...
chore(scripts): Add line breaks in rules.json to better asses changes/updates
wrangr_psl
train
js
707db97a3f74baabc57bc581dc0e403e00e2f351
diff --git a/lib/rules/index.js b/lib/rules/index.js index <HASH>..<HASH> 100644 --- a/lib/rules/index.js +++ b/lib/rules/index.js @@ -88,7 +88,7 @@ function getProxy(url, req, callback) { var hostname = util.removeProtocol(host.matcher, true); if (!net.isIP(hostname)) { return rules.lookupHost(h...
refactor: getProxy
avwo_whistle
train
js
81458601e86a3edc896599c5afaaadf53d2a17ee
diff --git a/app/src/main/java/io/appium/uiautomator2/utils/w3c/ActionsTokenizer.java b/app/src/main/java/io/appium/uiautomator2/utils/w3c/ActionsTokenizer.java index <HASH>..<HASH> 100644 --- a/app/src/main/java/io/appium/uiautomator2/utils/w3c/ActionsTokenizer.java +++ b/app/src/main/java/io/appium/uiautomator2/utils...
fix: Remove restriction of PointerDown before PointerUp (#<I>)
appium_appium-uiautomator2-server
train
java
ba95c45dd42dda268248daa7451d564a5cedb389
diff --git a/treetime/seqgen.py b/treetime/seqgen.py index <HASH>..<HASH> 100644 --- a/treetime/seqgen.py +++ b/treetime/seqgen.py @@ -86,7 +86,7 @@ class SeqGen(TreeAnc): from Bio.Align import MultipleSeqAlignment tmp = [] - for n in self.tree.get_terminals(): + for n in self.tree.fin...
fix: loop over all nodes when gathering alignment
neherlab_treetime
train
py
eddf1308457e496c900ef1dd79f74b11224209e0
diff --git a/src/components/navbar/navbar.js b/src/components/navbar/navbar.js index <HASH>..<HASH> 100644 --- a/src/components/navbar/navbar.js +++ b/src/components/navbar/navbar.js @@ -254,12 +254,9 @@ export class DataMenu extends React.PureComponent { : null; } - componentDidUpdate(prevProps, prevState...
fix(navbar): do not make body-css-class dependent on state-transition, but just on state
commercetools_merchant-center-application-kit
train
js
4ff5d1e6d11403d40a139e24a6daea4ff1f930ed
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -95,8 +95,6 @@ function getInternetExplorerExe() { return prefix + suffix; } } - - throw new Error('Internet Explorer not found'); } IEBrowser.prototype = {
fix: fail when launcher is called if IE is not found instead of failing as soon as the plug-in is loaded closes #<I>
karma-runner_karma-ie-launcher
train
js
af6cfca5f0af265274f1c0f098df9130400ac266
diff --git a/epab/linters/_sort.py b/epab/linters/_sort.py index <HASH>..<HASH> 100644 --- a/epab/linters/_sort.py +++ b/epab/linters/_sort.py @@ -21,7 +21,7 @@ def _sort_file(file_path: Path): content = file_path.read_bytes() content = content.replace(b'\r\n', b'\n') - file_path.write_text(content.decod...
fix: fix isort encoding (#<I>)
etcher-be_epab
train
py
1813d835dca5a4ae10da81bcb37c3982f49b54ff
diff --git a/test/calling.js b/test/calling.js index <HASH>..<HASH> 100644 --- a/test/calling.js +++ b/test/calling.js @@ -9,7 +9,7 @@ describe('calling', function() { httpinvoke('./', done); }); it('does not throw if relativeURLs flag is false and url is protocol-relative', function(done...
test: calling: fix 'does not throw if relativeURLs flag is false and url is protocol-relative' test
jakutis_httpinvoke
train
js
ebff5a4106742654bfa27d4b18529084c090e85a
diff --git a/public/js/render/live.js b/public/js/render/live.js index <HASH>..<HASH> 100644 --- a/public/js/render/live.js +++ b/public/js/render/live.js @@ -350,11 +350,7 @@ var renderLivePreview = (function () { iframe.setAttribute('frameBorder', '0'); iframe.setAttribute('name', '<proxy>'); $live.pre...
fix: embeds rendering again Fixes #<I> For some reason, the live.js renderLivePreview function doesn't have access to the "real" (and full) jsbin object, so it was missing the user which I added an arb check for. It wasn't needed, so I reverted the change but it's still odd that it's not available at that time.
jsbin_jsbin
train
js
468e125c0330b7ea49dd4b2b601679ecd5ee3c04
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -4,9 +4,10 @@ import Acl from 'browser-acl' * VueAcl constructor function * * ```javascript - * import VueAcl from 'vue-browser-acl' + * import Vue from 'vue' + * import Acl from 'vue-browser-acl' * - * VueAcl(() => us...
docs: Updates doc to recent changes
mblarsen_vue-browser-acl
train
js
21d333c8f7921a4fa7b11acbc6a556661c3d5000
diff --git a/helpers/form.php b/helpers/form.php index <HASH>..<HASH> 100644 --- a/helpers/form.php +++ b/helpers/form.php @@ -1247,6 +1247,7 @@ EOT; } $sFieldAttr .= ' data-defaults="' . htmlentities(json_encode($aValues)) . '"'; + $sFieldAttr .= ' data-label-key="' . $sFieldLabelKey . '"'; ...
fix: Poor support for custom keys in multi cdn picker
nails_common
train
php
35eaffe3b0c9c5c819801526286255a9c6d0749a
diff --git a/src/shared.js b/src/shared.js index <HASH>..<HASH> 100644 --- a/src/shared.js +++ b/src/shared.js @@ -33,7 +33,7 @@ export function resolvePackagePath(packageName) { } catch (e) { // try from app's local folder, this is necessary to support lerna // hoisting where dumber is out of app's ...
fix: sync mode for fallback resolve
dumberjs_dumber
train
js
114b98a0685bb9a3f8a641bc37fffced51f21960
diff --git a/scripts/generate-base-colors.js b/scripts/generate-base-colors.js index <HASH>..<HASH> 100644 --- a/scripts/generate-base-colors.js +++ b/scripts/generate-base-colors.js @@ -107,4 +107,4 @@ const AST = { }; // Generates the file -fs.writeFileSync(path.join(__dirname, exportPath), css.stringify(AST), 'u...
fix(sripts): removes utf8
commercetools_ui-kit
train
js,js
bcbce6aed72f4a0c6d6bbd28e187afe66617f6c2
diff --git a/src/components/DatePicker.js b/src/components/DatePicker.js index <HASH>..<HASH> 100644 --- a/src/components/DatePicker.js +++ b/src/components/DatePicker.js @@ -299,7 +299,13 @@ export default class DatePicker extends Component { isFocused: true, }; if (!this.state.focusedDay)...
fix(DatePicker): setting focus to correct day when date-picker is focused
nikgraf_belle
train
js
71a1be6cccdb55d24e0c2f5d4c00743f5de53a8b
diff --git a/src/packages/database/model/utils/initialize.js b/src/packages/database/model/utils/initialize.js index <HASH>..<HASH> 100644 --- a/src/packages/database/model/utils/initialize.js +++ b/src/packages/database/model/utils/initialize.js @@ -93,8 +93,10 @@ function initializeProps(prototype, attributes, relati...
fix: column data not consistent across all dbms (#<I>) fix: regexp in model attr set function
postlight_lux
train
js
5e4e0cc3f231e1f022cd8a8209ad94280764f79c
diff --git a/src/html/behaviors/DefaultBehaviors.js b/src/html/behaviors/DefaultBehaviors.js index <HASH>..<HASH> 100644 --- a/src/html/behaviors/DefaultBehaviors.js +++ b/src/html/behaviors/DefaultBehaviors.js @@ -56,7 +56,7 @@ Mixin(Base => // if not an array, then it's an object. if...
fix: stop DefaultBehaviors from adding an extra "null" behavior on elements with no initial behaviors.
trusktr_infamous
train
js
4368b85b323a1c8a7143088459e54caf36bcfba5
diff --git a/utils/starters.js b/utils/starters.js index <HASH>..<HASH> 100644 --- a/utils/starters.js +++ b/utils/starters.js @@ -21,9 +21,9 @@ module.exports = { repo: 'ionic-pets-seed' }, { - name: 'User Tutorial', + name: 'User Intro', user: 'diegonetto', - repo: 'ionic-user-t...
fix(gen): Renamed User Tutorial to User Intro
diegonetto_generator-ionic
train
js
287375a12e8eb70ad0b8bce9b51ffda203a669dc
diff --git a/p2p/host/autonat/autonat.go b/p2p/host/autonat/autonat.go index <HASH>..<HASH> 100644 --- a/p2p/host/autonat/autonat.go +++ b/p2p/host/autonat/autonat.go @@ -13,7 +13,7 @@ import ( "github.com/libp2p/go-libp2p-core/network" "github.com/libp2p/go-libp2p-core/peer" - logging "github.com/ipfs/go-log" + ...
chore: update go-log to v2 (#<I>)
libp2p_go-libp2p
train
go
c43845620a3fde7d6dc7bd736b038f947a0f39f2
diff --git a/src/components/notification/notification.spec.js b/src/components/notification/notification.spec.js index <HASH>..<HASH> 100644 --- a/src/components/notification/notification.spec.js +++ b/src/components/notification/notification.spec.js @@ -1,6 +1,5 @@ import React from 'react'; import { shallow } from ...
chore: add local eslint rule to forbid import from local packages
commercetools_merchant-center-application-kit
train
js
bb5af267a0d899792a52f9022af73f72693a304e
diff --git a/lib/util/index.js b/lib/util/index.js index <HASH>..<HASH> 100644 --- a/lib/util/index.js +++ b/lib/util/index.js @@ -1175,11 +1175,6 @@ function getCharset(str) { return _getCharset(str); } -function getMetaCharset(str) { - - return _getCharset(str, true); -} - function _getCharset(str, isMeta) { ...
refactor: use isUtf8 instead of detecting encoding of stream
avwo_whistle
train
js
16c5e4eb2d8b0a87325f4af246fbd7e2ee20804e
diff --git a/src/data-fetcher.js b/src/data-fetcher.js index <HASH>..<HASH> 100644 --- a/src/data-fetcher.js +++ b/src/data-fetcher.js @@ -1,9 +1,12 @@ import {trigger} from 'redial'; export default function ({renderProps, store}) { + const {getState} = store; + return trigger('fetch', renderProps.components, {...
feat(get-state): passed getState to data-fetchers so that the fetching context isnt limited to a stale state
travi_hapi-react-router
train
js,js
8be6e5a5564c1b4d175a9fe4192f12798569740e
diff --git a/vyper/functions/functions.py b/vyper/functions/functions.py index <HASH>..<HASH> 100644 --- a/vyper/functions/functions.py +++ b/vyper/functions/functions.py @@ -218,9 +218,15 @@ class Slice: ) -@signature(('bytes', 'string')) -def _len(expr, args, kwargs, context): - return get_length(args...
refactor: convert len to a class
ethereum_vyper
train
py
9d405f7630eef164dee8ec7cd56f5ab1ea26fd3e
diff --git a/lib/utility.js b/lib/utility.js index <HASH>..<HASH> 100644 --- a/lib/utility.js +++ b/lib/utility.js @@ -5,7 +5,7 @@ Utility.split = function(input, isMarkdown, splitBlockquote, splitCode) { return []; } - var matchers = [isMarkdown ? '\\[.*?\\]\\(.*?\\)' : '<a\s[\\s\\S]*?</a>(?=<[^>]+>)?']; + var ...
fix: double-backslash escape for #<I>
julianlam_nodebb-plugin-mentions
train
js
10936e5e13970b93079d7409aec336894a1bc730
diff --git a/ui/src/components/time/QTime.js b/ui/src/components/time/QTime.js index <HASH>..<HASH> 100644 --- a/ui/src/components/time/QTime.js +++ b/ui/src/components/time/QTime.js @@ -272,6 +272,10 @@ export default Vue.extend({ }, __click (evt) { + if (this._isBeingDestroyed === true || this._isDes...
fix(QTime): add some missing checks for component being destroyed #<I> (#<I>)
quasarframework_quasar
train
js
ab9ac8da06f8366c5f367f2be0e4050758f511d1
diff --git a/src/login7-payload.js b/src/login7-payload.js index <HASH>..<HASH> 100644 --- a/src/login7-payload.js +++ b/src/login7-payload.js @@ -296,7 +296,10 @@ module.exports = class Login7Payload { } // ClientID: 6-byte - offset += this.clientId.copy(fixedData, offset); + if (this.clientId) { + ...
refactor: ensure copying `clientId` does not lead to offset issues
tediousjs_tedious
train
js
57f82e39805835f7da32d456d1e4b8a257f3709d
diff --git a/test/file.js b/test/file.js index <HASH>..<HASH> 100644 --- a/test/file.js +++ b/test/file.js @@ -1740,7 +1740,7 @@ describe('File', function() { writable.on('error', function(err) { assert.equal(err.code, 'FILE_NO_UPLOAD_DELETE'); - assert(err.message.indexOf(deleteErrorMess...
fix: test meant to assert err msg exists (#<I>)
googleapis_nodejs-storage
train
js
a033d6a732c13b2d15ba073f582a994d174e299c
diff --git a/cmd/token_user.go b/cmd/token_user.go index <HASH>..<HASH> 100644 --- a/cmd/token_user.go +++ b/cmd/token_user.go @@ -115,12 +115,12 @@ and success, unless if the --no-shutdown flag is provided.`, noShutdown := flagx.MustGetBool(cmd, "no-shutdown") clientID := flagx.MustGetString(cmd, "client-id"...
fix: make token user command work with public clients (#<I>)
ory_hydra
train
go
e8a867d507e4c952e3e35268239c6d63b14aec89
diff --git a/test/frontend/test_basics.py b/test/frontend/test_basics.py index <HASH>..<HASH> 100644 --- a/test/frontend/test_basics.py +++ b/test/frontend/test_basics.py @@ -206,12 +206,12 @@ class FrontendTest(TestCase): def test_metrics(self): response = self.hit('/mygroup/myproject/build/1.0/testrun/%...
test: test_basics: fix missing test Honestly it's weird that this worked before. It's fixed now.
Linaro_squad
train
py
39aa87b1cb87d382ead44d9089e58112e1c30607
diff --git a/annotations/builder/src/main/java/io/sundr/builder/internal/functions/ToMethod.java b/annotations/builder/src/main/java/io/sundr/builder/internal/functions/ToMethod.java index <HASH>..<HASH> 100644 --- a/annotations/builder/src/main/java/io/sundr/builder/internal/functions/ToMethod.java +++ b/annotations/b...
fix: NPE in handling of base type
sundrio_sundrio
train
java
d3dddd8e626ca49619dbe42c24dffd51be2e2529
diff --git a/src/components/VSelect/VSelect.js b/src/components/VSelect/VSelect.js index <HASH>..<HASH> 100644 --- a/src/components/VSelect/VSelect.js +++ b/src/components/VSelect/VSelect.js @@ -418,8 +418,8 @@ export default { return true }, filterDuplicates (arr) { - const val = this.returnObjec...
fix: duplicated entries when using cache-items with return-object (#<I>)
vuetifyjs_vuetify
train
js
8b354b4b6999e5a2474fb94ffab6b8428c4d4e6e
diff --git a/superset/dashboards/filters.py b/superset/dashboards/filters.py index <HASH>..<HASH> 100644 --- a/superset/dashboards/filters.py +++ b/superset/dashboards/filters.py @@ -111,7 +111,7 @@ class DashboardAccessFilter(BaseFilter): # pylint: disable=too-few-public-metho datasource_perm_query = ( ...
fix: Published Dashboard without charts don't show up for non admin users (#<I>)
apache_incubator-superset
train
py,py
d5ba74d93b9dcedd653a2942aec109d47e388551
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,6 +6,9 @@ module.exports = { path: path.resolve(__dirname, 'dist'), libraryTarget: 'umd', library: 'feather', + // Prevents webpack from referencing `window` in the UMD ...
fix: Fix UMD build for node Prevents webpack from referencing `window` in the UMD build which was causing an error in node.
feathericons_feather
train
js
ad258875cfa8ea59ed2c391a896e67559ad63e1e
diff --git a/allauth/account/utils.py b/allauth/account/utils.py index <HASH>..<HASH> 100644 --- a/allauth/account/utils.py +++ b/allauth/account/utils.py @@ -379,8 +379,9 @@ def sync_user_email_addresses(user): ): # Bail out return - EmailAddress.objects.create( - u...
chore(account): gracefully handle race in sync
pennersr_django-allauth
train
py
9db6071cffe5505bac57cf097d1fc146fefbc9e5
diff --git a/src/React/Properties/CellProperty/layouts.js b/src/React/Properties/CellProperty/layouts.js index <HASH>..<HASH> 100644 --- a/src/React/Properties/CellProperty/layouts.js +++ b/src/React/Properties/CellProperty/layouts.js @@ -84,6 +84,18 @@ const layouts = { </tr> </tbody>); }, + n:...
fix(CellProperty): Add layout for any number of cells in one line
Kitware_paraviewweb
train
js
ffcf371316db63dcb986dfad42df32f9a5b103e5
diff --git a/src/constants.js b/src/constants.js index <HASH>..<HASH> 100644 --- a/src/constants.js +++ b/src/constants.js @@ -25,14 +25,14 @@ constants.branch = { constants.NETWORK = { '11': { NAME: 'MAINNET', - RPC: 'https://api.metadium.com/dev', + RPC: 'https://api.metadium.com/prod', BRANCH: co...
fix: RPC address for mainnet and testnet
hexoul_meta-web3
train
js
1d0fab088c3c34ffce0ccdd5b1906b6e56b0107b
diff --git a/src/scrapy_redis/stats.py b/src/scrapy_redis/stats.py index <HASH>..<HASH> 100644 --- a/src/scrapy_redis/stats.py +++ b/src/scrapy_redis/stats.py @@ -70,7 +70,7 @@ class RedisStatsCollector(StatsCollector): self.set_value(key, min(self.get_value(key, value), value)) def clear_stats(self, sp...
style: correction of wrongly written characters. (#<I>)
rmax_scrapy-redis
train
py
290ef09581c4513ce20c56580b19584a75fc3901
diff --git a/packages/cerebral-todomvc/src/modules/app/actions/toggleAllChecked.js b/packages/cerebral-todomvc/src/modules/app/actions/toggleAllChecked.js index <HASH>..<HASH> 100644 --- a/packages/cerebral-todomvc/src/modules/app/actions/toggleAllChecked.js +++ b/packages/cerebral-todomvc/src/modules/app/actions/toggl...
refactor(todomvc): use new state.compute syntax
cerebral_cerebral
train
js
99d28c0fc826f2572fdfec7a4cb69d4bc25011d9
diff --git a/packages/simplebar/src/simplebar.js b/packages/simplebar/src/simplebar.js index <HASH>..<HASH> 100755 --- a/packages/simplebar/src/simplebar.js +++ b/packages/simplebar/src/simplebar.js @@ -428,15 +428,15 @@ export default class SimpleBar { // Determine placeholder size this.placeholderEl.style...
fix: fix a case where scrollbar position was wrong on init
Grsmto_simplebar
train
js
a0aeeece0d2355e0eb9f7dc91a4ebf2881a29ef2
diff --git a/src/pivotal-ui-react/iconography/iconography.js b/src/pivotal-ui-react/iconography/iconography.js index <HASH>..<HASH> 100644 --- a/src/pivotal-ui-react/iconography/iconography.js +++ b/src/pivotal-ui-react/iconography/iconography.js @@ -1,6 +1,6 @@ const React = require('react'); const {PropTypes} = Rea...
chore(ci): could it be....
pivotal-cf_pivotal-ui
train
js
7ce51351c9abc6f3e71061964718ea653964f0fe
diff --git a/npm/design-system/rollup.config.js b/npm/design-system/rollup.config.js index <HASH>..<HASH> 100644 --- a/npm/design-system/rollup.config.js +++ b/npm/design-system/rollup.config.js @@ -35,6 +35,7 @@ function createEntry () { declaration: true, sourceMap: true, inlineSources: tru...
chore: exlcude stories from the rollup build too
cypress-io_cypress
train
js
6fb6fccb66a9e22c41649f8dc4a1b9a47dcdbeaf
diff --git a/test/combined.test.js b/test/combined.test.js index <HASH>..<HASH> 100644 --- a/test/combined.test.js +++ b/test/combined.test.js @@ -102,6 +102,24 @@ describe('Intents', function() { }); }); + it('Partial (with skippable): orders Test', function() { + return intents.match('orders Test', { par...
feat(matching): Test for skipping and fuzzy partial matching
aholstenson_ecolect-js
train
js
ada4599ffcfa4e684cb74b77e9db9e781f99bf58
diff --git a/test/test_scheduler.go b/test/test_scheduler.go index <HASH>..<HASH> 100644 --- a/test/test_scheduler.go +++ b/test/test_scheduler.go @@ -219,6 +219,7 @@ func (s *SchedulerSuite) TestJobStatus(t *c.C) { } func (s *SchedulerSuite) TestOmniJobs(t *c.C) { + t.Skip("skipping due to router startup hang: htt...
test: Skip SchedulerSuite.TestOmniJobs
flynn_flynn
train
go
439af760155a5c4506a2739050237af73ea2917a
diff --git a/core/poi/lib/WebpackUtils.js b/core/poi/lib/WebpackUtils.js index <HASH>..<HASH> 100644 --- a/core/poi/lib/WebpackUtils.js +++ b/core/poi/lib/WebpackUtils.js @@ -4,7 +4,10 @@ module.exports = class WebpackUtils { } get envs() { - const envs = {} + const envs = { + NODE_ENV: this.api.mode...
fix(webpack): do not override process.env.NODE_ENV, closes #<I>
egoist_poi
train
js
173d60e5324c19c2323d2b8a731e201bf26845ce
diff --git a/authorize_request.go b/authorize_request.go index <HASH>..<HASH> 100644 --- a/authorize_request.go +++ b/authorize_request.go @@ -49,10 +49,11 @@ type AuthorizeRequest struct { func NewAuthorizeRequest() *AuthorizeRequest { return &AuthorizeRequest{ ResponseTypes: Arguments{}, - RedirectURI: ...
fix: resolve regression (#<I>)
ory_fosite
train
go,go
0af8a2eb477059d631d4a142890dcc0b8aeb30c8
diff --git a/packages/app-frontend/src/features/timeline/index.js b/packages/app-frontend/src/features/timeline/index.js index <HASH>..<HASH> 100644 --- a/packages/app-frontend/src/features/timeline/index.js +++ b/packages/app-frontend/src/features/timeline/index.js @@ -105,12 +105,23 @@ function addEvent (appId, event...
feat(timeline): improves stacking
vuejs_vue-devtools
train
js
b4b432406ebc08ef2fc3a1922c64cde7c9060cae
diff --git a/src/metrics/tracked-map.js b/src/metrics/tracked-map.js index <HASH>..<HASH> 100644 --- a/src/metrics/tracked-map.js +++ b/src/metrics/tracked-map.js @@ -38,6 +38,12 @@ class TrackedMap extends Map { this._metrics.updateComponentMetric(this._component, this._name, this.size) return deleted } +...
fix: record tracked map clears (#<I>) Record the size of a map after we `.clear()` it.
libp2p_js-libp2p
train
js
99f9f5ec89568a025e50ce583ff660b2b03b4c45
diff --git a/spec/ciConf.js b/spec/ciConf.js index <HASH>..<HASH> 100644 --- a/spec/ciConf.js +++ b/spec/ciConf.js @@ -36,7 +36,8 @@ exports.config = { jasmineNodeOpts: { isVerbose: true, - showTiming: true + showTiming: true, + defaultTimeoutInterval: 60000 }, params: { diff --git a/spec/smo...
chore(ci): increasing default Jasmine timeout interval Some long tests, which perform many actions, are legitimately going over the <I> second limit. Upping to <I> seconds. Example failure: <URL>
angular_protractor
train
js,js
42a5703ce2431ffd471b1c5fdffac2806a6dbd00
diff --git a/src/login7-payload.js b/src/login7-payload.js index <HASH>..<HASH> 100644 --- a/src/login7-payload.js +++ b/src/login7-payload.js @@ -210,9 +210,7 @@ module.exports = class Login7Payload { createVariableData(offset: number) { this.variableLengthsLength = (9 * 4) + 6 + (3 * 4) + 4; - if (this.l...
refactor: send the same Login7Payload structure for all TDS versions The Login7 payload is defined in a backwards and forwards compatible way, so we can always send data based on the latest version of the TDS specification, without having to account for older versions.
tediousjs_tedious
train
js
2ad42f1d39b0c59ab62a336bc07f39007dc86af7
diff --git a/src/Fuse.php b/src/Fuse.php index <HASH>..<HASH> 100644 --- a/src/Fuse.php +++ b/src/Fuse.php @@ -114,7 +114,7 @@ class Fuse $limit = $options['limit'] ?? -1; $results = is_string($query) - ? (is_string($this->docs[0]) + ? (is_string($this->docs[0] ?? null) ...
fix: don't print a notice for empty docs list
Loilo_Fuse
train
php
70c49b78ae209f6314e0a2283181b51259e73f98
diff --git a/lib/renderer/inspector.js b/lib/renderer/inspector.js index <HASH>..<HASH> 100644 --- a/lib/renderer/inspector.js +++ b/lib/renderer/inspector.js @@ -5,8 +5,7 @@ window.onload = function () { window.InspectorFrontendHost.showContextMenuAtPoint = createMenu // Use dialog API to override file chooser...
fix: Memory > Profiles > Load in DevTools (#<I>)
electron_electron
train
js