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
e97064a12e76bb37744c1f6a2ec50d0ebcab7c6a
diff --git a/lib/egg.js b/lib/egg.js index <HASH>..<HASH> 100644 --- a/lib/egg.js +++ b/lib/egg.js @@ -18,6 +18,7 @@ const ISCLOSE = Symbol('EggCore#isClose'); const CLOSE_PROMISE = Symbol('EggCore#closePromise'); const ROUTER = Symbol('EggCore#router'); const EGG_LOADER = Symbol.for('egg#loader'); +const INIT_READY...
refactor: change private function name to Symbol from being called outside. (#<I>)
eggjs_egg-core
train
js
df2c4bbec49c1f3ed879db3f31a2707aae3a17db
diff --git a/generators/generator-constants.js b/generators/generator-constants.js index <HASH>..<HASH> 100644 --- a/generators/generator-constants.js +++ b/generators/generator-constants.js @@ -23,7 +23,7 @@ const packagejs = require('../package.json'); const JAVA_VERSION = '1.8'; // Java version is forced to be 1.8....
refactor: upgrade template node version to <I> The template node version was upgraded as per code review and discussion. <URL>
jhipster_generator-jhipster
train
js
dbfe97caa4d307441a46bece8f1d171f21a3b4de
diff --git a/scripts/buildWithCache.js b/scripts/buildWithCache.js index <HASH>..<HASH> 100644 --- a/scripts/buildWithCache.js +++ b/scripts/buildWithCache.js @@ -89,6 +89,9 @@ async function build() { return; } + // Wait three seconds, just in case the dev changes his/her mind. :) + await new Pro...
fix: wait a bit before executing build
Webiny_webiny-js
train
js
32871e89b7aec76adef842efd9808033cb9a26cf
diff --git a/src/poetry/mixology/version_solver.py b/src/poetry/mixology/version_solver.py index <HASH>..<HASH> 100644 --- a/src/poetry/mixology/version_solver.py +++ b/src/poetry/mixology/version_solver.py @@ -413,7 +413,7 @@ class VersionSolver: # prefer locked version of compatible (not exact same) ...
refactor: access attribute _locked only via method _get_locked
sdispater_poetry
train
py
53463619e5d19d35dfad1a4245a8dc583681feb3
diff --git a/src/core/vdom/vnode.js b/src/core/vdom/vnode.js index <HASH>..<HASH> 100644 --- a/src/core/vdom/vnode.js +++ b/src/core/vdom/vnode.js @@ -95,8 +95,8 @@ export function cloneVNode (vnode: VNode, deep?: boolean): VNode { cloned.key = vnode.key cloned.isComment = vnode.isComment cloned.isCloned = tru...
perf: deep clone slot vnodes on re-render (#<I>) avoid unnecessary assignment.
kaola-fed_megalo
train
js
7d4d2e74691b8b92fa858bc15e54215515501dbd
diff --git a/superset-frontend/src/explore/controlUtils.js b/superset-frontend/src/explore/controlUtils.js index <HASH>..<HASH> 100644 --- a/superset-frontend/src/explore/controlUtils.js +++ b/superset-frontend/src/explore/controlUtils.js @@ -20,6 +20,7 @@ import memoizeOne from 'memoize-one'; import { getChartControl...
fix(explore): 'Edit Datasource' is missing from btn-dropdown (#<I>) Not sure how it got broken but he's a fix. I'm thinking this is related to the controls refactor. closes <URL>
apache_incubator-superset
train
js
769104d90aee8a0a5d19e81d652b68e7d8253504
diff --git a/lib/components/map/connected-stop-marker.js b/lib/components/map/connected-stop-marker.js index <HASH>..<HASH> 100644 --- a/lib/components/map/connected-stop-marker.js +++ b/lib/components/map/connected-stop-marker.js @@ -11,7 +11,7 @@ const mapStateToProps = (state, ownProps) => { const routeData = vie...
fix(connected-stop-marker): avoid crash when not viewing stop
opentripplanner_otp-react-redux
train
js
c7989d4ad5f86431a0ca97a847b9e5dcddd53271
diff --git a/gulpfile.babel.js b/gulpfile.babel.js index <HASH>..<HASH> 100755 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -495,6 +495,12 @@ gulp.task('prepare', ['html2js'], () => { ]) .pipe(gulp.dest('build/core-src/')), + // package.json (for the bindings which uses `build` directory) + g...
chore(gulpfile): Change `prepare` task to copy `package.json` to `build` directory.
OnsenUI_OnsenUI
train
js
f6ce7297c4ed29e2b52f7ea48d4f19ab63f8513c
diff --git a/lib/pool.js b/lib/pool.js index <HASH>..<HASH> 100644 --- a/lib/pool.js +++ b/lib/pool.js @@ -1,4 +1,5 @@ var midware = require('midware') +var toString = Object.prototype.toString module.exports = MiddlewarePool @@ -53,6 +54,10 @@ MiddlewarePool.prototype.use = function (name, fn) { pool = this...
feat: support argument object as first argument
h2non_midware-pool
train
js
60be9306e91ba99835f8b59dd155fcbb2166e178
diff --git a/stan/model.py b/stan/model.py index <HASH>..<HASH> 100644 --- a/stan/model.py +++ b/stan/model.py @@ -204,6 +204,8 @@ class Model: iteration, iteration_max = map( int, current_and_max_iterations_re.findall(progress_message).pop(0) ...
fix: update progress less frequently Update sampling progress less frequently. This solves a UI issue for non-ansi terminals (e.g., jupyter notebook). Closes #<I>
stan-dev_pystan
train
py
06cfc61db9858ca09f50193fc58d1dd9551fb267
diff --git a/lib/static/modules/utils.js b/lib/static/modules/utils.js index <HASH>..<HASH> 100644 --- a/lib/static/modules/utils.js +++ b/lib/static/modules/utils.js @@ -10,7 +10,7 @@ const {NO_REF_IMAGE_ERROR, ASSERT_VIEW_ERROR} = getCommonErrors(); function hasFailedImages(result) { const {imagesInfo = []} = r...
fix(static): fix error when accept the screenshot
gemini-testing_html-reporter
train
js
46353e10fc63b2bb604883743e852ba70a56b103
diff --git a/src/api/index.js b/src/api/index.js index <HASH>..<HASH> 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -7,13 +7,6 @@ const R = require('ramda'); const urljoin = require('url-join'); -/** [trespass/api/tools]{@link module:trespass/api/tools} */ -module.exports.tools = require('./tools.js'); -...
fix: circular dependencies are bad, and cause weird behavior
trespass-project_trespass.js
train
js
23db60d9ac0d92d8106cd935f8bd6a10f623e171
diff --git a/tests/parser/exceptions/test_namespace_collision.py b/tests/parser/exceptions/test_namespace_collision.py index <HASH>..<HASH> 100644 --- a/tests/parser/exceptions/test_namespace_collision.py +++ b/tests/parser/exceptions/test_namespace_collision.py @@ -26,12 +26,6 @@ def foo(): """, """ x: int1...
test: add passing cases to check shadowing
ethereum_vyper
train
py
a4f8c1517f2111bc58baaa7fb0e14cc9b3598814
diff --git a/uvicorn/workers.py b/uvicorn/workers.py index <HASH>..<HASH> 100644 --- a/uvicorn/workers.py +++ b/uvicorn/workers.py @@ -25,6 +25,7 @@ class UvicornWorker(Worker): "timeout_keep_alive": self.cfg.keepalive, "timeout_notify": self.timeout, "callback_notify": self.callb...
fix: handle gunicorn max_requests config
encode_uvicorn
train
py
d4923e84dc0ab935553bb8cc1040ac7c22fa9af6
diff --git a/src/flow.js b/src/flow.js index <HASH>..<HASH> 100644 --- a/src/flow.js +++ b/src/flow.js @@ -594,8 +594,8 @@ } this.files.push(file); }, this); + this.fire('filesSubmitted', files, event); } - this.fire('filesSubmitted', files, event); },
fix: filesSubmitted event #<I>
flowjs_flow.js
train
js
f680df698de17f073a72d99b896be711c2155c5f
diff --git a/controller/api/models.py b/controller/api/models.py index <HASH>..<HASH> 100644 --- a/controller/api/models.py +++ b/controller/api/models.py @@ -129,14 +129,19 @@ class App(UuidAuditedModel): def deploy(self, release, initial=False): tasks.deploy_release.delay(self, release).get() - ...
fix(deploy): rework initial deploy logic based on workflow
deis_deis
train
py
ca0b2d443659c2655c481562e29e3dd9d64cc582
diff --git a/src/pyrocore/scripts/lstor.py b/src/pyrocore/scripts/lstor.py index <HASH>..<HASH> 100644 --- a/src/pyrocore/scripts/lstor.py +++ b/src/pyrocore/scripts/lstor.py @@ -82,7 +82,7 @@ class MetafileLister(ScriptBase): listing = None if self.options.raw: - ...
fix: in raw mode, list stuff that has no info dict
pyroscope_pyrocore
train
py
2eed48c384f4d7bafd7763619a14503cd43d7f17
diff --git a/packages/kickstart-dev-utils/getServerSettings.js b/packages/kickstart-dev-utils/getServerSettings.js index <HASH>..<HASH> 100644 --- a/packages/kickstart-dev-utils/getServerSettings.js +++ b/packages/kickstart-dev-utils/getServerSettings.js @@ -16,10 +16,9 @@ const getServerSettings = async () => { r...
refactor(dev-utils): cleanup
NehrDani_noctis
train
js
cc57029846c57a7d27c37e3915c888f7a2ad873d
diff --git a/src/Processors/FormatterCall.php b/src/Processors/FormatterCall.php index <HASH>..<HASH> 100644 --- a/src/Processors/FormatterCall.php +++ b/src/Processors/FormatterCall.php @@ -66,4 +66,4 @@ class FormatterCall $trimmedArguments ); } -} \ No newline at end of file +}
style: Add missing new line character to FormatterCall
ComPHPPuebla_dbal-fixtures
train
php
4b2ff34c0b1189beaec5c9cbc08720eb6dc40c88
diff --git a/src/Model/Table/ProductsTable.php b/src/Model/Table/ProductsTable.php index <HASH>..<HASH> 100644 --- a/src/Model/Table/ProductsTable.php +++ b/src/Model/Table/ProductsTable.php @@ -953,10 +953,21 @@ class ProductsTable extends AppTable if (empty($product->tax)) { $product->...
chore: default tax for existing projects: 0
foodcoopshop_foodcoopshop
train
php
18bfeef44981acc0c267bb4d98767e4e79463cf9
diff --git a/packages/website/builder/pages/index/index.js b/packages/website/builder/pages/index/index.js index <HASH>..<HASH> 100644 --- a/packages/website/builder/pages/index/index.js +++ b/packages/website/builder/pages/index/index.js @@ -134,7 +134,7 @@ it allows us to build developer tools: <iframe ...
docs(website): update video url to latest introduction
cerebral_cerebral
train
js
09e5f91e199b5202dbfa513648a599c4e96f6029
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...
chore: Swithed to the default error status code
onehilltech_blueprint
train
js
9c1a763c660d4512f44536b408eae6caecf394df
diff --git a/dist/vs-autocomplete-validator.js b/dist/vs-autocomplete-validator.js index <HASH>..<HASH> 100644 --- a/dist/vs-autocomplete-validator.js +++ b/dist/vs-autocomplete-validator.js @@ -1,5 +1,5 @@ /** - * vsGoogleAutocomplete - v0.3.2 - 2015-09-07 + * vsGoogleAutocomplete - v0.4.0 - 2015-10-04 * https://gi...
chore(banner): updated to latest version - <I>
vskosp_vsGoogleAutocomplete
train
js,js
b4a5d57e16617445d8e6a35a6ee29c3b4658bcbb
diff --git a/views/cypress/support/resourceTree.js b/views/cypress/support/resourceTree.js index <HASH>..<HASH> 100644 --- a/views/cypress/support/resourceTree.js +++ b/views/cypress/support/resourceTree.js @@ -266,10 +266,10 @@ Cypress.Commands.add('renameSelectedClass', (formSelector, newName) => { Cypress.Commands....
fix: use getSettled command instead of get
oat-sa_tao-core
train
js
e2e5be02177f68c457bc16687a3a2e8bcae43d5c
diff --git a/src/bots/taskGet.js b/src/bots/taskGet.js index <HASH>..<HASH> 100644 --- a/src/bots/taskGet.js +++ b/src/bots/taskGet.js @@ -119,11 +119,12 @@ function encodeResource (resource, regexp) { } } -function getResource (casper, resourceMatcher, method, variable) { +function getResource (casper, resourc...
fix: can pass status dynamically when getting resource
damonjs_damon
train
js
15ca41fb94b14e388df3ab55701756c51ceeb2b7
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -96,7 +96,8 @@ var UMDConfigBase = { output: { path: outputPath, library: 'rollbar', - libraryTarget: 'umd' + libraryTarget: 'umd', + globalObject: 'this' }, devt...
fix: workaround webpack/webpack issue #<I>, #<I>
rollbar_rollbar.js
train
js
7563b4769bead5b18150de7bd5e0087ba6246d70
diff --git a/src/components/tooltip/tooltip.js b/src/components/tooltip/tooltip.js index <HASH>..<HASH> 100644 --- a/src/components/tooltip/tooltip.js +++ b/src/components/tooltip/tooltip.js @@ -89,7 +89,6 @@ function MdTooltipDirective($timeout, $window, $$rAF, $document, $interpolate, // Remove the element fro...
fix(mdTooltip): Tooltip role (#<I>) The tooltip role was being assigned to an element that is being detached and not re-attached, causing an a<I>y issue. The tooltip role is now being assigned to the panel element through the `role` attribute. Fixes #<I>
angular_material
train
js
d9700cc61738b325cb9bce45840d3196e6f7a432
diff --git a/src/core/LightBase.js b/src/core/LightBase.js index <HASH>..<HASH> 100644 --- a/src/core/LightBase.js +++ b/src/core/LightBase.js @@ -1,6 +1,8 @@ import Node from './Node' import { Color } from 'three' +const twoOrMoreSpaces = /\s\s+/g + // base class for light elements. export default class LightBa...
perf: Check only isNaN instead of evaluating a string against a regex, so we can save time when people are animating values. Also re-use a single regex when one is needed.
trusktr_infamous
train
js
819bb38adf9f6c650586ee310a8da17865151322
diff --git a/src/api/object.js b/src/api/object.js index <HASH>..<HASH> 100644 --- a/src/api/object.js +++ b/src/api/object.js @@ -68,7 +68,7 @@ module.exports = (send) => { } const enc = options.enc || 'json' - send('object/put', enc, null, buf, (err, result) => { + send('object/put', null, {...
fix: add support for protobuf in object.put
ipfs_js-ipfs
train
js
68affb976171b800e8d10906d65e8678203392e2
diff --git a/angular-moment.js b/angular-moment.js index <HASH>..<HASH> 100644 --- a/angular-moment.js +++ b/angular-moment.js @@ -265,7 +265,7 @@ * @param {string} lang 2-letter language code (e.g. en, es, ru, etc.) */ this.changeLocale = function (lang) { - var result = moment.locale(lang); + ...
fix(locale): make the locale fix backward compatible with older angular-moment versions (close #<I> #<I> <I>)
urish_angular-moment
train
js,js
b974c5f439fdfb2401655b0988ecbbd95b1f166b
diff --git a/lib/rules/_base.js b/lib/rules/_base.js index <HASH>..<HASH> 100644 --- a/lib/rules/_base.js +++ b/lib/rules/_base.js @@ -546,6 +546,8 @@ module.exports = class { nodeProps = { line: 'line' in result ? result.line : node.loc && node.loc.start.line, column: 'column' in result ? resu...
feat: Adding endLine/endColumn to generated results
ember-template-lint_ember-template-lint
train
js
2f4f51db478440995ee2cfc7cdbfa12c9e8b7191
diff --git a/tests/JusibeTest.php b/tests/JusibeTest.php index <HASH>..<HASH> 100644 --- a/tests/JusibeTest.php +++ b/tests/JusibeTest.php @@ -123,4 +123,24 @@ class JusibeTest extends PHPUnit_Framework_TestCase $this->assertObjectHasAttribute('date_delivered', $result); $this->assertEquals($this->get...
feat(jusibe): Add tests to check that token and public key was constructed with Jusibe
unicodeveloper_jusibe-php-lib
train
php
55170273d78bbdcf14badc00c6f1f3ce70b9faec
diff --git a/squad/ci/models.py b/squad/ci/models.py index <HASH>..<HASH> 100644 --- a/squad/ci/models.py +++ b/squad/ci/models.py @@ -51,6 +51,10 @@ class Backend(models.Model): def really_fetch(self, test_job): implementation = self.get_implementation() + + test_job.last_fetch_attempt = timezon...
ci: save TestJob.last_fetch_attempt before fetching If there is an exception while fetching, the last_fetch_attempt is guaranteed to be saved.
Linaro_squad
train
py
9a1086e9c59d4c085a217179a7ef8a465cddecbe
diff --git a/test/helpers/kubectl.go b/test/helpers/kubectl.go index <HASH>..<HASH> 100644 --- a/test/helpers/kubectl.go +++ b/test/helpers/kubectl.go @@ -4383,7 +4383,7 @@ func (kub *Kubectl) CleanupCiliumComponents() { wg sync.WaitGroup resourcesToDelete = map[string]string{ - "configmap": "cilium-...
test: remove unused configmap from CleanupCiliumComponents() The hubble-ca-cert ConfigMap is not installed by Cilium anymore, see <URL> list of resources to delete.
cilium_cilium
train
go
0591c404733498a44127951114be3b603d93493e
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -14,8 +14,8 @@ module.exports = function (config) { } }; - var isCi = process.env.CONTINUOUS_INTEGRATION === 'true'; - var runCoverage = process.env.COVERAGE === 'true' || isCi;...
chore(tests): disable test coverage for browser tests
plouc_nivo
train
js
a74c1cc04ca2ae38adb10f983b0a0665ae0e7fdf
diff --git a/src/plugins/media_control/media_control.js b/src/plugins/media_control/media_control.js index <HASH>..<HASH> 100644 --- a/src/plugins/media_control/media_control.js +++ b/src/plugins/media_control/media_control.js @@ -262,7 +262,7 @@ export default class MediaControl extends UICorePlugin { playerResiz...
fix(media_control): change plugin's function call to ask the core instance the fullscreen state
clappr_clappr
train
js
74ecfa693d4faa29c98f6566d17d70aa8369a5aa
diff --git a/packages/cerebral/src/operators/helpers/populatePath.js b/packages/cerebral/src/operators/helpers/populatePath.js index <HASH>..<HASH> 100644 --- a/packages/cerebral/src/operators/helpers/populatePath.js +++ b/packages/cerebral/src/operators/helpers/populatePath.js @@ -5,6 +5,10 @@ export default function ...
fix(Operators): populatePaths (#<I>)
cerebral_cerebral
train
js
fb9f6ec24f99ff8f30e6aa27ac9433f7b1fbe90f
diff --git a/system/Filters/InvalidChars.php b/system/Filters/InvalidChars.php index <HASH>..<HASH> 100644 --- a/system/Filters/InvalidChars.php +++ b/system/Filters/InvalidChars.php @@ -33,6 +33,13 @@ class InvalidChars implements FilterInterface protected $source; /** + * Regular expressions for valid...
refactor: add property for control code regex Users could override the property.
codeigniter4_CodeIgniter4
train
php
b67bf50a5e178e3dd35c84c7ab88b8e68bf136ff
diff --git a/packages/application-shell/src/apollo-links/error-link.js b/packages/application-shell/src/apollo-links/error-link.js index <HASH>..<HASH> 100644 --- a/packages/application-shell/src/apollo-links/error-link.js +++ b/packages/application-shell/src/apollo-links/error-link.js @@ -19,7 +19,7 @@ const errorLink...
fix(app-shell): null check (#<I>)
commercetools_merchant-center-application-kit
train
js
8ba74b710f78ddd3f6aa6b059ca54273e91ce960
diff --git a/src/metadata.js b/src/metadata.js index <HASH>..<HASH> 100644 --- a/src/metadata.js +++ b/src/metadata.js @@ -107,6 +107,23 @@ export class MetadataStore { } /** + * Searches metadata and returns the first instance of a particular type or creates and adds one if none is found. + * + * @method fi...
feat(metadata): add firstOrAdd helper This helper can be used in side of decorators that want to find or add metadata because, perhaps they want to further configure options on existing metadata.
aurelia_metadata
train
js
2ad6ba58ff72f2500a0fe37d50be58727e4e8852
diff --git a/src/geshi/php.php b/src/geshi/php.php index <HASH>..<HASH> 100644 --- a/src/geshi/php.php +++ b/src/geshi/php.php @@ -73,7 +73,7 @@ $language_data = array ( ), 2 => array( 'null', '__LINE__', '__FILE__', - 'false', '&lt;?php', '&lt;?', '&lt;?=', '?&gt;', '&lt;%...
fix: Typo in <%= ASP-style echo opener
GeSHi_geshi-1.0
train
php
dff8f708986a9503720754db50423148addf060b
diff --git a/src/status.js b/src/status.js index <HASH>..<HASH> 100644 --- a/src/status.js +++ b/src/status.js @@ -1,16 +1,13 @@ const _ = require('underscore'); const AVRequest = require('./request').request; -const getUser = (options = {}) => AV.User.currentAsync() - .then(currUser => currUser - ? currUser - ...
fix(status): fix undefined AV error (#<I>)
leancloud_javascript-sdk
train
js
a232ad88560624a0275ba255fbf2085dc07d6d40
diff --git a/test/unit/flatten-browser.js b/test/unit/flatten-browser.js index <HASH>..<HASH> 100644 --- a/test/unit/flatten-browser.js +++ b/test/unit/flatten-browser.js @@ -33,7 +33,7 @@ test('flatten browser:simple', function(done) { done(); }); -test.only('flatten browser:stable', function(done) { +test('fl...
test: remove bad .only, sorry
airtap_airtap
train
js
1b9944ca65302ef2ab92e6d74d5bbad5a5a0f395
diff --git a/src/filters.js b/src/filters.js index <HASH>..<HASH> 100644 --- a/src/filters.js +++ b/src/filters.js @@ -34,6 +34,7 @@ angular.module('angular.filter', [ 'a8m.fuzzy-by', 'a8m.fuzzy', 'a8m.omit', + 'a8m.pick', 'a8m.math', 'a8m.math.max',
fix(filters): register pick-module
a8m_angular-filter
train
js
6be5ec14e4b1696aad3a8e8bc4740b88e336bb9b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -20,9 +20,10 @@ var SearchResults = require('./src/SearchResults'); * helper.on('result', function(result) { * console.log(result); * }); - * helper.toggleRefine('Movies & TV Shows') - * .toggleRefine('Free shipp...
docs(instantiate): use existing signature of toggleRefine (#<I>) The way this was documented throws an error see <URL>
algolia_algoliasearch-helper-js
train
js
c2939a7d28ffffb3c7965432d0155c8356cec50c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -102,7 +102,6 @@ setup( ], ext_modules=[Extension("swiglpk._swiglpk", sources=["swiglpk/glpk.i"], - libraries=['glpk'], - swig_opts=['-b...
fix: don't use swig '-builtin' option because it changes the interface
biosustain_swiglpk
train
py
5e6870ebdc86e5cbae3879a5f580e8d043f16cf8
diff --git a/views/js/qtiCreator/widgets/helpers/formElement.js b/views/js/qtiCreator/widgets/helpers/formElement.js index <HASH>..<HASH> 100644 --- a/views/js/qtiCreator/widgets/helpers/formElement.js +++ b/views/js/qtiCreator/widgets/helpers/formElement.js @@ -282,7 +282,7 @@ define([ updateRespo...
fix: added field name when removing upperbound name
oat-sa_extension-tao-itemqti
train
js
7917638a641d6419532739cdf9e5e29b05f269d8
diff --git a/packages/select/custom-resources/AvOrganizationSelect.js b/packages/select/custom-resources/AvOrganizationSelect.js index <HASH>..<HASH> 100644 --- a/packages/select/custom-resources/AvOrganizationSelect.js +++ b/packages/select/custom-resources/AvOrganizationSelect.js @@ -32,13 +32,7 @@ AvOrganizationSele...
chore(select): clean up resourceIds prop
Availity_availity-react
train
js
330ab4f0bcf22f970f9c3e17cbe5ef8cc6fdf96b
diff --git a/ibis/backends/pandas/execution/generic.py b/ibis/backends/pandas/execution/generic.py index <HASH>..<HASH> 100644 --- a/ibis/backends/pandas/execution/generic.py +++ b/ibis/backends/pandas/execution/generic.py @@ -681,8 +681,8 @@ def execute_count_frame(op, data, _, **kwargs): return len(data) -@e...
fix(pandas): execute negate on bool as `not`
ibis-project_ibis
train
py
b9ce956218fb1c097029722cb7e3e9fc368f23d3
diff --git a/src/authService.js b/src/authService.js index <HASH>..<HASH> 100644 --- a/src/authService.js +++ b/src/authService.js @@ -80,7 +80,7 @@ export class AuthService { * @param {StorageEvent} event StorageEvent */ storageEventHandler = (event: StorageEvent) => { - if (event.key !== this.config.sto...
fix(authServive): fix ie<I> storage event loop
SpoonX_aurelia-authentication
train
js
8b4b09f183ea370275759adfcc8ad3c5155e9f29
diff --git a/src/flamegraph.js b/src/flamegraph.js index <HASH>..<HASH> 100644 --- a/src/flamegraph.js +++ b/src/flamegraph.js @@ -709,13 +709,20 @@ export default function () { // work with zoom, previous ids should be maintained. this.resetZoom() + // Clear search details + // Merge...
fix: clear search on merge. fixes #<I>.
spiermar_d3-flame-graph
train
js
7568d0f9a49bfa65547dac75b8db17caba2167a1
diff --git a/lib/init.js b/lib/init.js index <HASH>..<HASH> 100644 --- a/lib/init.js +++ b/lib/init.js @@ -405,10 +405,6 @@ module.exports = function BlastInit(modifyPrototype) { } } - if (name == 'inherits') { - console.log(objTarget); - } - if (objTarget) { // If this is only a shim, and it alread...
fix: String#encodeHTML should not encode regular space
skerit_protoblast
train
js,js
f93a8c3c93eb03e65198b340f3ac551af8f6baac
diff --git a/lib/cursor.js b/lib/cursor.js index <HASH>..<HASH> 100644 --- a/lib/cursor.js +++ b/lib/cursor.js @@ -557,7 +557,7 @@ Cursor.prototype.sort = function(keyOrList, direction) { value[1] = 1; } else if (x[1] === 'desc') { value[1] = -1; - } else if (x[1] === 1 || x[1] ===...
fix(cursor): allow `$meta` based sort when passing an array to `sort()` You may pass an object with a `$meta` key in place of the order parameter to `sort`. The previous code would incorrectly reject this input as illegal. See <URL>
mongodb_node-mongodb-native
train
js
8b7515ef327f1cb3a22a90b3a00c6e004584d71e
diff --git a/optlang/interface.py b/optlang/interface.py index <HASH>..<HASH> 100644 --- a/optlang/interface.py +++ b/optlang/interface.py @@ -1118,7 +1118,7 @@ class Model(object): constraint.expression keys = [constraint.name for constraint in constraints] if len(constraints) > 350: # ...
fix: remove large number of constraints (#<I>) By calling self.constraints in line <I> it was starting a never ending recursion.
biosustain_optlang
train
py
d1efd7d3f939ef0c1604d0da33eab09b9a6b4b32
diff --git a/website/src/data/components/bar/props.js b/website/src/data/components/bar/props.js index <HASH>..<HASH> 100644 --- a/website/src/data/components/bar/props.js +++ b/website/src/data/components/bar/props.js @@ -350,13 +350,7 @@ const props = [ help: 'How to format labels.', description: ` ...
chore(doc): fix broken markdown description of the 'labelFormat' property (#<I>) Based on the same field in bubbles which does properly use markdown, this can be found here: <URL>
plouc_nivo
train
js
7b1e9e829b7a5b4897185b684ff8bb72673f6b08
diff --git a/lib/frames/frame.js b/lib/frames/frame.js index <HASH>..<HASH> 100644 --- a/lib/frames/frame.js +++ b/lib/frames/frame.js @@ -49,10 +49,6 @@ function Frame(type) { this.type = type; } -Frame.prototype._getTypeSpecificHeader = function(options) { - throw new errors.NotImplementedError('Subclass must ...
refactor(frames): remove _getTypeSpecificHeader, as it is unused
noodlefrenzy_node-amqp10
train
js,js
d8d25a308fc2cae134b3ad720694edf7a3feccf5
diff --git a/cmd/data-crawler.go b/cmd/data-crawler.go index <HASH>..<HASH> 100644 --- a/cmd/data-crawler.go +++ b/cmd/data-crawler.go @@ -611,18 +611,9 @@ func (f *folderScanner) scanQueuedLevels(ctx context.Context, folders []cachedFo if f.dataUsageCrawlDebug { logger.Info(color.Green("healObjects:")+" del...
fix: use HealObject for cleaning up dangling objects (#<I>) main reason is that HealObjects starts a recursive listing for each object, this can be a really really long time on large namespaces instead avoid recursive listing just perform HealObject() instead at the prefix. delete's already handle purging dangli...
minio_minio
train
go
ba774fe36b93961a982f6844434e2c3b19fa6c2d
diff --git a/test/tablet.py b/test/tablet.py index <HASH>..<HASH> 100644 --- a/test/tablet.py +++ b/test/tablet.py @@ -404,7 +404,13 @@ class Tablet(object): if not self.proc: Tablet.tablets_running += 1 self.proc = utils.run_bg(args, stderr=stderr_fd, extra_env=extra_env) + + log_message = "Started...
test: Log for each tablet its alias, pid and a shell pattern to the log files. This makes it easier to find the corresponding tablet log when debugging an issue. The message is both printed to the debug logging facility and the stderr logfile of the tablet.
vitessio_vitess
train
py
d2200f54a25ee68f8c280535dc13cc675d2a51d8
diff --git a/src/Lucid/QueryBuilder/methods.js b/src/Lucid/QueryBuilder/methods.js index <HASH>..<HASH> 100644 --- a/src/Lucid/QueryBuilder/methods.js +++ b/src/Lucid/QueryBuilder/methods.js @@ -267,3 +267,16 @@ methods.pair = function (target) { }, {}) } } + +methods.pluckFirst = function (target) { + return...
feat(lucid): add support for pluckFirst and pluckId added methods will return the value of the plucked field as the plain value instead of array or object
adonisjs_adonis-lucid
train
js
654556ae4edb02e5badc51c8d771df457745f21f
diff --git a/src/plugins/clipboard.js b/src/plugins/clipboard.js index <HASH>..<HASH> 100644 --- a/src/plugins/clipboard.js +++ b/src/plugins/clipboard.js @@ -19,8 +19,8 @@ angular.module('ngCordova.plugins.clipboard', []) paste: function () { var q = $q.defer(); - window.cordova.plugins.clipbo...
fix(clipboard): wrong function for paste, and promise return
ionic-team_ng-cordova
train
js
0cf0a1885d72b21b81cc5b1338902e149c750364
diff --git a/src/plugin/release/check-release.js b/src/plugin/release/check-release.js index <HASH>..<HASH> 100644 --- a/src/plugin/release/check-release.js +++ b/src/plugin/release/check-release.js @@ -121,7 +121,6 @@ export function rawCommits (tag) { gitRawCommits({ format: '%B%n-hash-%n%H', from: tag }) ...
fix(northbrook): remove unneeded console.log
northbrookjs_northbrook
train
js
bb996629767fd1bf401ce6bbff9a0107403be420
diff --git a/packages/portal-data/lib/transform.js b/packages/portal-data/lib/transform.js index <HASH>..<HASH> 100644 --- a/packages/portal-data/lib/transform.js +++ b/packages/portal-data/lib/transform.js @@ -69,7 +69,7 @@ exports.toService = function (clientService) { version_hash: clientService.hash || clientS...
fix(portal-data): don't fallback on service slug
yldio_joyent-portal
train
js
d8b6da98d36ea9f35acc4e8a795936634cb1ee63
diff --git a/lib/util/i18n.js b/lib/util/i18n.js index <HASH>..<HASH> 100644 --- a/lib/util/i18n.js +++ b/lib/util/i18n.js @@ -1,5 +1,6 @@ import flatten from 'flat' +// deepmerge must be imported via `require`: see https://github.com/TehShrike/deepmerge#include const merge = require('deepmerge') /**
refactor: add note about deepmerge import
opentripplanner_otp-react-redux
train
js
7ab019d44e666eb2527bf15fb63bfb972104d5be
diff --git a/src/components/combo-box/combo-box.js b/src/components/combo-box/combo-box.js index <HASH>..<HASH> 100644 --- a/src/components/combo-box/combo-box.js +++ b/src/components/combo-box/combo-box.js @@ -10,7 +10,7 @@ import styles from './combo-box.css'; import useMounted from '../../hooks/use-mounted.js'; im...
refactor(ComboBox): rename deprecated FormSelect to ComboBox
juanca_react-aria-components
train
js
7cb499ab357bac585f47c2a6f4a9d4bae1690850
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -44,8 +44,8 @@ var urls = [ 'https://github.com/mafintosh/swap-to-level.git', 'https://github.com/mafintosh/telephone.git', 'https://github.com/mafintosh/what-line-is-this.git', - 'https://github.com/maxogden/standard-fo...
test: temporarily disable npm/fstream
standard_standard-engine
train
js
bbecfae02b03d76524e98b3026413605bc42d6dc
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -16,6 +16,7 @@ function isInstance (error, types) { return error.name === type } + /* istanbul ignore next */ return false }) } @@ -26,6 +27,7 @@ function isRegExpMatch (error, matches) { error...
test(coverage): full coverage
ahmadnassri_smart-promise
train
js
7244751789b30528f1eafedcc35740ffe492a113
diff --git a/ui/src/components/infinite-scroll/QInfiniteScroll.js b/ui/src/components/infinite-scroll/QInfiniteScroll.js index <HASH>..<HASH> 100644 --- a/ui/src/components/infinite-scroll/QInfiniteScroll.js +++ b/ui/src/components/infinite-scroll/QInfiniteScroll.js @@ -173,7 +173,6 @@ export default defineComponent({ ...
fix(QInfiniteScroll): position scroll on bottom before first poll when using reverse mode #<I> (#<I>)
quasarframework_quasar
train
js
90e2509d15efeba0180a4c0ba14cb3bab8d1d146
diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index <HASH>..<HASH> 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -62,9 +62,8 @@ class ClientConstructor(object): attach_stacktrace=False, # type: bool ca_certs=None, # type: Optional[str] propagate_traces=True, # ...
fix: Remove obsolete code comments and fip default of traceparent_v2
getsentry_sentry-python
train
py
edac56f55c613c38c28275852999a53382b654c6
diff --git a/lib/IntObjToFhir.js b/lib/IntObjToFhir.js index <HASH>..<HASH> 100644 --- a/lib/IntObjToFhir.js +++ b/lib/IntObjToFhir.js @@ -362,6 +362,7 @@ Factory.prototype.claims = function(cms, patient, claimNumber, source, bundle) { var claim = { "resource": { "resourceType": "Claim", + ...
fix: ClaimResponse -> Claim link fixed
amida-tech_cms-fhir
train
js
3e8e9dea49bd2f47952aef9c7f8c68e85812d22a
diff --git a/test/display/message.js b/test/display/message.js index <HASH>..<HASH> 100644 --- a/test/display/message.js +++ b/test/display/message.js @@ -29,4 +29,10 @@ suite('object display', function () { deepObj.should.deep.equal(deepObj2); }); + test('deep equal no diff', function () { + chai.Asserti...
test: [Assertion] configruable showDiff flag. Closes #<I>
chaijs_chai
train
js
e1fae5fe4ffcf84fbf66606e1c4c428225643059
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.6.0" +const Version = "v1.6.1"
chore: release <I> (#<I>)
swaggo_swag
train
go
a41b48148f5fc96bda375580583590b1abbd4c46
diff --git a/test/fetch.test.js b/test/fetch.test.js index <HASH>..<HASH> 100644 --- a/test/fetch.test.js +++ b/test/fetch.test.js @@ -21,11 +21,12 @@ describe('fetch()', function() { before(function(done) { MongoClient.connect( 'mongodb://localhost:27017/test', + { useNewUrlParser: true }, ...
chore: Fix driver deprecation warnings ``` (node:<I>) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect. ``` and ``` (node:<I>) DeprecationWarning: collection.ensureIndex is depreca...
mongodb-js_index-model
train
js
89b835d25ce4167105d313f72acfbb13188f7c01
diff --git a/packages/search-field/src/components/Menu.js b/packages/search-field/src/components/Menu.js index <HASH>..<HASH> 100644 --- a/packages/search-field/src/components/Menu.js +++ b/packages/search-field/src/components/Menu.js @@ -53,11 +53,9 @@ const Menu = ({ onReachEnd={onScrollReachEnd} re...
refactor(search-field): remove unecessary ternary affects: @crave/farmblocks-search-field
CraveFood_farmblocks
train
js
eec8f799237efb8532d971ee40e283d1e0435cdf
diff --git a/controller/state.go b/controller/state.go index <HASH>..<HASH> 100644 --- a/controller/state.go +++ b/controller/state.go @@ -413,7 +413,7 @@ func (m *appStateManager) CompareAppState(app *v1alpha1.Application, project *ap if appInstanceName != "" && appInstanceName != app.Name { conditions = appe...
fix: Clarify in multiple applications (#<I>) (#<I>)
argoproj_argo-cd
train
go
0e926d51b5235ba3f6d87da688bb3d29c4f91ef5
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -557,7 +557,8 @@ exports.extend = function(newConf) { var agentConfig = { maxSockets: config.sockets, keepAlive: config.keepAlive, - keepAliveMsecs: config.keepAliveMsecs + keepAliveMsecs...
refactor: limit max free sockets
avwo_whistle
train
js
9605c8cf6e78d50b0ab69874cd8f1cf03a9b3aff
diff --git a/src/router.js b/src/router.js index <HASH>..<HASH> 100644 --- a/src/router.js +++ b/src/router.js @@ -26,15 +26,15 @@ class Router { } navigate (location, query) { - this._router('navigateTo', location, query) + return this._router('navigateTo', location, query) } redirect (location, ...
fix: router promise #<I>
tinajs_tina-router
train
js
b8290ace846503ee5a61aae460e8a6516af8a57d
diff --git a/lib/repl.js b/lib/repl.js index <HASH>..<HASH> 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -4,6 +4,7 @@ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or...
fix(repl): use console.log for old Node 8.x releases (#<I>) console.context does not exist until specific 8.x release. Use console.log as workaround. Fixes #<I>
GoogleChromeLabs_ndb
train
js
2b96fd8a6f3dc6763f2f911c3fda0e80c6f30e8e
diff --git a/vyper/__init__.py b/vyper/__init__.py index <HASH>..<HASH> 100644 --- a/vyper/__init__.py +++ b/vyper/__init__.py @@ -1,2 +1,14 @@ from vyper.compiler import compile_code, compile_codes # noqa: F401 -from vyper.version import version as __version__ + + +try: + from importlib.metadata import PackageNot...
fix: bug in usage of scm-setup (#<I>) The existing way doesn't work if setup.py hasn't been run yet. This way works both with pyinstaller and regular setup.py.
ethereum_vyper
train
py
b3ec2d0d9a078f550203030bfb1555ee6bafe759
diff --git a/client/controllers/WebPublisherOutputController.js b/client/controllers/WebPublisherOutputController.js index <HASH>..<HASH> 100644 --- a/client/controllers/WebPublisherOutputController.js +++ b/client/controllers/WebPublisherOutputController.js @@ -303,7 +303,7 @@ export function WebPublisherOutputControl...
fix: camelCase to underscore
superdesk_superdesk-publisher
train
js
f385840f3a1d3380ec49119e77e4ab40ad08ab6e
diff --git a/kv/service.go b/kv/service.go index <HASH>..<HASH> 100644 --- a/kv/service.go +++ b/kv/service.go @@ -100,7 +100,9 @@ func NewService(log *zap.Logger, kv Store, configs ...ServiceConfig) *Service { if len(configs) > 0 { s.Config = configs[0] - } else { + } + + if s.Config.SessionLength == 0 { s.C...
refactor(kv): set the default session length when not specified (#<I>) At the moment, the default session length only gets set to the default when no service config is specified. So if a service config is used and it does not set a value for the session length, then the session length will be zero. This modifies...
influxdata_influxdb
train
go
283f3e571f14ee7f1dea673a23cae84757cc52a3
diff --git a/packages/input-select/src/Select.js b/packages/input-select/src/Select.js index <HASH>..<HASH> 100644 --- a/packages/input-select/src/Select.js +++ b/packages/input-select/src/Select.js @@ -71,9 +71,10 @@ class Select extends React.Component { componentWillReceiveProps = newProps => { if ( - ...
fix(Select): update selected value after receiving new items affects: @crave/farmblocks-input-select
CraveFood_farmblocks
train
js
a085278184c19bad36bb776be4e3aa3db92fcb7e
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -48,6 +48,9 @@ function cond(data, conds, index) { module.exports = function toReactComponent(converters = [], jsonml) { const defaultConverters = [ [(node) => typeof node === 'string', (node) => node], + [(node) =...
fix: hr has no children
benjycui_jsonml-to-react-element
train
js
dbfaa680ce89ae18642e6ce3c76b39157db3a246
diff --git a/alot/addressbook/external.py b/alot/addressbook/external.py index <HASH>..<HASH> 100644 --- a/alot/addressbook/external.py +++ b/alot/addressbook/external.py @@ -11,7 +11,7 @@ from . import AddressBook, AddressbookError class ExternalAddressbook(AddressBook): """:class:`AddressBook` that parses a she...
fix: dont overwrite default re-flag 0 with None issue #<I>
pazz_alot
train
py
c268817fe82cdb89f47d791c158af2afadf9461a
diff --git a/manifest.php b/manifest.php index <HASH>..<HASH> 100755 --- a/manifest.php +++ b/manifest.php @@ -210,9 +210,9 @@ return [ ], 'constants' => [ #TAO version number - 'TAO_VERSION' => '3.4.0-sprint143', + 'TAO_VERSION' => '3.4.0-sprint144', #TAO version label - ...
chore: TAO_VERSION constants
oat-sa_tao-core
train
php
4adeddbd4504cf4ce1c4f0df13a7af941bcb10d0
diff --git a/lib/informer.js b/lib/informer.js index <HASH>..<HASH> 100644 --- a/lib/informer.js +++ b/lib/informer.js @@ -30,10 +30,12 @@ module.exports = function BlastInformer(Blast, Collection) { * * @author Jelle De Loecker <jelle@codedor.be> * @since 0.1.5 - * @version 0.1.5 + * @version 0.1.8...
fix: Informer.isInformer should return boolean
skerit_protoblast
train
js
a39dcd0c523f791ee3eabfae45db8fe6144f9b6c
diff --git a/source/rafcon/core/states/container_state.py b/source/rafcon/core/states/container_state.py index <HASH>..<HASH> 100644 --- a/source/rafcon/core/states/container_state.py +++ b/source/rafcon/core/states/container_state.py @@ -1008,7 +1008,7 @@ class ContainerState(State): act_input_data_port_by_na...
refactor(container_state): remove obsolete usage of set()
DLR-RM_RAFCON
train
py
3a938ae2ff0ef556a5421b41420d0156280120bc
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -117,7 +117,7 @@ quest.send = function(req, body) { req.setHeader('Content-Length', Buffer.byteLength(body)) req.write(body) } - return quest.stream(req) + return req } quest.read = function(res) {
fix: stop calling quest.stream() from inside quest.send() BREAKING CHANGE The request object is returned without being sent.
aleclarson_quest
train
js
60b0cbc1793d121ea7431ac32fa4d0137e86caf6
diff --git a/src/get-peer-info.js b/src/get-peer-info.js index <HASH>..<HASH> 100644 --- a/src/get-peer-info.js +++ b/src/get-peer-info.js @@ -56,10 +56,10 @@ function getPeerInfoRemote (peer, libp2p) { try { peerInfo = getPeerInfo(peer, libp2p.peerBook) } catch (err) { - throw errCode( + return Promis...
fix: reject rather than throw in get peer info (#<I>) The get peer info util consolidation from #<I> exposed an issue with how bad values are being handled. Throwing the error can cause issues when promises are being used. Rejecting resolves this. I added a test case to validate the change.
libp2p_js-libp2p
train
js,js
707c983feb69ca4ca5fbbc30704c0b999cabbd80
diff --git a/lib/rack/app.rb b/lib/rack/app.rb index <HASH>..<HASH> 100644 --- a/lib/rack/app.rb +++ b/lib/rack/app.rb @@ -19,7 +19,6 @@ class Rack::App require 'rack/app/file_server' require 'rack/app/error_handler' require 'rack/app/bundled_extensions' - require 'rack/app/endpoint/not_found' require 'rac...
fix: remove leftover require in app.rb
rack-app_rack-app
train
rb
ab675ece46e9e4738f4edef3f1a2a73e1cb54f62
diff --git a/api/graph_test.go b/api/graph_test.go index <HASH>..<HASH> 100644 --- a/api/graph_test.go +++ b/api/graph_test.go @@ -34,7 +34,7 @@ var ( GraphDatapoint{ Axis: "l", CheckID: 1234, - Color: "#ff0000", + Color: &[]string{"#ff0000"}[0], DataFormula: &testFormula...
fix: tests to match changes to graph struct
circonus-labs_circonus-gometrics
train
go
b8f4120a96b7b94344b038439f2863c0ad185866
diff --git a/ibis/expr/operations/logical.py b/ibis/expr/operations/logical.py index <HASH>..<HASH> 100644 --- a/ibis/expr/operations/logical.py +++ b/ibis/expr/operations/logical.py @@ -8,6 +8,7 @@ if TYPE_CHECKING: from public import public +from ibis.common.validators import immutable_property from ibis.expr i...
fix(api): compute the type from both branches of `Where` expressions
ibis-project_ibis
train
py
287f94521d48301fc1cb230ab1fadf02dbe7ae56
diff --git a/src/radio/Radio.js b/src/radio/Radio.js index <HASH>..<HASH> 100644 --- a/src/radio/Radio.js +++ b/src/radio/Radio.js @@ -19,7 +19,7 @@ export default class Radio extends Component { componentWillReceiveProps(nextProps) { if (this.props.checked !== nextProps.checked) { this.setState({ checke...
fix(Radio): fixed default cannot be selected. remove string refs.
uiwjs_uiw
train
js
76c56187abb2cd808133dac2771deb139b4c491d
diff --git a/lib/express-restify-mongoose.js b/lib/express-restify-mongoose.js index <HASH>..<HASH> 100755 --- a/lib/express-restify-mongoose.js +++ b/lib/express-restify-mongoose.js @@ -430,7 +430,7 @@ var restify = function(app, model, opts) { postCreate(res, result, function(err) { ...
fix: do not override status if already set - A custom postCreate or postDelete may set it's own status code
florianholzapfel_express-restify-mongoose
train
js
562c6437e05491649c8fcca9bf3c7bf3922441ca
diff --git a/src/RollbarLogger.php b/src/RollbarLogger.php index <HASH>..<HASH> 100644 --- a/src/RollbarLogger.php +++ b/src/RollbarLogger.php @@ -102,6 +102,10 @@ class RollbarLogger extends AbstractLogger $this->handleResponse($payload, $response); + if (is_a($toLog, 'Exception') &...
feat(logging): reraise exceptions in configured environments re #<I>
rollbar_rollbar-php
train
php,php
2f4198e1548a90cf47e58c79c8985bbb1f869ee0
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -182,6 +182,9 @@ class TCWrapper { throw new Error(`Rules validation error: ${error.message}`); } + rules.outgoing = rules.outgoing || {}; + rules.incoming = rules.incoming || {}; + con...
feat(lib): Allow undefined on incoming / outcoming
jvictorsoto_tc-wrapper
train
js,js
b4c287a494ded6b151e965e32e3e7cb9373c2f21
diff --git a/bin/ionic-app-scripts.js b/bin/ionic-app-scripts.js index <HASH>..<HASH> 100755 --- a/bin/ionic-app-scripts.js +++ b/bin/ionic-app-scripts.js @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#!/usr/bin/env node --max_old_space_size=2048 if (process.argv.length > 2) {
fix(optimization): fix out of memory errors by providing more memory by default
ionic-team_ionic-app-scripts
train
js
88e1d56bc29e0685cbed4856175bfe654ad0e2e9
diff --git a/pkg/setting/setting.go b/pkg/setting/setting.go index <HASH>..<HASH> 100644 --- a/pkg/setting/setting.go +++ b/pkg/setting/setting.go @@ -360,9 +360,18 @@ func loadConfiguration(args *CommandLineArgs) { defaultConfigFile := path.Join(HomePath, "conf/defaults.ini") configFiles = append(configFiles, defa...
fix(logging): added extra logging when default config file is not found (ie homepath is not correct), fixes #<I>
grafana_grafana
train
go
fbf95f7c61c2f23ba70788349a34afa810899511
diff --git a/packages/dna-core/src/lib/bootstrap.js b/packages/dna-core/src/lib/bootstrap.js index <HASH>..<HASH> 100644 --- a/packages/dna-core/src/lib/bootstrap.js +++ b/packages/dna-core/src/lib/bootstrap.js @@ -1,5 +1,5 @@ import { registry } from './registry.js'; -import { connect } from './dom.js'; +import { get...
fix: do not bootstrap already instantiated components
chialab_dna
train
js
2e3192a801af1ea0b210f7e948d65abd7d4f6ed4
diff --git a/test/interpreter/index.js b/test/interpreter/index.js index <HASH>..<HASH> 100644 --- a/test/interpreter/index.js +++ b/test/interpreter/index.js @@ -34,6 +34,7 @@ describe('interpreter', () => { console: global.console, assert: chai.assert, it, + xit, }; ...
fix: pass xit in tests
xtuc_webassemblyjs
train
js
a56b38c8229db1d2d98a543b268b2ef97c7f7dc3
diff --git a/test/authentication.spec.js b/test/authentication.spec.js index <HASH>..<HASH> 100644 --- a/test/authentication.spec.js +++ b/test/authentication.spec.js @@ -315,6 +315,15 @@ describe('Authentication', () => { expect(fail).toThrow(); }); + it('Should throw if token not found in nested', ()...
test(authentication): add throw not found nested token
SpoonX_aurelia-authentication
train
js