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
d825f7be838b0269e843e0dc234a019ce35dba83
diff --git a/packages/core/src/i18n.js b/packages/core/src/i18n.js index <HASH>..<HASH> 100644 --- a/packages/core/src/i18n.js +++ b/packages/core/src/i18n.js @@ -187,19 +187,19 @@ class I18n { translation = isFunction(missing) ? missing(this.language, id) : missing } - // if (process.env.NODE_ENV !== ...
fix: revert debugging artifacts
lingui_js-lingui
train
js
97714089a00c79ab70b8381767670f6501cedadb
diff --git a/source/rafcon/gui/controllers/graphical_editor_gaphas.py b/source/rafcon/gui/controllers/graphical_editor_gaphas.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/controllers/graphical_editor_gaphas.py +++ b/source/rafcon/gui/controllers/graphical_editor_gaphas.py @@ -86,6 +86,11 @@ class GraphicalEdi...
fix(gaphas): clean canvas core_view_map while destroy of controller The is a work around. There was placed a TODO to investigate the missing deletion of elements. This work around solves all core destruct problems in the widget destruct except those which result from a not perfect change_state_type operation.
DLR-RM_RAFCON
train
py
343dc864a84c712277af37ac2e59bf8b3a72e9ec
diff --git a/packages/svg-baker/lib/symbol.js b/packages/svg-baker/lib/symbol.js index <HASH>..<HASH> 100644 --- a/packages/svg-baker/lib/symbol.js +++ b/packages/svg-baker/lib/symbol.js @@ -2,11 +2,12 @@ const { renderer } = require('posthtml-svg-mode'); const { getRoot, getHash } = require('./utils'); const default...
fix: make symbol.tree getter immutable
JetBrains_svg-mixer
train
js
97edcf7a35bfe3daccba8585a0cd8550ca58bbb9
diff --git a/random/random.go b/random/random.go index <HASH>..<HASH> 100644 --- a/random/random.go +++ b/random/random.go @@ -5,6 +5,7 @@ import ( "os" "strconv" + "github.com/dustin/go-humanize" random "github.com/jbenet/go-random" ) @@ -14,10 +15,11 @@ func main() { usageError() } - count, err := s...
feat(main): accept humanized strings (1KB, 1MB, etc) for count argument
jbenet_go-random
train
go
69abc98034b09c401634484b26800014a7728cdd
diff --git a/lib/routes.js b/lib/routes.js index <HASH>..<HASH> 100644 --- a/lib/routes.js +++ b/lib/routes.js @@ -1010,12 +1010,13 @@ module.exports = function(self, options) { console.error(err); return res.status(500).send('error'); } - if (doc._url) { + if (doc && doc._url) { ...
fix(link-to-locale): handle doc not found and log it
apostrophecms_apostrophe-workflow
train
js
3ccfa564d710480b55898d6e3ac42ccdd4ccdbcf
diff --git a/superset/dashboards/filters.py b/superset/dashboards/filters.py index <HASH>..<HASH> 100644 --- a/superset/dashboards/filters.py +++ b/superset/dashboards/filters.py @@ -224,12 +224,14 @@ class DashboardCertifiedFilter(BaseFilter): # pylint: disable=too-few-public-me return query.filter( ...
fix(dashboard): make to filter the correct certified or non-certified… (#<I>) * fix(dashboard): make to filter the correct certified or non-certified dashboards * fix(dashboard): make to fix python lint issue
apache_incubator-superset
train
py
91adf579d85af4c4dfe06bb78cc680e94aefba8e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ setup( url='https://github.com/awslabs/serverless-application-model', license='Apache License 2.0', # Exclude all but the code folders - packages=find_packages(exclude=('tests', 'docs', 'exampl...
fix: actually exclude test files from being installed (#<I>)
awslabs_serverless-application-model
train
py
955a38e78963986042343e65fcadd73af702d2cb
diff --git a/src/Sentry/Laravel/SentryHandler.php b/src/Sentry/Laravel/SentryHandler.php index <HASH>..<HASH> 100644 --- a/src/Sentry/Laravel/SentryHandler.php +++ b/src/Sentry/Laravel/SentryHandler.php @@ -90,7 +90,7 @@ class SentryHandler extends AbstractProcessingHandler $record = array_reduce( ...
fix: check index is availability in method SentryHandler::handleBatch (#<I>)
getsentry_sentry-laravel
train
php
e6a2c53a466fe4fab7f23352d11f82faecc9c156
diff --git a/packages/cli/tests/e2e/hosting.test-e2e.js b/packages/cli/tests/e2e/hosting.test-e2e.js index <HASH>..<HASH> 100644 --- a/packages/cli/tests/e2e/hosting.test-e2e.js +++ b/packages/cli/tests/e2e/hosting.test-e2e.js @@ -108,7 +108,7 @@ describe('[E2E] CLI Hosting', function () { it('can set hosting config...
test(hosting): Remove space
Syncano_syncano-node
train
js
f8126280f6b25c3693729d7fbaec4ac664ebe515
diff --git a/src/JsonApiView.js b/src/JsonApiView.js index <HASH>..<HASH> 100644 --- a/src/JsonApiView.js +++ b/src/JsonApiView.js @@ -20,7 +20,7 @@ class JsonApiView { } get type() { - return i.dasherize(i.pluralize(i.underscore(this.constructor.name))); + return i.dasherize(i.underscore(this.constructor...
fix: don't force pluralization since jsonapi-serializer does that
rtablada_adonis-jsonapi
train
js
05c5584f7ed8713364be1a393675c41e7176f943
diff --git a/agent/agent.go b/agent/agent.go index <HASH>..<HASH> 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -296,7 +296,19 @@ func (a *Agent) startJobUnlocked(jobName string) { machID := a.Machine.State().ID a.registry.JobHeartbeat(jobName, machID, a.ttl) - go a.um.Start(jobName) + go func() { + a.um.S...
fix(agent): manually fetch state on job start
coreos_fleet
train
go
50b553964da3898686d301b1584c94736364452b
diff --git a/modules/angular2/forms.js b/modules/angular2/forms.js index <HASH>..<HASH> 100644 --- a/modules/angular2/forms.js +++ b/modules/angular2/forms.js @@ -1,2 +1,2 @@ -export * from './src/model'; -export * from './src/decorators'; +export * from './src/forms/model'; +export * from './src/forms/decorators'; dif...
chore(packaging): update imports in forms
angular_angular
train
js,js
2c8b00d5145f0770735b1163d57b4966521ccef0
diff --git a/config.js b/config.js index <HASH>..<HASH> 100644 --- a/config.js +++ b/config.js @@ -76,19 +76,6 @@ module.exports = { browserName: 'opera', platform: 'Windows XP', version: '11' - },{ - browserName: 'android', - platform: 'Linux', - version: '4.3', - deviceName...
chore(tests): remove browsers from the list
treasure-data_td-js-sdk
train
js
8269bd89290d99fac9395a354fb56fdcdb80f0be
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -5,15 +5,15 @@ var isglob = require('is-glob'); var pathDirname = require('path-dirname'); module.exports = function globParent(str) { - // replace braces/brackets sections with * - str = str.replace(/(^|[^\\])(\{([^{}]*?)...
feat: new approach to braces/brackets handling
gulpjs_glob-parent
train
js
a14ba6c46ae886550694f71dc262e64bbfa58f36
diff --git a/packages/core/src/util/applyTransforms.test.js b/packages/core/src/util/applyTransforms.test.js index <HASH>..<HASH> 100644 --- a/packages/core/src/util/applyTransforms.test.js +++ b/packages/core/src/util/applyTransforms.test.js @@ -47,7 +47,7 @@ ${TRANSFORM_CALL} const CONTENT = `<!--emdaer-t -->`; ...
test(applyTransforms): Fix test
emdaer_emdaer
train
js
959ed4c1926c5246b78c6feb9adde7db6efddfb8
diff --git a/src/Route/index.js b/src/Route/index.js index <HASH>..<HASH> 100644 --- a/src/Route/index.js +++ b/src/Route/index.js @@ -136,6 +136,7 @@ class Route extends Macroable { * @private */ _makeRoutePattern () { + this._keys = [] this._regexp = pathToRegexp(this._route, this._keys) }
fix(route): clean keys before making route regex
adonisjs_adonis-framework
train
js
5c4fb9c68e58d3228a3f9567987f89ca6474dba4
diff --git a/lib/features/modeling/cmd/ResizeShapeHandler.js b/lib/features/modeling/cmd/ResizeShapeHandler.js index <HASH>..<HASH> 100644 --- a/lib/features/modeling/cmd/ResizeShapeHandler.js +++ b/lib/features/modeling/cmd/ResizeShapeHandler.js @@ -13,6 +13,8 @@ function ResizeShapeHandler(modeling) { this._modeli...
fix(resize): add missing inject
bpmn-io_diagram-js
train
js
0d605fa76f4c841cafdd8ab904079d8829527712
diff --git a/lib/utils/analytics/generatePayload.js b/lib/utils/analytics/generatePayload.js index <HASH>..<HASH> 100644 --- a/lib/utils/analytics/generatePayload.js +++ b/lib/utils/analytics/generatePayload.js @@ -54,9 +54,6 @@ module.exports = serverless => { })), })), }, - npmDependencies, - ...
refactor(Analytics): Alphabetical order
serverless_serverless
train
js
507051661c6b452550ef5d30b4a6d51c6c5fbdc9
diff --git a/client/directives/themeManager/ThemeManagerDirective.js b/client/directives/themeManager/ThemeManagerDirective.js index <HASH>..<HASH> 100644 --- a/client/directives/themeManager/ThemeManagerDirective.js +++ b/client/directives/themeManager/ThemeManagerDirective.js @@ -99,7 +99,7 @@ export function ThemeMa...
fix:SWP-<I> proper error message when uploading theme fails
superdesk_superdesk-publisher
train
js
68c5e5a7e9b06ff9b54b3196cd77bf5431421a6d
diff --git a/test/youch.spec.js b/test/youch.spec.js index <HASH>..<HASH> 100644 --- a/test/youch.spec.js +++ b/test/youch.spec.js @@ -21,7 +21,7 @@ test.group('Youch', () => { youch ._parseError() .then((stack) => { - assert.equal(stack[0].file, __filename.replace(/\\/, '/')) + assert....
ci: fix assertions to work on windows
poppinss_youch
train
js
0f9efd6b0f305ef80bdd7a0144afb48b59c1448d
diff --git a/test/screenshot/lib/git-repo.js b/test/screenshot/lib/git-repo.js index <HASH>..<HASH> 100644 --- a/test/screenshot/lib/git-repo.js +++ b/test/screenshot/lib/git-repo.js @@ -59,10 +59,10 @@ class GitRepo { const existingFetchRefs = (await this.exec_('raw', ['config', '--get-all', 'remote.origin.fetch'...
chore(infrastructure): Fix `git fetch` command (#<I>)
material-components_material-components-web
train
js
c4a3e15ff0ad2fee8f650b7eb8f372f295f11784
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,6 +4,7 @@ import sys import os +from unittest.mock import MagicMock sys.path.insert(0, os.path.abspath('..')) # noqa @@ -40,3 +41,15 @@ htmlhelp_basename = 'yamllintdoc' man_pages = [ ('index...
docs(readthedocs): Fix builds on yamllint.readthedocs.io Documentation builds on readthedocs.io partly fail because some modules imported by yammlint cannot be imported in Sphinx automodule. This commit fixes that using the tip at [1]. Closes #<I> [1]: <URL>
adrienverge_yamllint
train
py
6610081c3b08aee8d7d3fa603b00fbfc57384847
diff --git a/src/Cursor.js b/src/Cursor.js index <HASH>..<HASH> 100644 --- a/src/Cursor.js +++ b/src/Cursor.js @@ -353,13 +353,7 @@ export class Cursor { * @returns {{width: Number, height: Number}} */ getTTYSize() { - if (this._stream.getWindowSize) { - return {width: this._stream.getWindowSize()[0]...
refactor(cursor): Remove deprecated variants of getting TTY size
kittikjs_cursor
train
js
c79f56c1ddc47235ecc1a6a8b6d90fcf8219e404
diff --git a/lib/workers/repository/master-issue.js b/lib/workers/repository/master-issue.js index <HASH>..<HASH> 100644 --- a/lib/workers/repository/master-issue.js +++ b/lib/workers/repository/master-issue.js @@ -131,7 +131,17 @@ async function ensureMasterIssue(config, branches) { } issueBody += '\n'; }...
fix(master-issue): add pending section
renovatebot_renovate
train
js
d01d3cdba9039d6256d0729f9c4199644252e1b8
diff --git a/src/pdc/Auth.php b/src/pdc/Auth.php index <HASH>..<HASH> 100644 --- a/src/pdc/Auth.php +++ b/src/pdc/Auth.php @@ -108,9 +108,12 @@ class Auth implements Pdc, CustomRender } /** + * @param null $data + * @param string $template + * @param bool $templateBinary * @return string ...
fix: Declaration of pukoframework\pdc\Auth::Parse() must be compatible with pte\CustomRender::Parse
Velliz_pukoframework
train
php
a6afed08e2ce3973b07fd298bc578fe75382bf07
diff --git a/lib/mina-circle/tasks.rb b/lib/mina-circle/tasks.rb index <HASH>..<HASH> 100644 --- a/lib/mina-circle/tasks.rb +++ b/lib/mina-circle/tasks.rb @@ -30,6 +30,7 @@ namespace :circleci do puts "[mina-circle] Fetching: #{circle_artifact}" queue "curl -o #{circle_artifact} #{build_url}" queue "#{ci...
feat: remove the tarball file after it has been expanded closes #<I>
sparkbox_mina-circle
train
rb
bf80dd9070813c08e2abedc3220b5bbc65f0f547
diff --git a/lib/creator/yeoman/utils/entry.js b/lib/creator/yeoman/utils/entry.js index <HASH>..<HASH> 100644 --- a/lib/creator/yeoman/utils/entry.js +++ b/lib/creator/yeoman/utils/entry.js @@ -8,7 +8,7 @@ module.exports = (self, answer) => { result = self.prompt([ InputValidate( 'multipleEntries', - 'T...
fix: Give examples that are valid and clearer (#<I>).
webpack_webpack-cli
train
js
b8805dc045392cd1193b556a695dabd7b81d4ba4
diff --git a/lib/core/connection/pool.js b/lib/core/connection/pool.js index <HASH>..<HASH> 100644 --- a/lib/core/connection/pool.js +++ b/lib/core/connection/pool.js @@ -641,6 +641,9 @@ function destroy(self, connections, options, callback) { conn.removeAllListeners(eventName); } + // ignore any...
fix: ignore connection errors during pool destruction There are some issues with older versions of node where errors can be emitted after `destroy` is called (e.g. EUNREACH, ECONNRESET). We want to ignore these during pool close.
mongodb_node-mongodb-native
train
js
8fd7465ffa8cf2bcb7dce71a9294bfd935862057
diff --git a/pkg/notification/notification.go b/pkg/notification/notification.go index <HASH>..<HASH> 100644 --- a/pkg/notification/notification.go +++ b/pkg/notification/notification.go @@ -215,7 +215,7 @@ type LambdaConfig struct { // Configuration - the struct that represents the whole XML to be sent to the web s...
fix: XML name in notification configuration
minio_minio-go
train
go
2fcd085e9d8416b88aa8669531028406769215f8
diff --git a/src/components/VCarousel/VCarousel.js b/src/components/VCarousel/VCarousel.js index <HASH>..<HASH> 100644 --- a/src/components/VCarousel/VCarousel.js +++ b/src/components/VCarousel/VCarousel.js @@ -3,7 +3,6 @@ import '../../stylus/components/_carousel.styl' import VBtn from '../VBtn' import VIcon from '....
refactor(VCarousel): remove bootable it isn't being used for anything but still appears in the documentation see #<I>
vuetifyjs_vuetify
train
js
cc25410f355655185ef929cd825b0dc00c534b2f
diff --git a/version.go b/version.go index <HASH>..<HASH> 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package swag // Version of swag. -const Version = "v1.8.3" +const Version = "v1.8.4"
chore: increment version to <I> (#<I>)
swaggo_swag
train
go
8bca3b22bde7366ca1fac65bc2c1c6eaf750faf6
diff --git a/src/createHashStateHistory.js b/src/createHashStateHistory.js index <HASH>..<HASH> 100644 --- a/src/createHashStateHistory.js +++ b/src/createHashStateHistory.js @@ -1,22 +1,26 @@ /* eslint no-use-before-define: 0 */ -import { createLocation, locationsAreEqual } from 'history/LocationUtils'; -import { +im...
fix: use default exports in src the core files in history export cjs, not esm
w33ble_history-extra
train
js
3063241eba96f901772c44346d9ddf062d0535af
diff --git a/test/socket.io.js b/test/socket.io.js index <HASH>..<HASH> 100644 --- a/test/socket.io.js +++ b/test/socket.io.js @@ -32,18 +32,11 @@ describe('socket.io', function(){ }); it('should not serve static files', function(done){ - var srv = http(function(req, res){ - res.writeHea...
test: fixed test for engine.io attachment
socketio_socket.io
train
js
c3ba28521db21ad84d853cdd0fd7ee1dc86a0c68
diff --git a/src/http/api/routes/webui.js b/src/http/api/routes/webui.js index <HASH>..<HASH> 100644 --- a/src/http/api/routes/webui.js +++ b/src/http/api/routes/webui.js @@ -17,7 +17,7 @@ module.exports = [ method: '*', path: '/webui', handler (request, h) { - return h.redirect('/ipfs/QmfQkD8pBSBCB...
chore: update to Web UI <I> (#<I>)
ipfs_js-ipfs
train
js
007be5053499544d8000413d66b7e50b230b64ce
diff --git a/redcap/project.py b/redcap/project.py index <HASH>..<HASH> 100644 --- a/redcap/project.py +++ b/redcap/project.py @@ -362,6 +362,8 @@ class Project(object): new_fields.append(self.def_field) if not fields: new_fields = self.field_names + else: + new_fiel...
fix: new_fields referenced before assignment if def_fields in fields
redcap-tools_PyCap
train
py
bcce650eb2123306c7dc04e13bdcaca8d4420d06
diff --git a/packages/functionals/botpress-nlu/src/providers/luis.js b/packages/functionals/botpress-nlu/src/providers/luis.js index <HASH>..<HASH> 100755 --- a/packages/functionals/botpress-nlu/src/providers/luis.js +++ b/packages/functionals/botpress-nlu/src/providers/luis.js @@ -395,6 +395,7 @@ export default class ...
feat(nlu): added unit property to LUIS entity
botpress_botpress
train
js
868f2432cae80578d99db91b941332302dd31c89
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py index <HASH>..<HASH> 100644 --- a/gitlab/v4/objects/groups.py +++ b/gitlab/v4/objects/groups.py @@ -111,7 +111,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject): GitlabAuthenticationError: If authentication is not correct ...
chore(groups): use encoded_id for group path
python-gitlab_python-gitlab
train
py
0373eb86c68cf7b0627d4c98df66eb7061715072
diff --git a/tests/test_interface.py b/tests/test_interface.py index <HASH>..<HASH> 100644 --- a/tests/test_interface.py +++ b/tests/test_interface.py @@ -68,6 +68,12 @@ class TestSolver(TestCase): self.model.remove([c, 'constr1', c2]) self.assertEqual(list(self.model.constraints), []) + def test...
test: exceptions raised when trying to remove obj or other crap
biosustain_optlang
train
py
e5a360006e03a5d6959fcdd1fa794c6237e0ed44
diff --git a/packages/mc-scripts/start.js b/packages/mc-scripts/start.js index <HASH>..<HASH> 100644 --- a/packages/mc-scripts/start.js +++ b/packages/mc-scripts/start.js @@ -77,7 +77,7 @@ choosePort(HOST, DEFAULT_PORT) ); // Serve webpack assets generated by the compiler over a web sever. const serverCo...
fix(mc-scripts): do not use ip address as socket host. Fixes #<I> (#<I>)
commercetools_merchant-center-application-kit
train
js
15c1a62052de83cb1028920f6b15896996c57d16
diff --git a/test/helpers/utils.go b/test/helpers/utils.go index <HASH>..<HASH> 100644 --- a/test/helpers/utils.go +++ b/test/helpers/utils.go @@ -154,7 +154,7 @@ func WithTimeoutErr(ctx context.Context, f func() (bool, error), freq time.Durat // changes the etcd parameter and installs the stable tag from docker-hub ...
test: use generate k8s spec files for testing - Since we added auto-generated files depending on which Kubernetes version used, we need to test all of them accordingly to each specific Kubernetes version.
cilium_cilium
train
go
e330d26ed5cafd323af23b9ced67b4cb1bb29583
diff --git a/docs/src/router/index.js b/docs/src/router/index.js index <HASH>..<HASH> 100644 --- a/docs/src/router/index.js +++ b/docs/src/router/index.js @@ -22,7 +22,7 @@ export default function () { scrollBehavior: (to, _, savedPosition) => ( to.hash.length > 1 ? false - : (savedPosition ...
fix(docs): vue-router scrollBehavior new changes, x=left, y=top
quasarframework_quasar
train
js
302a6bbece310e7c5cc097f9f65a1e5bf85e9769
diff --git a/packages/core/renderers/bolt-base.js b/packages/core/renderers/bolt-base.js index <HASH>..<HASH> 100644 --- a/packages/core/renderers/bolt-base.js +++ b/packages/core/renderers/bolt-base.js @@ -6,7 +6,7 @@ export function BoltBase(Base = HTMLElement) { return class extends Base { constructor(self) ...
fix: fix internal check for when a component initially renders
bolt-design-system_bolt
train
js
978e939b0bcce98b98bc8ae17ff0b60cc4f7b1e1
diff --git a/lib/boot/load/tymly-loader/process-ref-properties.js b/lib/boot/load/tymly-loader/process-ref-properties.js index <HASH>..<HASH> 100644 --- a/lib/boot/load/tymly-loader/process-ref-properties.js +++ b/lib/boot/load/tymly-loader/process-ref-properties.js @@ -5,14 +5,14 @@ module.exports = function (blueprin...
fix: process ref properties checks if the ref exists first
wmfs_tymly-core
train
js
8fca9aa377cc79928984d83ac93d6f202cd5de39
diff --git a/lib/components/OverlayView.js b/lib/components/OverlayView.js index <HASH>..<HASH> 100644 --- a/lib/components/OverlayView.js +++ b/lib/components/OverlayView.js @@ -254,7 +254,7 @@ var OverlayView = (exports.OverlayView = (function(_React$PureComponent) { return OverlayView })(_react2.default.PureComp...
chore(lib): compile from src with `babel`
tomchentw_react-google-maps
train
js
ac16efca80f33e12153b0c2bd0fc3f04983ed305
diff --git a/npm/vue/.releaserc.js b/npm/vue/.releaserc.js index <HASH>..<HASH> 100644 --- a/npm/vue/.releaserc.js +++ b/npm/vue/.releaserc.js @@ -1,7 +1,7 @@ module.exports = { ...require('../../.releaserc.base'), branches: [ - { name: 'npm/vue/v2', range: '2.x' }, + { name: 'npm/vue/v2', channel: 'latest...
fix: add latest channel to properly release npm packages (#<I>)
cypress-io_cypress
train
js
74e0931660ed170845f01ea3e78070cf26b3b300
diff --git a/wdio.conf.js b/wdio.conf.js index <HASH>..<HASH> 100644 --- a/wdio.conf.js +++ b/wdio.conf.js @@ -2,12 +2,14 @@ /* global browser: false */ require('babel-register'); -const {inject} = require('./tooling/lib/openh264'); -const dotenv = require('dotenv'); -const glob = require('glob'); const path = req...
chore(tooling): fix wdio config for modified webpack config
webex_spark-js-sdk
train
js
56b3b3cbeda35fce0a307175075fcb660c3cac4f
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -29,7 +29,7 @@ gulp.task('format', loadTask('format', 'format')); gulp.task('build.sh', loadTask('build')); gulp.task('public-api:enforce', loadTask('public-api', 'enforce')); gulp.task('public-api:update', ['bu...
ci: reenable validate-commit-messages gulp task as part of the CI lint task (#<I>) PR Close #<I>
angular_angular
train
js
5726860a2949cd9117fc8f3628ae577bf10dc11e
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 @@ -106,7 +106,7 @@ export default class CollectStore { } updateRunningJob (job) { - if (job.state !== jobs.JOB_STATE.RUNNING) { + if (job.state === jobs.J...
fix: delete job in store only if DONE or ERRORED :bug:
cozy_cozy-home
train
js
145e8680b16edf654219304398e1ba6ad44c8e93
diff --git a/test/click.spec.js b/test/click.spec.js index <HASH>..<HASH> 100644 --- a/test/click.spec.js +++ b/test/click.spec.js @@ -34,6 +34,19 @@ module.exports.addTests = function({testRunner, expect}) { await page.click('button'); expect(await page.evaluate(() => result)).toBe('Clicked'); }); +...
test: add failing test for clicking certain elements (#<I>) References #<I>
GoogleChrome_puppeteer
train
js
491d162040b5cb8619cb118922409bcf81e7858a
diff --git a/src/IO/Interactor.php b/src/IO/Interactor.php index <HASH>..<HASH> 100644 --- a/src/IO/Interactor.php +++ b/src/IO/Interactor.php @@ -313,15 +313,7 @@ class Interactor */ public function promptHidden(string $text, callable $fn = null, int $retry = 3) { - $winOS = '\\' === \DIRECTORY_...
refactor(interactor): prompt hidden now supported in win os
adhocore_php-cli
train
php
978c39238710088cc084f54528dbfe7036d99be2
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 @@ -51,6 +51,7 @@ function normalize (fixture) { } // workaround for https://github.com/octokit/fixtures/issues/3 + /* istanbul ignore else */ if (env.FIXTURES_P...
chore: ignore else branch for coverage on CI `FIXTURES_PROXY` is always set on Travis CI for all tests. I tried unit testing this away but the ignore else is the only way I got it working ¯\\\_(ツ)\_\/¯
octokit_fixtures
train
js
14881ee92584d2d9342d31b2423947831d8cae82
diff --git a/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js b/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js +++ b/packages/@vue/cli-service/lib/webpack/DashboardPlugin.js @@ -43,7 +43,7 @@ class DashboardPlug...
fix(ui): undefined sources error
vuejs_vue-cli
train
js
afa8905c562b1a54bb525fa7c21ee12f90b43969
diff --git a/packages/site/src/ui/side-nav.js b/packages/site/src/ui/side-nav.js index <HASH>..<HASH> 100644 --- a/packages/site/src/ui/side-nav.js +++ b/packages/site/src/ui/side-nav.js @@ -95,9 +95,6 @@ class NavLink extends React.Component { </Link> {isActive && <InternalLinks headings={this.props....
refactor(site): de-indent sidenav links
pluralsight_design-system
train
js
c24beb5c011e9bcbdb51e20707feab8f0c06c84d
diff --git a/packages/workflow-plugin-angular/webpack.config.js b/packages/workflow-plugin-angular/webpack.config.js index <HASH>..<HASH> 100644 --- a/packages/workflow-plugin-angular/webpack.config.js +++ b/packages/workflow-plugin-angular/webpack.config.js @@ -141,7 +141,10 @@ const config = { new HtmlWebpackPlu...
refactor(workflow-plugin-angular): ignore regenerator-runtime dup check
Availity_availity-workflow
train
js,js
f1b4bf1e821acaae0987837520588b70ff27b748
diff --git a/core/lib/engine_ws.js b/core/lib/engine_ws.js index <HASH>..<HASH> 100644 --- a/core/lib/engine_ws.js +++ b/core/lib/engine_ws.js @@ -50,11 +50,8 @@ WSEngine.prototype.step = function (requestSpec, ee) { return engineUtil.createThink(requestSpec, _.get(self.config, 'defaults.think', {})); } - le...
fix: TypeError occurs with custom function in WS engine Fixes #<I>
artilleryio_artillery
train
js
a9b72419afa9a99d209ccfca9a081b8854616716
diff --git a/packages/openneuro-client/src/index.js b/packages/openneuro-client/src/index.js index <HASH>..<HASH> 100644 --- a/packages/openneuro-client/src/index.js +++ b/packages/openneuro-client/src/index.js @@ -1,7 +1,8 @@ +import * as files from './files' +import * as datasets from './datasets' +import * as snapsh...
fix(dev): Workaround Vite bug with * exports
OpenNeuroOrg_openneuro
train
js
1f10eddde06e44a2a0808b0414a3adb4a2f32ecb
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -86,7 +86,10 @@ module.exports = { 'max-empty-lines': null, 'no-eol-whitespace': null, "number-leading-zero": null, - "rule-empty-line-before": null + "rule-empty-line-before": null, + ...
chore: Adding color-hex-case Adding color-hex-case as Prettier makes all hex colors lowercase.
prettier_stylelint-config-prettier
train
js
6f1ec2f2c95ac0ed4051f2a699a68f7834e522d3
diff --git a/leancloud/user.py b/leancloud/user.py index <HASH>..<HASH> 100644 --- a/leancloud/user.py +++ b/leancloud/user.py @@ -360,7 +360,7 @@ class User(Object): @classmethod def verify_mobile_phone_number(cls, sms_code): - client.post("/verfyMobilePhone/" + sms_code, {}) + client.post("/...
fix: API path for `verify_mobile_phone_number`
leancloud_python-sdk
train
py
073c907c3dc1541619afdbc74579e6018b500158
diff --git a/lib/init.js b/lib/init.js index <HASH>..<HASH> 100644 --- a/lib/init.js +++ b/lib/init.js @@ -45,10 +45,10 @@ function addTransforms(req, res) { if (!reqZipPipeStream) { delete req.headers['content-length']; if (util.getContentEncoding(req.headers)) { - reqZipPipeStream = req; - ...
refactor: Handle the content-encoding of req.headers
avwo_whistle
train
js
c9405202b23e53964f84481bc134f5323edf7bf0
diff --git a/src/ReportParser/Parsers/MoonReport.php b/src/ReportParser/Parsers/MoonReport.php index <HASH>..<HASH> 100644 --- a/src/ReportParser/Parsers/MoonReport.php +++ b/src/ReportParser/Parsers/MoonReport.php @@ -67,7 +67,7 @@ class MoonReport extends ReportParser /** * @var string */ - protec...
fix(reports): allow dash character in regex group
eveseat_services
train
php
2f06021e0cb4e4a77b137ba014971b81d288001a
diff --git a/p2p/host/basic/basic_host.go b/p2p/host/basic/basic_host.go index <HASH>..<HASH> 100644 --- a/p2p/host/basic/basic_host.go +++ b/p2p/host/basic/basic_host.go @@ -146,6 +146,7 @@ func NewHost(ctx context.Context, net network.Network, opts *HostOpts) (*BasicHo if h.cmgr != nil { h.cmgr.Close() } + ...
fix: use the goprocess for closing fixes #<I>
libp2p_go-libp2p
train
go
406a9cac6ad4c396cfcf4c19bc8daf4096272077
diff --git a/server.go b/server.go index <HASH>..<HASH> 100644 --- a/server.go +++ b/server.go @@ -983,22 +983,24 @@ func (s *Server) AddPeer(name string) error { return nil } - // Only add the peer if it doesn't have the same name. - if s.name != name { - // when loading snapshot s.confFile should be nil - if...
fix(server): un-nest arg checking simplify the nesting in AddPeer
influxdata_influxdb
train
go
327f71be403052d7c451ab8f710f4bbdcca342e7
diff --git a/cmsplugin_cascade/link/forms.py b/cmsplugin_cascade/link/forms.py index <HASH>..<HASH> 100644 --- a/cmsplugin_cascade/link/forms.py +++ b/cmsplugin_cascade/link/forms.py @@ -157,7 +157,7 @@ class LinkForm(EntangledModelFormMixin): error = ValidationError(_("CMS page to link to is missing."...
fix: download file in link forms is optional
jrief_djangocms-cascade
train
py
39d3cd4d8bc6bd9f5c6a4620fa98fa0e15948857
diff --git a/packages/cozy-client/src/cli/index.js b/packages/cozy-client/src/cli/index.js index <HASH>..<HASH> 100644 --- a/packages/cozy-client/src/cli/index.js +++ b/packages/cozy-client/src/cli/index.js @@ -181,6 +181,9 @@ const readJSON = (fs, filename) => { * @returns {Promise<CozyClient>} - A client that is re...
fix: Moved polyfills in createClientInteractive
cozy_cozy-client
train
js
5e0e8c1e1f0e12c679f0a210aa997c422150e2ff
diff --git a/packages/cli/lib/commands/create.js b/packages/cli/lib/commands/create.js index <HASH>..<HASH> 100644 --- a/packages/cli/lib/commands/create.js +++ b/packages/cli/lib/commands/create.js @@ -76,7 +76,7 @@ module.exports = async (name, starter = 'default') => { child.stdout.on('data', buffer => { ...
chore(cli): minor stylistic code refactor (#<I>)
gridsome_gridsome
train
js
021ef9d6bce13d6bf7d71a4a8ecdd6aafb4cd660
diff --git a/src/__tests__/act.js b/src/__tests__/act.js index <HASH>..<HASH> 100644 --- a/src/__tests__/act.js +++ b/src/__tests__/act.js @@ -14,6 +14,12 @@ test('render calls useEffect immediately', () => { expect(effectCb).toHaveBeenCalledTimes(1) }) +test('findByTestId returns the element', async () => { + c...
fix(act): ensure that the result is returned from our wrapper (#<I>) * failing test * act-compat change * fix(act): ensure that the result is returned from our wrapper Closes #<I> Closes #<I>
testing-library_react-testing-library
train
js,js
d852f59fd9ab20e85db7e23bbd95ba7563d52731
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -234,7 +234,7 @@ latex_elements = { # author, documentclass [howto, manual, or own class]). latex_documents = [ (master_doc, 'periphery.tex', u'python-periphery Documentation', - u'Author', 'manual'), +...
docs: add author to sphinx LaTeX configuration
vsergeev_python-periphery
train
py
4b3a30f4e7e320538d256adb542715813a5a716d
diff --git a/workflow/util/util.go b/workflow/util/util.go index <HASH>..<HASH> 100644 --- a/workflow/util/util.go +++ b/workflow/util/util.go @@ -720,6 +720,7 @@ func retryWorkflow(ctx context.Context, kubeClient kubernetes.Interface, hydrato newWF.Status.Phase = wfv1.WorkflowRunning newWF.Status.Nodes = make(wfv1...
fix: Reset workflow started time to current when retrying workflow. Fixes #<I> (#<I>)
argoproj_argo
train
go
1fdaeed6330b9e80c56db7aacb58525b81c5dde4
diff --git a/dramatiq/__init__.py b/dramatiq/__init__.py index <HASH>..<HASH> 100644 --- a/dramatiq/__init__.py +++ b/dramatiq/__init__.py @@ -5,4 +5,4 @@ from .message import Message # noqa from .middleware import Middleware # noqa from .worker import Worker # noqa -__version__ = "0.1.0" +__version__ = "0.0.1"
chore: set version to <I>
Bogdanp_dramatiq
train
py
8feab6d01650f1aedc105adee6b1e0eb311c7a4b
diff --git a/pkger/clone_resource.go b/pkger/clone_resource.go index <HASH>..<HASH> 100644 --- a/pkger/clone_resource.go +++ b/pkger/clone_resource.go @@ -633,6 +633,9 @@ func convertCellView(cell influxdb.Cell) chart { ch.Position = p.Position } + sort.Slice(ch.Axes, func(i, j int) bool { + return ch.Axes[i].N...
chore(pkger): ensure sorting of axes on export of a dashboard's query
influxdata_influxdb
train
go
e91d142bdedaf469aef67fc6b826015088ca38fe
diff --git a/flask_raml.py b/flask_raml.py index <HASH>..<HASH> 100644 --- a/flask_raml.py +++ b/flask_raml.py @@ -113,14 +113,14 @@ class API(raml.API): if endpoint is None: endpoint = self.get_endpoint(resource, methods, self.endpoint_template) + decode_request = self.encoders[config['d...
feat: allow custom route request/response decoders/encoders
salsita_flask-raml
train
py
d47d9664733bd922b3b9a956f7b3666ec4a59a2b
diff --git a/tests/integ/test_training_compiler.py b/tests/integ/test_training_compiler.py index <HASH>..<HASH> 100644 --- a/tests/integ/test_training_compiler.py +++ b/tests/integ/test_training_compiler.py @@ -26,10 +26,12 @@ from tests.integ import DATA_DIR, TRAINING_DEFAULT_TIMEOUT_MINUTES from tests.integ.timeout ...
fix: trcomp fixtures to override default fixtures for integ tests (#<I>)
aws_sagemaker-python-sdk
train
py
b6728d87a04a2e708b772ab4a5457a41d6a16f1c
diff --git a/tests/datasets/api_tests.py b/tests/datasets/api_tests.py index <HASH>..<HASH> 100644 --- a/tests/datasets/api_tests.py +++ b/tests/datasets/api_tests.py @@ -848,7 +848,7 @@ class TestDatasetApi(SupersetTestCase): birth_names_dataset = self.get_birth_names_dataset() # TODO: fix test for p...
fix: skip unit test that is failing in master for test-postgres-hive (#<I>) * Get full diff * Test * Test * Test * Test * Test * Explicitly detect backend to skip test
apache_incubator-superset
train
py
8c42e0a8554dac6f0731c601027aaa59ab2d88d8
diff --git a/src/Doc/AbstractDoc.js b/src/Doc/AbstractDoc.js index <HASH>..<HASH> 100644 --- a/src/Doc/AbstractDoc.js +++ b/src/Doc/AbstractDoc.js @@ -1,5 +1,6 @@ import assert from 'assert'; import fs from 'fs'; +import path from 'path'; import ParamParser from '../Parser/ParamParser.js'; import ASTUtil from '../U...
feat: can resolve file path that has no extension <URL>
esdoc_esdoc
train
js
7431f69b136fd5f2dc1ac052918e200c499560ce
diff --git a/QUANTAXIS/QAUtil/QASetting.py b/QUANTAXIS/QAUtil/QASetting.py index <HASH>..<HASH> 100644 --- a/QUANTAXIS/QAUtil/QASetting.py +++ b/QUANTAXIS/QAUtil/QASetting.py @@ -29,7 +29,7 @@ from QUANTAXIS.QAUtil import QA_util_log_info, QA_util_sql_mongo_setting class QA_Setting(): QA_util_sql_mongo_ip = os....
fix(QASetting): correct default port number
QUANTAXIS_QUANTAXIS
train
py
e3e552aff7cf19df36ef27104cbed03931074c24
diff --git a/lib/hook.template.js b/lib/hook.template.js index <HASH>..<HASH> 100644 --- a/lib/hook.template.js +++ b/lib/hook.template.js @@ -6,4 +6,4 @@ exports.generatedMessage = 'Generated by ghooks. Do not edit this file.' exports.content = fs .readFileSync(resolve(`${__dirname}/hook.template.raw`), 'UTF-8') ...
fix(hook): windows path escapes (#<I>)
ghooks-org_ghooks
train
js
ebd279713471e5a3a232556a7e70b088b41e7201
diff --git a/tooling/lib/updated.js b/tooling/lib/updated.js index <HASH>..<HASH> 100644 --- a/tooling/lib/updated.js +++ b/tooling/lib/updated.js @@ -21,8 +21,8 @@ exports.updated = async function updated({dependents, npm}) { const tag = npm ? await last() : `upstream/master`; const changedPackages = _(await dif...
fix(tooling): filter blank file diffs before converting to packages
webex_spark-js-sdk
train
js
0617f5efcd51f3c22ada2c9a4111dcd7183fbdab
diff --git a/test/unit/client/client-test.js b/test/unit/client/client-test.js index <HASH>..<HASH> 100644 --- a/test/unit/client/client-test.js +++ b/test/unit/client/client-test.js @@ -1,3 +1,4 @@ +var path = require('path') var proxyquire = require('proxyquire').noCallThru().noPreserveCache() var simple = require(...
test: universal path separators for every OS (#<I>)
hoodiehq_hoodie
train
js
026baa201add5fb5f42c05d509b88d86e0e5d766
diff --git a/lib/client/misc_api.js b/lib/client/misc_api.js index <HASH>..<HASH> 100644 --- a/lib/client/misc_api.js +++ b/lib/client/misc_api.js @@ -49,10 +49,10 @@ class MiscApi extends BaseApi { } navigate(options) { - options.eventId = this.getRandomId(); - this.deferreds[options.eventId] = Q.defer()...
fix(misc-api): "options" is polluted when calling navigate
emartech_emarsys-integration-client-js
train
js
f9231168b0041fea3f8f954b3cceb56269fc6366
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,7 @@ var isWin32 = require('os').platform() === 'win32'; var slash = '/'; var backslash = /\\/g; -var enclosure = /[\{\[].*[\/]*.*[\}\]]$/; +var enclosure = /[\{\[].*[\}\]]$/; var globby = /(^|[^\\])([\{\[]|\([^\)...
fix: eliminate ReDoS (#<I>) This change fixes a regular expression denial of service vulnerability. Refs: <URL>
gulpjs_glob-parent
train
js,js
6b4940fef333a51f5a5b63e60e7aa8345f02cb6b
diff --git a/src/service-consul.js b/src/service-consul.js index <HASH>..<HASH> 100755 --- a/src/service-consul.js +++ b/src/service-consul.js @@ -136,13 +136,15 @@ export class ServiceConsul extends Service { method: this.consul.kv.get, options: options }), - () => - ...
refactor: use async await
Kronos-Integration_kronos-service-consul
train
js
5efce52908dc1262f899ac5e543dafbcef48b7bf
diff --git a/internal/service/backup/framework_test.go b/internal/service/backup/framework_test.go index <HASH>..<HASH> 100644 --- a/internal/service/backup/framework_test.go +++ b/internal/service/backup/framework_test.go @@ -26,6 +26,29 @@ func testAccFrameworkPreCheck(t *testing.T) { } } +func testAccCheckFrame...
test(backup): check framework destroy
terraform-providers_terraform-provider-aws
train
go
12dabee72c4f49d3b6da570e446645484d591702
diff --git a/lib/transports/smtp.js b/lib/transports/smtp.js index <HASH>..<HASH> 100644 --- a/lib/transports/smtp.js +++ b/lib/transports/smtp.js @@ -157,8 +157,11 @@ exports._send = function (message, done) { //convert message to nodemailer email payload let email = message.toObject(); + //...
feat: make use of from in smtp transport
lykmapipo_postman
train
js
3867d7412adf9f9c530ca785ffb830a741a54b29
diff --git a/webapps/client/scripts/pages/main.js b/webapps/client/scripts/pages/main.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/pages/main.js +++ b/webapps/client/scripts/pages/main.js @@ -1,17 +1,17 @@ ngDefine('admin.pages', [ + 'module:ngRoute:angular-route', + 'module:cam.commons:camunda-common...
fix(pages): solve dependencies for pages
camunda_camunda-bpm-platform
train
js
41ffe77bc3337d216ff260e4e2c502a401674398
diff --git a/wct.conf.js b/wct.conf.js index <HASH>..<HASH> 100644 --- a/wct.conf.js +++ b/wct.conf.js @@ -53,12 +53,6 @@ module.exports = { ]; const cronPlatforms = [ - { - deviceName: 'Android GoogleAPI Emulator', - platformName: 'Android', - platformVersion: '8.1', - brow...
chore: remove Android Emulator from CRON
vaadin_vaadin-context-menu
train
js
19cff7f828cce483b3dd08398f133c205fb200f4
diff --git a/util/cmp/stream.go b/util/cmp/stream.go index <HASH>..<HASH> 100644 --- a/util/cmp/stream.go +++ b/util/cmp/stream.go @@ -288,8 +288,8 @@ func appMetadataRequest(appName, appRelPath string, env []string, checksum strin func toEnvEntry(envVars []string) []*pluginclient.EnvEntry { envEntry := make([]*plug...
fix: env var values with equal sign ignored (#<I>) Environment variable with "=" in its value is not passed to sidecar config management plugin, but ignored.
argoproj_argo-cd
train
go
9b969ad8db787f1920a5ee4dcd6c17786c9e4103
diff --git a/src/activation.js b/src/activation.js index <HASH>..<HASH> 100644 --- a/src/activation.js +++ b/src/activation.js @@ -180,6 +180,8 @@ function shouldContinue(output, router: Router) { return output; } +//wraps a subscription, allowing unsubscribe calls even if +//the first value comes synchronously ...
feat(router): observables in lifecycle Small change to kick off CI
aurelia_router
train
js
c9245c0e5fb09f187a695a82085b2582ebcc58aa
diff --git a/source/rafcon/gui/mygaphas/items/state.py b/source/rafcon/gui/mygaphas/items/state.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/mygaphas/items/state.py +++ b/source/rafcon/gui/mygaphas/items/state.py @@ -846,9 +846,11 @@ class StateView(Element): state_v.set_enable_flag_keep_rect_w...
fix(StateView): Solve KeepRectWithin constraints of state non-recursive Fixes issues when resizing state bigger than parent state
DLR-RM_RAFCON
train
py
d8845df615af69e28142c3331e6f22c861bfad7a
diff --git a/lib/fetchers/registry/fetch.js b/lib/fetchers/registry/fetch.js index <HASH>..<HASH> 100644 --- a/lib/fetchers/registry/fetch.js +++ b/lib/fetchers/registry/fetch.js @@ -1,5 +1,6 @@ 'use strict' +const BB = require('bluebird') const Buffer = require('safe-buffer').Buffer const checkWarnings = requir...
fix(cache): pass uid/gid settings through to mfh
zkat_pacote
train
js
df67ee800d833bf8fb67ae372b0172fbd8503901
diff --git a/pook/engine.py b/pook/engine.py index <HASH>..<HASH> 100644 --- a/pook/engine.py +++ b/pook/engine.py @@ -74,13 +74,13 @@ class Engine(object): raise NotImplementedError('engine must implementent the ' 'required methods') - # Disable previous moc...
fix(engine): enable new mock engine on register if needed
h2non_pook
train
py
26caa52db3becb54231c5c529b1d7cfb580ad319
diff --git a/errors.go b/errors.go index <HASH>..<HASH> 100644 --- a/errors.go +++ b/errors.go @@ -112,15 +112,12 @@ func (a *App) defaultErrorMiddleware(next Handler) Handler { } status := http.StatusInternalServerError // unpack root err and check for HTTPError - switch { - case errors.Is(err, sql.ErrNoRow...
refactor: removing switch from the error status verification
gobuffalo_buffalo
train
go
ab4adfb085d38937603d4fc99587dac275670959
diff --git a/gulp-tasks/icons.js b/gulp-tasks/icons.js index <HASH>..<HASH> 100644 --- a/gulp-tasks/icons.js +++ b/gulp-tasks/icons.js @@ -58,7 +58,6 @@ run: ($) => { $('symbol[id^=rb-icon-]').each(function elHandler() { const $symbol = $(this); - // const grayMinus2 ...
docs(Icons): Remove stale comment.
Pier1_rocketbelt
train
js
11027ab6be99c063675de434f133871f48eec44e
diff --git a/dramatiq/brokers/rabbitmq.py b/dramatiq/brokers/rabbitmq.py index <HASH>..<HASH> 100644 --- a/dramatiq/brokers/rabbitmq.py +++ b/dramatiq/brokers/rabbitmq.py @@ -304,7 +304,8 @@ class _RabbitmqConsumer(Consumer): message = Message.decode(body) self.known_tags.add(method.delivery_t...
fix: handle assertion errors from pika
Bogdanp_dramatiq
train
py
7308a50397bcdff793041897b5317ed356f730c5
diff --git a/scripts/server.js b/scripts/server.js index <HASH>..<HASH> 100644 --- a/scripts/server.js +++ b/scripts/server.js @@ -153,8 +153,7 @@ const requestHandler = (request, response) => { // understanding where requests come from console.log( 'request from', - request.headers.origin, - req...
ci(server): only log origin not referrer
meodai_color-names
train
js
48dae244e65824d979f7e38e32b95b7d96ff8a35
diff --git a/capture_metrics.go b/capture_metrics.go index <HASH>..<HASH> 100644 --- a/capture_metrics.go +++ b/capture_metrics.go @@ -44,6 +44,10 @@ func CaptureMetrics(hnd http.Handler, w http.ResponseWriter, r *http.Request) Me hooks = Hooks{ WriteHeader: func(next WriteHeaderFunc) WriteHeaderFunc ...
fix: call WriteHeader next func right away
felixge_httpsnoop
train
go
fee44da72059f78a67845589411773d4e1c9cbca
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -3,7 +3,7 @@ var log = require('npmlog') var exports = module.exports = function (options, callback) { var env_config = require('./config')(options) - log.level = env_config.loglevel || 'warn' + log.lev...
fix: correctly set loglevel from options * * * This commit was sponsored by The Hoodie Firm. You can hire The Hoodie Firm: <URL>
hoodiehq_hoodie-server
train
js
a657e2ceb1b796014328bdc584392bd5aee8074b
diff --git a/src/mixins/Layer.js b/src/mixins/Layer.js index <HASH>..<HASH> 100644 --- a/src/mixins/Layer.js +++ b/src/mixins/Layer.js @@ -73,7 +73,7 @@ export default { unbindPopup () { const popup = this.mapObject ? this.mapObject.getPopup() : null; if (popup) { - popup.unbindTooltip(); + ...
fix: correct method for unbindpopup
KoRiGaN_Vue2Leaflet
train
js
fa77a578b9998ddcca0e8432a043eba71536d347
diff --git a/test/strains.test.js b/test/strains.test.js index <HASH>..<HASH> 100644 --- a/test/strains.test.js +++ b/test/strains.test.js @@ -371,4 +371,17 @@ describe('Strains test', () => { + 'condition: req.http.host == "client.project-helix.io"\n' + 'directoryIndex: somepage.html\n'); }); + + it(...
fix: Deprecate url in the strain schema - add test to get back <I>% coverage for Strain.js
adobe_helix-shared
train
js
00f2a52b139576b5b5adcec7c3c01bb84b905076
diff --git a/access.js b/access.js index <HASH>..<HASH> 100644 --- a/access.js +++ b/access.js @@ -30,8 +30,8 @@ module.exports = function (path/*[, mode[, callback]]*/) { if (!isValue(cb) && isCallable(mode)) { cb = mode; mode = defaultMode; - } else { - mode = Object(mode); + } else if (isValue(mode)) { + m...
fix: Fix `mode` normalization in `fs.access`
medikoo_fs2
train
js
f9eb754eff8c805d89b99fd16931f0dfeececfd8
diff --git a/anyconfig/backend/tests/xml.py b/anyconfig/backend/tests/xml.py index <HASH>..<HASH> 100644 --- a/anyconfig/backend/tests/xml.py +++ b/anyconfig/backend/tests/xml.py @@ -128,6 +128,14 @@ class Test_00(unittest.TestCase): self.assertTrue(dicts_equal(dic, {"a": {"x": "X", "y": "Y"}})) self....
fix: add missing test case for merge_attrs support in .backend.xml._process_children_elems
ssato_python-anyconfig
train
py