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 |
|---|---|---|---|---|---|
5af26ebc7bc88b41667a53cf7bbc7f841cb5a7cf | diff --git a/tests/specs/scoped.js b/tests/specs/scoped.js
index <HASH>..<HASH> 100644
--- a/tests/specs/scoped.js
+++ b/tests/specs/scoped.js
@@ -233,6 +233,18 @@ test('scoped Store .findOrAdd() with missing id throws an error', function (t) {
})
})
+test('scoped Store .findOrAdd(string) with missing new objec... | test: ensure that .findOrAdd(string) with missing new object calls add | hoodiehq_hoodie-store-client | train | js |
1d23c96ea64ba37e303f99134ebeb58c70561042 | diff --git a/src/tools/base/BaseBrushTool.js b/src/tools/base/BaseBrushTool.js
index <HASH>..<HASH> 100644
--- a/src/tools/base/BaseBrushTool.js
+++ b/src/tools/base/BaseBrushTool.js
@@ -196,11 +196,18 @@ class BaseBrushTool extends BaseTool {
this._drawing = false;
this._mouseUpRender = true;
- const me... | fix: toolName instead of toolType, and better data for brush on MEASUREMENT_COMPLETED | cornerstonejs_cornerstoneTools | train | js |
41e1c3d728a00c340cd57ce9e1edffcd0b951446 | diff --git a/Renderer/AddressRenderer.php b/Renderer/AddressRenderer.php
index <HASH>..<HASH> 100644
--- a/Renderer/AddressRenderer.php
+++ b/Renderer/AddressRenderer.php
@@ -62,8 +62,8 @@ class AddressRenderer implements AddressRendererInterface
'country' => $address->getCountry(),
'c... | fix(render): Fix casing on omit flags (#<I>) | usemarkup_addressing | train | php |
d11aafc5f855ed60ccd2389b93447cea2a3cc518 | diff --git a/src/packages/logger/request-logger/templates.js b/src/packages/logger/request-logger/templates.js
index <HASH>..<HASH> 100644
--- a/src/packages/logger/request-logger/templates.js
+++ b/src/packages/logger/request-logger/templates.js
@@ -84,7 +84,9 @@ Processed ${cyan(`${method}`)} "${path}" ${magenta('Par... | fix: pad function is failing due to negative values (#<I>)
fix: wrong variable name | postlight_lux | train | js |
0d4b4dc34127a27f7ca6e5c41197f3aaacc79cb8 | diff --git a/workflow/sync/sync_manager.go b/workflow/sync/sync_manager.go
index <HASH>..<HASH> 100644
--- a/workflow/sync/sync_manager.go
+++ b/workflow/sync/sync_manager.go
@@ -192,7 +192,9 @@ func (cm *Manager) Release(wf *wfv1.Workflow, nodeName string, syncRef *wfv1.Syn
syncLockHolder.removeFromQueue(holderKey)... | fix: Panic in Workflow Retry (#<I>) | argoproj_argo | train | go |
db26b1a1e66477a6f526dac56ecaaa50d2cf4700 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -97,6 +97,10 @@ function wrapInControlFlow(globalFn, fnName) {
}
}, flow);
}, 'Run ' + fnName + description + ' in control flow').then(seal(done), function(err) {
+ if (!err) {
+ ... | fix(stacktrace): do not crash if beforeEach block is rejected without any stated reason (#<I>)
Closes #<I> | angular_jasminewd | train | js |
a559376acd3af31eee2c632f24ec40b2861b02d9 | diff --git a/src/resolvelib/structs.py b/src/resolvelib/structs.py
index <HASH>..<HASH> 100644
--- a/src/resolvelib/structs.py
+++ b/src/resolvelib/structs.py
@@ -116,7 +116,8 @@ class _FactoryIterableView(object):
"""
def __init__(self, factory):
- self._iterable = factory()
+ self._factory =... | fix: all the factory only when needed | sarugaku_resolvelib | train | py |
45bcc21cd7bfaa19ea0592af4a85ddea8c7ca8b1 | diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb
index <HASH>..<HASH> 100644
--- a/spec/dummy/config/application.rb
+++ b/spec/dummy/config/application.rb
@@ -26,5 +26,6 @@ module Dummy
# config.i18n.default_locale = :de
config.secret_key_base = 'TODO Put something here'
c... | chore(sqlite): fix warning | platanus_activeadmin_addons | train | rb |
c95cc76a0a3b52c751c1a0f00895cf1b34b66b28 | diff --git a/__tests__/NfcManager.test.js b/__tests__/NfcManager.test.js
index <HASH>..<HASH> 100644
--- a/__tests__/NfcManager.test.js
+++ b/__tests__/NfcManager.test.js
@@ -7,7 +7,7 @@ import {NativeNfcManager, NfcManagerEmitter, callNative} from '../src/NativeNfcM
describe('NfcManager (ios)', () => {
Platform.... | fix: import NfcManager from new location | whitedogg13_react-native-nfc-manager | train | js |
fffd00cbe8ba7fe66775bb9fe4ac126155b1e316 | diff --git a/lib/Serverless.js b/lib/Serverless.js
index <HASH>..<HASH> 100644
--- a/lib/Serverless.js
+++ b/lib/Serverless.js
@@ -36,9 +36,9 @@ class Serverless {
this.pluginManager = new PluginManager(this);
// use the servicePath from the options or try to find it in the CWD
+ this.cliInputArgv = proc... | refactor(CLI): Reuse same argv slice
Will allow reliable memoization of argv resolution | serverless_serverless | train | js |
38f04230a3064f84701a1c7eca862fd6bb2c256f | diff --git a/src/components/list/list.js b/src/components/list/list.js
index <HASH>..<HASH> 100644
--- a/src/components/list/list.js
+++ b/src/components/list/list.js
@@ -48,10 +48,8 @@ angular.module('material.components.list', [
function mdListDirective() {
return {
restrict: 'E',
- link: function($scope,... | fix(list): adds role attributes in compile rather than link for performance improvements
#<I> | angular_material | train | js |
a53d9ce6c79c99445d0962b2af91de0dc69dea70 | diff --git a/packages/cli-plugin-deploy-pulumi/utils/getStackOutput.js b/packages/cli-plugin-deploy-pulumi/utils/getStackOutput.js
index <HASH>..<HASH> 100644
--- a/packages/cli-plugin-deploy-pulumi/utils/getStackOutput.js
+++ b/packages/cli-plugin-deploy-pulumi/utils/getStackOutput.js
@@ -15,7 +15,9 @@ const getOutput... | fix: skip first line when parsing stack JSON output | Webiny_webiny-js | train | js |
a316dd02f5a7d8dee33d99370afda8738985bc10 | diff --git a/lib/updaters/types/json.js b/lib/updaters/types/json.js
index <HASH>..<HASH> 100644
--- a/lib/updaters/types/json.js
+++ b/lib/updaters/types/json.js
@@ -11,6 +11,12 @@ module.exports.writeVersion = function (contents, version) {
const indent = detectIndent(contents).indent
const newline = detectNewl... | fix(updater): npm7 package lock's inner version not being updated (#<I>) | conventional-changelog_standard-version | train | js |
704dd712084b1aca49493b68cbd01dd2672f0e41 | diff --git a/packages/wpcom.js/test/test.wpcom.site.tag.js b/packages/wpcom.js/test/test.wpcom.site.tag.js
index <HASH>..<HASH> 100644
--- a/packages/wpcom.js/test/test.wpcom.site.tag.js
+++ b/packages/wpcom.js/test/test.wpcom.site.tag.js
@@ -21,6 +21,7 @@ describe('wpcom.site.tag', function(){
// Create a testing_t... | test: add random number to tag name | Automattic_wp-calypso | train | js |
cae0bca4dbf09ca7ede8bb9919b505c83985f30d | diff --git a/src/CacheKey.php b/src/CacheKey.php
index <HASH>..<HASH> 100644
--- a/src/CacheKey.php
+++ b/src/CacheKey.php
@@ -129,18 +129,8 @@ class CacheKey
}
if ($period && $period->hasFixedDateTimes()) {
- $startDateTime = '';
- $endDateTime = '';
-
- try {
- ... | refactor: remove try catch blocks | cyrildewit_eloquent-viewable | train | php |
dcf588800faf7f5d1f9be13d0bcc5528a2c2cf18 | diff --git a/examples/python/infomap-networkx.py b/examples/python/infomap-networkx.py
index <HASH>..<HASH> 100644
--- a/examples/python/infomap-networkx.py
+++ b/examples/python/infomap-networkx.py
@@ -37,8 +37,8 @@ def find_communities(G):
def draw_network(G):
# position map
pos = nx.spring_layout(G)
- ... | fix(python): Fix color indices in networkx example | mapequation_infomap | train | py |
f0caaa1e83b7e17b574c53f7d754021ebfaa5933 | diff --git a/src/Client/OAuth/Manager.php b/src/Client/OAuth/Manager.php
index <HASH>..<HASH> 100644
--- a/src/Client/OAuth/Manager.php
+++ b/src/Client/OAuth/Manager.php
@@ -7,6 +7,7 @@
namespace Commercetools\Core\Client\OAuth;
+use Commercetools\Core\Error\ApiException;
use GuzzleHttp\Psr7\Request;
use Psr\Ht... | fix(OAuthManager): don't expose api credentials through exception callstack | commercetools_commercetools-php-sdk | train | php |
8677a5234d0ea8fa7cbe8b65066bd59d3f501fa5 | diff --git a/platform/nativescript/plugins/modal-plugin.js b/platform/nativescript/plugins/modal-plugin.js
index <HASH>..<HASH> 100644
--- a/platform/nativescript/plugins/modal-plugin.js
+++ b/platform/nativescript/plugins/modal-plugin.js
@@ -1,3 +1,23 @@
+import { updateDevtools } from '../util'
+
+let sequentialCount... | feat: improve modals in DevTools | nativescript-vue_nativescript-vue | train | js |
b43cb71c3ba08d3b16d312dab11905800c0856b7 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -34,7 +34,6 @@ version = scuba.version.__version__
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
- 'sphinx.ext.autosectionlabel',
'myst_parser',
] | docs: Disable autosectionlabel extension
This produces a lot of warnings for the "Added" etc. sub-headings in
CHANGELOG.md, and we don't really use it much anyway. | JonathonReinhart_scuba | train | py |
bef72423f3bb7530d1c5b2e5a3bdb498c10ddb39 | diff --git a/library/src/main/java/com/liulishuo/filedownloader/services/FileDownloadRunnable.java b/library/src/main/java/com/liulishuo/filedownloader/services/FileDownloadRunnable.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/liulishuo/filedownloader/services/FileDownloadRunnable.java
+++ b/library... | fix(chunked-crash): handle the crash when delete the chunked-download-file during downloading
calculate the free space with the path must exist | lingochamp_FileDownloader | train | java |
f211ebedaaff68430f9c11a953403e6aab437739 | diff --git a/lib/workers/pr/index.js b/lib/workers/pr/index.js
index <HASH>..<HASH> 100644
--- a/lib/workers/pr/index.js
+++ b/lib/workers/pr/index.js
@@ -137,7 +137,7 @@ async function ensurePr(prConfig) {
});
}
// istanbul ignore next
- for (let i = 50; i < upgrade.releases.length; i += 1)... | fix: limit embedded changelogs to last <I> releases | renovatebot_renovate | train | js |
cbf719121e8515f3c127e63d50e9927ffa3443a7 | diff --git a/lib/scalra.js b/lib/scalra.js
index <HASH>..<HASH> 100644
--- a/lib/scalra.js
+++ b/lib/scalra.js
@@ -36,11 +36,12 @@ addScriptJs("/web/config.js");
// perform action only after page is loaded
document.addEventListener ("DOMContentLoaded", function () {
-
+ console.log('document.location:');
+ consol... | fix: host determination in /lib/scalra.js | imonology_scalra | train | js |
1577932525f31b9f174cbfd585d40b64c94279c8 | diff --git a/test/ext/max-age.js b/test/ext/max-age.js
index <HASH>..<HASH> 100644
--- a/test/ext/max-age.js
+++ b/test/ext/max-age.js
@@ -803,7 +803,7 @@ module.exports = function () {
++i;
return x + y;
};
- mfn = memoize(fn, { maxAge: 600, preFetch: 1 / 6 });
+ mfn = memoize(fn, { maxAge: 6000... | test: increase timeouts to avoid race conditions | medikoo_memoizee | train | js |
a30b0cb0b3536797dc82ba40c56d61c9e7f8f0bf | diff --git a/packages/xod-client/src/editor/reducer.js b/packages/xod-client/src/editor/reducer.js
index <HASH>..<HASH> 100644
--- a/packages/xod-client/src/editor/reducer.js
+++ b/packages/xod-client/src/editor/reducer.js
@@ -599,9 +599,9 @@ const editorReducer = (state = {}, action) => {
const currentPatchPath... | fix(xod-client): preserve patch offset when starting debugger
Closes #<I> | xodio_xod | train | js |
02aa7b28da4a31fe51dff2ab25d7751c576a7d47 | diff --git a/test/integration/ssg-data-404/test/index.test.js b/test/integration/ssg-data-404/test/index.test.js
index <HASH>..<HASH> 100644
--- a/test/integration/ssg-data-404/test/index.test.js
+++ b/test/integration/ssg-data-404/test/index.test.js
@@ -48,6 +48,11 @@ const runTests = () => {
}
describe('SSG data ... | ci: stabilize Window CI (#<I>)
This skips a test suite that always flakes on Windows due to `http-proxy` <> Windows interop issues. | zeit_next.js | train | js |
2234ec939fffa86b2da10c373ccbf5e7f9869168 | diff --git a/bin/use.js b/bin/use.js
index <HASH>..<HASH> 100755
--- a/bin/use.js
+++ b/bin/use.js
@@ -10,7 +10,7 @@ var error = util.error;
var warn = util.warn;
var info = util.info;
var readConfig = util.readConfig;
-var MAX_RULES_LEN = 1024 * 16;
+var MAX_RULES_LEN = 1024 * 256;
var DEFAULT_OPTIONS = { host: '1... | refactor: set max_local_rules_length=<I>k | avwo_whistle | train | js |
2768c75d6fda3d0c2925feb2089963a6008a408f | diff --git a/lib/hooks.php b/lib/hooks.php
index <HASH>..<HASH> 100644
--- a/lib/hooks.php
+++ b/lib/hooks.php
@@ -358,6 +358,7 @@ function get_subscriptions($hook, $type, $return, $params) {
// Notification has already been sent to the owner of the container in the save action
$container = $object->getContainerEnt... | fix(notifications): avoid sending duplicate notifications to content owners | hypeJunction_hypeInteractions | train | php |
5b11b5f04eb8cad9447a9ed2f5415b7dd9d011a4 | diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -54,7 +54,7 @@ describe('gulp-alex', () => {
stream.on('data', (file) => {
expect(file).to.eql(validFile);
- expect(reporter.called).to.eql(true);
+ expect(reporter.calledOnce).to.eql(tr... | refactor(test): use calledOnce instead of called | dustinspecker_gulp-alex | train | js |
43c3fac8c0fb6244404bb5ab1fda6ebe42e884c6 | diff --git a/library/src/main/java/com/liulishuo/filedownloader/util/FileDownloadExecutors.java b/library/src/main/java/com/liulishuo/filedownloader/util/FileDownloadExecutors.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/liulishuo/filedownloader/util/FileDownloadExecutors.java
+++ b/library/src/main... | feat: change the keepalive second for each executor, since when downloading multiple tasks thread release and recreate too frequently | lingochamp_FileDownloader | train | java |
7a2df3d08289d4e900450f6770c141e2b8ece5b5 | diff --git a/nupic/algorithms/anomaly.py b/nupic/algorithms/anomaly.py
index <HASH>..<HASH> 100644
--- a/nupic/algorithms/anomaly.py
+++ b/nupic/algorithms/anomaly.py
@@ -101,7 +101,7 @@ class Anomaly(object):
self._buf = numpy.array([0] * self._windowSize, dtype=numpy.float)
self._i = 0 # index pointer t... | fix: typo in ValueError | numenta_nupic | train | py |
bc9ec5a7506cd2db0e4a0c13f920e32101dad6dd | diff --git a/packages/docs/src/vuetify/index.js b/packages/docs/src/vuetify/index.js
index <HASH>..<HASH> 100644
--- a/packages/docs/src/vuetify/index.js
+++ b/packages/docs/src/vuetify/index.js
@@ -9,10 +9,10 @@ export function createVuetify () {
const vuetify = new Vuetify({
theme: {
options: {
- ... | docs: check for document before using localStorage | vuetifyjs_vuetify | train | js |
e1692770d4bc1c6967b00cbab87f6a681046e5a4 | diff --git a/src/DynamicRedirect.js b/src/DynamicRedirect.js
index <HASH>..<HASH> 100644
--- a/src/DynamicRedirect.js
+++ b/src/DynamicRedirect.js
@@ -11,9 +11,9 @@
*/
const { URL } = require('url');
const { fetch } = require('@adobe/helix-fetch').context({
- httpsProtocols:
- /* istanbul ignore next */
- proc... | feat: force http1 when invoking other runtime actions
The upcoming/new I/O Runtime environment is Azure-based and supports HTTP/2. This might lead to
issues with long-lived HTTP/2 sessions. | adobe_helix-shared | train | js |
a205f88310653331c96f51402d148c576dd79db8 | diff --git a/lib/cli/handle-error.js b/lib/cli/handle-error.js
index <HASH>..<HASH> 100644
--- a/lib/cli/handle-error.js
+++ b/lib/cli/handle-error.js
@@ -159,10 +159,7 @@ module.exports = async (exception, options = {}) => {
const errorMsg = stripAnsi(
exceptionTokens.stack && !isUserError ? exceptionTokens.st... | refactor(CLI): Improve modern error reporting | serverless_serverless | train | js |
ec69fe7b78585889f68d898eee43f9182ef43e76 | diff --git a/spec/operators/single-spec.js b/spec/operators/single-spec.js
index <HASH>..<HASH> 100644
--- a/spec/operators/single-spec.js
+++ b/spec/operators/single-spec.js
@@ -144,19 +144,4 @@ describe('Observable.prototype.single()', function () {
expectObservable(e1.single(predicate)).toBe(expected, {z: undef... | test(single): remove duplicated test | ReactiveX_rxjs | train | js |
0de1cf53a4a445b3a62221c7225adf16841ea1c7 | diff --git a/packages/hoc-disabled-tooltip/src/disabledTooltip.test.js b/packages/hoc-disabled-tooltip/src/disabledTooltip.test.js
index <HASH>..<HASH> 100644
--- a/packages/hoc-disabled-tooltip/src/disabledTooltip.test.js
+++ b/packages/hoc-disabled-tooltip/src/disabledTooltip.test.js
@@ -66,7 +66,7 @@ describe("disab... | refactor(minor): a small change, replace a let with a const
affects: @crave/farmblocks-hoc-disabled-tooltip | CraveFood_farmblocks | train | js |
62673d56921dbdf71bd1b71657a546c14fc2908c | diff --git a/ui/src/utils/patterns.js b/ui/src/utils/patterns.js
index <HASH>..<HASH> 100644
--- a/ui/src/utils/patterns.js
+++ b/ui/src/utils/patterns.js
@@ -13,12 +13,13 @@ export const testPattern = {
time: v => /^([0-1]?\d|2[0-3]):[0-5]\d$/.test(v),
fulltime: v => /^([0-1]?\d|2[0-3]):[0-5]\d:[0-5]\d$/.test(v)... | chore(ui): fix linting issue from previous PR | quasarframework_quasar | train | js |
277945bf42671fa103ddf86e0a423fa860f2db5f | diff --git a/src/Syrup/CoreBundle/DeploymentHandler/ScriptHandler.php b/src/Syrup/CoreBundle/DeploymentHandler/ScriptHandler.php
index <HASH>..<HASH> 100644
--- a/src/Syrup/CoreBundle/DeploymentHandler/ScriptHandler.php
+++ b/src/Syrup/CoreBundle/DeploymentHandler/ScriptHandler.php
@@ -60,7 +60,7 @@ s - skip <info>(kee... | fix: Non-interactive selection of parameters.yml in ScriptHandler | keboola_syrup | train | php |
3d2e12fef1e32bdd7337be24b6ee1fd8d5fdf2de | diff --git a/test/test-validators.js b/test/test-validators.js
index <HASH>..<HASH> 100644
--- a/test/test-validators.js
+++ b/test/test-validators.js
@@ -67,6 +67,10 @@ describe('Validators:', function () {
assert.throws(() => { validateWidthTolerance(0) })
});
+ it('throws if widthTolerance is less t... | test: throws if widthTolerance is < 0 | imgix_imgix-core-js | train | js |
d0a04423bccdd906dd11d4295cb58fc4d53c15ff | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -16,6 +16,7 @@ require "aruba/api"
require "capybara/rails"
require 'capybara/poltergeist'
Capybara.javascript_driver = :poltergeist
+Capybara.ignore_hidden_elements = false
Di... | chore(tests): change Capybara default visibility setting | abe33_awesome_form | train | rb |
7de51e93e9fa3bffa3001c6f0b69126bc3c87815 | diff --git a/src/_provider/watcher.js b/src/_provider/watcher.js
index <HASH>..<HASH> 100644
--- a/src/_provider/watcher.js
+++ b/src/_provider/watcher.js
@@ -70,7 +70,7 @@ angular.module('a8m.filter-watcher', [])
$$timeout(function() {
if(!$rootScope.$$phase)
$$cache = {};
- });... | fix(watcher): add min timeout to cache clean | a8m_angular-filter | train | js |
aae25fa92ee07f4e7eeb01e7fd383fec67a8e5ae | diff --git a/src/downshift.js b/src/downshift.js
index <HASH>..<HASH> 100644
--- a/src/downshift.js
+++ b/src/downshift.js
@@ -75,7 +75,7 @@ class Downshift extends Component {
if (i == null) {
return ''
}
- if (process.env.NODE_ENV !== 'production' && isPlainObject(i)) {
+ if (process.... | fix: allow custom toString methods on objects (#<I>) | downshift-js_downshift | train | js |
451a6d526da4e66fa9858e0ac755062db5e05e3a | diff --git a/test/unit/waves.js b/test/unit/waves.js
index <HASH>..<HASH> 100644
--- a/test/unit/waves.js
+++ b/test/unit/waves.js
@@ -58,6 +58,7 @@ describe('Waves', () => {
it('applies a color class', () => {
element.setAttribute('md-waves', 'color: green;');
+ waves.color = 'green';
waves.attached(... | refactor(waves-test): set color property directly | aurelia-ui-toolkits_aurelia-materialize-bridge | train | js |
7e09b7241e374bf60b36cfab9c7ed5261a80a267 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -75,7 +75,7 @@ setup(
"cryptography>=3.3.2",
"deprecation>=2.1.0, <2.2.0",
"flask>=1.1.0, <2.0.0",
- "flask-appbuilder>=3.3.0, <4.0.0",
+ "flask-appbuilder>=3.3.2, <4.0.0",
"fl... | chore: Bump FAB to <I> (#<I>) | apache_incubator-superset | train | py |
0c659eb1b31dbae2d104353acc3c6e721c318d0c | diff --git a/packages/widget-chat/webpack.config.js b/packages/widget-chat/webpack.config.js
index <HASH>..<HASH> 100644
--- a/packages/widget-chat/webpack.config.js
+++ b/packages/widget-chat/webpack.config.js
@@ -132,6 +132,10 @@ module.exports = {
include: [/node_modules/],
loaders: ['style-loader'... | fix(widget-chat): webpack configurations for plugin-conversation changes | webex_spark-js-sdk | train | js |
09ac37368bdeb2a43d85f0f070698ca0c67301d0 | diff --git a/src/utils/subscription-registry.js b/src/utils/subscription-registry.js
index <HASH>..<HASH> 100644
--- a/src/utils/subscription-registry.js
+++ b/src/utils/subscription-registry.js
@@ -116,8 +116,9 @@ class SubscriptionRegistry {
}
_onSocketClose (socket) {
- for (const name of this._names.get(... | fix(subscription-registry): silent unsub on close. | deepstreamIO_deepstream.io | train | js |
d52bec2681a4d5afd82b723eed9f467545e03567 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -236,11 +236,11 @@ export class Logger {
error(message: string, ...rest: any[]): void {}
/**
- * Sets the level of logging this logger
+ * Sets the level of logging for this logger instance
*
... | fix(logging): relax type on Logger.setLevel() for compatibility with TypeScript | aurelia_logging | train | js |
ddd4213fcfaba25a35a5cca6dc63d23243546be8 | diff --git a/lib/browser-sync.js b/lib/browser-sync.js
index <HASH>..<HASH> 100644
--- a/lib/browser-sync.js
+++ b/lib/browser-sync.js
@@ -705,6 +705,15 @@ BrowserSync.prototype.cleanup = function (cb) {
bs.events.removeAllListeners();
}
+ // Close any core file watchers
+ if (bs.watchers) {
+ ... | fix(cleanup): close any watchers registered in options - fixes #<I> | BrowserSync_browser-sync | train | js |
c9fe442882d7446e63f8536b35bb90d213018b26 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -2,11 +2,11 @@
/* global hexo */
-var ftpsync = require('ftpsync');
+const ftpsync = require('ftpsync');
-hexo.extend.deployer.register('ftpsync', function(args, callback) {
+hexo.extend.deployer.register('ftpsync', (ar... | refactor: es6-fy | hexojs_hexo-deployer-ftpsync | train | js |
d875704d577905a1d752ade96c73d6771458d67a | diff --git a/packages/zent/src/tabs/index.js b/packages/zent/src/tabs/index.js
index <HASH>..<HASH> 100644
--- a/packages/zent/src/tabs/index.js
+++ b/packages/zent/src/tabs/index.js
@@ -132,7 +132,8 @@ export default class Tabs extends (PureComponent || Component) {
renderWithPanel() {
let { prefix, className,... | fix: 修复Tabs组件activeKey兼容问题 | youzan_zent | train | js |
3f9ad9bfffb7897a2ad57289bdeb4e76cdc7e824 | diff --git a/packages/vuetify/src/mixins/detachable.js b/packages/vuetify/src/mixins/detachable.js
index <HASH>..<HASH> 100644
--- a/packages/vuetify/src/mixins/detachable.js
+++ b/packages/vuetify/src/mixins/detachable.js
@@ -40,8 +40,11 @@ export default {
beforeMount () {
this.$nextTick(() => {
- if (... | fix(detachable): extract all elements from activator scoped slot | vuetifyjs_vuetify | train | js |
51c455adb7f22d2035d5080d921ed261ccebb1e7 | diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogJobTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogJobTest.java
index <HASH>..<HASH> 100644
--- a/engine/src/test/java/org/camunda/bpm/engine/test/history/useroper... | test(engine): improve assertions
related to CAM-<I> | camunda_camunda-bpm-platform | train | java |
f1ea8fad91fb167e387c9aee96f31ce2e7a0fbb1 | diff --git a/model/Export/Extractor/OntologyExtractorRunner.php b/model/Export/Extractor/OntologyExtractorRunner.php
index <HASH>..<HASH> 100644
--- a/model/Export/Extractor/OntologyExtractorRunner.php
+++ b/model/Export/Extractor/OntologyExtractorRunner.php
@@ -39,7 +39,7 @@ class OntologyExtractorRunner
public s... | fix: excape double quotes in csv headers | oat-sa_extension-tao-itemqti | train | php |
e96013bf91218797d58d67ebf43fa777b11378a0 | diff --git a/core/src/main/java/com/orientechnologies/orient/core/metadata/sequence/OSequenceOrdered.java b/core/src/main/java/com/orientechnologies/orient/core/metadata/sequence/OSequenceOrdered.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/orient/core/metadata/sequence/OSequenceOrder... | chore: reduce lock span of the sequence next operation | orientechnologies_orientdb | train | java |
d86440506dd37101e60adec591d4b017e7765ec6 | diff --git a/framework/core/src/Foundation/Application.php b/framework/core/src/Foundation/Application.php
index <HASH>..<HASH> 100644
--- a/framework/core/src/Foundation/Application.php
+++ b/framework/core/src/Foundation/Application.php
@@ -21,7 +21,7 @@ class Application
*
* @var string
*/
- con... | chore: update version constant during cycle <I> | flarum_core | train | php |
e554f6748915eed88b9dcd6003388cf446750903 | diff --git a/react/MuiCozyTheme/theme.js b/react/MuiCozyTheme/theme.js
index <HASH>..<HASH> 100644
--- a/react/MuiCozyTheme/theme.js
+++ b/react/MuiCozyTheme/theme.js
@@ -110,7 +110,7 @@ export const normalTheme = createMuiTheme({
},
text: {
primary: getCssVariableValue('charcoalGrey'),
- secondar... | fix: Text secondary color is coolGrey | cozy_cozy-ui | train | js |
129ac775f1934f8f8e51006c12c6f19d8543954e | diff --git a/packages/ipfs-core/src/components/libp2p.js b/packages/ipfs-core/src/components/libp2p.js
index <HASH>..<HASH> 100644
--- a/packages/ipfs-core/src/components/libp2p.js
+++ b/packages/ipfs-core/src/components/libp2p.js
@@ -129,7 +129,10 @@ function getLibp2pOptions ({ options, config, datastore, keychainCon... | fix: onMessage assignment should be undefined not null (#<I>)
Assign according to the type | ipfs_js-ipfs | train | js,js |
84e47b82a51b3a2b0b12f1584739a6b4fa95b05f | diff --git a/examples/with-iron-session/components/Header.js b/examples/with-iron-session/components/Header.js
index <HASH>..<HASH> 100644
--- a/examples/with-iron-session/components/Header.js
+++ b/examples/with-iron-session/components/Header.js
@@ -43,7 +43,10 @@ const Header = () => {
href="/api/l... | docs(examples): with-iron-session logout must be called via POST (#<I>)
1. Logout is better called in a POST request (avoids caching in most situations + avoids weird CSRF "logout attacks", i.e. can't be logged out by clicking on an email link)
2. We should wait for logout to complete before mutating the user, otherwi... | zeit_next.js | train | js |
98506d3d30dc4cb74b811dcab02e4a7ef51b1408 | diff --git a/tests/integration/routes/accounts/post-accounts-test.js b/tests/integration/routes/accounts/post-accounts-test.js
index <HASH>..<HASH> 100644
--- a/tests/integration/routes/accounts/post-accounts-test.js
+++ b/tests/integration/routes/accounts/post-accounts-test.js
@@ -107,15 +107,14 @@ getServer(function ... | test(routes): POST /accounts?include=foobar -> <I> | hoodiehq_hoodie-account-server | train | js |
5fee67f0c5be1bcdb787c384adcefd20b637f759 | diff --git a/deisctl/deisctl.go b/deisctl/deisctl.go
index <HASH>..<HASH> 100644
--- a/deisctl/deisctl.go
+++ b/deisctl/deisctl.go
@@ -35,6 +35,7 @@ Commands, use "deisctl help <command>" to learn more:
start start components
stop stop components
restart stop, then start comp... | fix(deisctl): add status command to help screen
Status command exists but is missing from the initial help screen | deis_deis | train | go |
e8c44b534c867f099ac82c532be5e229d4fb03f6 | diff --git a/views/js/layout/search.js b/views/js/layout/search.js
index <HASH>..<HASH> 100644
--- a/views/js/layout/search.js
+++ b/views/js/layout/search.js
@@ -125,7 +125,7 @@ define(['jquery', 'layout/actions', 'ui/searchModal', 'core/store', 'context'],
if (storedSearchResults) {
$resultsCou... | chore(search-retention): display total number of records instead of current page records | oat-sa_tao-core | train | js |
c8801db0b020113a000d41b78c0cefd7ef080928 | diff --git a/src/field/field.js b/src/field/field.js
index <HASH>..<HASH> 100644
--- a/src/field/field.js
+++ b/src/field/field.js
@@ -93,11 +93,10 @@ function getFields(graffitiModels) {
};
}
-function getSchema(collections) {
- const graffitiModels = getModels(collections);
+function getSchema(mongooseModels) ... | refactor(field): naming coherence
naming coherence to make the code simpler to understand throughout | RisingStack_graffiti-mongoose | train | js |
018506770a2db712560203c67ebc8f1d63b627d0 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -150,3 +150,4 @@ export TextAreaSkeleton from './components/TextArea/TextArea.Skeleton';
export TextInputSkeleton from './components/TextInput/TextInput.Skeleton';
export ToggleSkeleton from './components/Tog... | fix(icon-skeleton): Add missing export for IconSkeleton component (#<I>) | carbon-design-system_carbon-components-react | train | js |
d6fb94672d41fba236b3bc617954a149b737cb47 | diff --git a/.eslintrc.js b/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -3,7 +3,7 @@ module.exports = {
extends: [
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
- 'prettier/@typescript-eslint',
+ 'prettier',
'plugin:prettier/recommende... | chore: Update eslint config with latest dependency updates | cahilfoley_snowfall | train | js |
2c3b39d7e7e1cb27684238450d7bc393d9fe2b9d | diff --git a/rakelib/kokoro/kokoro.rb b/rakelib/kokoro/kokoro.rb
index <HASH>..<HASH> 100644
--- a/rakelib/kokoro/kokoro.rb
+++ b/rakelib/kokoro/kokoro.rb
@@ -36,6 +36,9 @@ class Kokoro < Command
@updated_gems.each do |gem|
run_ci gem do
run "bundle exec rake ci", 1800
+ # TODO: Remove date ... | chore: postpone link checking on presubmits for one week | googleapis_google-cloud-ruby | train | rb |
400018141b678b415891b2df55c0cc76c45c987d | diff --git a/packages/node_modules/@webex/plugin-meetings/src/common/logs/request.js b/packages/node_modules/@webex/plugin-meetings/src/common/logs/request.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/plugin-meetings/src/common/logs/request.js
+++ b/packages/node_modules/@webex/plugin-meetings/src/... | fix(plugin-meetings): prevent success message when log upload fails | webex_spark-js-sdk | train | js |
5d96b5f382ecf064522cef9f1d57fbec6a072ee4 | diff --git a/src/Button.js b/src/Button.js
index <HASH>..<HASH> 100644
--- a/src/Button.js
+++ b/src/Button.js
@@ -58,7 +58,7 @@ const Button = styled.button`
props.disabled ? null : props.theme.colors.darkBlue};
}
- ${fullWidth} ${space} ${size};
+ ${fullWidth} ${size} ${space};
`
const numberStringO... | fix(button): Switch css hierarchy so that passed in paddings are not overwritten by default size | jrs-innovation-center_design-system | train | js |
8173710be53b12646d1a19c6620696f3603a1b67 | diff --git a/routes/admin/authenticated/sidebar/community-settings/invite/page.js b/routes/admin/authenticated/sidebar/community-settings/invite/page.js
index <HASH>..<HASH> 100644
--- a/routes/admin/authenticated/sidebar/community-settings/invite/page.js
+++ b/routes/admin/authenticated/sidebar/community-settings/invi... | chore(community): reset invite form after submit fix #<I> | nossas_bonde-client | train | js |
4ed176c2657a55a6d394446407cb3d2e6f622f81 | diff --git a/src/tools/annotation/CircleRoiTool.js b/src/tools/annotation/CircleRoiTool.js
index <HASH>..<HASH> 100644
--- a/src/tools/annotation/CircleRoiTool.js
+++ b/src/tools/annotation/CircleRoiTool.js
@@ -34,17 +34,13 @@ const logger = getLogger('tools:annotation:EllipticalRoiTool');
* @extends Tools.Base.BaseA... | fix(mergeConfig): Applying merge config fix into CircleRoiTool | cornerstonejs_cornerstoneTools | train | js |
a4fd391ba1c9faa1004e879f314beb80c3afe0b6 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -267,7 +267,7 @@ module.exports = function(grunt) {
grunt.registerTask('bench', ['metrics']);
- if (process.env.SAUCE_USERNAME) {
+ if (process.env.SAUCE_ACCESS_KEY) {
grunt.registerTask('sauce', ... | chore: execute saucelabs-task only if access-key exists
- up to now, the existance of the SAUCE_USERNAME was checked
but this variable is even present in pull-requests from other
repos. This means that builds fail, because the access key
is not there.
This change looks for SAUCE_ACCESS_KEY instead, which is
... | wycats_handlebars.js | train | js |
fb5fe555cf8a184e8e933359433acb3b44946d93 | diff --git a/packages/xod-project/src/constants.js b/packages/xod-project/src/constants.js
index <HASH>..<HASH> 100644
--- a/packages/xod-project/src/constants.js
+++ b/packages/xod-project/src/constants.js
@@ -85,6 +85,7 @@ export const STATIC_TYPES_COMPATIBILITY = {
},
[PIN_TYPE.PORT]: {
[PIN_TYPE.PORT]: t... | feat(xod-project): make the port type castable to the string type | xodio_xod | train | js |
6898097c45d53a3176882a3d9cb86c0015f8d491 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -11,11 +11,13 @@ def get_version():
if line.startswith('__version__'):
return eval(line.split('=')[-1])
+with open("README.rst", "r") as readme_file:
+ readme = readme_file.read()
setup(na... | docs(setup): use proper readme on PyPI | python-gitlab_python-gitlab | train | py |
3be851cc73a69b7c58fa74834fefe7eaa3db251e | diff --git a/src/geshi/perl.php b/src/geshi/perl.php
index <HASH>..<HASH> 100644
--- a/src/geshi/perl.php
+++ b/src/geshi/perl.php
@@ -197,7 +197,12 @@ $language_data = array (
'SCRIPT_DELIMITERS' => array(
),
'HIGHLIGHT_STRICT_BLOCK' => array(
+ ),
+ 'PARSER_CONTROL' => array(
+ 'CO... | fix: Fixed $# not being comment in Perl | GeSHi_geshi-1.0 | train | php |
8143fcc39730ac4f94dd36b5c7e0698c01222b05 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ from setuptools import setup
with open('README.MD') as readme_file:
README = readme_file.read()
-VERSION = '0.0.2'
+VERSION = '0.0.3'
setup(
name='chuda', | chore(setup): upgrade to <I> | Varkal_chuda | train | py |
b5fa198cdcc6d0aa72c80af9faf3557e7c66aab3 | diff --git a/actions/class.PropertiesAuthoring.php b/actions/class.PropertiesAuthoring.php
index <HASH>..<HASH> 100644
--- a/actions/class.PropertiesAuthoring.php
+++ b/actions/class.PropertiesAuthoring.php
@@ -329,7 +329,7 @@ class tao_actions_PropertiesAuthoring extends tao_actions_CommonModule
$groups = $my... | fix: populate property fields after request | oat-sa_tao-core | train | php |
938072f0ebd6943920440510abb1071eea9010e6 | diff --git a/lib/NewWatchingPlugin.js b/lib/NewWatchingPlugin.js
index <HASH>..<HASH> 100644
--- a/lib/NewWatchingPlugin.js
+++ b/lib/NewWatchingPlugin.js
@@ -2,11 +2,14 @@
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
-function NewWatchingPlugin() {}
-module.export... | refactor(es6): Upgrade NewWatchingPlugin to es6 (#<I>) | webpack_webpack | train | js |
c22cd16c9be1cd442da8d970ff7fe54dae355d13 | diff --git a/edx_rest_api_client/auth.py b/edx_rest_api_client/auth.py
index <HASH>..<HASH> 100644
--- a/edx_rest_api_client/auth.py
+++ b/edx_rest_api_client/auth.py
@@ -13,7 +13,15 @@ class JwtAuth(AuthBase):
Deprecated:
See https://github.com/edx/edx-platform/blob/master/openedx/core/djangoapps/oauth_d... | docs: add more deprecated JwtAuth notes (#<I>) | edx_edx-rest-api-client | train | py |
fa34c32b0766a2bec6bada967c98f80784382d19 | diff --git a/swarm-bat/src/BatMux.js b/swarm-bat/src/BatMux.js
index <HASH>..<HASH> 100644
--- a/swarm-bat/src/BatMux.js
+++ b/swarm-bat/src/BatMux.js
@@ -169,13 +169,12 @@ BatMux.prototype.drain = function () {
}
}
if (!this.data.length && this.end) {
- this.onTrunkDataEnd();
+ for(var... | fix(bat): emit `end` after all streams' data is sent | gritzko_swarm | train | js |
40633a335b112d3cec5c8be5a8f3bfa284404b33 | diff --git a/src/EngineWindow.js b/src/EngineWindow.js
index <HASH>..<HASH> 100644
--- a/src/EngineWindow.js
+++ b/src/EngineWindow.js
@@ -97,20 +97,19 @@ class EngineWindow {
const heightRatio = container.clientHeight / targetHeight
const currRatio = (widthRatio < heightRatio) ? widthRatio : heightRatio
- le... | fix: setup screen ratio when its changed | tenjou_meta2d | train | js |
b5d5fe19b1df13608a2a04514cffaa9dcf7548d7 | diff --git a/src/main/java/io/minio/MinioClient.java b/src/main/java/io/minio/MinioClient.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/minio/MinioClient.java
+++ b/src/main/java/io/minio/MinioClient.java
@@ -1180,7 +1180,7 @@ public final class MinioClient {
String tempFileName = fileName + "." + etag... | fix: temp file existence checking is wrong getObject method (#<I>)
Previously in getObject method, temp file existence check is wrongly
with actual file name. This causes exception when the destination file
exists.
This patch fixes the issue. | minio_minio-java | train | java |
82cc52ecf5ac8bb32fe67e98e37de5ba9015c723 | diff --git a/leancloud/object_.py b/leancloud/object_.py
index <HASH>..<HASH> 100644
--- a/leancloud/object_.py
+++ b/leancloud/object_.py
@@ -527,7 +527,7 @@ class Object(object):
self._merge_magic_field(server_data)
self._rebuild_attributes()
- def _finish_fetch(self, server_data, has_data):
+ ... | fix: wrong existed value when object is fetched from server | leancloud_python-sdk | train | py |
d3b5338bf0de1b4fcc0b7218bb72d7cb70da7cc8 | diff --git a/piazza_api/piazza.py b/piazza_api/piazza.py
index <HASH>..<HASH> 100644
--- a/piazza_api/piazza.py
+++ b/piazza_api/piazza.py
@@ -79,7 +79,7 @@ class Piazza(object):
classes = []
for rawc in raw_classes:
c = {k: rawc[k] for k in ['name', 'term']}
- c['num'] = rawr.... | fix(devel): Fixed typo introduced in commit for "get_user_classes"! | hfaran_piazza-api | train | py |
bbf1a278291157cf70c2d99a4072c247ede452a9 | diff --git a/anyconfig/schema.py b/anyconfig/schema.py
index <HASH>..<HASH> 100644
--- a/anyconfig/schema.py
+++ b/anyconfig/schema.py
@@ -149,16 +149,13 @@ def gen_schema(node, **options):
:return: A dict represents JSON schema of this node
"""
- typemap = options.get("ac_schema_typemap", _SIMPLETYPE_MA... | refactor: code moves into cond. blocks to make objects lazily | ssato_python-anyconfig | train | py |
07535a54dc17a98263548be8f333c41c080f934a | diff --git a/env.go b/env.go
index <HASH>..<HASH> 100644
--- a/env.go
+++ b/env.go
@@ -292,8 +292,10 @@ func getOr(key, defaultValue string, defExists bool, envs map[string]string) (va
func set(field reflect.Value, sf reflect.StructField, value string, funcMap map[reflect.Type]ParserFunc) error {
var tm = asTextUnma... | refactor: make unmarshal error handling clearer | caarlos0_env | train | go |
17dd1de7a683ff03f084c0c5fcac587877f75263 | diff --git a/packages/reactstrap-validation-date/tests/AvDateRange.test.js b/packages/reactstrap-validation-date/tests/AvDateRange.test.js
index <HASH>..<HASH> 100644
--- a/packages/reactstrap-validation-date/tests/AvDateRange.test.js
+++ b/packages/reactstrap-validation-date/tests/AvDateRange.test.js
@@ -100,4 +100,33... | test(reactstrap-validation-date): added test cases for min and max | Availity_availity-react | train | js |
63488d341e0f2acea7b8948e6918a69ac88d0050 | diff --git a/widgets/url-sync/index.js b/widgets/url-sync/index.js
index <HASH>..<HASH> 100644
--- a/widgets/url-sync/index.js
+++ b/widgets/url-sync/index.js
@@ -2,7 +2,6 @@ var AlgoliaSearchHelper = require('algoliasearch-helper').AlgoliaSearchHelper;
var isEqual = require('lodash/lang/isEqual');
var merge = requ... | fix(url-sync): make input not to lose focus | algolia_instantsearch.js | train | js |
051962177660199b86cd7e5c870a6a39e1654cdd | diff --git a/lib/util/internal/getRelativePath.js b/lib/util/internal/getRelativePath.js
index <HASH>..<HASH> 100644
--- a/lib/util/internal/getRelativePath.js
+++ b/lib/util/internal/getRelativePath.js
@@ -2,5 +2,9 @@ import stripPathPrefix from './stripPathPrefix'
const getRootPath = require('./getRootPath')
expo... | fix(internal): Correctly ignore files outside of Meteor projects
#<I> | dferber90_eslint-plugin-meteor | train | js |
217685deab79d41bb8819f06c968f6ce38f980aa | diff --git a/packages/mrm/src/__tests__/index.spec.js b/packages/mrm/src/__tests__/index.spec.js
index <HASH>..<HASH> 100644
--- a/packages/mrm/src/__tests__/index.spec.js
+++ b/packages/mrm/src/__tests__/index.spec.js
@@ -458,6 +458,7 @@ describe('getAllTasks', () => {
task3: 'Taks 2.3',
task4: 'Taks 2.4',
... | test: fixed getAllTasks test | sapegin_mrm | train | js |
ebdbbe4870002fb4d408cf355b2074906bd9bf69 | diff --git a/packages/megalo-template-compiler/build.js b/packages/megalo-template-compiler/build.js
index <HASH>..<HASH> 100644
--- a/packages/megalo-template-compiler/build.js
+++ b/packages/megalo-template-compiler/build.js
@@ -5024,7 +5024,7 @@ var eventTypeMap$2 = {
CalloutTap: ['callouttap'],
ControlTap: ['... | fix: message event on webview could not be listened | kaola-fed_megalo | train | js |
8b668a786626b77903ecf9dc976f220b75bd74f7 | diff --git a/packages/breadcrumbs/Breadcrumbs.js b/packages/breadcrumbs/Breadcrumbs.js
index <HASH>..<HASH> 100644
--- a/packages/breadcrumbs/Breadcrumbs.js
+++ b/packages/breadcrumbs/Breadcrumbs.js
@@ -34,7 +34,7 @@ const Breadcrumbs = ({ crumbs, active, emptyState, children, feedback }) => {
<BreadcrumbItem ac... | refactor(breadcrumbs): appname the required prop passed to feedback | Availity_availity-react | train | js |
aeedb40a67bbe0340d0fe7afb564fae1a99b9c32 | diff --git a/storybook/stories/components/search/results.js b/storybook/stories/components/search/results.js
index <HASH>..<HASH> 100644
--- a/storybook/stories/components/search/results.js
+++ b/storybook/stories/components/search/results.js
@@ -32,8 +32,8 @@ export default function SearchResults({
</Grid>
... | test(warnings): Reduce warnings when running tests (#<I>)
`yarn test` was showing some unnecessary warnings. Fixes related issues (by adding keys)" | gymnastjs_gymnast | train | js |
0a4fa371959595ff4ebcadba37f983dd71c6ed5b | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -4,7 +4,7 @@ var loaderUtils = require('loader-utils');
module.exports = function(source) {
this.cacheable && this.cacheable();
var query = loaderUtils.parseQuery(this.query);
- var options = this.options.ejsLoader || ... | fix: update for webpack 4
this.options is not available in webpack4 so we check and return
an empty object instead. | difelice_ejs-loader | train | js |
f5441da71ea6a290a4643f2b2ed51bbe44263ca9 | diff --git a/packages/jsx/src/lib/middleware/ui.js b/packages/jsx/src/lib/middleware/ui.js
index <HASH>..<HASH> 100644
--- a/packages/jsx/src/lib/middleware/ui.js
+++ b/packages/jsx/src/lib/middleware/ui.js
@@ -6,7 +6,7 @@ import {SWIPEABLE_CHANGE_INDEX, SWIPEABLE_TAB_CHANGE_INDEX} from "../actions/rou
const getSwip... | fix(jsx): Don't assume that we'll always have `M` in scope here. Redux. | randytarampi_me | train | js |
75cd7b83f49766c9170a982ef76a6ff5ee2b3f36 | diff --git a/okdownload/src/main/java/com/liulishuo/okdownload/core/dispatcher/CallbackDispatcher.java b/okdownload/src/main/java/com/liulishuo/okdownload/core/dispatcher/CallbackDispatcher.java
index <HASH>..<HASH> 100644
--- a/okdownload/src/main/java/com/liulishuo/okdownload/core/dispatcher/CallbackDispatcher.java
+... | refactor: remove useless constructor of callback-dispatcher | lingochamp_okdownload | train | java |
5b8839bb6fe54abb9e95b9beed100566b2c5fc6e | diff --git a/src/component/timeline/SliderTimelineView.js b/src/component/timeline/SliderTimelineView.js
index <HASH>..<HASH> 100644
--- a/src/component/timeline/SliderTimelineView.js
+++ b/src/component/timeline/SliderTimelineView.js
@@ -618,11 +618,17 @@ function getViewRect(model, api) {
}
function makeIcon(time... | fix(timeline): fix icon style not work bug brought in #<I> | apache_incubator-echarts | train | js |
7c8f2487473aa3dbc620334747d4f6b6af87b09d | diff --git a/pvl/grammar.py b/pvl/grammar.py
index <HASH>..<HASH> 100755
--- a/pvl/grammar.py
+++ b/pvl/grammar.py
@@ -255,8 +255,8 @@ class ISISGrammar(PVLGrammar):
object_pref_keywords = ("Object", "End_Object")
object_keywords = {"OBJECT": "END_OBJECT"}
- # A single-line comment that starts with the o... | docs: fixed some lint issues | planetarypy_pvl | train | py,py |
46e1764e586e09c3be828e804dd66706525f3df6 | diff --git a/it.jnrpe.services.events/src/main/java/it/jnrpe/services/events/console/ConsoleEventManager.java b/it.jnrpe.services.events/src/main/java/it/jnrpe/services/events/console/ConsoleEventManager.java
index <HASH>..<HASH> 100644
--- a/it.jnrpe.services.events/src/main/java/it/jnrpe/services/events/console/Conso... | refactor: removed useless String.format | ziccardi_jnrpe | train | java |
f527f56bb23cfa1aa30cee0f5e3785f714243909 | diff --git a/packages/spark-core/src/plugins/credentials/auth-interceptor.js b/packages/spark-core/src/plugins/credentials/auth-interceptor.js
index <HASH>..<HASH> 100644
--- a/packages/spark-core/src/plugins/credentials/auth-interceptor.js
+++ b/packages/spark-core/src/plugins/credentials/auth-interceptor.js
@@ -54,12... | fix(spark-core): actually refresh the access token in event of <I> | webex_spark-js-sdk | train | js |
e6d68139f063c48a0b1cf29dfbe012e460b31ce8 | diff --git a/alot/command.py b/alot/command.py
index <HASH>..<HASH> 100644
--- a/alot/command.py
+++ b/alot/command.py
@@ -366,7 +366,7 @@ class ComposeCommand(Command):
cmpl = AccountCompleter(ui.accountman)
fromaddress = ui.prompt(prefix='From>', completer=cmpl, tab=1)
... | fix: handle canceling in compose prompts
issue #<I> | pazz_alot | train | py |
2b374c6b8793e8de0ab168451bd35171627ee2fd | diff --git a/scripts/integration.js b/scripts/integration.js
index <HASH>..<HASH> 100644
--- a/scripts/integration.js
+++ b/scripts/integration.js
@@ -1,6 +1,5 @@
const fs = require("fs")
const path = require("path")
-const ora = require("ora")
const { execSync } = require("child_process")
const BUILD_DIR = path.... | chore: remove ora from setup script for intergration tests | lingui_js-lingui | train | js |
2936a1377672c9fa01a7f5951217ed8f0e914471 | diff --git a/packages/pob/generators/core/lerna/index.js b/packages/pob/generators/core/lerna/index.js
index <HASH>..<HASH> 100644
--- a/packages/pob/generators/core/lerna/index.js
+++ b/packages/pob/generators/core/lerna/index.js
@@ -23,6 +23,11 @@ module.exports = class LernaGenerator extends Generator {
versi... | fix: always use npm to publish with lerna | christophehurpeau_pob-lerna | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.