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
d0b4fa6405d832beb34ecbec6f9e29e9b232da57
diff --git a/questionary/prompt.py b/questionary/prompt.py index <HASH>..<HASH> 100644 --- a/questionary/prompt.py +++ b/questionary/prompt.py @@ -1,5 +1,5 @@ from prompt_toolkit.output import ColorDepth -from typing import Any, Dict, Optional, Iterable, Mapping +from typing import Any, Dict, Optional, Iterable, Mappi...
fix(types): declare support for single questions Without this patch, when calling `prompt` or `unsafe_prompt` with a `dict` on `questions`, mypy fails with: Argument 1 to "unsafe_prompt" has incompatible type "Dict[str, Any]"; expected "Iterable[Mapping[str, Any]]"
tmbo_questionary
train
py
5f4035e444ae9c4754a1a034b9ee3946fba202b1
diff --git a/packages/cozy-konnector-libs/src/libs/saveFiles.js b/packages/cozy-konnector-libs/src/libs/saveFiles.js index <HASH>..<HASH> 100644 --- a/packages/cozy-konnector-libs/src/libs/saveFiles.js +++ b/packages/cozy-konnector-libs/src/libs/saveFiles.js @@ -226,6 +226,8 @@ function checkMimeWithPath(mime, filepath...
fix(saveFiles): avoid the 'The fileStream attribute is a undefined' message in logs
konnectors_libs
train
js
35b9d695a4ed56ce554da7a8231bf29eec14e30a
diff --git a/packages/webpack-cli/lib/utils/package-exists.js b/packages/webpack-cli/lib/utils/package-exists.js index <HASH>..<HASH> 100644 --- a/packages/webpack-cli/lib/utils/package-exists.js +++ b/packages/webpack-cli/lib/utils/package-exists.js @@ -1,6 +1,6 @@ function packageExists(packageName) { try { - ...
fix: improve package-exists util (#<I>)
webpack_webpack-cli
train
js
a7eb601f96098280632d9a21c90682d0365bfb5b
diff --git a/src/store.js b/src/store.js index <HASH>..<HASH> 100644 --- a/src/store.js +++ b/src/store.js @@ -1311,7 +1311,7 @@ function mapValueWithState(lastValue, nextValue) { enumerable: true, }); return acc; - }, Object.create(lastValue)), + }, Object.create(Object.getPrototypeOf(last...
fix(store): correct prototype for mapping state of the model in store factory
hybridsjs_hybrids
train
js
9d9c808280f02a456e86dec008c60c1075feee01
diff --git a/lib/create-espower-visitor.js b/lib/create-espower-visitor.js index <HASH>..<HASH> 100644 --- a/lib/create-espower-visitor.js +++ b/lib/create-espower-visitor.js @@ -10,14 +10,12 @@ var BabelAssertionVisitor = require('./babel-assertion-visitor'); var babelTemplate = require('babel-template'); var helper...
refactor(babel-plugin-espower): simplify closure usage in capture helper since closure is created for each assertion argument
power-assert-js_babel-plugin-espower
train
js
b7b1e492070e708c99b605817c94e7bdba50d1ef
diff --git a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/modules/messaging/router/RouterActor.java b/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/modules/messaging/router/RouterActor.java index <HASH>..<HASH> 100644 --- a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/...
fix(core): Fixing isLoaded flag in chat
actorapp_actor-platform
train
java
647fdd8229bc94c9cc8c7cf655496d0de258272a
diff --git a/source/rafcon/gui/controllers/library_tree.py b/source/rafcon/gui/controllers/library_tree.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/controllers/library_tree.py +++ b/source/rafcon/gui/controllers/library_tree.py @@ -295,7 +295,8 @@ class LibraryTreeController(ExtendedController): def ope...
fix(library_tree): Make more fail safe Handle cases where no state machine is returned
DLR-RM_RAFCON
train
py
cb47a28c10e1865744cbe5d20173e537dd6e21f4
diff --git a/packages/@vue/eslint-config-airbnb/index.js b/packages/@vue/eslint-config-airbnb/index.js index <HASH>..<HASH> 100644 --- a/packages/@vue/eslint-config-airbnb/index.js +++ b/packages/@vue/eslint-config-airbnb/index.js @@ -23,6 +23,14 @@ module.exports = { jsx: 'never', ts: 'never', tsx...
fix: airbnb lint should not warn on vuex state mutation (#<I>) close #<I>
vuejs_vue-cli
train
js
af1532cb3c78f5cae7de612afaa6258c0eb8c7db
diff --git a/provider/aws.go b/provider/aws.go index <HASH>..<HASH> 100644 --- a/provider/aws.go +++ b/provider/aws.go @@ -131,6 +131,10 @@ func (p *AWSProvider) Zones() (map[string]*route53.HostedZone, error) { return nil, err } + for _, zone := range zones { + log.Debugf("Considering zone: %s (domain: %s)", a...
fix: print matched dns zones (gcp, aws) (#<I>)
kubernetes-incubator_external-dns
train
go,go
58f1dfee0f860e4d51b0c09f1474585119b6cb72
diff --git a/stop.js b/stop.js index <HASH>..<HASH> 100644 --- a/stop.js +++ b/stop.js @@ -1,5 +1,3 @@ 'use strict'; -var allonsy = require('./features/allons-y/allons-y.js'); - -allonsy.stop(); +require('./features/allons-y/allons-y.js').stop();
refactor(stop): don't declare a variable
CodeCorico_allons-y
train
js
bb74403ef3dd8e8bdf5aa0b7561b75b27478d55c
diff --git a/src/core/Scene.js b/src/core/Scene.js index <HASH>..<HASH> 100644 --- a/src/core/Scene.js +++ b/src/core/Scene.js @@ -273,8 +273,8 @@ let Scene = Mixin(Base => { this._mounted = false }, - updated(oldProps, oldState, modifiedProps) { - Super(this).updated(oldProps,...
fix: whoops, fix a typo. I'm in the process of adding unit tests to avoid these sorts of mistakes!
trusktr_infamous
train
js
3d3ac08fcf1498ce4ec974e961a99f7b80013163
diff --git a/exchange/bitswap/bitswap.go b/exchange/bitswap/bitswap.go index <HASH>..<HASH> 100644 --- a/exchange/bitswap/bitswap.go +++ b/exchange/bitswap/bitswap.go @@ -108,7 +108,6 @@ type bitswap struct { // GetBlock attempts to retrieve a particular block from peers within the // deadline enforced by the context...
chore(bitswap): rm debug log (covered by eventlog)
ipfs_go-ipfs
train
go
75e8e0b28d3e1ba3ac849e6d2091826cbb8d546f
diff --git a/tests/test_io/test_web/test_load.py b/tests/test_io/test_web/test_load.py index <HASH>..<HASH> 100644 --- a/tests/test_io/test_web/test_load.py +++ b/tests/test_io/test_web/test_load.py @@ -20,7 +20,7 @@ if TYPE_CHECKING: @pytest.fixture(scope="module") def mini_sbml(data_directory: Path) -> bytes: ...
chore: improve file opening for test_load.py
opencobra_cobrapy
train
py
1f8e4f21325b2de7caf6525fc1eceeaf7629b552
diff --git a/lib/mail/Mail.php b/lib/mail/Mail.php index <HASH>..<HASH> 100644 --- a/lib/mail/Mail.php +++ b/lib/mail/Mail.php @@ -1756,8 +1756,7 @@ class Mail implements \JsonSerializable /** * Disable sandbox mode on a MailSettings object * - * This allows you to send a test email to ensure that ...
docs: rewrite function description (#<I>) I found that the function description did not match the way it works.
sendgrid_sendgrid-php
train
php
93293e0916cfbd5a6cf868716a8ff3f74297ef37
diff --git a/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js b/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js index <HASH>..<HASH> 100644 --- a/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js +++ b/packages/pob/lib/generators/common/babel/CommonBabelGenerator.js @@ -5...
fix(pob): dont add any script as main, only "."
christophehurpeau_pob-lerna
train
js
f55ad50863a55165499b16d0cecdefeb2708f015
diff --git a/test/meta_test.rb b/test/meta_test.rb index <HASH>..<HASH> 100644 --- a/test/meta_test.rb +++ b/test/meta_test.rb @@ -40,8 +40,8 @@ class ApiVersionTest < Test::Unit::TestCase "display_name": "unstable", "supported": false, }, - ].to_json + ].as_json - assert_equal versi...
fix: update test to handle activeresource.to_json in Ruby <I>
Shopify_shopify_api
train
rb
10613f7139a3dfd90866ebf8945a73117c6e15a8
diff --git a/packages/magellan-mocha-plugin/.eslintrc.js b/packages/magellan-mocha-plugin/.eslintrc.js index <HASH>..<HASH> 100644 --- a/packages/magellan-mocha-plugin/.eslintrc.js +++ b/packages/magellan-mocha-plugin/.eslintrc.js @@ -7,4 +7,15 @@ module.exports = { 'import/no-nodejs-modules': 'off', 'no-process-...
chore: Disable jest rules that doesn't make sense for test fixtures (#<I>)
Automattic_wp-calypso
train
js
6ca75487abf9ba46b8e90b016a31120b0c8d7c41
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -13,7 +13,7 @@ class Auth { constructor (options) { this.config = { local: local, - provided: options + provided: options || {} } }
fix: ensure that provided config is an object
cubic-js_cubic
train
js
aeb344f893b0c69f85ca1bcdc72b06343e104d32
diff --git a/app/lib/webpack/ssr/plugin.ssr-prod-artifacts.js b/app/lib/webpack/ssr/plugin.ssr-prod-artifacts.js index <HASH>..<HASH> 100644 --- a/app/lib/webpack/ssr/plugin.ssr-prod-artifacts.js +++ b/app/lib/webpack/ssr/plugin.ssr-prod-artifacts.js @@ -27,6 +27,8 @@ module.exports = class SsrProdArtifacts { *...
feat(app): small addition to previous commit for SSR builds (do not add @quasar/extras for production package.json)
quasarframework_quasar
train
js
f45da3c7b168d34e7d3c520068dc24364753a74a
diff --git a/lib/plugins/package/lib/packageService.js b/lib/plugins/package/lib/packageService.js index <HASH>..<HASH> 100644 --- a/lib/plugins/package/lib/packageService.js +++ b/lib/plugins/package/lib/packageService.js @@ -16,6 +16,7 @@ module.exports = { 'yarn-*.log', '.serverless/**', '.serverless_...
perf(packaging): Exclude "aws-sdk" dependency (#<I>) As it's unconditionally provided in AWS environment
serverless_serverless
train
js
ba9ee43e0199de8630ecba659d4da8b9beb4b7be
diff --git a/src/graceful/__init__.py b/src/graceful/__init__.py index <HASH>..<HASH> 100644 --- a/src/graceful/__init__.py +++ b/src/graceful/__init__.py @@ -4,5 +4,5 @@ It is inspired by Django REST Framework package. Mostly by how object serialization is done but more emphasis is put on API to be self-descriptive....
chore: prepare new release (<I>)
swistakm_graceful
train
py
9335f83930d89cd7cea10a2e5f537cd65bf7df06
diff --git a/packages/reftools/lib/jptr.js b/packages/reftools/lib/jptr.js index <HASH>..<HASH> 100644 --- a/packages/reftools/lib/jptr.js +++ b/packages/reftools/lib/jptr.js @@ -55,7 +55,7 @@ function jptr(obj, prop, newValue) { components[i] = (i > 0) ? components[i-1] : ''; // backtrack to indexed prope...
fix: reftools/jptr protect against null input object
Mermade_oas-kit
train
js
b20d2c8941f491e27d5a19bfa1a4ad1bb8aedeba
diff --git a/publisher/publisher.go b/publisher/publisher.go index <HASH>..<HASH> 100644 --- a/publisher/publisher.go +++ b/publisher/publisher.go @@ -60,7 +60,8 @@ func listenContainers(client *docker.Client, etcdClient *etcd.Client, ttl time.D if event.Status == "start" { container, err := getContainer(clien...
fix(publisher): skip when failed to retrieve container There is a race condition where a container starts via `docker run`, but then immediately fails because an incorrect command was specified or some other error occurred that caused the container to fail over. In this case, we should just log and fail over, rather t...
deis_deis
train
go
d2140f335e23355be42bf4c2f740179a96509221
diff --git a/webapps/webapp/src/main/webapp/app/tasklist/pages/task.js b/webapps/webapp/src/main/webapp/app/tasklist/pages/task.js index <HASH>..<HASH> 100644 --- a/webapps/webapp/src/main/webapp/app/tasklist/pages/task.js +++ b/webapps/webapp/src/main/webapp/app/tasklist/pages/task.js @@ -93,7 +93,17 @@ ngDefine('task...
fix(tasklist): collect variables on task completion form
camunda_camunda-bpm-platform
train
js
204c914bc4d4bd0bb2076164074aec82b316f1c6
diff --git a/openshift-client/src/main/java/io/fabric8/openshift/client/OpenShiftAPIGroups.java b/openshift-client/src/main/java/io/fabric8/openshift/client/OpenShiftAPIGroups.java index <HASH>..<HASH> 100644 --- a/openshift-client/src/main/java/io/fabric8/openshift/client/OpenShiftAPIGroups.java +++ b/openshift-client...
chore(license): fix license header whoops IDEA you missed one!
fabric8io_kubernetes-client
train
java
9a5daba51abdac7ff260059b712ba5e5487e781b
diff --git a/sentry_sdk/integrations/logging.py b/sentry_sdk/integrations/logging.py index <HASH>..<HASH> 100644 --- a/sentry_sdk/integrations/logging.py +++ b/sentry_sdk/integrations/logging.py @@ -157,7 +157,6 @@ class EventHandler(logging.Handler, object): if hub.client is None: return - ...
feat: Add log_record to event hints See #<I>
getsentry_sentry-python
train
py
55bd98f42b41707b831cbf3bdfccd2fe72f5647b
diff --git a/buildExample.js b/buildExample.js index <HASH>..<HASH> 100644 --- a/buildExample.js +++ b/buildExample.js @@ -1,7 +1,7 @@ import React from 'react'; import { renderToStaticMarkup } from 'react-dom/server'; import { writeFileSync, readFileSync } from 'fs'; -import { map, toPairs } from 'lodash/fp'; +impo...
chore(example): sort icons by name
lucastobrazil_cabanaico
train
js
f7fb33ed8e8edb1a6d01f9a39fabf29e2df10788
diff --git a/src/core/components/bootstrap.js b/src/core/components/bootstrap.js index <HASH>..<HASH> 100644 --- a/src/core/components/bootstrap.js +++ b/src/core/components/bootstrap.js @@ -20,10 +20,10 @@ module.exports = function bootstrap (self) { args = {default: false} } try { - if (...
refactor: fix linting from bootstrap.js
ipfs_js-ipfs
train
js
3cab47ebe8a70f5fa3df0f83619830a5c2de45eb
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,5 @@ setup( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Topic :: Software Development :: Libraries :: Python Modules', - 'Topic :: Text Process...
fix: 'Topic :: Text Processing :: Markup' seems not supported
tanbro_pyyaml-include
train
py
3a0779e206811e87febfa0ac65fe5f3c2bd97a1f
diff --git a/content/template/detailTemplate/blocks/event-item.php b/content/template/detailTemplate/blocks/event-item.php index <HASH>..<HASH> 100644 --- a/content/template/detailTemplate/blocks/event-item.php +++ b/content/template/detailTemplate/blocks/event-item.php @@ -21,7 +21,7 @@ if ( ! empty( $ev['EventDates']...
refactor: Doesn't need to be echoed.
MultinetInteractive_EduAdmin-WordPress
train
php
8c05a125dc0cfb28e29fc6004ee26607ab99eba8
diff --git a/build.go b/build.go index <HASH>..<HASH> 100644 --- a/build.go +++ b/build.go @@ -334,9 +334,7 @@ func gruntBuildArg(task string) []string { func setup() { runPrint("go", "get", "-v", "github.com/kardianos/govendor") - runPrint("go", "get", "-v", "github.com/blang/semver") - runPrint("go", "get", "-v"...
fix(build): updated build.go setup
grafana_grafana
train
go
a55be1b086d4f7e2f76740f069d78e1ca74b2d70
diff --git a/css-components/gulpfile.js b/css-components/gulpfile.js index <HASH>..<HASH> 100644 --- a/css-components/gulpfile.js +++ b/css-components/gulpfile.js @@ -179,7 +179,7 @@ gulp.task('build-css-components', ['build-schemes'], function(done) { // build-css-topdoc //////////////////////////////////////// gul...
fix(css-gulpfile): shell command for Windows environments
OnsenUI_OnsenUI
train
js
f72ce7c136cf2dfe31a67b190c00e30ba7d70bfa
diff --git a/src/managers/PermissionOverwriteManager.js b/src/managers/PermissionOverwriteManager.js index <HASH>..<HASH> 100644 --- a/src/managers/PermissionOverwriteManager.js +++ b/src/managers/PermissionOverwriteManager.js @@ -13,13 +13,19 @@ const { OverwriteTypes } = require('../util/Constants'); */ class Perm...
fix(GuildChannel): clone its PermissionOverwriteManager too (#<I>)
discordjs_discord.js
train
js,js
88bd17809592bffb09088f49f425d5dc69ae001f
diff --git a/packages/core/renderers/renderer-hyperhtml.js b/packages/core/renderers/renderer-hyperhtml.js index <HASH>..<HASH> 100644 --- a/packages/core/renderers/renderer-hyperhtml.js +++ b/packages/core/renderers/renderer-hyperhtml.js @@ -1,6 +1,7 @@ // HyperHTML Renderer ported to SkateJS import { withCompone...
feat: add withUpdate lifecycle mixin from SkateJS to base Bolt component class
bolt-design-system_bolt
train
js
0e70ec035abb48e0a178134921b7e8773ea777be
diff --git a/packages/metascraper-media-provider/src/get-media/provider/generic.js b/packages/metascraper-media-provider/src/get-media/provider/generic.js index <HASH>..<HASH> 100644 --- a/packages/metascraper-media-provider/src/get-media/provider/generic.js +++ b/packages/metascraper-media-provider/src/get-media/provi...
fix: check if agent is an object
microlinkhq_metascraper
train
js
1e289b05b9fc7561188bb0dc9a83531068890e0e
diff --git a/test/inputSpec.js b/test/inputSpec.js index <HASH>..<HASH> 100644 --- a/test/inputSpec.js +++ b/test/inputSpec.js @@ -119,6 +119,9 @@ describe('"input" option', function() { } }; eachClass(function(className) { + if(typeof g[classNam...
test: inputSpec: check for existence before using a typed array class
jakutis_httpinvoke
train
js
5deffec3be96b7d6550db5296b5efd1a6af7999e
diff --git a/piazza_api/piazza.py b/piazza_api/piazza.py index <HASH>..<HASH> 100644 --- a/piazza_api/piazza.py +++ b/piazza_api/piazza.py @@ -74,14 +74,16 @@ class Piazza(object): # raw_classes = self.get_user_profile().get('all_classes').values() # Get classes from the user status (includes all cl...
fix(dev): repair is_ta boolean in get_user_classes is_ta appears to be no longer sent in the networks list of 'user.status', so instead we use the 'profs_hash' to check for TA status.
hfaran_piazza-api
train
py
d72423010d01dbb1ace2ca9bee76506cdcd9cd8e
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 @@ -97,4 +97,16 @@ getServer(function (error, server)...
test(routes): GET /session/account/profile?include=foobar * * * This commit was sponsored by Neighbourhoodie You can hire Neighbourhoodie for all your Hoodie / CouchDB / Offline First needs <URL>
hoodiehq_hoodie-account-server
train
js
4c0136da4dd7b8ad10bc6fc19872e043fde35578
diff --git a/examples/lazy-loading/app.js b/examples/lazy-loading/app.js index <HASH>..<HASH> 100644 --- a/examples/lazy-loading/app.js +++ b/examples/lazy-loading/app.js @@ -43,7 +43,7 @@ const router = new VueRouter({ { path: '/', component: Home }, // Just use them normally in the route config { path:...
chore(typo): fix typo in comment (#<I>)
vuejs_vue-router
train
js
bc3c2c899fa9752c3387bedc8949dc2d1809befb
diff --git a/master/buildbot/test/unit/reporters/test_generators_utils.py b/master/buildbot/test/unit/reporters/test_generators_utils.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/unit/reporters/test_generators_utils.py +++ b/master/buildbot/test/unit/reporters/test_generators_utils.py @@ -78,6 +78,17 @@ cl...
test: Add test for tag check logic in build status generators
buildbot_buildbot
train
py
ff478c8386fa2eb8452b6855d8141b2800101be2
diff --git a/Field.js b/Field.js index <HASH>..<HASH> 100644 --- a/Field.js +++ b/Field.js @@ -1,5 +1,5 @@ var configureField = require('./utils/configureField.js') -module.exports = function (formData, fieldData) { - return configureField(formData, fieldData) +module.exports = function (fieldData) { + return conf...
fix: Field should not be initialized with formData
cerebral-legacy_cerebral-module-forms
train
js
f7aeb60b658545fb36f0c8e3871a3a4dbe122a99
diff --git a/lib/BaseWasmMainTemplatePlugin.js b/lib/BaseWasmMainTemplatePlugin.js index <HASH>..<HASH> 100644 --- a/lib/BaseWasmMainTemplatePlugin.js +++ b/lib/BaseWasmMainTemplatePlugin.js @@ -86,8 +86,7 @@ class BaseWasmMainTemplatePlugin { } applyNode(mainTemplate) { - const generateLoadBinaryCode = path => ...
fix(wasm): incorrect instantiateStreaming support check
webpack_webpack
train
js
641800cd2d5eb597c241745f0aa0c74204200ab7
diff --git a/packages/shipit-deploy/src/tasks/deploy/update.js b/packages/shipit-deploy/src/tasks/deploy/update.js index <HASH>..<HASH> 100644 --- a/packages/shipit-deploy/src/tasks/deploy/update.js +++ b/packages/shipit-deploy/src/tasks/deploy/update.js @@ -1,5 +1,6 @@ import utils from 'shipit-utils' import path fr...
fix: enable Git Bash shells on Windows to successfully deploy (#<I>)
shipitjs_shipit
train
js
0912b9214872383c167e61b77011a74db18d07f5
diff --git a/random-browser.js b/random-browser.js index <HASH>..<HASH> 100644 --- a/random-browser.js +++ b/random-browser.js @@ -1,4 +1,4 @@ -var crypto = window.crypto || window.msCrypto +var crypto = self.crypto || self.msCrypto module.exports = function (bytes) { return crypto.getRandomValues(new Uint8Array(...
fix: use self when referencing the global scope (#<I>)
ai_nanoid
train
js
01ca5af6312adc2a4bd0a3e854c655d2fa378767
diff --git a/lib/components/app/call-taker-panel.js b/lib/components/app/call-taker-panel.js index <HASH>..<HASH> 100644 --- a/lib/components/app/call-taker-panel.js +++ b/lib/components/app/call-taker-panel.js @@ -287,10 +287,17 @@ class CallTakerPanel extends Component { <UserSettings /> )} ...
fix(CallTakerPanel): Add lost narrative scrolling feature.
opentripplanner_otp-react-redux
train
js
5aaa3d99b8f8d887a8a123addedd108f1c5cd0b3
diff --git a/src/utils/sentry.js b/src/utils/sentry.js index <HASH>..<HASH> 100644 --- a/src/utils/sentry.js +++ b/src/utils/sentry.js @@ -6,6 +6,7 @@ export const boot = () => { release: window.app.revision, tags: { role: 'frontend' }, environment: window.app.env, + whitelistUrls: [window.app...
chore(app): add frontend host as window app var
commercetools_merchant-center-application-kit
train
js
4a9e883baee42a8bbc48399e4d749879db18f3d9
diff --git a/source/rafcon/gui/mygaphas/items/line.py b/source/rafcon/gui/mygaphas/items/line.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/mygaphas/items/line.py +++ b/source/rafcon/gui/mygaphas/items/line.py @@ -287,10 +287,9 @@ class PerpLine(Line): return 0 line_width = parent_state_v...
feat(gaphas): Line width according to port width The minimum line width is now set to the port width for better optics
DLR-RM_RAFCON
train
py
7e332c894ea3f9a3837a75155386af58f66e2076
diff --git a/lib/handlers/plugin-handler.js b/lib/handlers/plugin-handler.js index <HASH>..<HASH> 100644 --- a/lib/handlers/plugin-handler.js +++ b/lib/handlers/plugin-handler.js @@ -22,6 +22,14 @@ module.exports = function(req, res, next) { req.headers[pluginMgr.SSL_FLAG_HEADER] = 'true'; } + var localHost...
feat: send host:port to plugin.server
avwo_whistle
train
js
d8b90b93c7fdf636d6080a8dd8bfb0a8256e598c
diff --git a/load-i18n.js b/load-i18n.js index <HASH>..<HASH> 100644 --- a/load-i18n.js +++ b/load-i18n.js @@ -1,6 +1,6 @@ export default function loadI18n(locale) { // Use lazy once so that subsequent calls to import() will use the same // network response. https://webpack.js.org/api/module-methods/#import- - ...
refactor(app-shell): remove iunnecessary nner application
commercetools_merchant-center-application-kit
train
js
53c5d31e10255d41f1392fe79fd3666ad1b60fdb
diff --git a/spec/rack/app/router/versioned_path_spec.rb b/spec/rack/app/router/versioned_path_spec.rb index <HASH>..<HASH> 100644 --- a/spec/rack/app/router/versioned_path_spec.rb +++ b/spec/rack/app/router/versioned_path_spec.rb @@ -4,10 +4,15 @@ describe Rack::App do include Rack::App::Test paths = [ + '/...
test: add more test based on JoWilfrid instruction
rack-app_rack-app
train
rb
357e707e2c3b6e7423960ca97e765cc12a6ffa4a
diff --git a/lib/NormalModule.js b/lib/NormalModule.js index <HASH>..<HASH> 100644 --- a/lib/NormalModule.js +++ b/lib/NormalModule.js @@ -78,7 +78,7 @@ const contextifySourceUrl = (context, source, associatedObjectForCache) => { */ const contextifySourceMap = (context, sourceMap, associatedObjectForCache) => { if...
refactor: prefer destructuring approach
webpack_webpack
train
js
a06f0d0b25bd35c1a0662abedf171e468272605d
diff --git a/molgenis-core-ui/src/main/resources/js/thememanager.js b/molgenis-core-ui/src/main/resources/js/thememanager.js index <HASH>..<HASH> 100644 --- a/molgenis-core-ui/src/main/resources/js/thememanager.js +++ b/molgenis-core-ui/src/main/resources/js/thememanager.js @@ -49,6 +49,9 @@ requirejs(["vue.min"], func...
feat: add theme preview when changing public theme
molgenis_molgenis
train
js
6383d13edd6cbd638b30dea6842b6fc480113b5e
diff --git a/benchbuild/project.py b/benchbuild/project.py index <HASH>..<HASH> 100644 --- a/benchbuild/project.py +++ b/benchbuild/project.py @@ -59,17 +59,18 @@ class ProjectRegistry(type): ) -> tp.Any: """Register a project in the registry.""" cls = super(ProjectRegistry, mcs).__new__(mcs, nam...
fix(project): project registration for groups This fixes project registration for grouped projects. As soon as some class attributes were defined on the group level of the type hierarchy, we wouldn't register any child of this group class. We fix this by preferring the attributes of the subclass and take the attribut...
PolyJIT_benchbuild
train
py
8fa0f44445a0ae1965f9fc82f6de81d149ec3ae3
diff --git a/webapps/ui/cockpit/client/scripts/directives/stateCircle.js b/webapps/ui/cockpit/client/scripts/directives/stateCircle.js index <HASH>..<HASH> 100644 --- a/webapps/ui/cockpit/client/scripts/directives/stateCircle.js +++ b/webapps/ui/cockpit/client/scripts/directives/stateCircle.js @@ -27,6 +27,10 @@ module...
chore(cockpit): watch running attr of state circle related to CAM-<I>
camunda_camunda-bpm-platform
train
js
469ab3a72f9c8feecdefa6b4b13b58b89086b1ed
diff --git a/packages/patternfly-3/patternfly-react/src/components/ModelessOverlay/ModelessOverlay.js b/packages/patternfly-3/patternfly-react/src/components/ModelessOverlay/ModelessOverlay.js index <HASH>..<HASH> 100644 --- a/packages/patternfly-3/patternfly-react/src/components/ModelessOverlay/ModelessOverlay.js +++ ...
fix(ModelessOverlay): Fix for animation on open in Firefox browser (#<I>) Use a <I>ms delay to update show & in classes for both open and close fixes #<I>
patternfly_patternfly-react
train
js
e33b7a330cf2bfa984d4d0ccb9b86455cb85dd2b
diff --git a/packages/node_modules/@webex/plugin-meetings/src/meetings/index.js b/packages/node_modules/@webex/plugin-meetings/src/meetings/index.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/plugin-meetings/src/meetings/index.js +++ b/packages/node_modules/@webex/plugin-meetings/src/meetings/index....
fix(plugin-meetings): use fetch info for destination
webex_spark-js-sdk
train
js
538d527e4a6b133af09adb46b01d20d7a06c59f5
diff --git a/packages/react-scripts/scripts/utils/createJestConfig.js b/packages/react-scripts/scripts/utils/createJestConfig.js index <HASH>..<HASH> 100644 --- a/packages/react-scripts/scripts/utils/createJestConfig.js +++ b/packages/react-scripts/scripts/utils/createJestConfig.js @@ -87,6 +87,7 @@ module.exports = (r...
feat(react-scripts): allow testMatch for jest config (#<I>) resolves #<I>
facebook_create-react-app
train
js
ce3986de1e0404d296cf0fee7ae141adb6d04ce2
diff --git a/core/src/elements/ons-pull-hook.spec.js b/core/src/elements/ons-pull-hook.spec.js index <HASH>..<HASH> 100644 --- a/core/src/elements/ons-pull-hook.spec.js +++ b/core/src/elements/ons-pull-hook.spec.js @@ -71,7 +71,7 @@ describe('OnsPullHookElement', () => { }); }); -/* describe('#_onDrag()', ()...
fix(ons-pull-hook): uncomment tests
OnsenUI_OnsenUI
train
js
1b8a274b393c3f71a0cc8bcb9af1cd99d8696c5a
diff --git a/src/loader.js b/src/loader.js index <HASH>..<HASH> 100644 --- a/src/loader.js +++ b/src/loader.js @@ -23,7 +23,6 @@ export class Loader { */ programId: PublicKey; - /** * Amount of program data placed in each load Transaction */ diff --git a/src/transaction.js b/src/transaction.js index...
refactor: add constant for max Transaction size
solana-labs_solana-web3.js
train
js,js
09a5983f105ef53c818d806ed5b0618603672e88
diff --git a/src/components/autoplay.js b/src/components/autoplay.js index <HASH>..<HASH> 100644 --- a/src/components/autoplay.js +++ b/src/components/autoplay.js @@ -62,12 +62,16 @@ export default function (Glide, Components, Events) { * @return {Void} */ bind () { - Binder.on('mouseover', Compon...
feat(autoplay): Emit events for hoverpause (#<I>)
glidejs_glide
train
js
0be417a0b48fe2d4d920f29402fdd74fed6e03f2
diff --git a/anyconfig/api.py b/anyconfig/api.py index <HASH>..<HASH> 100644 --- a/anyconfig/api.py +++ b/anyconfig/api.py @@ -216,9 +216,6 @@ def multi_load(paths, ac_parser=None, ac_template=False, ac_context=None, if ac_merge not in MERGE_STRATEGIES: raise ValueError("Invalid merge strategy: " + ac_mer...
refactor: do not check given paths is empty as the check is not needed actually in api.multi_load
ssato_python-anyconfig
train
py
69af8b8b2b888f49735ad88d5b8b32afaf6e0167
diff --git a/tests/fixtures/TeamCityFormatter.php b/tests/fixtures/TeamCityFormatter.php index <HASH>..<HASH> 100644 --- a/tests/fixtures/TeamCityFormatter.php +++ b/tests/fixtures/TeamCityFormatter.php @@ -43,7 +43,7 @@ class TeamCityFormatter extends JsonFormatter /** * @inheritDoc */ - public fun...
test(TC): fix TC formatter
commercetools_commercetools-php-sdk
train
php
90e201ee15ef5f1930e782e3361876907b4721ae
diff --git a/okdownload/src/main/java/com/liulishuo/okdownload/core/breakpoint/BreakpointStoreOnCache.java b/okdownload/src/main/java/com/liulishuo/okdownload/core/breakpoint/BreakpointStoreOnCache.java index <HASH>..<HASH> 100644 --- a/okdownload/src/main/java/com/liulishuo/okdownload/core/breakpoint/BreakpointStoreOn...
chore: fix style check issue on store-on-cache
lingochamp_okdownload
train
java
97e87a42eaeb78b1d2193df8bd6fbb26324d8226
diff --git a/lib/iterator.js b/lib/iterator.js index <HASH>..<HASH> 100644 --- a/lib/iterator.js +++ b/lib/iterator.js @@ -96,5 +96,16 @@ module.exports = function BlastIterator(Blast, Collection) { return {done: true}; }); + /** + * Reset the iterator, go back to the beginning + * + * @author Jelle De Loec...
feat: add Iterator#reset, to go back to the beginning
skerit_protoblast
train
js
9b6f0f70ce8265f44a65265b0192d34c11b1a4b7
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -234,7 +234,7 @@ gulp.task('demo:deploy', ['demo'], function () { return gulp.src(path.join(config.tmp.demo, '/**/*')) .pipe(ghPages({ cacheDir: config.tmp.deployDemo, - remote...
refactor(project-name): updates the gulpfile fix #<I>
zalando_dress-code
train
js
1ffee54245276fea61d06a6a2ea197b1ab836c39
diff --git a/tests/config_test.py b/tests/config_test.py index <HASH>..<HASH> 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -1,11 +1,8 @@ # coding=utf-8 from ladybug.config import folders -import pytest - def test_config_init(): """Test the initialization of the config module and basic pro...
style(config_test): remove unused import This PR is mainly for testing the CLA set-up. Let's see if it works as expected.
ladybug-tools_ladybug
train
py
6a1bf2756be068fa031fdc952ee38d442027439a
diff --git a/bindings/angular1/directives/carousel.js b/bindings/angular1/directives/carousel.js index <HASH>..<HASH> 100755 --- a/bindings/angular1/directives/carousel.js +++ b/bindings/angular1/directives/carousel.js @@ -138,10 +138,6 @@ element = null; }); - setImmediate(function()...
fix(ons-carousel): Fix a size issue with navigator in angular.
OnsenUI_OnsenUI
train
js
ac23d79fe7e155506945666544abb7884388d7cd
diff --git a/framework/core/src/User/User.php b/framework/core/src/User/User.php index <HASH>..<HASH> 100644 --- a/framework/core/src/User/User.php +++ b/framework/core/src/User/User.php @@ -449,10 +449,10 @@ class User extends AbstractModel */ protected function getUnreadNotifications() { - stat...
fix: unread notifications are globally cached between users. (#<I>)
flarum_core
train
php
7c6e2a15fddf1b56b42a2ad1a181db01c6f928a4
diff --git a/hawtio-system/src/main/java/io/hawt/web/auth/AuthenticationConfiguration.java b/hawtio-system/src/main/java/io/hawt/web/auth/AuthenticationConfiguration.java index <HASH>..<HASH> 100644 --- a/hawtio-system/src/main/java/io/hawt/web/auth/AuthenticationConfiguration.java +++ b/hawtio-system/src/main/java/io/...
fix(hawtio-system): add '/fonts' to the list of unsecured paths and remove '/libs' fix #<I>
hawtio_hawtio
train
java
b094802a03406328699bffad6deeceb5bdb61777
diff --git a/server/artifacts/artifact_server.go b/server/artifacts/artifact_server.go index <HASH>..<HASH> 100644 --- a/server/artifacts/artifact_server.go +++ b/server/artifacts/artifact_server.go @@ -95,9 +95,12 @@ func (a *ArtifactServer) gateKeeping(r *http.Request) (context.Context, error) { if token == "" { ...
fix: Allow download of artifacs in server auth-mode. Fixes #<I> (#<I>)
argoproj_argo
train
go
a9d5094e59b6f0957bb8714653213592b40feedc
diff --git a/packages/icon/src/react/index.js b/packages/icon/src/react/index.js index <HASH>..<HASH> 100644 --- a/packages/icon/src/react/index.js +++ b/packages/icon/src/react/index.js @@ -62,14 +62,14 @@ const rmNonHtmlProps = props => { const Icon = props => { return ( <IconContainer {...rmNonHtmlProps(pro...
feat(icon): handle custom icon pass as a child Fixes #<I>
pluralsight_design-system
train
js
33f7ab9c2567bf5546446845e22c5f27e58ce376
diff --git a/src/style.js b/src/style.js index <HASH>..<HASH> 100644 --- a/src/style.js +++ b/src/style.js @@ -287,6 +287,9 @@ export default class Style { width: width + 'px' }); + // remove the body height, so that it resets to it's original + $.removeStyle(this.bodyScrollable, '...
fix: 🐛 Reset body height before setting the bodyStyle In case when there are very less number of rows, the height will adapt to a lower value. But in the next refresh the number of rows could increase so the body height should be reset to it's original value
frappe_datatable
train
js
d79c051f948c5be0e9a6528f5ddd8121f366e131
diff --git a/test/e2e/upgrade/service/service.go b/test/e2e/upgrade/service/service.go index <HASH>..<HASH> 100644 --- a/test/e2e/upgrade/service/service.go +++ b/test/e2e/upgrade/service/service.go @@ -49,7 +49,7 @@ func (t *UpgradeTest) Setup(f *framework.Framework) { infra, err := configClient.ConfigV1().Infrastru...
test: add vsphere to unsupported platforms for LB service
openshift_origin
train
go
972f44d32896aa3e8284f5e793c3f40dc0d62b20
diff --git a/lib/FrameManager.js b/lib/FrameManager.js index <HASH>..<HASH> 100644 --- a/lib/FrameManager.js +++ b/lib/FrameManager.js @@ -715,7 +715,7 @@ class WaitTask { } // Ignore timeouts in pageScript - we track timeouts ourselves. - if (!error && !(await success.jsonValue())) { + if (!error && ...
fix: avoid calling jsonValue from waitFor (#<I>) If the success value of `waitForFunction` was not serializable, checking whether it was truthy with `.jsonValue()` might fail. Now I check whether it was truthy inside the page. Fixes #<I>.
GoogleChrome_puppeteer
train
js,js
c645c060c4f381902c2005eefe5b3a7bfa63cdcc
diff --git a/lib/reporter.js b/lib/reporter.js index <HASH>..<HASH> 100644 --- a/lib/reporter.js +++ b/lib/reporter.js @@ -49,7 +49,12 @@ var createReporters = function(names, config, emitter, injector) { try { reporters.push(injector.createChild([locals], ['reporter:' + name]).get('reporter:' + name)); ...
fix(reporter): better errors when loading reporters
karma-runner_karma
train
js
d18f6a5ad72e10992deee972828a0e3584e967e9
diff --git a/clb/client_test.go b/clb/client_test.go index <HASH>..<HASH> 100644 --- a/clb/client_test.go +++ b/clb/client_test.go @@ -10,6 +10,26 @@ import ( var _ = fmt.Print // For debugging; delete when done. var _ = log.Print // For debugging; delete when done. +func Example() { + srvName := "foo.service.fligl...
style(tests): rearranging tests
benschw_srv-lb
train
go
080eb060faa54bb7b7fbef3d274bd30f7794253c
diff --git a/src/collapsible/collapsible.js b/src/collapsible/collapsible.js index <HASH>..<HASH> 100644 --- a/src/collapsible/collapsible.js +++ b/src/collapsible/collapsible.js @@ -1,5 +1,6 @@ import {customAttribute, bindable, bindingMode, inject} from 'aurelia-framework'; import { getBooleanFromAttributeValue } f...
refactor(collapsible): changed collapsible to set css classes
aurelia-ui-toolkits_aurelia-materialize-bridge
train
js
dd3a79eead4f01094c2c3003de717affc11fdc3c
diff --git a/src/util/Options.js b/src/util/Options.js index <HASH>..<HASH> 100644 --- a/src/util/Options.js +++ b/src/util/Options.js @@ -35,7 +35,7 @@ * (e.g. recommended shard count, shard count of the ShardingManager) * @property {CacheFactory} [makeCache] Function to create a cache. * You can use your own fu...
docs: typo in ClientOptions (#<I>)
discordjs_discord.js
train
js
32f24c4657638c16dc290e8327ea10844be2b825
diff --git a/src/ItemsCarousel/ItemsCarouselBase.js b/src/ItemsCarousel/ItemsCarouselBase.js index <HASH>..<HASH> 100644 --- a/src/ItemsCarousel/ItemsCarouselBase.js +++ b/src/ItemsCarousel/ItemsCarouselBase.js @@ -244,7 +244,10 @@ ItemsCarouselBase.propTypes = { isPlaceholderMode: PropTypes.bool.isRequired, // P...
fix: warning of wrong measureRef type for legacy refs
bitriddler_react-items-carousel
train
js
a90b0f0afd2ee7b1e86467b874f26ed1809af723
diff --git a/test/integration/read.js b/test/integration/read.js index <HASH>..<HASH> 100644 --- a/test/integration/read.js +++ b/test/integration/read.js @@ -1167,6 +1167,23 @@ module.exports = function (createFn, setup, dismantle) { done() }) }) + + it('GET /Customer/count 200 - ignore...
chore(test): sort arg on count query
florianholzapfel_express-restify-mongoose
train
js
65e864216f0732d9d907c3092eb4411d6a2e567e
diff --git a/test/instrumentation/modules/http/timeout-disabled.js b/test/instrumentation/modules/http/timeout-disabled.js index <HASH>..<HASH> 100644 --- a/test/instrumentation/modules/http/timeout-disabled.js +++ b/test/instrumentation/modules/http/timeout-disabled.js @@ -19,7 +19,7 @@ test('client-side timeout - cal...
test: increase timeouts to increase chance of tests passing
opbeat_opbeat-node
train
js
bda4654134adb7141d87ed4b1c25a78a79f70a61
diff --git a/packages/blueprint-gatekeeper/app/policies/gatekeeper/auth/bearer.js b/packages/blueprint-gatekeeper/app/policies/gatekeeper/auth/bearer.js index <HASH>..<HASH> 100644 --- a/packages/blueprint-gatekeeper/app/policies/gatekeeper/auth/bearer.js +++ b/packages/blueprint-gatekeeper/app/policies/gatekeeper/auth...
fix: token_expired should be <I>, not <I>
onehilltech_blueprint
train
js
4b49ca822338f191603c1887382b91a9be31cdb3
diff --git a/tests/telemetry.test.js b/tests/telemetry.test.js index <HASH>..<HASH> 100644 --- a/tests/telemetry.test.js +++ b/tests/telemetry.test.js @@ -49,7 +49,7 @@ test.serial('should track --telemetry-enable', async (t) => { test.serial('should send netlify-cli/<version> user-agent', async (t) => { await with...
test: fix a test that was failing locally (#<I>) Fixes #<I>
netlify_cli
train
js
d38d1b34373c50907e7c7673def8ba0ebc5a5427
diff --git a/src/http-client.js b/src/http-client.js index <HASH>..<HASH> 100644 --- a/src/http-client.js +++ b/src/http-client.js @@ -59,7 +59,7 @@ export class HttpClient { } else if (typeof config === 'function') { normalizedConfig = new HttpClientConfiguration(); let c = config(normalizedConfig);...
fix(http-client): correct type check
aurelia_fetch-client
train
js
bf5bc1ebce6fda1fdb12b909b27e59fb5a010f36
diff --git a/packages/cozy-konnector-libs/src/libs/categorization/localModel/parameters.js b/packages/cozy-konnector-libs/src/libs/categorization/localModel/parameters.js index <HASH>..<HASH> 100644 --- a/packages/cozy-konnector-libs/src/libs/categorization/localModel/parameters.js +++ b/packages/cozy-konnector-libs/sr...
fix: Use cozy-client method to query operations with manual category We used to query operations with manual category, through cozy-doctypes, which: - uses old cozy-client - uses deprecated and slow pagination skip Furthermore, the query was not using any index. We now use a partial index, which is much more efficien...
konnectors_libs
train
js
aa99fc3624a1d7969f9f6b2ca0ab8cb7157b2f57
diff --git a/anytemplate/engines/tests/base.py b/anytemplate/engines/tests/base.py index <HASH>..<HASH> 100644 --- a/anytemplate/engines/tests/base.py +++ b/anytemplate/engines/tests/base.py @@ -16,6 +16,7 @@ class Test(unittest.TestCase): def test_20_instance_methods(self): engine = TT.Engine() + ...
fix: check if instance is correctly created in .engines.tests.base
ssato_python-anytemplate
train
py
e2ed53c68837f3eb07e7c7a170220592178029b9
diff --git a/packages/date/src/Date.js b/packages/date/src/Date.js index <HASH>..<HASH> 100644 --- a/packages/date/src/Date.js +++ b/packages/date/src/Date.js @@ -75,9 +75,9 @@ const AvDate = ({ date.isValid() ? isoFormatted : '', false ); + setFieldTouched(name, true, false); if (date.isVa...
fix(date): setFieldTouched moved out of validation
Availity_availity-react
train
js
a366a787e0a07db649849fd7a250b266c8c77ae7
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -94,7 +94,8 @@ module.exports = function(config) { // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_WARN, ...
test: remove IE from karma
Availity_availity-angular
train
js
22988428f5bf9c68d6402bcc812a090f644d032a
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -55,7 +55,7 @@ describe('node-serialize', function () { }); it('should serialize a Document node', function () { - var node = document.implementation.createDocument('http://www.w3.org/1999/xhtml', 'h...
test: force doctype to `null`
webmodules_dom-serialize
train
js
ce80f432b1c2fb3476c291bad79d4f758346eb21
diff --git a/test/integration/setup.js b/test/integration/setup.js index <HASH>..<HASH> 100644 --- a/test/integration/setup.js +++ b/test/integration/setup.js @@ -1,3 +1,4 @@ +var _ = require('lodash') var async = require('async') var mongoose = require('mongoose') var Schema = mongoose.Schema @@ -74,7 +75,16 @@ mod...
chore(test): option to init with connecting
florianholzapfel_express-restify-mongoose
train
js
61d4a11761e8f38056e810e45bfe57a18d368668
diff --git a/lib/components/narrative/default/default-itinerary.js b/lib/components/narrative/default/default-itinerary.js index <HASH>..<HASH> 100644 --- a/lib/components/narrative/default/default-itinerary.js +++ b/lib/components/narrative/default/default-itinerary.js @@ -222,7 +222,7 @@ class DefaultItinerary extend...
refactor(default-itinerary): don't crash on missing bookingInfo
opentripplanner_otp-react-redux
train
js
53d076e0f12717095db5551c497c0ffdf4ba3342
diff --git a/lib/connection.js b/lib/connection.js index <HASH>..<HASH> 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -467,9 +467,10 @@ class Connection extends EventEmitter { // this.compressedSequenceId = 0; // this.sequenceId = 0; if (this.config.debug) { + const commandName = cmd.con...
fix(debug): remove usage of callee
sidorares_node-mysql2
train
js
160f7111834fef119f311366a64e7acc67d078cf
diff --git a/google-cloud-pubsub/lib/google/cloud/pubsub/subscriber/inventory.rb b/google-cloud-pubsub/lib/google/cloud/pubsub/subscriber/inventory.rb index <HASH>..<HASH> 100644 --- a/google-cloud-pubsub/lib/google/cloud/pubsub/subscriber/inventory.rb +++ b/google-cloud-pubsub/lib/google/cloud/pubsub/subscriber/invent...
fix(pubsub): Fix Subscriber Inventory bug Remove chaining mutation methods in Subscriber Inventory because the mutation methods returned nil instead of self when no change was made. [pr #<I>]
googleapis_google-cloud-ruby
train
rb
5096a2b4024e020aefade98a57ecfa222b84dbd4
diff --git a/test/setup.js b/test/setup.js index <HASH>..<HASH> 100644 --- a/test/setup.js +++ b/test/setup.js @@ -170,3 +170,9 @@ mock('spawnteract', { }); }, }); + +mock('fs', { + unlinkSync: function(){}, + unlink: function(){}, + existsSync: function(){}, +});
test: mock fs I noticed when running the tests that 'filename' (literally) was being created at the root while running tests. This forces our use of `fs` to be mocked within tests.
nteract_nteract
train
js
5b4db728ecfdaddfb93f1a2dd4830b058b6b45a7
diff --git a/src/components/elements/inputs/number-input.js b/src/components/elements/inputs/number-input.js index <HASH>..<HASH> 100644 --- a/src/components/elements/inputs/number-input.js +++ b/src/components/elements/inputs/number-input.js @@ -8,7 +8,7 @@ export default ({ className, errors, onChange, onCommit, prop...
fix: Fix bug which stopped users from submitting decimal values in number fields
cignium_hypermedia-client
train
js
c775ee9c0fb8bc1dedf391d39bbb55a2c4d5211e
diff --git a/memote/suite/tests/test_biomass.py b/memote/suite/tests/test_biomass.py index <HASH>..<HASH> 100644 --- a/memote/suite/tests/test_biomass.py +++ b/memote/suite/tests/test_biomass.py @@ -28,7 +28,6 @@ from __future__ import absolute_import, division import logging import pytest -import numpy as np from...
fix: fix assertion check (#<I>) * fix: provide more slack for biomass consistency check
opencobra_memote
train
py
c522c994cd162bc42d987e2ebb08f3d0a2b6f644
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -14,6 +14,7 @@ const { InvalidArgumentError, RequestAbortedError, ClientDestroyedError, + ClientClosedError, HeadersTimeoutError, SocketError, InformationalError, @@ -241,6 +242,14 @@ cla...
fix: add destroyed & closed check to enqueue
mcollina_undici
train
js
fb30c1e28c617f66b446195580670caeaa24e838
diff --git a/tests/Providers/RouteServiceProviderTest.php b/tests/Providers/RouteServiceProviderTest.php index <HASH>..<HASH> 100644 --- a/tests/Providers/RouteServiceProviderTest.php +++ b/tests/Providers/RouteServiceProviderTest.php @@ -50,10 +50,8 @@ class RouteServiceProviderTest extends TestCase $...
test: Make coverage to <I>%
CasperLaiTW_laravel-fb-messenger
train
php
5ac8ac0e6c7939ddd42fbaefd63c64f4ec2ee045
diff --git a/superset/views/redirects.py b/superset/views/redirects.py index <HASH>..<HASH> 100644 --- a/superset/views/redirects.py +++ b/superset/views/redirects.py @@ -66,7 +66,7 @@ class R(BaseSupersetView): # pylint: disable=invalid-name url = request.form.get("data") if not self._validate_url(u...
fix: don't send invalid URLs back to the user (#<I>) * fix: don't send bogus URLs back to the user * lint, remove f string
apache_incubator-superset
train
py
4d608dbb348c52b3f719f3631aae6008cafefcb5
diff --git a/dockertest.go b/dockertest.go index <HASH>..<HASH> 100644 --- a/dockertest.go +++ b/dockertest.go @@ -557,7 +557,7 @@ func (d *Pool) Retry(op func() error) error { bo.MaxElapsedTime = d.MaxWait if err := backoff.Retry(op, bo); err != nil { if bo.NextBackOff() == backoff.Stop { - return fmt.Errorf(...
fix: return original error from retry deadline (#<I>)
ory_dockertest
train
go