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
fc6bbea3750cb5517349c888c6d12a343a85cf37
diff --git a/tests/testing_utils.py b/tests/testing_utils.py index <HASH>..<HASH> 100644 --- a/tests/testing_utils.py +++ b/tests/testing_utils.py @@ -236,7 +236,8 @@ def initialize_environment_gui(gui_config=None, runtime_config=None): GUI_INITIALIZED = True -def shutdown_environment(config=True, gui_config=T...
fix(testing_utils): avoid patch for core tests
DLR-RM_RAFCON
train
py
e800ac380fec722d0cb98d9428c20fce83082204
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( author_email='ifedapoolarewaju@gmail.com', description='A Python client for the tus resumable upload protocol -> http://tus.io', long_description=(long_description), - packages=['tuscli...
fix: add storage packages to setup.py
tus_tus-py-client
train
py
444e017c05be6285670854f7b15892bf65ab3279
diff --git a/tests/functional/remove_node_test.go b/tests/functional/remove_node_test.go index <HASH>..<HASH> 100644 --- a/tests/functional/remove_node_test.go +++ b/tests/functional/remove_node_test.go @@ -169,7 +169,8 @@ func TestRemovePausedNode(t *testing.T) { if !assert.Equal(t, r.StatusCode, 200) { t.FailNow...
fix(remove_node_test): ensure cluster config is activated
etcd-io_etcd
train
go
b762bfd3bb8beeb342a145290b55a71229f6a98f
diff --git a/src/poetry/console/commands/init.py b/src/poetry/console/commands/init.py index <HASH>..<HASH> 100644 --- a/src/poetry/console/commands/init.py +++ b/src/poetry/console/commands/init.py @@ -418,7 +418,7 @@ You can specify a package in the following forms: return [ parse_dependency_spe...
refactor: comply with mypy `truthy-bool`
sdispater_poetry
train
py,py
01b7fb9aaf3180965f908e84b74c2a710fa1a635
diff --git a/bigquery/google/cloud/bigquery/job.py b/bigquery/google/cloud/bigquery/job.py index <HASH>..<HASH> 100644 --- a/bigquery/google/cloud/bigquery/job.py +++ b/bigquery/google/cloud/bigquery/job.py @@ -3073,7 +3073,7 @@ class QueryJob(_AsyncJob): else: timeout = server_timeout_wit...
docs(bigquery): typo fix (#<I>)
googleapis_google-cloud-python
train
py
1a3cb57f2a935dff80f6580d7d3903d86f049f0a
diff --git a/lib/pdftohtml.js b/lib/pdftohtml.js index <HASH>..<HASH> 100644 --- a/lib/pdftohtml.js +++ b/lib/pdftohtml.js @@ -68,7 +68,7 @@ function pdftohtml (filename, outfile, options) { error += data; if (self.options.progress && typeof self.options.progress === "function") { - ...
fix: #<I> split on buffer
fagbokforlaget_pdftohtmljs
train
js
9626a46f6fac0844f4d1bc7b3b867f245fc7cc18
diff --git a/src/lib/realtime.js b/src/lib/realtime.js index <HASH>..<HASH> 100644 --- a/src/lib/realtime.js +++ b/src/lib/realtime.js @@ -33,7 +33,7 @@ function subscribeWhenReady (doctype, socket) { } function getWebsocketProtocol () { - return window.location.protocol === 'https' ? 'wss' : 'ws' + return window...
fix: typo in websocket protocol detection :ambulance:
cozy_cozy-home
train
js
3ef4538f8d8e7fb640bcea0112a3b58f0973726c
diff --git a/lib/webpack.js b/lib/webpack.js index <HASH>..<HASH> 100644 --- a/lib/webpack.js +++ b/lib/webpack.js @@ -7,6 +7,7 @@ var MultiCompiler = require("./MultiCompiler"); var NodeEnvironmentPlugin = require("./node/NodeEnvironmentPlugin"); var WebpackOptionsApply = require("./WebpackOptionsApply"); var Webpa...
feat: validate webpack options against a schema
webpack_webpack
train
js
76badac1d44d6c1e436dfc02f4a9a6aebf94721f
diff --git a/cwltool/process.py b/cwltool/process.py index <HASH>..<HASH> 100644 --- a/cwltool/process.py +++ b/cwltool/process.py @@ -302,7 +302,7 @@ def relocateOutputs(outputObj, # type: Union[Dict[Text, Any],List[Di if action == "move": # do not move anything if we are trying to mo...
fix: properly detect if directory is contained in another
common-workflow-language_cwltool
train
py
f1a524a1ad86a13abff62d27cdd758e4e23a2ab9
diff --git a/lib/boot/parse/order-boot-sequence.js b/lib/boot/parse/order-boot-sequence.js index <HASH>..<HASH> 100644 --- a/lib/boot/parse/order-boot-sequence.js +++ b/lib/boot/parse/order-boot-sequence.js @@ -73,8 +73,8 @@ module.exports = function bootSequenceOrder (serviceComponents, messages) { function applyBoot...
refactor: Flipped Object.keys.forEach with a lookup to a for of Object.entries
wmfs_tymly-core
train
js
aeffb65fa498a78842fb2060cf8e9d0f03fa3024
diff --git a/src/interfaces.js b/src/interfaces.js index <HASH>..<HASH> 100644 --- a/src/interfaces.js +++ b/src/interfaces.js @@ -13,7 +13,7 @@ interface Interceptor { interface RequestInit { method?: string; - headers?: Headers; + headers?: Headers|Object; body?: Blob|BufferSource|FormData|URLSearchParam...
fix(request-init): adjust type annotation on headers to allow objects fixes #<I>
aurelia_fetch-client
train
js
022da0ca5d4c18c91b00334222b366ea21ac11f2
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -9,10 +9,12 @@ var smaps = require('gulp-sourcemaps'); var rename = require('gulp-rename'); var jasmine = require('gulp-jasmine'); +var BABEL_OPTS = {optional: ["runtime"]}; + gulp.task('babel', function...
chore(es6): transform es6 with optional: runtime This includes all necessary polyfills to use all supported es6 features
ds82_tiny-di
train
js
26043530b33b13fcca86db9969f7b4732edad188
diff --git a/packages/vuetify/test/unit/mixins/validatable.spec.js b/packages/vuetify/test/unit/mixins/validatable.spec.js index <HASH>..<HASH> 100644 --- a/packages/vuetify/test/unit/mixins/validatable.spec.js +++ b/packages/vuetify/test/unit/mixins/validatable.spec.js @@ -272,7 +272,7 @@ test('validatable.js', ({ mou...
test(validatable): change test process to avoid race condition
vuetifyjs_vuetify
train
js
ae848a70b14fdd996c2a7e3ef01c0442d9c355e7
diff --git a/src/lib/CollectStore.js b/src/lib/CollectStore.js index <HASH>..<HASH> 100644 --- a/src/lib/CollectStore.js +++ b/src/lib/CollectStore.js @@ -507,13 +507,6 @@ export default class CollectStore { const konnectorResult = this.konnectorResults.get(slug) - const betweenInstallationAndFirstResult = ...
fix: remove ambiguous condition for connection status :ambulance: Pre-installed konnectors were computed as running
cozy_cozy-home
train
js
bfa0b9acb4482cf4367469b5b7e03722ff413b7e
diff --git a/bench/array/reduceRight.js b/bench/array/reduceRight.js index <HASH>..<HASH> 100644 --- a/bench/array/reduceRight.js +++ b/bench/array/reduceRight.js @@ -9,8 +9,6 @@ module.exports = function (computeSuite, fileWriter, suiteOptions) { if (fileWriter) fileWriter.writeTableElement('Sum'); - conso...
fix(lib): Remove console.log and fix an operation
kb-dev_sanic.js
train
js
27b9c82c7c2f1133e12dddcab9c05b19213ab942
diff --git a/lib/util/parse-req.js b/lib/util/parse-req.js index <HASH>..<HASH> 100644 --- a/lib/util/parse-req.js +++ b/lib/util/parse-req.js @@ -1,7 +1,11 @@ var PassThrough = require('stream').PassThrough; var TIMEOUT = 36000; var MAX_BYTES = 1024 * 256; -var CRLF_BUF = Buffer.from ? Buffer.from('\r\n') : new Buf...
chore: Use Buffer.from() instead of new Buffer()
avwo_whistle
train
js
9f0a73e335530234931cbf7446676d781ef41890
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -9,7 +9,7 @@ module.exports = function createServePlaceholder (_options) { return function servePlaceholderMiddleware (req, res, next) { // Get url from req object - const { url } = req + const ...
fix: don't check ext on query params (fixes #<I>)
nuxt_serve-placeholder
train
js
6d37ebb4425391beb94d7ae330289655ff12f79f
diff --git a/src/testing/mocha.js b/src/testing/mocha.js index <HASH>..<HASH> 100644 --- a/src/testing/mocha.js +++ b/src/testing/mocha.js @@ -19,7 +19,7 @@ export default async function ({projectRoot}) { return { devDependencies: ['mocha', 'chai', 'sinon'], - scripts: {'test:unit:base': 'DEBUG=any mocha s...
fix(mocha-script): quoted the globbing to prevent shell expansion
travi_javascript-scaffolder
train
js,js
fda10026548169b507a2ccad3049bd3305c7978b
diff --git a/superset/common/query_context.py b/superset/common/query_context.py index <HASH>..<HASH> 100644 --- a/superset/common/query_context.py +++ b/superset/common/query_context.py @@ -206,16 +206,16 @@ class QueryContext: df=df if df is not None else None, query=...
fix: cache issue for api/v1/query (#<I>)
apache_incubator-superset
train
py
250c3ae3c1f025c092383e4661bbb386e89a3c23
diff --git a/src/structures/GuildChannel.js b/src/structures/GuildChannel.js index <HASH>..<HASH> 100644 --- a/src/structures/GuildChannel.js +++ b/src/structures/GuildChannel.js @@ -32,8 +32,6 @@ class GuildChannel extends Channel { * @type {Guild} */ this.guild = guild; - - this.parentID = null; ...
fix(GuildChannel): parentID shouldn't be set in the constructor (#<I>)
discordjs_discord.js
train
js
3be898797a8e9370274b7482f91ffee605119460
diff --git a/tests/test_remote.py b/tests/test_remote.py index <HASH>..<HASH> 100644 --- a/tests/test_remote.py +++ b/tests/test_remote.py @@ -1,4 +1,5 @@ from dvc.main import main +from dvc.command.remote import CmdRemoteAdd from tests.basic_env import TestDvc @@ -19,3 +20,17 @@ class TestRemote(TestDvc): ...
test: remote: add test for failed write
iterative_dvc
train
py
69f299807c24f7a3873d120077a9f98ee2716d3a
diff --git a/tests/index-spec.js b/tests/index-spec.js index <HASH>..<HASH> 100644 --- a/tests/index-spec.js +++ b/tests/index-spec.js @@ -4,3 +4,6 @@ import './helpers'; import './runs'; import './types'; import './wrappers'; + +// mock console warn (we don't need no education - from formly ;] ) +console.warn = fun...
refactor: mock console.warn for tests
formly-js_angular-formly-templates-material
train
js
3739fb5ff1e03dcb2dfba35a00c7ada108d891ea
diff --git a/test/unit/dfvalueconverter.spec.js b/test/unit/dfvalueconverter.spec.js index <HASH>..<HASH> 100644 --- a/test/unit/dfvalueconverter.spec.js +++ b/test/unit/dfvalueconverter.spec.js @@ -86,7 +86,7 @@ describe('dfvalueconverter tests', () => { it('should return formated string if ISO8601 date string valu...
test(df-vc): fixed tests to use UTC fixed breaking tests by setting the UTC TimeZone
aurelia_i18n
train
js
8ccfd6e07b3208568c495110c80990366637818e
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -72,6 +72,7 @@ module.exports = { ClientUser: require('./structures/ClientUser'), Collector: require('./structures/interfaces/Collector'), CommandInteraction: require('./structures/CommandInteraction')...
fix(CommandInteractionOptionResolver): Export CommandInteractionOptio… (#<I>) **Please describe the changes this PR makes and why it should be merged:** CommandInteractionOptionResolver is exported in the typings, but not in the index.js file **Status and versioning classification:** - Code changes have been tes...
discordjs_discord.js
train
js
75d55bf8a8b8c2751372b42b2e262f7f23e368fd
diff --git a/algoliasearch/index.py b/algoliasearch/index.py index <HASH>..<HASH> 100644 --- a/algoliasearch/index.py +++ b/algoliasearch/index.py @@ -551,7 +551,11 @@ class Index(object): params = {} if cursor: params = {'cursor': cursor} - return self._req(True, '/browse', 'G...
fix(browse): Ensure cursor is passed in the body Cursor can get very long and exceed the max url size, for that reason we always pass it in the body of the request.
algolia_algoliasearch-client-python
train
py,py
3e8355f5d5ce521c56d3fc11c8a5303b4d0a409f
diff --git a/src/interfaces.js b/src/interfaces.js index <HASH>..<HASH> 100644 --- a/src/interfaces.js +++ b/src/interfaces.js @@ -56,4 +56,12 @@ interface RouteConfig { * The document title to set when this route is active. */ title?: string; + + /** + * Arbitrary data to attach to the route. This can be us...
fix(interfaces): add settings property to route config interface fixes #<I>
aurelia_router
train
js
3cb3a01e429b5d4b0f82619e6d925e84282671ea
diff --git a/packages/mc-html-template/lib/load-headers.js b/packages/mc-html-template/lib/load-headers.js index <HASH>..<HASH> 100644 --- a/packages/mc-html-template/lib/load-headers.js +++ b/packages/mc-html-template/lib/load-headers.js @@ -72,6 +72,7 @@ module.exports = (env, options) => { // NOTE: trailing...
feat(load-helpers): add `mc-production-asia` (#<I>)
commercetools_merchant-center-application-kit
train
js
921f3c83ffcb075972091eebf0ad2d8552077185
diff --git a/lib/normalize/index.js b/lib/normalize/index.js index <HASH>..<HASH> 100644 --- a/lib/normalize/index.js +++ b/lib/normalize/index.js @@ -93,6 +93,12 @@ async function normalize (scenarioState, fixture) { delete fixture.headers['transfer-encoding'] } + // normalize link header if response is pag...
feat(normalization): URLs in link response header
octokit_fixtures
train
js
2243a839ccc9781a37c290e6c7d3e03bfb76b857
diff --git a/src/getStagedFiles.js b/src/getStagedFiles.js index <HASH>..<HASH> 100644 --- a/src/getStagedFiles.js +++ b/src/getStagedFiles.js @@ -4,7 +4,7 @@ const execGit = require('./execGit') module.exports = async function getStagedFiles(options) { try { - const lines = await execGit(['diff', '--staged', ...
fix: include renames when getting list of staged files
okonet_lint-staged
train
js
146a07e808d501d32052549c4b1eec75ee293ba2
diff --git a/tornado/test/runtests.py b/tornado/test/runtests.py index <HASH>..<HASH> 100644 --- a/tornado/test/runtests.py +++ b/tornado/test/runtests.py @@ -121,6 +121,10 @@ def main(): # Twisted 15.0.0 triggers some warnings on py3 with -bb. warnings.filterwarnings("ignore", category=BytesWarning, ...
test: Silence PendingDeprecationWarning on nightly python
tornadoweb_tornado
train
py
ed653a380e366698bd826c88b115f229343c52d3
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -109,9 +109,7 @@ module.exports = function(grunt) { ' "version": "<%= pkg.version %>",', ' "main": [', ' "angular-snap.js",', - ' "angular-snap.min.js",', - ...
chore: Don't list minified files under main in bower.json Closes jtrussell/angular-snap.js-bower#5
jtrussell_angular-snap.js
train
js
60876299abcbd9ddcf7ec1683395711f310348ec
diff --git a/system-test/integration_test.go b/system-test/integration_test.go index <HASH>..<HASH> 100644 --- a/system-test/integration_test.go +++ b/system-test/integration_test.go @@ -342,7 +342,7 @@ func TestAgentIntegration(t *testing.T) { timeoutCtx, cancel := context.WithTimeout(ctx, tc.timeout) defer ...
chore: switch to the proftest API that logs the VM output per test (#<I>)
googleapis_cloud-profiler-nodejs
train
go
6be12776349853455c4abd07c716b74dbd905977
diff --git a/rollup.config.js b/rollup.config.js index <HASH>..<HASH> 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -18,7 +18,7 @@ export default [{ ], plugins: [ copy({ - 'node_modules/leaflet/dist/images': 'dist/images', + //'node_modules/leaflet/dist/images': 'dist/images', ...
fix(build): remove copy of dist/images at every build, since when it fails (for a mysterious reason…), the JS is not built. Now that the dist/images are copied and committed, there is no need to copy them everytime, but only if they are changed in Leaflet.
ghybs_leaflet-defaulticon-compatibility
train
js
017b339584b45c6507b34647e432fd6e4634df06
diff --git a/webapps/camunda-webapp/webapp/src/main/webapp/assets/vendor/cabpmn/Renderer.js b/webapps/camunda-webapp/webapp/src/main/webapp/assets/vendor/cabpmn/Renderer.js index <HASH>..<HASH> 100644 --- a/webapps/camunda-webapp/webapp/src/main/webapp/assets/vendor/cabpmn/Renderer.js +++ b/webapps/camunda-webapp/webap...
fix(line-break): Support line breaks in labels related to CAM-<I>
camunda_camunda-bpm-platform
train
js
c9c2f3684b34806df4324487ee4f419fcf927f24
diff --git a/packages/zefir/server/build/webpack.js b/packages/zefir/server/build/webpack.js index <HASH>..<HASH> 100644 --- a/packages/zefir/server/build/webpack.js +++ b/packages/zefir/server/build/webpack.js @@ -112,7 +112,11 @@ export default async function createCompiler (dir, {dev = false, quiet = false, ...
fix: production build - missing static directory
eyedea-io_zefir
train
js
66d4fbbed5b0f30b0ef582106f170a030bf2fcf1
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -22,6 +22,7 @@ export function AggregateError(message: string, innerError?: Error, skipIfAlread interface Feature { shadowDOM: boolean; + scopedCSS: boolean; htmlTemplateElement: boolean; objectObs...
feat(all): add scopedCSS and activeElement
aurelia_pal
train
js
35369cd19115f6a950b40ec60f8a66d820e4c5ef
diff --git a/api/src/main/java/io/minio/MinioClient.java b/api/src/main/java/io/minio/MinioClient.java index <HASH>..<HASH> 100755 --- a/api/src/main/java/io/minio/MinioClient.java +++ b/api/src/main/java/io/minio/MinioClient.java @@ -199,7 +199,7 @@ public class MinioClient { private String userAgent = DEFAULT_US...
fix: do not initialize httpClient in MinioClient class level. (#<I>) Previously httpClient was initialized at class level which causes error with custom PKI implementation. In this situation any java program using MinioClient (import io.minio.MinioClient;) would cause failure. This patch fixes the issue by initi...
minio_minio-java
train
java
07e8f3a18d476744ee6b10f26f9ece3a041be5ac
diff --git a/tests/Keboola/GenericExtractor/Authentication/LoginTest.php b/tests/Keboola/GenericExtractor/Authentication/LoginTest.php index <HASH>..<HASH> 100644 --- a/tests/Keboola/GenericExtractor/Authentication/LoginTest.php +++ b/tests/Keboola/GenericExtractor/Authentication/LoginTest.php @@ -70,8 +70,8 @@ class L...
fix: Properly test both requests in LoginTest
keboola_generic-extractor
train
php
409af66003b45b7bcdcc929880b460349dbe2d09
diff --git a/src/create-http-client.js b/src/create-http-client.js index <HASH>..<HASH> 100644 --- a/src/create-http-client.js +++ b/src/create-http-client.js @@ -27,12 +27,13 @@ export default function createHttpClient (axios, httpClientParams) { } headers = headers || {} headers['Authorization'] = 'Bearer ' ...
fix: Set accept-encoding only for node
contentful_contentful-sdk-core
train
js
2cf0dc2cb215bcea3576fd02ab3265fff24d20b9
diff --git a/pkg/middleware/validate_host.go b/pkg/middleware/validate_host.go index <HASH>..<HASH> 100644 --- a/pkg/middleware/validate_host.go +++ b/pkg/middleware/validate_host.go @@ -3,8 +3,8 @@ package middleware import ( "strings" - "gopkg.in/macaron.v1" "github.com/grafana/grafana/pkg/setting" + "gopkg.in...
fix(gofmt): fixed non formated go file
grafana_grafana
train
go
1e8c17b3da252cef550620d3e12da06e89d44212
diff --git a/builder/bin/generate-buildhook.go b/builder/bin/generate-buildhook.go index <HASH>..<HASH> 100644 --- a/builder/bin/generate-buildhook.go +++ b/builder/bin/generate-buildhook.go @@ -4,7 +4,6 @@ import ( "encoding/json" "fmt" "os" - "strconv" "github.com/deis/deis/builder" ) @@ -29,8 +28,10 @@ fu...
fix(builder): send nil to controller, not 'False'
deis_deis
train
go,go
b429d3f217b6b3de8bab14ef2478840a3eda6e82
diff --git a/packages/vue-remark/lib/codegen.js b/packages/vue-remark/lib/codegen.js index <HASH>..<HASH> 100644 --- a/packages/vue-remark/lib/codegen.js +++ b/packages/vue-remark/lib/codegen.js @@ -24,12 +24,15 @@ exports.genImportBlock = function (statements, file) { const identifiers = {} traverse(ast, { - ...
fix(vue-remark): support import as syntax
gridsome_gridsome
train
js
f96b30b1273527d1db706f3d31031b868e6aec1f
diff --git a/src/Connect.js b/src/Connect.js index <HASH>..<HASH> 100644 --- a/src/Connect.js +++ b/src/Connect.js @@ -438,18 +438,9 @@ class Connect { * and localStorage. Rebuild this.credentials with a new app-instance identity */ reset() { - this.setState({ - did: null, - mnid: null, - ...
refactor: call this.logout() in Connect.reset() to avoid duplicated code
uport-project_uport-connect
train
js
de8e1d9b81b625598444bb6cc6fc7c94ac24eff9
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -94,7 +94,7 @@ function runMochaSimply() { .on('error', gutil.log); } -gulp.task('webserver', function() { +gulp.task('serve', function() { gulp.src(__dirname) .pipe(webserver({ ...
chore(gulpfile): rename webserver task to serve
power-assert-js_espower
train
js
1765f0f349c4af7da18f4178767c7ecc0e8542f5
diff --git a/lib/importers/tumblr.js b/lib/importers/tumblr.js index <HASH>..<HASH> 100644 --- a/lib/importers/tumblr.js +++ b/lib/importers/tumblr.js @@ -30,6 +30,9 @@ module.exports = async function tumblrImport(fileContents) { title = post["quote-text"][0]; content = post["quote-text"][0]; ...
feat: Ability to import `conversation` type in tumblr
empress_empress-blog
train
js
a6c06609123a9f4cba1a8605b9c849e4acd69809
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index <HASH>..<HASH> 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -30,7 +30,7 @@ from gitlab.exceptions import * # noqa from gitlab import utils # noqa __title__ = "python-gitlab" -__version__ = "2.0.1" +__version__ = "2.1.0" __author__ = "Gauva...
chore: bump to <I> There are a few more features in there
python-gitlab_python-gitlab
train
py
bc1aa3755e1cb5f0e31469894c96aa3698d53b95
diff --git a/lib/cmap/connection.js b/lib/cmap/connection.js index <HASH>..<HASH> 100644 --- a/lib/cmap/connection.js +++ b/lib/cmap/connection.js @@ -282,6 +282,7 @@ function write(command, options, callback) { session: options.session, fullResult: typeof options.fullResult === 'boolean' ? options.fullResult...
refactor: track where documents are returned in server response
mongodb_node-mongodb-native
train
js
36326b279fcb4aa39a2d7f6b6c246f98605482da
diff --git a/src/loader.js b/src/loader.js index <HASH>..<HASH> 100644 --- a/src/loader.js +++ b/src/loader.js @@ -34,6 +34,8 @@ module.exports = function loader(content: string, inputSourceMap: ?Object) { // Another option is to read the webpack.config.js, but it won't work for programmatic usage // This API...
fix: use only aliases from webpack options webpack's default resolution behavior is to load the module field/browser specific code. we can't execute es modules without transpiling or execute browser code in node. so for now only support aliases
callstack_linaria
train
js
00acc50514b1782dc3c91a62d7214b2b6e9c022f
diff --git a/lib/groups/config.js b/lib/groups/config.js index <HASH>..<HASH> 100644 --- a/lib/groups/config.js +++ b/lib/groups/config.js @@ -26,7 +26,7 @@ class ConfigGroup extends GroupHelper { getConfigExtension(configPath) { for (let i = this.extensions.length - 1; i >= 0; i--) { const t...
feat: refactor groups-config minor tweak
webpack_webpack-cli
train
js
71089b08022d09c6a0fa20b5f0c770b5ef35ab07
diff --git a/lib/Downloader.js b/lib/Downloader.js index <HASH>..<HASH> 100644 --- a/lib/Downloader.js +++ b/lib/Downloader.js @@ -272,7 +272,12 @@ function httpRequest(url, method, response) { } const driver = options.protocol === 'https:' ? 'https' : 'http'; - const request = require(driver).request(options,...
feat: teach Downloader to respect redirects (#<I>) This patch adds support for redirects to downloader. Fixes #<I>
GoogleChrome_puppeteer
train
js
bb57fbaf1cc950fc17c01e703d5977263ec31b05
diff --git a/packages/docs/stories/feedback.stories.js b/packages/docs/stories/feedback.stories.js index <HASH>..<HASH> 100644 --- a/packages/docs/stories/feedback.stories.js +++ b/packages/docs/stories/feedback.stories.js @@ -26,7 +26,7 @@ storiesOf('Actions|Feedback', module) ? [ { label: 'T...
fix(docs): fixed typo in resources
Availity_availity-react
train
js
ec44f3c78bdc7b0089efb541f6d3d55d16dcf495
diff --git a/webpack.config.common.js b/webpack.config.common.js index <HASH>..<HASH> 100644 --- a/webpack.config.common.js +++ b/webpack.config.common.js @@ -7,7 +7,6 @@ const ExtractTextPlugin = require('extract-text-webpack-plugin') const root = path.join(__dirname) const demo = path.join(root + '/demo/') -const...
fix(build): Fix CSS extract plugin (close #<I>)
matsp_material-components-vue
train
js
0970ac026d4bf09867e233102e7f50a515bcb119
diff --git a/app/lib/webpack/pwa/index.js b/app/lib/webpack/pwa/index.js index <HASH>..<HASH> 100644 --- a/app/lib/webpack/pwa/index.js +++ b/app/lib/webpack/pwa/index.js @@ -36,7 +36,7 @@ module.exports = function (chain, cfg) { if (cfg.ctx.mode.ssr) { opts.exclude = opts.exclude || [] - opts.exclude.push...
fix(app): correctly exclude client manifest from web service cache when on SSR + PWA
quasarframework_quasar
train
js
d3ce66c28a65682d4076b39f853b6a8e12cfa5aa
diff --git a/jobs/github-event/marketplace_purchase/changed.js b/jobs/github-event/marketplace_purchase/changed.js index <HASH>..<HASH> 100644 --- a/jobs/github-event/marketplace_purchase/changed.js +++ b/jobs/github-event/marketplace_purchase/changed.js @@ -20,7 +20,7 @@ module.exports = async function ({ marketplace_...
refactor(marketplace-purchase-changed): better error log message
greenkeeperio_greenkeeper
train
js
5ec2e90b531f64cd1e78b3d6bf38aacaab8f6578
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -127,6 +127,6 @@ export const REQUESTS_IN_FLIGHT_LOADER_DOM_ID = 'loader-for-requests-in-flight'; export const GRAPHQL_TARGETS = { MERCHANT_CENTER_BACKEND: 'mc', COMMERCETOOLS_PLATFORM: 'ctp', - DashboardService: 'dash...
fix(dashboard): graphql target constant name
commercetools_merchant-center-application-kit
train
js
733254a99320d8c2f964d799ac4ec29737867faa
diff --git a/semantic_release/history/__init__.py b/semantic_release/history/__init__.py index <HASH>..<HASH> 100644 --- a/semantic_release/history/__init__.py +++ b/semantic_release/history/__init__.py @@ -290,7 +290,7 @@ def get_new_version( not current_version_info.prerelease and current_version_in...
fix: add text for empty ValueError (#<I>)
relekang_python-semantic-release
train
py
8e9e0af17dd827f1b1ed92834d8323b7c41f9c50
diff --git a/src/form/index.js b/src/form/index.js index <HASH>..<HASH> 100644 --- a/src/form/index.js +++ b/src/form/index.js @@ -67,6 +67,13 @@ export default createComponent({ return this.validateFirst ? this.validateSeq() : this.validateAll(); }, + // @exposed-api + resetValidation() { + th...
feat(Form): add resetValidation method
youzan_vant
train
js
19f5e5b11658732466a2f14c6d6f1aa3a78293a1
diff --git a/lib/stream.js b/lib/stream.js index <HASH>..<HASH> 100644 --- a/lib/stream.js +++ b/lib/stream.js @@ -12,6 +12,7 @@ function ReadableStream(options, cursor) { this._recursion = 0; this._maxRecursion = 1000; // Hardcoded this._highWaterMark = options.highWaterMark; + this._closed = false; Rea...
refactor(stream): track if stream is manually closed
mbroadst_rethunk
train
js
6847298f736575e86be2b0c51dda1899b2fce5ad
diff --git a/packages/bonde-admin-canary/src/scenes/Logged/scenes/Home/components/TableCardGadget.js b/packages/bonde-admin-canary/src/scenes/Logged/scenes/Home/components/TableCardGadget.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin-canary/src/scenes/Logged/scenes/Home/components/TableCardGadget.js +++ b/p...
chore(admin-canary): remove layout absolute for pagination on Table
nossas_bonde-client
train
js
e4ee0a39eaffc2b64030856c894a1c5e66270a07
diff --git a/lib/classes/config-schema-handler/resolve-ajv-validate.js b/lib/classes/config-schema-handler/resolve-ajv-validate.js index <HASH>..<HASH> 100644 --- a/lib/classes/config-schema-handler/resolve-ajv-validate.js +++ b/lib/classes/config-schema-handler/resolve-ajv-validate.js @@ -5,6 +5,7 @@ const objectHash ...
chore: Add log statements for ajv validation debugging
serverless_serverless
train
js
559d07562785e98125356842eec6d3c05c9666c5
diff --git a/cmd/peer-rest-server.go b/cmd/peer-rest-server.go index <HASH>..<HASH> 100644 --- a/cmd/peer-rest-server.go +++ b/cmd/peer-rest-server.go @@ -129,8 +129,8 @@ func (s *peerRESTServer) LoadPolicyMappingHandler(w http.ResponseWriter, r *http s.writeErrorResponse(w, errors.New("user-or-group is missing")) ...
fix: properly send group unset policy (#<I>) In distributed setups `mc admin group unset` was not correctly working due to incorrect handling of query parameters between peers.
minio_minio
train
go
4c8b1db6d2aee4fb36db4815e544eada69321c81
diff --git a/storage/storagetest/pool_suite.go b/storage/storagetest/pool_suite.go index <HASH>..<HASH> 100644 --- a/storage/storagetest/pool_suite.go +++ b/storage/storagetest/pool_suite.go @@ -21,6 +21,7 @@ type PoolSuite struct { func (s *PoolSuite) TestFindAll(c *check.C) { conn, err := db.Conn() c.Assert(err,...
fix(pool): close connection to mongodb
tsuru_tsuru
train
go
795cbafef835b448b947b7da200f4c2911d1a2f4
diff --git a/plugins/ngHint/spec/failureConfig.js b/plugins/ngHint/spec/failureConfig.js index <HASH>..<HASH> 100644 --- a/plugins/ngHint/spec/failureConfig.js +++ b/plugins/ngHint/spec/failureConfig.js @@ -1,4 +1,4 @@ -var env = require('./environment.js'); +var env = require('../../../spec/environment.js'); export...
chore(tests): fix environment paths for ngHint tests
angular_protractor
train
js,js
7c0c490cccac6a58eb0c3225813eb9414fa197d7
diff --git a/src/Popover.js b/src/Popover.js index <HASH>..<HASH> 100644 --- a/src/Popover.js +++ b/src/Popover.js @@ -26,23 +26,7 @@ const propTypes = { * * > This is generally provided by the `Overlay` component positioning the popover */ - placement: PropTypes.oneOf([ - 'auto-start', - 'auto', - ...
fix: Popover placement prop-types to correct list of props Previously, it was believed that the Popover.js props is the native behavior of the Popover bootstrap upstream component. However, the prop-types of the `placement` props should only be of types: - auto - top - bottom - left - right as per the bootstrap upstre...
react-bootstrap_react-bootstrap
train
js
7170280401fd777d28bbcbe6c57eac7143f2011c
diff --git a/plugins/inputs/mesos/mesos.go b/plugins/inputs/mesos/mesos.go index <HASH>..<HASH> 100644 --- a/plugins/inputs/mesos/mesos.go +++ b/plugins/inputs/mesos/mesos.go @@ -12,8 +12,8 @@ import ( "sync" "github.com/influxdata/telegraf" - "github.com/influxdata/telegraf/internal" "github.com/influxdata/tel...
fix(import): Json parser lives outside internal * Fixed import for JSONFlattener{} it's now in parsers, broke after rebasing.
influxdata_telegraf
train
go
f0802233235ce19c492ed5bfbe5120e21b878e8e
diff --git a/src/Modules/CleanUpModule.php b/src/Modules/CleanUpModule.php index <HASH>..<HASH> 100644 --- a/src/Modules/CleanUpModule.php +++ b/src/Modules/CleanUpModule.php @@ -183,6 +183,7 @@ class CleanUpModule extends AbstractModule protected function disableExtraRss() { add_filter('feed_links_s...
fix(module-cleanup): re-add disabling extra RSS feeds
roots_soil
train
php
1f4f26cdc688b8aa51f58c7d29310c402aa12e5b
diff --git a/src/misc/camera.js b/src/misc/camera.js index <HASH>..<HASH> 100644 --- a/src/misc/camera.js +++ b/src/misc/camera.js @@ -1,3 +1,4 @@ +import { StreamApiNotSupportedError } from './errors.js' import { imageDataFromVideo } from './image-data.js' import { hasFired } from './promisify.js' @@ -22,7 +23,7 @...
feat: named error when Stream API not supported
gruhn_vue-qrcode-reader
train
js,js
2d74913d5602906256d3e07c2e47974b76c7fee6
diff --git a/lib/JSONAPIMongoParser.js b/lib/JSONAPIMongoParser.js index <HASH>..<HASH> 100644 --- a/lib/JSONAPIMongoParser.js +++ b/lib/JSONAPIMongoParser.js @@ -19,11 +19,11 @@ module.exports = class JSONAPIMongoParser { } fields.forEach(field => select[field] = 1); - } - // Always sel...
fix: always select relationships only for primary type
danivek_json-api-mongo-parser
train
js
fac731f2375a2952bf0e731d60c11cb187cecfee
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -373,7 +373,7 @@ function compress (params) { if (this.hasHeader('Vary')) { const varyHeader = Array.isArray(this.getHeader('Vary')) ? this.getHeader('Vary') : [this.getHeader('Vary')] - if (!varyHeader.some...
fix: use 'include' instead of 'some' (#<I>)
fastify_fastify-compress
train
js
56519228e8c28e3529b95ab06eddc110dfda1438
diff --git a/src/stepper/index.js b/src/stepper/index.js index <HASH>..<HASH> 100644 --- a/src/stepper/index.js +++ b/src/stepper/index.js @@ -273,7 +273,9 @@ export default createComponent({ render() { const createListeners = (type) => ({ on: { - click: () => { + click: (e) => { + ...
fix(Stepper): double tap to scroll in safari (#<I>) * fix(Stepper): double tap to scroll in safari * Update index.js
youzan_vant
train
js
d1f79e3d347db57aa23a8f65de372106bb87b673
diff --git a/examples/official-storybook/stories/app-acceptance.stories.js b/examples/official-storybook/stories/app-acceptance.stories.js index <HASH>..<HASH> 100644 --- a/examples/official-storybook/stories/app-acceptance.stories.js +++ b/examples/official-storybook/stories/app-acceptance.stories.js @@ -25,6 +25,7 @@...
fix: Added preact reference in official storybook
storybooks_storybook
train
js
c7dec28513050d5e31374208d1f41f72d2f57e87
diff --git a/lib/operations/mongo_client_ops.js b/lib/operations/mongo_client_ops.js index <HASH>..<HASH> 100644 --- a/lib/operations/mongo_client_ops.js +++ b/lib/operations/mongo_client_ops.js @@ -560,6 +560,10 @@ function transformUrlOptions(_object) { object.auth = auth; object.user = auth.username; ...
fix(auth): remember to default to admin database Fixes NODE-<I>
mongodb_node-mongodb-native
train
js
ade9b5539c426263520790fdc92eac8e16137c31
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -6,6 +6,9 @@ import './public-path'; export { default } from './components/application-shell'; export { default as Avatar } from './components/avatar'; export { + default as FirstPaintMeasurement, +} from '...
refactor(app-shell): export FirstPaintMeasurement
commercetools_merchant-center-application-kit
train
js
f406f4aee220b3b85474219b3a4bf0397e914f48
diff --git a/system/CLI/CLI.php b/system/CLI/CLI.php index <HASH>..<HASH> 100644 --- a/system/CLI/CLI.php +++ b/system/CLI/CLI.php @@ -497,9 +497,7 @@ class CLI // No colored string found. Invalid strings with no `\033[0;??`. if ($coloredStrings === []) { - $newText .= self::g...
refactor: vendor/bin/rector process
codeigniter4_CodeIgniter4
train
php
a12000a3d9a4986ceeeda82b70142f4b1b167282
diff --git a/src/Grid/Displayers/QRCode.php b/src/Grid/Displayers/QRCode.php index <HASH>..<HASH> 100644 --- a/src/Grid/Displayers/QRCode.php +++ b/src/Grid/Displayers/QRCode.php @@ -14,6 +14,7 @@ class QRCode extends AbstractDisplayer $script = <<<'SCRIPT' $('.grid-column-qrcode').popover({ html: true, ...
fix: qrcode popover not visible in div with overflow hidden
z-song_laravel-admin
train
php
83ed2f5a62725ea47fb3e5be7cc4df3a0f19d784
diff --git a/webpack/webpack.config.base.js b/webpack/webpack.config.base.js index <HASH>..<HASH> 100644 --- a/webpack/webpack.config.base.js +++ b/webpack/webpack.config.base.js @@ -10,8 +10,6 @@ module.exports = merge({ entry: './index.js', output: { filename: 'bundle.js', - library: 'ciscospark', - ...
chore(webpack): resolve rebase error
webex_spark-js-sdk
train
js
5a2da444ea5f896f56cf03e509631d2df548457c
diff --git a/scripts/serverless.js b/scripts/serverless.js index <HASH>..<HASH> 100755 --- a/scripts/serverless.js +++ b/scripts/serverless.js @@ -95,6 +95,14 @@ const processSpanPromise = (async () => { await (async () => { if (_.get(configuration.provider, 'variableSyntax')) { if (isH...
feat(Variables): Disallow `provider.variableSyntax` with new resolver
serverless_serverless
train
js
ee419d97a6bff1588cb98e38d8a8156303fedd4b
diff --git a/lib/util/data-server.js b/lib/util/data-server.js index <HASH>..<HASH> 100644 --- a/lib/util/data-server.js +++ b/lib/util/data-server.js @@ -3,6 +3,7 @@ var net = require('net'); var util = require('./index'); var logger = require('./logger'); var config = require('../config'); +var Buffer = require('s...
refactor: use Buffer.from instead of new Buffer
avwo_whistle
train
js
80a9c376bdbc1836c79c1981abf36e16b82ba4fe
diff --git a/packages/voronoi/stories/voronoi.stories.js b/packages/voronoi/stories/voronoi.stories.js index <HASH>..<HASH> 100644 --- a/packages/voronoi/stories/voronoi.stories.js +++ b/packages/voronoi/stories/voronoi.stories.js @@ -132,10 +132,10 @@ const Layer = ({ data, width, height, voronoi, delaunay }) => { ...
fix(voronoi): length undefined in production (#<I>)
plouc_nivo
train
js
e9a5b192238e029e2023d8f5237eb0447e6624f2
diff --git a/script/run-clang-format.py b/script/run-clang-format.py index <HASH>..<HASH> 100644 --- a/script/run-clang-format.py +++ b/script/run-clang-format.py @@ -281,6 +281,9 @@ def main(): njobs = multiprocessing.cpu_count() + 1 njobs = min(len(files), njobs) + patch_file = tempfile.NamedTempor...
feat: convenience command to apply all formatter patches (#<I>) * feat: convenience to apply all formatter patches run-clang-format.py can create multiple patchfiles. This change prints a command that can be pasted into a shell to apply all of them together. * feat: put all generated style diffs in one file ...
electron_electron
train
py
5115bd356309a694f74b04b5fb3004188a6f0a4e
diff --git a/lib/plugins/load-plugin.js b/lib/plugins/load-plugin.js index <HASH>..<HASH> 100644 --- a/lib/plugins/load-plugin.js +++ b/lib/plugins/load-plugin.js @@ -2148,7 +2148,12 @@ module.exports = async function (options, callback) { } else if (opts) { rawFrame = opts.rawFrame; ...
refactor: handle websocket response
avwo_whistle
train
js
269cfdc20dcb56de17e85ca6c0331804c0c2a761
diff --git a/generators/deployment/index.js b/generators/deployment/index.js index <HASH>..<HASH> 100644 --- a/generators/deployment/index.js +++ b/generators/deployment/index.js @@ -105,7 +105,7 @@ module.exports = class extends Generator { _configureNode() { this.manifestConfig.buildpack = 'sdk-for-nodejs'; t...
fix(CF): bump memory to <I>M
ibm-developer_generator-ibm-cloud-enablement
train
js
d61985abfb788363e823c286df492e406c36a832
diff --git a/packages/errors/src/react/not-found-error-page.js b/packages/errors/src/react/not-found-error-page.js index <HASH>..<HASH> 100644 --- a/packages/errors/src/react/not-found-error-page.js +++ b/packages/errors/src/react/not-found-error-page.js @@ -12,7 +12,7 @@ const NotFoundErrorPage = props => ( /> ) ...
fix(errors): make proptypes accurate
pluralsight_design-system
train
js,js
8aeb9a2dba8c2b0d7aeaec165a34484dc3406ae5
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -35,7 +35,7 @@ function PipeStream(options) { this._pipeError = (options && options.pipeError) !== false; this._options = util._extend({ objectMode: true, - highWaterMark: 4 + highWaterMark: 1 ...
refactor: set default highWaterMark = 1
avwo_pipestream
train
js,js
121baa4864732df6ea6743a029300681d1b2848d
diff --git a/source/rafcon/gui/utils/dialog.py b/source/rafcon/gui/utils/dialog.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/utils/dialog.py +++ b/source/rafcon/gui/utils/dialog.py @@ -266,7 +266,7 @@ class RAFCONCheckBoxTableDialog(RAFCONButtonDialog): super(RAFCONCheckBoxTableDialog, self).__init...
fix(dialog): Replace deprecated parent by transient_for
DLR-RM_RAFCON
train
py
ca584cf9daee43188561cf259a2aac561b12b38d
diff --git a/src/components/Select/Select.js b/src/components/Select/Select.js index <HASH>..<HASH> 100644 --- a/src/components/Select/Select.js +++ b/src/components/Select/Select.js @@ -36,6 +36,9 @@ const Select = ({ return ( <div className="bx--form-item"> <div className={selectClasses}> + <lab...
fix(Select): Moves the label before the select list for better accessibility, resolves #<I>. (#<I>)
carbon-design-system_carbon-components-react
train
js
44b83129981ef5fef760ca0a65e56a1e8e5ff9c0
diff --git a/src/AccordionItemTitle/accordion-item-title.js b/src/AccordionItemTitle/accordion-item-title.js index <HASH>..<HASH> 100644 --- a/src/AccordionItemTitle/accordion-item-title.js +++ b/src/AccordionItemTitle/accordion-item-title.js @@ -39,6 +39,7 @@ class AccordionItemTitle extends Component< handleKe...
fix: prevent unwanted scroll when spacebar is pressed on accordion-item-title (closes #<I>)
springload_react-accessible-accordion
train
js
7de93ff82bc716c81cd810172b7842cb02d176f7
diff --git a/sentry-android-core/src/main/java/io/sentry/android/core/SentryAndroidOptions.java b/sentry-android-core/src/main/java/io/sentry/android/core/SentryAndroidOptions.java index <HASH>..<HASH> 100644 --- a/sentry-android-core/src/main/java/io/sentry/android/core/SentryAndroidOptions.java +++ b/sentry-android-c...
docs: Fix typo in SentryAndroidOptions (#<I>)
getsentry_sentry-java
train
java
6bba640e570e2d565b1cce061991809cd40565fe
diff --git a/src/lib/templates.js b/src/lib/templates.js index <HASH>..<HASH> 100644 --- a/src/lib/templates.js +++ b/src/lib/templates.js @@ -9,7 +9,13 @@ let templates = { {{#isSubCategoryHeader}}${suggestionPrefix}__secondary{{/isSubCategoryHeader}} {{#isSimpleLayout}}suggestion-layout-simple{{/isSimpleLay...
feat(dom): better handling of simple design
algolia_docsearch
train
js
55f1b963d78bbb7dd2f3cee45f79a3cc50bcaf6e
diff --git a/lib/crawler.js b/lib/crawler.js index <HASH>..<HASH> 100644 --- a/lib/crawler.js +++ b/lib/crawler.js @@ -19,7 +19,7 @@ const casReg = /<tr class='.*?'><td><a href=.*?>(.*?)<\/a><\/td><td><a href=.*?> const vReg = /<tr class='.*?'><td>(.*?)<\/td><td>.*?<\/td><td>(.*?)<\/td><\/tr>/g const host = 'www.st...
refactor: update latest data source host url
modood_Administrative-divisions-of-China
train
js
9dfda6a76e17d51fb0be0e7512415adc2365e96e
diff --git a/routes/admin/authenticated/sidebar/templates-create/page.connected.js b/routes/admin/authenticated/sidebar/templates-create/page.connected.js index <HASH>..<HASH> 100644 --- a/routes/admin/authenticated/sidebar/templates-create/page.connected.js +++ b/routes/admin/authenticated/sidebar/templates-create/pag...
chore(templates): add validate to required field #<I>
nossas_bonde-client
train
js
9e79d70060bccaf7c40b0ffffb6548cb94813c3d
diff --git a/lib/routes/admin-api/feature-schema.js b/lib/routes/admin-api/feature-schema.js index <HASH>..<HASH> 100644 --- a/lib/routes/admin-api/feature-schema.js +++ b/lib/routes/admin-api/feature-schema.js @@ -25,7 +25,7 @@ const variantsSchema = joi.object().keys({ weight: joi .number() .mi...
fix: variant weights can be up to <I>
Unleash_unleash
train
js
5df96a290e3e5be96deaae2ff34857bade70afae
diff --git a/sentry_sdk/utils.py b/sentry_sdk/utils.py index <HASH>..<HASH> 100644 --- a/sentry_sdk/utils.py +++ b/sentry_sdk/utils.py @@ -569,6 +569,9 @@ def exceptions_from_error_tuple( exc_type, exc_value, tb, client_options, mechanism ) ) + + rv.reverse() + return rv ...
fix: Send chained exceptions in the correct order
getsentry_sentry-python
train
py,py
ff509d022ac7b8ce02f99f1f5085917d01ca59e3
diff --git a/spec/features/components/expander_spec.rb b/spec/features/components/expander_spec.rb index <HASH>..<HASH> 100644 --- a/spec/features/components/expander_spec.rb +++ b/spec/features/components/expander_spec.rb @@ -2,7 +2,7 @@ require_relative '../spec_helper' feature 'React Expander', js: true do sce...
chore(specs): Fix react rspec tests after styleguide taxonomy update
pivotal-cf_pivotal-ui
train
rb,rb
c91e9a986a41d8663822e90a9c901e4cc6f2ee7a
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,14 +1,25 @@ import {cleanup} from './pure' // if we're running in a test runner that supports afterEach -// then we'll automatically run cleanup afterEach test +// or teardown then we'll automatically ru...
feat: run cleanup() when test runner supports teardown() (#<I>) * Run cleanup() when test runner supports teardown() * Disable ESLint for teardown() function
testing-library_react-testing-library
train
js
6e692ff11a3ecce5f950b2d58ea4287a1190968c
diff --git a/topologies/replset.js b/topologies/replset.js index <HASH>..<HASH> 100644 --- a/topologies/replset.js +++ b/topologies/replset.js @@ -1212,14 +1212,14 @@ function executeWriteOperation(args, options, callback) { return callback(err); } - // Per SDAM, remove primary from replicaset - sel...
fix(retryableWrites): only remove primary after retry (#<I>) Make sure to not remove the primary on an error until after the retry
mongodb_node-mongodb-native
train
js
4b1a390c2994729b7a9d08706eab142569ff8cdf
diff --git a/GEOparse/utils.py b/GEOparse/utils.py index <HASH>..<HASH> 100644 --- a/GEOparse/utils.py +++ b/GEOparse/utils.py @@ -10,7 +10,7 @@ try: except ImportError: from urllib2 import urlopen, URLError import subprocess as sp -import wget +import wgetter def mkdir_p(path_to_dir): try:
fix: Invalid import of wget -> wgetter
guma44_GEOparse
train
py
efd643595982530233dbebb91d983a9220b2cd7b
diff --git a/components/serverless-page-builder/serverless.js b/components/serverless-page-builder/serverless.js index <HASH>..<HASH> 100644 --- a/components/serverless-page-builder/serverless.js +++ b/components/serverless-page-builder/serverless.js @@ -12,7 +12,7 @@ const getDeps = async deps => { class Serverless...
fix: add files API url as an env variable
Webiny_webiny-js
train
js
43e308ed04f90167fe5869aedee19c60ebbc6e39
diff --git a/src/resources/views/corporation/wallet/transactions/transactions.blade.php b/src/resources/views/corporation/wallet/transactions/transactions.blade.php index <HASH>..<HASH> 100644 --- a/src/resources/views/corporation/wallet/transactions/transactions.blade.php +++ b/src/resources/views/corporation/wallet/t...
feat(deps): upgrade corporations transactions
eveseat_web
train
php
0e9819fba168ee2aa6b32827db751bb4c0a70dab
diff --git a/sanic/request.py b/sanic/request.py index <HASH>..<HASH> 100644 --- a/sanic/request.py +++ b/sanic/request.py @@ -134,8 +134,8 @@ def parse_multipart_form(body, boundary): :param boundary: Bytes multipart boundary :return: fields (dict), files (dict) """ - files = {} - fields = {} + ...
fix(request): parse_multipart_form should return RequestParameters I have this code: ``` form = FileForm(request.files) ``` and it raise error because the `request.files` is `dict` but `RequestParameters` is expected =/
huge-success_sanic
train
py