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
fb76d555fe7822e7aec2a0967122a0c192d3dc27
diff --git a/.eslintrc.js b/.eslintrc.js index <HASH>..<HASH> 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -27,6 +27,7 @@ module.exports = { rules: { 'arrow-parens': 'off', + 'arrow-body-style': 'off', 'comma-dangle': ['error', 'never'], 'class-methods-use-this': 'off', 'consistent-return...
chore(eslint): disable arrow-body-style again (team consensus)
instana_nodejs-sensor
train
js
fa0dc3a237806c9d28ba08063055433b2c48aa22
diff --git a/test/browser/test.js b/test/browser/test.js index <HASH>..<HASH> 100755 --- a/test/browser/test.js +++ b/test/browser/test.js @@ -12,6 +12,10 @@ var server = require('./server.js'); var testTimeout = 30 * 60 * 1000; +var retries = 0; +var MAX_RETRIES = 5; +var MS_BEFORE_RETRY = 20000; + var username ...
feat(sauce): retry
delta-db_deltadb-common-utils
train
js
ad9e64d086d8a5d12a046b6a38ed54d371068ee2
diff --git a/lib/browser/api/web-contents.js b/lib/browser/api/web-contents.js index <HASH>..<HASH> 100644 --- a/lib/browser/api/web-contents.js +++ b/lib/browser/api/web-contents.js @@ -184,7 +184,7 @@ WebContents.prototype.executeJavaScript = function (code, hasUserGesture, callba return asyncWebFrameMethods.cal...
fix: remove race condition for executeJavaScript (#<I>) Replaces 'did-finish-load' with 'did-stop-loading' which semantically maps to the events inside Chromium. Before I think we were relying on a natural <I>% winnable race condition. Fixes #<I>
electron_electron
train
js
e73e253f25c755031d986f1f8c1ec4a31b4f4ba0
diff --git a/spec/rack/app/middleware_spec.rb b/spec/rack/app/middleware_spec.rb index <HASH>..<HASH> 100644 --- a/spec/rack/app/middleware_spec.rb +++ b/spec/rack/app/middleware_spec.rb @@ -6,15 +6,24 @@ describe Rack::App do describe '.use' do rack_app do + use BlockMiddlewareTester, 'test' do ...
test: add more test to cover more the use method
rack-app_rack-app
train
rb
7441e64622d2c229f8e065d86fe1602655128540
diff --git a/src/config/.eslintrc.js b/src/config/.eslintrc.js index <HASH>..<HASH> 100644 --- a/src/config/.eslintrc.js +++ b/src/config/.eslintrc.js @@ -6,10 +6,12 @@ module.exports = { }, env: { 'jest/globals': true, + es6: true, browser: true, node: true, }, rules: { + 'no-unused-va...
fix(lint): support es6 and unused vars starting with _
macklinu_mdu-scripts
train
js
8aaa37a8c6d18a6d962f0bde78b5429e4c92a571
diff --git a/config/build.config.js b/config/build.config.js index <HASH>..<HASH> 100644 --- a/config/build.config.js +++ b/config/build.config.js @@ -1,7 +1,7 @@ const pkg = require('../package.json'); module.exports = { - ngVersion: '1.6.7', + ngVersion: '1.7.2', version: pkg.version, repository: pkg.repo...
chore(docs): update from AngularJS <I> to <I> (#<I>)
angular_material
train
js
c9e077902165d221e2f52ccb263cea0913901e36
diff --git a/tests/unit/s3-driver.spec.js b/tests/unit/s3-driver.spec.js index <HASH>..<HASH> 100644 --- a/tests/unit/s3-driver.spec.js +++ b/tests/unit/s3-driver.spec.js @@ -29,6 +29,7 @@ const config = { bucket: process.env.SES_BUCKET, region: process.env.SES_REGION } +console.log(config) test.group('S3 Dri...
ci(travis): log config
Slynova-Org_flydrive
train
js
1812ac9288e41d05dcc4e36caecf4ed7ccb62576
diff --git a/pysrt/srttime.py b/pysrt/srttime.py index <HASH>..<HASH> 100644 --- a/pysrt/srttime.py +++ b/pysrt/srttime.py @@ -86,12 +86,14 @@ class SubRipTime(Comparable): def __iadd__(self, other): self.ordinal += self._coerce(other).ordinal + return self def __sub__(self, other): ...
fix: iadd and isub for SubRipTime
byroot_pysrt
train
py
156c3082397952b1958c5bc8aeff37ced9889594
diff --git a/src/geshi/vb.php b/src/geshi/vb.php index <HASH>..<HASH> 100644 --- a/src/geshi/vb.php +++ b/src/geshi/vb.php @@ -45,7 +45,7 @@ $language_data = array ( 'COMMENT_MULTI' => array(), 'COMMENT_REGEXP' => array( // Comments (either single or multiline with _ - 1 => '/\'.*[^_]\n/sU', +...
fix: must be " _" i.e. with whitespace
GeSHi_geshi-1.0
train
php
9dff89249a3be7f39c0d2a8cc3a3eccc2d9415b7
diff --git a/src/utils/http-browser.js b/src/utils/http-browser.js index <HASH>..<HASH> 100644 --- a/src/utils/http-browser.js +++ b/src/utils/http-browser.js @@ -19,12 +19,17 @@ export async function http ({ res.body && res.body.getReader ? fromStream(res.body) : [new Uint8Array(await res.arrayBuffe...
fix: the `headers` returned by the HTTP plugin should be JSON objects
isomorphic-git_isomorphic-git
train
js
f23a05d6120aa1d52e87bfb44fbd9905b363dee2
diff --git a/packages/input-checkbox/src/Checkbox.story.js b/packages/input-checkbox/src/Checkbox.story.js index <HASH>..<HASH> 100644 --- a/packages/input-checkbox/src/Checkbox.story.js +++ b/packages/input-checkbox/src/Checkbox.story.js @@ -31,7 +31,13 @@ storiesOf("Checkbox Input", "module") withInfo()(() => ( ...
test(stories): add a disabled checked checkbox to the fieldset example affects: @crave/farmblocks-input-checkbox
CraveFood_farmblocks
train
js
b085f8a9e0ad8d0895537e1866f63d58d6005741
diff --git a/src/Lucid/Relations/Parser.js b/src/Lucid/Relations/Parser.js index <HASH>..<HASH> 100644 --- a/src/Lucid/Relations/Parser.js +++ b/src/Lucid/Relations/Parser.js @@ -30,9 +30,13 @@ class RelationParser { * @return {Object} */ _normalizeRelations (relations) { - return !Array.isArray(relations...
fix(relations): changed method _normalizeRelations
adonisjs_adonis-lucid
train
js
dc03060de299cb778c1a0f040c4c77dec1550181
diff --git a/test/test_specification.rb b/test/test_specification.rb index <HASH>..<HASH> 100644 --- a/test/test_specification.rb +++ b/test/test_specification.rb @@ -66,5 +66,15 @@ module ParseGemspec ParseGemspec::Specification.load(gemspec_path) end end + test 'not gemspec file' do + not...
test(load): not gemspec file
packsaddle_ruby-parse_gemspec
train
rb
4dc2671c8262bc9876ec71263cf8ac24f9655f75
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -74,12 +74,12 @@ export const sessionStoreBuilder = () => ({ }) }, switchOrganization({ state, commit, dispatch }, organizationId) { - if (organizationId) this.cookies.set(`${state.cookieN...
fix: set path / for admin and org cookies
koumoul-dev_sd-vue
train
js
0684fa6d6bf640a7d476839c80660a987c27d525
diff --git a/Model/EventRepository.php b/Model/EventRepository.php index <HASH>..<HASH> 100644 --- a/Model/EventRepository.php +++ b/Model/EventRepository.php @@ -87,7 +87,9 @@ class EventRepository implements EventRepositoryInterface return (bool)$this->eventResourceModel->getConnection()->fetchOne( ...
fix(code-style): build fix CDP-<I>
emartech_magento2-extension
train
php
692166d51811d96fc89c20e4dbb7e80579fc4172
diff --git a/lib/inspectors/res.js b/lib/inspectors/res.js index <HASH>..<HASH> 100644 --- a/lib/inspectors/res.js +++ b/lib/inspectors/res.js @@ -373,9 +373,15 @@ module.exports = function(req, res, next) { Object.keys(deleteHeaders.reqHeaders).forEach(function(prop) { delete headers[prop]; ...
refactor: support delete request to transfer request body
avwo_whistle
train
js
8e89c3c7f6aa0b780ceefc3f035cd600b841779c
diff --git a/js/src/forum/utils/getMentionText.js b/js/src/forum/utils/getMentionText.js index <HASH>..<HASH> 100644 --- a/js/src/forum/utils/getMentionText.js +++ b/js/src/forum/utils/getMentionText.js @@ -27,7 +27,7 @@ export default function getMentionText(user, postId) { } // @"Display name"#UserID c...
fix: Missing `#` from autocompleted user mention format (#<I>)
flarum_mentions
train
js
ee5cb49176ebcdf7bb816b58fdfe0181bd0b5fa3
diff --git a/src/Presentation.js b/src/Presentation.js index <HASH>..<HASH> 100644 --- a/src/Presentation.js +++ b/src/Presentation.js @@ -1,9 +1,18 @@ +import keypress from 'keypress'; + import { Slide } from './Slide'; +import { Cursor } from './Cursor'; export class Presentation { constructor() { this._s...
refactor(presentation): Move cursor functionality to presentation
ghaiklor_kittik
train
js
077892645bd59d1b5c50e3291701cb4241c0bbdf
diff --git a/src/managers/GuildManager.js b/src/managers/GuildManager.js index <HASH>..<HASH> 100644 --- a/src/managers/GuildManager.js +++ b/src/managers/GuildManager.js @@ -175,15 +175,15 @@ class GuildManager extends BaseManager { delete channel.parentID; if (!channel.permissionOverwrites) continue; ...
fix(GuildManager): add missing toString() on Permission#resolve fns (#<I>)
discordjs_discord.js
train
js
e0c0c9fe99d6b6fc08103625b472e5b4ebb5d4a6
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -63,10 +63,8 @@ function duplex (reader, read) { cbs.push(cb) if (needDrain) { - next(function () { - s.emit('drain') - needDrain = false - }) + needDrain = false + ...
fix: emit drain event immediately, with safe state transition
pull-stream_pull-stream-to-stream
train
js
55e1c3ca56a208df40b812050707b2d896f8abcb
diff --git a/packages/@vue/cli-service/generator/index.js b/packages/@vue/cli-service/generator/index.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-service/generator/index.js +++ b/packages/@vue/cli-service/generator/index.js @@ -41,7 +41,7 @@ module.exports = (api, options) => { }, less: { ...
feat: bump default less-loader version (#<I>) Resolves #<I>
vuejs_vue-cli
train
js
80f703dc2e255a30c17d7f8daa796b30a55b8bed
diff --git a/lib/light-service/context.rb b/lib/light-service/context.rb index <HASH>..<HASH> 100644 --- a/lib/light-service/context.rb +++ b/lib/light-service/context.rb @@ -115,9 +115,9 @@ module LightService end def define_accessor_methods_for_keys(keys) - return if keys.nil? + return if keys.b...
refactor: Context#define_accessor_methods_for_keys can accept single values or lists
adomokos_light-service
train
rb
5e1b22818b12b5e874c3ca49c30f08ce75e440fd
diff --git a/example/hello.js b/example/hello.js index <HASH>..<HASH> 100755 --- a/example/hello.js +++ b/example/hello.js @@ -59,7 +59,7 @@ myApp.config(function($stateProvider) { myApp.run(function($http, $rootScope, $uiRouter) { - var Visualizer = window['ui-router-visualizer'].Visualizer; + var Visualizer = ...
fix(example): use window['@uirouter/visualizer']
ui-router_visualizer
train
js
2bb643af5824b46128314ce0662732c764411667
diff --git a/test/unit/chunked-uploads.js b/test/unit/chunked-uploads.js index <HASH>..<HASH> 100644 --- a/test/unit/chunked-uploads.js +++ b/test/unit/chunked-uploads.js @@ -247,7 +247,7 @@ if (qqtest.canDownloadFileAsBlob) { }); describe("resume feature tests", function() { - var native...
test(resume): attempt to fix resume unit test #<I>
FineUploader_fine-uploader
train
js
1f5915574781ee3f6e74d42cdd9b11dd1594fd96
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -82,6 +82,7 @@ HtmlWebpackInlineSourcePlugin.prototype.resolveSourceMaps = function (compilatio HtmlWebpackInlineSourcePlugin.prototype.processTag = function (compilation, regex, tag, filename) { var assetUrl; + var pre...
fix: close #<I>, 'source' undefined When the ConcatSource Object is css file chunk or javascript file chunk, the 'source' property is undefined. Then, it should return original 'tag'
DustinJackson_html-webpack-inline-source-plugin
train
js
9694ec300020cb6c194eeb14c9521b3c5f31b4dd
diff --git a/tests/test_hg.py b/tests/test_hg.py index <HASH>..<HASH> 100644 --- a/tests/test_hg.py +++ b/tests/test_hg.py @@ -40,7 +40,7 @@ def test_repo_mercurial(tmpdir, parentdir, hg_remote): } ) - run(['hg', 'init', mercurial_repo.name], cwd=str(tmpdir)) + run(['hg', 'init', mercurial_repo.re...
ci(hg): Update test to use repo_name
vcs-python_libvcs
train
py
9ba4f473676a94605f6e14755c7d453fa4705bce
diff --git a/src/scripts/ngTableController.js b/src/scripts/ngTableController.js index <HASH>..<HASH> 100644 --- a/src/scripts/ngTableController.js +++ b/src/scripts/ngTableController.js @@ -184,7 +184,7 @@ $scope.show_filter = value; }); } else { - ...
fix(ngTableController): should not show filter row when all filterable columns are hidden
esvit_ng-table
train
js
87ea3ada89375558afab342b3ccbf89f37ffb44e
diff --git a/views/js/qtiCreator/widgets/component/minMax/minMax.js b/views/js/qtiCreator/widgets/component/minMax/minMax.js index <HASH>..<HASH> 100644 --- a/views/js/qtiCreator/widgets/component/minMax/minMax.js +++ b/views/js/qtiCreator/widgets/component/minMax/minMax.js @@ -348,6 +348,9 @@ define([ ...
feat: Add validation to enable field and set min value
oat-sa_extension-tao-itemqti
train
js
e0409c90baa76c493d225926db2c46a1fcd45959
diff --git a/lib/cmds/aws/delete-test-bundle.js b/lib/cmds/aws/delete-test-bundle.js index <HASH>..<HASH> 100644 --- a/lib/cmds/aws/delete-test-bundle.js +++ b/lib/cmds/aws/delete-test-bundle.js @@ -25,7 +25,7 @@ class DeleteTestBundleCommand extends Command { } if (Pro) { - DeleteTestBundleCommand.description = P...
fix: delete-test-bundle command description
artilleryio_artillery
train
js
6fa9cd03166fd471c8b6cdcc0e5855d0ba68635b
diff --git a/packages/optimizely-sdk/lib/core/optimizely_config/index.js b/packages/optimizely-sdk/lib/core/optimizely_config/index.js index <HASH>..<HASH> 100644 --- a/packages/optimizely-sdk/lib/core/optimizely_config/index.js +++ b/packages/optimizely-sdk/lib/core/optimizely_config/index.js @@ -13,6 +13,7 @@ * See...
fix: feature enabled will now only be available when experiment is feature experiment (#<I>) OptimizelyConfig was using featureEnabled directly from projectConfig Object without verifying if experiment is feature experiment or not. Now featureEnabled key on variation will only be available if experiment is a feature e...
optimizely_javascript-sdk
train
js
01c7eaa3792f01df518422c0d78ce025e6f26ee7
diff --git a/master/buildbot/test/unit/test_steps_http.py b/master/buildbot/test/unit/test_steps_http.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/unit/test_steps_http.py +++ b/master/buildbot/test/unit/test_steps_http.py @@ -13,8 +13,6 @@ # # Copyright Buildbot Team Members -import collections - impo...
test: Fix stability of HTTP step test_post_data_dict test
buildbot_buildbot
train
py
4ed4bec58dc72d5c232f47c4201dab4812e7b8ce
diff --git a/vyper/compile_lll.py b/vyper/compile_lll.py index <HASH>..<HASH> 100644 --- a/vyper/compile_lll.py +++ b/vyper/compile_lll.py @@ -510,7 +510,7 @@ def assembly_to_evm(assembly, start_pos=0): # to avoid unnecessary bytecode bloat. i = 0 while i < len(assembly) - 1: - if assembly[i] in (...
fix: add RETURN when looking for unreachable code
ethereum_vyper
train
py
d924aa898ae5e279b8313d566faabcaa4c222f3c
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -193,6 +193,10 @@ gulp.task('index', () => { // codes.push(`import {position} from './moveWrapper/position';`); // components.push('position'); + // sort + codes.so...
chore: sort codes of index.js to keep order
ksc-fe_kpc
train
js
16493e65fd3e2b9a49afbdd58603bd43f3a4005a
diff --git a/src/util/DataResolver.js b/src/util/DataResolver.js index <HASH>..<HASH> 100644 --- a/src/util/DataResolver.js +++ b/src/util/DataResolver.js @@ -90,7 +90,8 @@ class DataResolver extends null { * Data that can be resolved to give a Buffer. This can be: * * A Buffer * * The path to a local file ...
docs(BufferResolvable): add warning for URL input (#<I>)
discordjs_discord.js
train
js
c779b79c36d451c98e4732d20d4f28cf94db269b
diff --git a/js/src/forum/utils/getCleanDisplayName.js b/js/src/forum/utils/getCleanDisplayName.js index <HASH>..<HASH> 100644 --- a/js/src/forum/utils/getCleanDisplayName.js +++ b/js/src/forum/utils/getCleanDisplayName.js @@ -1,3 +1,5 @@ +import extractText from 'flarum/common/utils/extractText'; + /** * Whether to...
fix: Cannot reply to posts by deleted authors (#<I>)
flarum_mentions
train
js
df61fa3303ef943e2c7744d3489d47d159e93e1c
diff --git a/actor-sdk/sdk-core-android/android-sdk/src/main/java/im/actor/sdk/controllers/group/view/MembersAdapter.java b/actor-sdk/sdk-core-android/android-sdk/src/main/java/im/actor/sdk/controllers/group/view/MembersAdapter.java index <HASH>..<HASH> 100644 --- a/actor-sdk/sdk-core-android/android-sdk/src/main/java/...
fix(android): Fixing member loading
actorapp_actor-platform
train
java
27edbb00d343e87d02dd1709ded2d483cc9ca178
diff --git a/src/Auditable.php b/src/Auditable.php index <HASH>..<HASH> 100644 --- a/src/Auditable.php +++ b/src/Auditable.php @@ -463,7 +463,7 @@ trait Auditable */ public function transitionTo(Contracts\Audit $audit, bool $old = false): Contracts\Auditable { - // The Audit must be for this Audi...
chore(Auditable): wording
owen-it_laravel-auditing
train
php
2c5f70d4203a1a777981d616d1d3605ad282cb7a
diff --git a/src/migrations/20211202120808-add-custom-roles.js b/src/migrations/20211202120808-add-custom-roles.js index <HASH>..<HASH> 100644 --- a/src/migrations/20211202120808-add-custom-roles.js +++ b/src/migrations/20211202120808-add-custom-roles.js @@ -199,6 +199,8 @@ exports.down = function (db, cb) { A...
refactor: drop permissions table on down migration (#<I>)
Unleash_unleash
train
js
194601b9d63f291129dae1091d017fa36b19cec5
diff --git a/src/components/Dropdown/DropdownMenu.react.js b/src/components/Dropdown/DropdownMenu.react.js index <HASH>..<HASH> 100644 --- a/src/components/Dropdown/DropdownMenu.react.js +++ b/src/components/Dropdown/DropdownMenu.react.js @@ -27,7 +27,7 @@ export type Props = {| /** * Show the DropdownMenu *...
refactor(DropdownMenu): Show prop should not be readonly
tabler_tabler-react
train
js
79ce3425be68241d6604deef748a18f0e37811ab
diff --git a/src/components/Wizard/WizardContents.js b/src/components/Wizard/WizardContents.js index <HASH>..<HASH> 100644 --- a/src/components/Wizard/WizardContents.js +++ b/src/components/Wizard/WizardContents.js @@ -39,14 +39,16 @@ WizardContents.propTypes = { /** The wizard step index for these contents */ st...
fix(wizard): fix wizard contents default props (#<I>)
patternfly_patternfly-react
train
js
e64a14ef8ff7165abee4a7a8ad67bb2f888ae876
diff --git a/bin/ember-template-lint.js b/bin/ember-template-lint.js index <HASH>..<HASH> 100755 --- a/bin/ember-template-lint.js +++ b/bin/ember-template-lint.js @@ -67,7 +67,12 @@ function getRelativeFilePaths() { var relativeFilePaths = fileArgs .reduce((filePaths, fileArg) => { - return filePaths.con...
fix: always ignore dist, tmp, node_modules by default.
ember-template-lint_ember-template-lint
train
js
21b4ea4ddf6b31fd35a1d06c9b4c4416e7d76bc4
diff --git a/httprunner/api.py b/httprunner/api.py index <HASH>..<HASH> 100644 --- a/httprunner/api.py +++ b/httprunner/api.py @@ -200,6 +200,10 @@ class HttpRunner(object): logger.log_warning("parse failures occurred ...") utils.dump_logs(parse_failed_testfiles, project_mapping, "parse_failed...
fix: abort test when failed to parse all cases
HttpRunner_HttpRunner
train
py,py
9c54c99bca0a7deb00a13199b9c9713802296b1f
diff --git a/components/sdk-get/sdk-get.js b/components/sdk-get/sdk-get.js index <HASH>..<HASH> 100644 --- a/components/sdk-get/sdk-get.js +++ b/components/sdk-get/sdk-get.js @@ -48,6 +48,8 @@ export class SdkGet extends React.Component { onError: this.props.onError, }); } + + // eslint-disable-next-lin...
refactor: disable eslint camcelcase for all unsafe lifeycle methods
commercetools_merchant-center-application-kit
train
js
50ea7aaa5b22fc7269ec73bf269abfcf6f35b657
diff --git a/src/network.js b/src/network.js index <HASH>..<HASH> 100644 --- a/src/network.js +++ b/src/network.js @@ -79,6 +79,10 @@ class Network extends EventEmitter { * @param {AbortSignal} [options.signal] */ async * sendRequest (to, msg, options = {}) { + if (!this._running) { + return + } +...
fix: do not send messages if the network is not running (#<I>) Otherwise we can end up dialing a node during libp2p shut down
libp2p_js-libp2p-kad-dht
train
js
29d5fd163c62ff03aa642f111972914fdeed3669
diff --git a/src/util/Constants.js b/src/util/Constants.js index <HASH>..<HASH> 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -945,7 +945,7 @@ exports.ApplicationCommandPermissionTypes = createEnum([null, 'ROLE', 'USER']); * * APPLICATION_COMMAND * * MESSAGE_COMPONENT * @typedef {string} Inter...
docs(Constants): Fix interaction type link (#<I>)
discordjs_discord.js
train
js
00c0526417444d4cbf33c9b79fc6d6d08100381d
diff --git a/packages/mdc-menu/addon/mixins/menu-item.js b/packages/mdc-menu/addon/mixins/menu-item.js index <HASH>..<HASH> 100644 --- a/packages/mdc-menu/addon/mixins/menu-item.js +++ b/packages/mdc-menu/addon/mixins/menu-item.js @@ -3,7 +3,10 @@ import ListItem from 'ember-cli-mdc-list/mixins/list-item'; export de...
chore: refactored code
onehilltech_ember-cli-mdc
train
js
77e45729651eda118ec232c0adf603171d7686b0
diff --git a/src/util/dom.js b/src/util/dom.js index <HASH>..<HASH> 100644 --- a/src/util/dom.js +++ b/src/util/dom.js @@ -5,9 +5,9 @@ export const domArray = (target, document) => { if (typeof target === 'string') return Array.from(document.querySelectorAll(target)) if (target.tagName) return [target] - if (ta...
fix: Support NodeList entries in domArray helper
livingdocsIO_editable.js
train
js
88f2fbe3e8263dc79b35cb22b1c0a61b24abde96
diff --git a/src/main/java/net/emaze/dysfunctional/multiplexing/CyclicIterator.java b/src/main/java/net/emaze/dysfunctional/multiplexing/CyclicIterator.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/emaze/dysfunctional/multiplexing/CyclicIterator.java +++ b/src/main/java/net/emaze/dysfunctional/multiplexing/C...
fix: can now create an empty CyclicIterator
cybazeitalia_emaze-dysfunctional
train
java
2d2b5ee516a6a1fe764adc7fadf1cdc221f4a26b
diff --git a/coverage/blanket.js b/coverage/blanket.js index <HASH>..<HASH> 100644 --- a/coverage/blanket.js +++ b/coverage/blanket.js @@ -1,3 +1,6 @@ require('blanket')({ - pattern: '/espower/lib/' + pattern: [ + '/espower/index.js', + '/espower/lib/' + ] });
chore(espower): add index.js to coverage statistics
power-assert-js_espower
train
js
da5a1e175b05a85813a737a0a698f3d648457752
diff --git a/dist/ng-describe.js b/dist/ng-describe.js index <HASH>..<HASH> 100644 --- a/dist/ng-describe.js +++ b/dist/ng-describe.js @@ -3280,6 +3280,8 @@ if (String(/a/mig) !== '/a/gim') { bdd.beforeEach(function checkEnvironment() { la(check.object(root.angular), 'angular is undefined'); la...
fix(mock): checking mocks.module function before running
kensho_ng-describe
train
js,js
2a96c858bfb8fa2e67e613e1a4892abddc102dbd
diff --git a/test/scripts/processors/asset.js b/test/scripts/processors/asset.js index <HASH>..<HASH> 100644 --- a/test/scripts/processors/asset.js +++ b/test/scripts/processors/asset.js @@ -83,7 +83,28 @@ describe('asset', () => { return asset.remove(); }).finally(() => fs.unlink(file.source)); }); + i...
test: add unit test for asset id
hexojs_hexo
train
js
ad0b356ae2b70fc99c63c631d670ae2ac4bdc0dc
diff --git a/lib/record-scenario.js b/lib/record-scenario.js index <HASH>..<HASH> 100644 --- a/lib/record-scenario.js +++ b/lib/record-scenario.js @@ -14,13 +14,21 @@ async function recordScenario ({request, scenario}) { if (Array.isArray(scenario)) { // if scenario is an array of request options, send requests...
feat(normalization): async normalization methods
octokit_fixtures
train
js
6ce9f3372b0a632b997301eba9914c30e9fa87ef
diff --git a/modules/utils.js b/modules/utils.js index <HASH>..<HASH> 100755 --- a/modules/utils.js +++ b/modules/utils.js @@ -39,10 +39,8 @@ export function buildItemStack<Item>( const defaultProps = ['component', 'render', 'pattern', 'exactly'] // Map all children return Children.toArray(children).reduce((it...
fix(Stack): accept non match component
winoteam_react-router-navigation
train
js
a509ba3825766f70767e44050232c23c3dd7c63c
diff --git a/src/createMixin.js b/src/createMixin.js index <HASH>..<HASH> 100644 --- a/src/createMixin.js +++ b/src/createMixin.js @@ -6,20 +6,22 @@ export default GlobalEmitter => ({ created() { this.$options.sockets = this.$options.sockets || {}; const { sockets } = this.$options; + const addListener ...
refactor: use partial application to refactor mixin
probil_vue-socket.io-extended
train
js
e56b1906d89ce14e065ed65b06be8904b7c46e9b
diff --git a/src/events/websocket/WebSocketServer.js b/src/events/websocket/WebSocketServer.js index <HASH>..<HASH> 100644 --- a/src/events/websocket/WebSocketServer.js +++ b/src/events/websocket/WebSocketServer.js @@ -21,8 +21,8 @@ export default class WebSocketServer { log.debug(`verifyClient:${key} ${conn...
fix: getter/setter map
dherault_serverless-offline
train
js
7d3c9ee7055c7493838c675636d4b2d64310ee69
diff --git a/lib/components/places/StandaloneSearchBox.js b/lib/components/places/StandaloneSearchBox.js index <HASH>..<HASH> 100644 --- a/lib/components/places/StandaloneSearchBox.js +++ b/lib/components/places/StandaloneSearchBox.js @@ -118,7 +118,9 @@ var SearchBox = (function(_React$PureComponent) { /* ...
chore(lib): compile from src with `babel`
tomchentw_react-google-maps
train
js
2c67d7801bfa806426d698e7111cb8136d6cc38c
diff --git a/lib/components/Menu/index.js b/lib/components/Menu/index.js index <HASH>..<HASH> 100644 --- a/lib/components/Menu/index.js +++ b/lib/components/Menu/index.js @@ -256,13 +256,6 @@ class Menu extends Component { count++ - const { - onSelect, - onFocus, - onBlur, - ...
fix(Menu): MenuItem.onSelect is being fired twice Regression from changes made in INSTUI-<I> fixes INSTUI-<I> Test plan: Add an onSelect to any MenuItem in Menu example and verify it only logs once Change-Id: Iae<I>f<I>df9b3e<I>f8abfe<I>a<I> Reviewed-on: <URL>
instructure_instructure-ui
train
js
1b2a31964345d0481d43cdd3028f9c4b484364cc
diff --git a/lib/manager/docker/update.js b/lib/manager/docker/update.js index <HASH>..<HASH> 100644 --- a/lib/manager/docker/update.js +++ b/lib/manager/docker/update.js @@ -6,9 +6,9 @@ function setNewValue(currentFileContent, upgrade) { try { logger.debug(`setNewValue: ${upgrade.newFrom}`); const oldLine...
fix: use escaped line returns in docker regex escape
renovatebot_renovate
train
js
379308c3f0bfeab285de9ce7075a996de33ea5aa
diff --git a/packages/widget-chat/src/components/activity-item-post/index.js b/packages/widget-chat/src/components/activity-item-post/index.js index <HASH>..<HASH> 100644 --- a/packages/widget-chat/src/components/activity-item-post/index.js +++ b/packages/widget-chat/src/components/activity-item-post/index.js @@ -41,7 ...
fix(widget-chat): add missing semicolon for eslint failure
webex_spark-js-sdk
train
js
625b1508701e603c5213668dce57bd4a159384f4
diff --git a/etc/webpack.common.js b/etc/webpack.common.js index <HASH>..<HASH> 100755 --- a/etc/webpack.common.js +++ b/etc/webpack.common.js @@ -90,7 +90,7 @@ var config = { exprContextCritical: false, noParse: [ - /angular2|zone.js/ + /@angular|zone.js/ ], /*
fix(build): Fix "Unexpected token punc ({)" fixes #<I>
holisticon_angular-common
train
js
8386519275d6a6c19d3fc3dc9eab81f7a0a890e0
diff --git a/lib/hydrate.js b/lib/hydrate.js index <HASH>..<HASH> 100644 --- a/lib/hydrate.js +++ b/lib/hydrate.js @@ -13,9 +13,10 @@ value should have the following format } } */ - const xhr = value.body || {} - const headers = value.headers || {} export default function hydrate (value) { + const data = JSON....
feat(hydrate): parse JSON-based cache value
RasCarlito_axios-cache-adapter
train
js
fddd9e136148b28231520a139474a39cd2f5151f
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -235,7 +235,7 @@ class AureliaWebpackPlugin { } } } - if (moduleId) { + if (moduleId && !modules.find(m => m.id === moduleId)) { ...
fix(index): do not reassign moduleId when one with the same name exists already
aurelia_webpack-plugin
train
js
99ffff1f94eb7c5ece86a4fc347dc79ee0f8a56c
diff --git a/bin/luster.js b/bin/luster.js index <HASH>..<HASH> 100755 --- a/bin/luster.js +++ b/bin/luster.js @@ -1,10 +1,12 @@ #!/usr/bin/env node const /** @type {ClusterProcess} */ luster = require('../lib/luster'), + fs = require('fs'), path = require('path'); // config path is right after this s...
fix: resolve symlink to bin script
nodules_luster
train
js
232b605f5bb8ab61156e1fb9860705fed017ed41
diff --git a/lib/postal/dkim_header.rb b/lib/postal/dkim_header.rb index <HASH>..<HASH> 100644 --- a/lib/postal/dkim_header.rb +++ b/lib/postal/dkim_header.rb @@ -96,7 +96,7 @@ module Postal end def dkim_properties - Array.new.tap do |header| + @dkim_properties ||= Array.new.tap do |header| ...
fix(dkim): fixes timing race condition when signing emails closes #<I>
atech_postal
train
rb
22ff76f48bd3b3aec8533ee992def9925eb7e7c4
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -12,6 +12,7 @@ exports.register = function (plugin, options, next) { if (stat && stat.isDirectory()) { return readRoutes(dir + file + '/'); } else { + // istanbul ignore else ...
refactor(register): added ignore else
bsiddiqui_hapi-router
train
js
552ec72542ec3b2b3ebf35c9fd84ab502dd746cf
diff --git a/packages/discord.js/src/managers/ThreadMemberManager.js b/packages/discord.js/src/managers/ThreadMemberManager.js index <HASH>..<HASH> 100644 --- a/packages/discord.js/src/managers/ThreadMemberManager.js +++ b/packages/discord.js/src/managers/ThreadMemberManager.js @@ -113,7 +113,7 @@ class ThreadMemberMan...
docs(ThreadMemberManager): Require `member` in `FetchThreadMemberOptions` (#<I>)
discordjs_discord.js
train
js
660968b1298a5ae1b7c7d3507c0fbf6289b96f95
diff --git a/lib/reducers/create-otp-reducer.js b/lib/reducers/create-otp-reducer.js index <HASH>..<HASH> 100644 --- a/lib/reducers/create-otp-reducer.js +++ b/lib/reducers/create-otp-reducer.js @@ -714,13 +714,16 @@ function createOtpReducer(config) { } }) case 'FIND_STOPS_FOR_PATTERN_RESPON...
refactor: correctly avoid missing stopTimes crash
opentripplanner_otp-react-redux
train
js
2f6fa520ca71073053192627d92a5c7dddfee9bd
diff --git a/src/components/dialog/QDialog.js b/src/components/dialog/QDialog.js index <HASH>..<HASH> 100644 --- a/src/components/dialog/QDialog.js +++ b/src/components/dialog/QDialog.js @@ -151,18 +151,18 @@ export default { ? extend({ color: this.color, label: this.$q.i18n.label.ok, - ...
feat(QDialog): Disable ripple & wait-for-ripple for Buttons (unnecessary)
quasarframework_quasar
train
js
f646fb0325738648bf297952391267e4abae2212
diff --git a/js/releases/index.js b/js/releases/index.js index <HASH>..<HASH> 100644 --- a/js/releases/index.js +++ b/js/releases/index.js @@ -101,7 +101,7 @@ module.exports = { } const args = ['releases', 'files', release, 'upload-sourcemaps', sourcemapPath]; - return helper.execute(helper.prepare...
fix: Stream live output for sourcemap uploading (#<I>) * Allow for streaming live output for uploading * ref: Always live stream source map uploads.
getsentry_sentry-cli
train
js
e954f1443fc797a021e10740b19f89f95af33e11
diff --git a/lib/workers.js b/lib/workers.js index <HASH>..<HASH> 100644 --- a/lib/workers.js +++ b/lib/workers.js @@ -149,13 +149,17 @@ Workers.prototype.addWorker = function(data) { var self = this; - var worker = extend(new WorkerRegistration(), data); - var topicName = data.topicName; - self.emit('wor...
feat(workers): fail on duplicate worker registration attempt
nikku_camunda-worker-node
train
js,js
4ba2d60f4692c245ae0d172d135327253337a6b1
diff --git a/packages/core/src/button/index.js b/packages/core/src/button/index.js index <HASH>..<HASH> 100644 --- a/packages/core/src/button/index.js +++ b/packages/core/src/button/index.js @@ -20,8 +20,9 @@ export default class Button extends React.Component { <button {...others} disabled={disabled || loading}...
fix(Button): Fix child does not exist to generate redundant element.
uiwjs_uiw
train
js
c4aabc209f2d42668c12b5c121a363384c7b42c4
diff --git a/config/changelog.js b/config/changelog.js index <HASH>..<HASH> 100644 --- a/config/changelog.js +++ b/config/changelog.js @@ -8,7 +8,7 @@ module.exports = { // ember style guide: https://github.com/emberjs/ember.js/blob/master/CONTRIBUTING.md#commit-tagging style: 'angular', // 'ember' 'jquery' - ...
fix(changelog-config): generate changelog from the develop branch
html-next_vertical-collection
train
js
878f2e0ca43055051b7ac1a11b789314f6b14849
diff --git a/src/main/java/com/synopsys/integration/blackduck/bdio2/util/Bdio2Factory.java b/src/main/java/com/synopsys/integration/blackduck/bdio2/util/Bdio2Factory.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/synopsys/integration/blackduck/bdio2/util/Bdio2Factory.java +++ b/src/main/java/com/synopsys/inte...
feat: added namespace "root" to root project node
blackducksoftware_blackduck-common
train
java
651002231dc2ea9bfddeaecb6c44bcf731203351
diff --git a/lib/superapi/api.js b/lib/superapi/api.js index <HASH>..<HASH> 100644 --- a/lib/superapi/api.js +++ b/lib/superapi/api.js @@ -236,7 +236,7 @@ Api.prototype = { }, status: function (name, handler) { - if (!this.middlewares) { + if (!this.middleware("status")) { this.register("status", A...
fix(status): fix issue if status is not the first middleware defined
stephanebachelier_superapi
train
js
8eb3a634fe9fb5e9180c014e768b56ce9a729c8b
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -134,8 +134,8 @@ html_theme_options = { 'github_banner': True, 'show_powered_by': False, 'extra_nav_links': { - 'invenio-search-ui@GitHub': 'http://github.com/inveniosoftware/invenio-searc...
docs: autodoc configuration and HTTPS fix * Replaces HTTP links with HTTPS where possible.
inveniosoftware_invenio-search-ui
train
py
15a88a2e43e283a7fad60dc783d8d8d15dfc6345
diff --git a/lib/components/map/stops-overlay.js b/lib/components/map/stops-overlay.js index <HASH>..<HASH> 100644 --- a/lib/components/map/stops-overlay.js +++ b/lib/components/map/stops-overlay.js @@ -1,6 +1,6 @@ import React, { PropTypes } from 'react' import { connect } from 'react-redux' -import { MapLayer, Mark...
feat(overlay): Make StopsOverlay a FeatureGroup
opentripplanner_otp-react-redux
train
js
25b8299720c01f664911485e2043fa430a49f4c7
diff --git a/History.md b/History.md index <HASH>..<HASH> 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,10 @@ +v1.0.10 / 2022-02-03 +==================== + + * Merge pull request #113 from nottaw/master + * Use `==` for string comparisons + v1.0.9 / 2021-12-20 =================== diff --git a/filetype/__i...
feat(version): bump to <I>
h2non_filetype.py
train
md,py,py
c268fd5d235d8474214e17d5d03ac8a67cf27953
diff --git a/packages/vaex-core/vaex/test/dataset.py b/packages/vaex-core/vaex/test/dataset.py index <HASH>..<HASH> 100644 --- a/packages/vaex-core/vaex/test/dataset.py +++ b/packages/vaex-core/vaex/test/dataset.py @@ -23,8 +23,10 @@ basedir = os.path.dirname(__file__) def small_buffer(ds, size=3): previous = ds.exe...
test: fix: on failure, the buffer size wasnt't restored, causing the unittest to slow down
vaexio_vaex
train
py
534303a4504eae69f40f28d3d81cb69665449964
diff --git a/src/create-local-vue.js b/src/create-local-vue.js index <HASH>..<HASH> 100644 --- a/src/create-local-vue.js +++ b/src/create-local-vue.js @@ -9,6 +9,12 @@ function createLocalVue (): Component { instance._installedPlugins = [] instance.config = cloneDeep(Vue.config) instance.util = cloneDeep(Vue.u...
feat(createLocalVue): set plugin.installed to false in use
vuejs_vue-test-utils
train
js,js
7647166cde0a902bdb9b637f0688ef06c79722a6
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -61,7 +61,7 @@ function _loginCallback (publicUrl, jwksClient, cookieName, cookieOpts) { debug(`Verify JWT token from the query parameter`) const payload = await _verifyToken(jwksClient, linkToken) d...
fix: do not rely on res.cookie
koumoul-dev_sd-express
train
js
590ce38711d49d535ca29e1e25b0c8908fe35ccb
diff --git a/packages/webiny-api-cms/src/plugins/graphql/pageResolvers/createRevisionFrom.js b/packages/webiny-api-cms/src/plugins/graphql/pageResolvers/createRevisionFrom.js index <HASH>..<HASH> 100644 --- a/packages/webiny-api-cms/src/plugins/graphql/pageResolvers/createRevisionFrom.js +++ b/packages/webiny-api-cms/s...
fix: snippet must be copied when creating a new page revision
Webiny_webiny-js
train
js
8aa788aef594d3d8eb0aa3d6d02c69e795ae8301
diff --git a/src/html-import-template-loader.js b/src/html-import-template-loader.js index <HASH>..<HASH> 100644 --- a/src/html-import-template-loader.js +++ b/src/html-import-template-loader.js @@ -44,10 +44,10 @@ export class HTMLImportTemplateLoader { if (bundleLink) { this.onBundleReady = this._import...
fix(loader): missing context variable Fixes #7
aurelia_html-import-template-loader
train
js
5b38f0392342bc1b26b0319e787065b7c178c24d
diff --git a/src/Leevel/Page/Page.php b/src/Leevel/Page/Page.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Page/Page.php +++ b/src/Leevel/Page/Page.php @@ -650,7 +650,7 @@ class Page implements IPage, IJson, IArray, IHtml, JsonSerializable if (null === $render || is_string($render)) { $render...
refactor: use __NAMESPACE
hunzhiwange_framework
train
php,php
95adeb1421e640d4d50c300555faa678a4cd3cee
diff --git a/statuspage/statuspage.py b/statuspage/statuspage.py index <HASH>..<HASH> 100644 --- a/statuspage/statuspage.py +++ b/statuspage/statuspage.py @@ -305,7 +305,7 @@ def get_files(repo): """ Get a list of all files. """ - return [file.path for file in repo.get_dir_contents("/", ref="gh-pages"...
chore: pygithub has depreciated get_dir_contents (#<I>)
jayfk_statuspage
train
py
28b75ef32a34d4db917269cb139ef668565d23a5
diff --git a/packages/ui-themes/src/canvas/high-contrast/colors.js b/packages/ui-themes/src/canvas/high-contrast/colors.js index <HASH>..<HASH> 100644 --- a/packages/ui-themes/src/canvas/high-contrast/colors.js +++ b/packages/ui-themes/src/canvas/high-contrast/colors.js @@ -34,6 +34,7 @@ licorice: '#2D3B45', ox...
fix(ui-themes): Make high-contrast theme backwards compatible with < <I> Change-Id: Ia<I>c<I>cadea9c<I>da<I>c0e6e Reviewed-on: <URL>
instructure_instructure-ui
train
js
c1342799a136396614e450ad740741d7f5d6be78
diff --git a/src/cli/args.js b/src/cli/args.js index <HASH>..<HASH> 100644 --- a/src/cli/args.js +++ b/src/cli/args.js @@ -33,7 +33,7 @@ module.exports = { alias: 'f', type: 'string', default: 'flow', - coerce: value => value.startsWith('./') ? path.resolve(value) : value + coer...
fix: fixed minor node <I> incompatibilities
rpl_flow-coverage-report
train
js,js
a5d247cbcf678ff24c939b7a5d4442ea0d151da5
diff --git a/packages/components/bolt-ratio/__tests__/ratio.js b/packages/components/bolt-ratio/__tests__/ratio.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-ratio/__tests__/ratio.js +++ b/packages/components/bolt-ratio/__tests__/ratio.js @@ -11,6 +11,11 @@ const timeout = 60000; const imageVrtConfig =...
test: update VRT test config for the ratio component
bolt-design-system_bolt
train
js
66ee57da218ae9a16fe76da4f6d8daef278458ce
diff --git a/scripts/commit-scope-lint.js b/scripts/commit-scope-lint.js index <HASH>..<HASH> 100644 --- a/scripts/commit-scope-lint.js +++ b/scripts/commit-scope-lint.js @@ -10,7 +10,7 @@ const rootScopes = ['deps', 'other'] // Scopes where modified files are typicall const commitMessage = fs.readFileSync(process.arg...
test(scripts): add shared and util as possible prefixes
telus_tds-core
train
js
cd709c30f7ebb8dd69ae982f6f5cb2f7e8f750ba
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -500,7 +500,7 @@ exports.isNumberArray = val => { * //=> true * */ -exports.isInstance = function isInstance(value) { +exports.isInstance = value => { if (value) { const _isInstance = ( _.isFunction(_.get...
refactor(isInstance): use function expression
lykmapipo_mongoose-common
train
js
d6b62cc840831dd596482010bc51e00178bbb67b
diff --git a/memote/suite/reporting/report.py b/memote/suite/reporting/report.py index <HASH>..<HASH> 100644 --- a/memote/suite/reporting/report.py +++ b/memote/suite/reporting/report.py @@ -85,6 +85,10 @@ class GitEnabledReport(Report): self.directory = directory self.files = [join(self.directory, "{...
chore: error on empty dir (#<I>)
opencobra_memote
train
py
3c86c138d5c54aa0e91ac20f90ba3909a1481575
diff --git a/agent/agent.go b/agent/agent.go index <HASH>..<HASH> 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -72,8 +72,14 @@ func (a *Agent) UpdateUnits() { localUnits := a.getLocalUnits() for unitName, unitValue := range registeredUnits { - writeLocalUnit(unitName, unitValue) - a.startUnit(unitName) +...
fix(agent): be more intelligent about starting services * Only write out a unit file if it does not exist * Only attempt to start the unit if the state is not active
coreos_fleet
train
go
8ade299dcb9546d6e7f392e04b6015fc840959c0
diff --git a/src/authService.js b/src/authService.js index <HASH>..<HASH> 100644 --- a/src/authService.js +++ b/src/authService.js @@ -354,6 +354,10 @@ export class AuthService { this.authentication.redirect(redirectUri, this.config.logoutRedirect); + if (typeof this.onLogout === 'function') { + ...
feat(authService): add onLogout. something is needed to eg clear cookies after authomatic logout
SpoonX_aurelia-authentication
train
js
8958e562bb159b00bb1fc0fa97e5ffd35dea058d
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,21 @@ import os import setuptools +# Disable version normalization performed by setuptools.setup() +try: + # Try the approach of using sic(), added in setuptools 46.1.0 + from setuptools import sic +except...
chore: prevent normalization of semver versioning (#<I>) * chore: prevent normalization of semver versioning * chore: update workaround to make sic work
googleapis_dialogflow-python-client-v2
train
py
546f85ea680c9749c750e8b49d388aa95067e27a
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -132,7 +132,7 @@ module.exports = function(grunt) { '{', ' "name": "angular-snap",', ' "version": "<%= pkg.version %>",', - ' "authoer": "jtrussell",', + ' ...
chore: Fix author field in generated gruntfile
jtrussell_angular-snap.js
train
js
aecae54b2dda4ab2173a3bfbfe50cfbce0d23dd7
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -137,8 +137,8 @@ html_theme_options = { 'github_banner': True, 'show_powered_by': False, 'extra_nav_links': { - 'invenio-pidstore@GitHub': 'http://github.com/inveniosoftware/invenio-pidsto...
docs: autodoc configuration and HTTPS fix * Replaces HTTP links with HTTPS where possible.
inveniosoftware_invenio-pidstore
train
py
037d894a83fafda7f597783a264ca3b66c29f6a2
diff --git a/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/ODistributedPlugin.java b/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/ODistributedPlugin.java index <HASH>..<HASH> 100644 --- a/distributed/src/main/java/com/orientechnologies/orient/server/dis...
fix: minor fix in distributed stat collecting logic
orientechnologies_orientdb
train
java
ba79822fbdbb553caec165bf2355c60f576627ca
diff --git a/distributed/src/test/java/com/orientechnologies/orient/server/distributed/impl/task/ODDLPhasesExecutionTests.java b/distributed/src/test/java/com/orientechnologies/orient/server/distributed/impl/task/ODDLPhasesExecutionTests.java index <HASH>..<HASH> 100644 --- a/distributed/src/test/java/com/orientechnolo...
chore: minor fix in cleanups of distributed tests
orientechnologies_orientdb
train
java
5f08e1758a769d4fa6ebbf9bdfcd8e7ef4341fab
diff --git a/lib/request.js b/lib/request.js index <HASH>..<HASH> 100644 --- a/lib/request.js +++ b/lib/request.js @@ -97,11 +97,7 @@ class Request extends AsyncResource { let header = `${method} ${path} HTTP/1.1\r\nconnection: keep-alive\r\n` if (headers) { - const headerNames = Object.keys(head...
refactor: prefer for of loop
mcollina_undici
train
js
e6ca097b4265ad8b2511c5be377b087e79dcd282
diff --git a/src/core/balancer.js b/src/core/balancer.js index <HASH>..<HASH> 100644 --- a/src/core/balancer.js +++ b/src/core/balancer.js @@ -51,16 +51,18 @@ export class Balancer { // private static _startQuery(interval) { - this._timer = setInterval(() => this._servers.map( - (server, i) => { - ...
chore(balancer): do not query when there is only one server in the list
blinksocks_blinksocks
train
js
2862d99caca04e2491eb20c5e1f1ca44f3561dfb
diff --git a/config/webpack.common.js b/config/webpack.common.js index <HASH>..<HASH> 100644 --- a/config/webpack.common.js +++ b/config/webpack.common.js @@ -207,8 +207,7 @@ module.exports = { * See: https://github.com/webpack/docs/wiki/optimization#multi-page-app */ new webpack.optimize.CommonsChunkP...
chore: simplify usage of CommonsChunkPlugin (#<I>)
inchingorg_xdata-web
train
js