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 |
|---|---|---|---|---|---|
cef83835f4f883bcf4efe0c95dbe84e4b53423e2 | diff --git a/server/plugins.js b/server/plugins.js
index <HASH>..<HASH> 100644
--- a/server/plugins.js
+++ b/server/plugins.js
@@ -28,7 +28,7 @@ exports.load = function(root) {
let plugin = pluginsByName[name] || runPlugin(name)
if (!plugin) return
try {
- plugin.add(root)
+ ... | fix(plugin): pass parsed package.json to `Plugin.add` | aleclarson_wch | train | js |
87a6b8445bfbf3981cd39813fe961dfa1c7f2bce | diff --git a/packages/discord.js/src/index.js b/packages/discord.js/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/discord.js/src/index.js
+++ b/packages/discord.js/src/index.js
@@ -128,7 +128,6 @@ exports.MessageContextMenuCommandInteraction = require('./structures/MessageCont
exports.MessageMentions = requi... | fix: Remove Modal export (#<I>) | discordjs_discord.js | train | js |
4c836496c5364852562ae6dd5393477a8a117658 | diff --git a/test/func/Model/Mongodb/index.js b/test/func/Model/Mongodb/index.js
index <HASH>..<HASH> 100644
--- a/test/func/Model/Mongodb/index.js
+++ b/test/func/Model/Mongodb/index.js
@@ -103,7 +103,7 @@ describe('Model/Mongodb', function() {
return model.insertOne(data);
})
... | test: Model/Mongodb already exists test | alekzonder_maf | train | js |
91528ad0766b30531693b3e0c61c37683fa330e6 | diff --git a/test/components/index/index.spec.js b/test/components/index/index.spec.js
index <HASH>..<HASH> 100644
--- a/test/components/index/index.spec.js
+++ b/test/components/index/index.spec.js
@@ -1,4 +1,5 @@
const Index = require('../../../src/components/index/index')
+const fs = require('fs-extra')
const path... | test(index): cleanup thumbsup.db between test runs, otherwise the test does nothing | thumbsup_thumbsup | train | js |
a68e3227980f3e975b7882708728159bf68d181f | diff --git a/src/support.js b/src/support.js
index <HASH>..<HASH> 100644
--- a/src/support.js
+++ b/src/support.js
@@ -35,7 +35,7 @@ module.exports = class Support {
const {owner, repo, number} = this.context.issue();
const {perform, supportComment, close, lock} = this.config;
- if (supportComment) {
+ ... | fix: comment only if issue is not locked | dessant_support-requests | train | js |
487b06a2f07dbb4673e39f1e9200de98c9d2a9b0 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -70,7 +70,7 @@ module.exports = function(grunt) {
],
createTag: true,
tagName: '%VERSION%',
- tagMessage: 'Version %VERSION%',
+ tagMessage: 'chore(release): version %VERSION%',
push: ... | chore(release): release commit message conforms to standard | phw_showdown-htmlescape | train | js |
22759c5241201d6d22cbfa379495473be0a2ae3f | 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
@@ -280,7 +280,10 @@ module.exports = function(req, res, next) {
options.method = req.method;
options.rejectUnauthorized = false;
if (!options.i... | refactor: remove default port of host field in the request headers | avwo_whistle | train | js |
b6363083149c326834b02eeb8ab76e1de57ec3fa | diff --git a/packages/workflow/scripts/init.js b/packages/workflow/scripts/init.js
index <HASH>..<HASH> 100644
--- a/packages/workflow/scripts/init.js
+++ b/packages/workflow/scripts/init.js
@@ -302,7 +302,7 @@ function createApp(name, package, version, currentDir, template) {
process.exit(1);
}
- run(root, ... | chore(workflow): refactored to pass template into run method | Availity_availity-workflow | train | js |
55a84206812bdf42103e19227b9393ed8a7a1f67 | diff --git a/tokens/generate-base-colors.js b/tokens/generate-base-colors.js
index <HASH>..<HASH> 100644
--- a/tokens/generate-base-colors.js
+++ b/tokens/generate-base-colors.js
@@ -7,7 +7,7 @@
const fs = require('fs');
const path = require('path');
const css = require('css');
-const lodash = require('lodash');
+co... | fix(script): imports only startCase from lodash | commercetools_merchant-center-application-kit | train | js |
bd9167d383cd103d00b6aaf95c6ae192e0ea6683 | diff --git a/kv/urm.go b/kv/urm.go
index <HASH>..<HASH> 100644
--- a/kv/urm.go
+++ b/kv/urm.go
@@ -234,10 +234,12 @@ func (s *Service) findUserResourceMappingsByIndex(ctx context.Context, tx Tx, fi
nv, err := bkt.Get(v)
if err != nil {
- return nil, &influxdb.Error{
- Code: influxdb.ENotFound,
- Err: e... | fix(kv): Don't stop when key not found from index. | influxdata_influxdb | train | go |
68c4a918464996eb5d0c2fc3ec46766ca17a0ad1 | diff --git a/lib/connection.js b/lib/connection.js
index <HASH>..<HASH> 100644
--- a/lib/connection.js
+++ b/lib/connection.js
@@ -160,17 +160,20 @@ function Connection(connectPolicy) {
};
this._sslOptions = null;
if (options.sslOptions) {
- this._sslOptions = {};
+ this._sslOptions = options.sslOptions;... | feat(ssl): allow user to pass ssl options directly to transport | noodlefrenzy_node-amqp10 | train | js |
b9965230df9940ca4387f9ac75fab90ed1a9c40a | diff --git a/superset/viz.py b/superset/viz.py
index <HASH>..<HASH> 100644
--- a/superset/viz.py
+++ b/superset/viz.py
@@ -155,7 +155,8 @@ class BaseViz(object):
else:
if DTTM_ALIAS in df.columns:
if timestamp_format in ('epoch_s', 'epoch_ms'):
- df[DTTM_ALIAS] ... | fix: epoch_s and epoch_ms to date time (#<I>) | apache_incubator-superset | train | py |
fa06bcb20b0c715d29b18bc40b06c784ef3a9ab7 | diff --git a/sentry_sdk/integrations/django/__init__.py b/sentry_sdk/integrations/django/__init__.py
index <HASH>..<HASH> 100644
--- a/sentry_sdk/integrations/django/__init__.py
+++ b/sentry_sdk/integrations/django/__init__.py
@@ -9,7 +9,7 @@ from django import VERSION as DJANGO_VERSION
from django.core import signals... | fix: Do not raise if channels could not be instrumented
Fix #<I> | getsentry_sentry-python | train | py |
bb0f4ad87e88950a701e00b8759b3acda811c5ac | diff --git a/src/components/elements/inputs/dropdown-list.js b/src/components/elements/inputs/dropdown-list.js
index <HASH>..<HASH> 100644
--- a/src/components/elements/inputs/dropdown-list.js
+++ b/src/components/elements/inputs/dropdown-list.js
@@ -2,8 +2,9 @@ import React from 'react'
import Select from 'react-sele... | fix: react to new react-select api | cignium_hypermedia-client | train | js |
c312b5d2f28325ba8cc2da1a8aad664ac4553dc9 | 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-records-ui@GitHub': 'http://github.com/inveniosoftware/invenio-reco... | docs: autodoc configuration and HTTPS fix
* Replaces HTTP links with HTTPS where possible. | inveniosoftware_invenio-records-ui | train | py |
b0d081c013aa180f6ef7f41ef79916be23a50566 | diff --git a/lib/app_info/dsym.rb b/lib/app_info/dsym.rb
index <HASH>..<HASH> 100644
--- a/lib/app_info/dsym.rb
+++ b/lib/app_info/dsym.rb
@@ -84,7 +84,10 @@ module AppInfo
dsym_dir = nil
@contents = Util.unarchive(@file, path: 'dsym') do |path, zip_file|
zip_file.each do |f|
- ... | fix: zipped dSYM filename is not pure filename (with directory) | icyleaf_app_info | train | rb |
e4efa2cfa26df717461faad2f52c1dc8638a2af7 | diff --git a/packages/orbit-components/src/FormLabel/__tests__/index.test.js b/packages/orbit-components/src/FormLabel/__tests__/index.test.js
index <HASH>..<HASH> 100644
--- a/packages/orbit-components/src/FormLabel/__tests__/index.test.js
+++ b/packages/orbit-components/src/FormLabel/__tests__/index.test.js
@@ -1,18 ... | test(FormLabel): rewrite to Testing Library (#<I>) | kiwicom_orbit-components | train | js |
0a4caa030d95322045a3307860e7235e5fc1b057 | diff --git a/salt/utils/win_functions.py b/salt/utils/win_functions.py
index <HASH>..<HASH> 100644
--- a/salt/utils/win_functions.py
+++ b/salt/utils/win_functions.py
@@ -121,9 +121,14 @@ def get_current_user():
'''
try:
user_name = win32api.GetUserNameEx(win32api.NameSamCompatible)
- if user_... | fix(win_function): handle other language (#<I>)
* fix(win_function): handle other language
* fix(win_functions): syntax | saltstack_salt | train | py |
57d4a9329d0d60e35ddd582f59141e493f15359f | diff --git a/tests/core/contracts/test_contract_constructor_encoding.py b/tests/core/contracts/test_contract_constructor_encoding.py
index <HASH>..<HASH> 100644
--- a/tests/core/contracts/test_contract_constructor_encoding.py
+++ b/tests/core/contracts/test_contract_constructor_encoding.py
@@ -21,6 +21,19 @@ def test_c... | test: missing constructor function should not ignore constructor args | ethereum_web3.py | train | py |
d911d02152bbadca74ea1a1f712666add6272753 | diff --git a/tests/.eslintrc.js b/tests/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/tests/.eslintrc.js
+++ b/tests/.eslintrc.js
@@ -11,8 +11,7 @@ module.exports = {
},
extends: 'standard',
plugins: [
- 'babel',
- 'flowtype'
+ 'babel'
],
rules: {
quotes: ['error', 'single', { avoidEscape:... | fix(tests): fix lint errors for tests | citycide_trilogy | train | js,js,js |
6fa7409854d827ca0b68adde9ac342eb84cb6e84 | diff --git a/website/pages/en/share.js b/website/pages/en/share.js
index <HASH>..<HASH> 100644
--- a/website/pages/en/share.js
+++ b/website/pages/en/share.js
@@ -5,9 +5,7 @@
const React = require("react");
const CompLibrary = require("../../core/CompLibrary.js");
-const MarkdownBlock = CompLibrary.MarkdownBlock;
... | docs(share): add link to usage | xtuc_webassemblyjs | train | js |
43a998fb0283ed8d114fc6095b0e78667c4c6034 | diff --git a/test/functional/change_stream_tests.js b/test/functional/change_stream_tests.js
index <HASH>..<HASH> 100644
--- a/test/functional/change_stream_tests.js
+++ b/test/functional/change_stream_tests.js
@@ -14,7 +14,7 @@ var pipeline = [
{ $addFields: { comment: 'The documentKey field has been projected out ... | test(sessions): disable changestream tests
Changestream tests are broken, and are causing problems for other
tests. Disabling them for now. | mongodb_node-mongodb-native | train | js |
897e0f70cd9351f819f79c6dec7c49898b4fa388 | diff --git a/packages/components/bolt-chip/src/chip.js b/packages/components/bolt-chip/src/chip.js
index <HASH>..<HASH> 100644
--- a/packages/components/bolt-chip/src/chip.js
+++ b/packages/components/bolt-chip/src/chip.js
@@ -24,7 +24,7 @@ class BoltChip extends BoltAction {
// https://github.com/WebReflection/docu... | fix: filter out `text` from chip schema | bolt-design-system_bolt | train | js |
3be429853450685ca414fcaadb8dd8ebaf902d3e | diff --git a/ui/src/components/select/QSelect.js b/ui/src/components/select/QSelect.js
index <HASH>..<HASH> 100755
--- a/ui/src/components/select/QSelect.js
+++ b/ui/src/components/select/QSelect.js
@@ -1263,6 +1263,9 @@ export default Vue.extend({
if (this.hasDialog === true) {
this.__onControlFocusin(... | fix(QSelect): Focus on showPopup when in dialog model to allow input focus on iOS #<I> (#<I>) | quasarframework_quasar | train | js |
f6322982ec90ae7d3df038b53fe7ee63be84e9bb | diff --git a/config/sass.config.js b/config/sass.config.js
index <HASH>..<HASH> 100644
--- a/config/sass.config.js
+++ b/config/sass.config.js
@@ -53,7 +53,7 @@ module.exports = {
* the file will be excluded.
*/
includeFiles: [
- /\.(scss)$/i
+ /\.(s(c|a)ss)$/i
],
/**
diff --git a/config/watch.... | feat(sass): enable Sass indented files compilation (#<I>) | ionic-team_ionic-app-scripts | train | js,js |
9ec3f19491a1d0bcc5e8e5e04f561f13d02f1dd9 | diff --git a/src/config.js b/src/config.js
index <HASH>..<HASH> 100644
--- a/src/config.js
+++ b/src/config.js
@@ -5,7 +5,8 @@
*/
const esSuffix = [
'.js',
- '.jsx'
+ '.jsx',
+ '.mjs'
]
/** | feat: support .mjs | keenwon_elint | train | js |
4290256d382b198f0bbc4a8ff1b83adc9fe2a09e | diff --git a/test/cli/bitswap.js b/test/cli/bitswap.js
index <HASH>..<HASH> 100644
--- a/test/cli/bitswap.js
+++ b/test/cli/bitswap.js
@@ -41,16 +41,16 @@ describe('bitswap', () => runOn((thing) => {
this.timeout(20 * 1000)
return ipfs('bitswap stat').then((out) => {
- expect(out).to.be.eql([
+ ex... | fix(tests): loosen assertion for bitswap.stat test (#<I>)
* fix: loosen assertion for bitswap.stat test
Sometimes we pick up partners during the test so we can't
reliably assert that part of the output
* fix: remove unnecesary newline in bitswap.stat CLI test
License: MIT | ipfs_js-ipfs | train | js |
9156da5a20ab6cd5ad004980142fcdb058752de1 | diff --git a/src/Router.php b/src/Router.php
index <HASH>..<HASH> 100644
--- a/src/Router.php
+++ b/src/Router.php
@@ -434,11 +434,11 @@ class Router extends PhalconRouter implements ServiceAwareInterface
$methods or $methods = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE'];
if ($pattern{0} === '#')... | fix(router): routes overriding issue | phwoolcon_phwoolcon | train | php |
1e16d6c9262ccb5da363649ed2b4e6935795ac98 | diff --git a/tests/commands/test_bump_command.py b/tests/commands/test_bump_command.py
index <HASH>..<HASH> 100644
--- a/tests/commands/test_bump_command.py
+++ b/tests/commands/test_bump_command.py
@@ -105,7 +105,7 @@ def test_bump_tag_exists_raises_exception(mocker):
with pytest.raises(BumpTagFailedError) as e... | test(bump_command): remove english text in favor of just the tag number | Woile_commitizen | train | py |
06705f6703f82695d8b4415d8339b9d68d01ae0f | diff --git a/scripts/pre-push.js b/scripts/pre-push.js
index <HASH>..<HASH> 100755
--- a/scripts/pre-push.js
+++ b/scripts/pre-push.js
@@ -22,6 +22,11 @@ const localCommit = argv[3] || ''
const remoteBranch = argv[4] || ''
const remoteCommit = argv[5] || ''
+if (localCommit.match(/^0+$/)) {
+ // delete remote bran... | feat: skip push null branch to remote | nkzawa_git-scripts | train | js |
e0ceafb2eb089aa0bd8743d29e7e488418d2744e | diff --git a/lib/serialize.js b/lib/serialize.js
index <HASH>..<HASH> 100644
--- a/lib/serialize.js
+++ b/lib/serialize.js
@@ -1,11 +1,9 @@
-
export default function serialize (req, res) {
return {
- headers: res.headers,
+ headers: res.xhr.getAllResponseHeaders(),
body: {
- response: res.response,
... | fix(serialise): fix to use response xhr | RasCarlito_axios-cache-adapter | train | js |
5f182cf6ad22eb34e0a8176e974936e81a4804b2 | diff --git a/src/Action/DeleteAction.php b/src/Action/DeleteAction.php
index <HASH>..<HASH> 100644
--- a/src/Action/DeleteAction.php
+++ b/src/Action/DeleteAction.php
@@ -13,9 +13,7 @@ class DeleteAction extends Action
public $returnUrl = '';
public $successMessage = '';
public $model;
-
- const STATU... | feat(actions): Make deleteStatus configurable | CottaCush_yii2-utils | train | php |
60f5ae653449cd348baec2e1fe100efbbec1a193 | diff --git a/spec/rack/app/redirect_spec.rb b/spec/rack/app/redirect_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/rack/app/redirect_spec.rb
+++ b/spec/rack/app/redirect_spec.rb
@@ -11,6 +11,12 @@ describe Rack::App do
redirect_to '/hello'
end
+ get '/redirect_with_additional_header' do
+ respons... | test: add more test to redirect_to feature spec | rack-app_rack-app | train | rb |
b927054952be0353a5e929cb479670776d8ee0bc | diff --git a/pook/mock.py b/pook/mock.py
index <HASH>..<HASH> 100644
--- a/pook/mock.py
+++ b/pook/mock.py
@@ -655,6 +655,16 @@ class Mock(object):
callback(request, self)
return True
+
+ @property
+ def calls(self):
+ """
+ Accessor to retrieve the number of mock matched... | fix(mock): add calls property | h2non_pook | train | py |
6c9f4dcf05fd8c68b9008aba2d13f2639d03f9dd | diff --git a/lib/interceptor.js b/lib/interceptor.js
index <HASH>..<HASH> 100644
--- a/lib/interceptor.js
+++ b/lib/interceptor.js
@@ -27,7 +27,7 @@ class RowProcessorInterceptor extends Interceptor {
receive(request, oldRequest) {
if (request.payload) {
- const streamFilter = parserFactory(this.config);
+ c... | fix(interceptor): Fix how the config will be given to the underlying module | Kronos-Integration_kronos-interceptor-object-data-processor-row | train | js |
ca226ee6e299f253364b9e66c723c1edff620246 | diff --git a/packages/graphiql/src/components/QueryEditor.js b/packages/graphiql/src/components/QueryEditor.js
index <HASH>..<HASH> 100644
--- a/packages/graphiql/src/components/QueryEditor.js
+++ b/packages/graphiql/src/components/QueryEditor.js
@@ -193,10 +193,12 @@ export class QueryEditor extends React.Component {
... | fix: check `this.editor` exist before `this.editor.off` in QueryEditor (#<I>)
`this.editor` might be undefined if error occured during `componentDidMount`, like #<I> | graphql_graphiql | train | js |
b471e21469668bf17721038656c88474b66446d4 | diff --git a/src/Db/Adapter/Pdo/MysqlDialect.php b/src/Db/Adapter/Pdo/MysqlDialect.php
index <HASH>..<HASH> 100644
--- a/src/Db/Adapter/Pdo/MysqlDialect.php
+++ b/src/Db/Adapter/Pdo/MysqlDialect.php
@@ -2,9 +2,9 @@
namespace Phwoolcon\Db\Adapter\Pdo;
-use Phalcon\Db\Dialect\Mysql;
+use Phalcon\Db\Dialect\Mysql as ... | fix: php 5 namespace issue
Cannot use Phalcon\Db\Dialect\Mysql as Mysql because the name is already in use | phwoolcon_phwoolcon | train | php |
e7ef616bfedc1d6d59d484840b9a45a2d257fd39 | diff --git a/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js b/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js
+++ b/packages/node_modules/@webex... | test(plugin-webhooks): migrate to device
Migrate from internal-plugin-wdm to internal-plugin-device. | webex_spark-js-sdk | train | js |
4b98c4cd598d3d1eb12d337490fd5b2ae1eb9bbe | diff --git a/scripts/init-dev-env.js b/scripts/init-dev-env.js
index <HASH>..<HASH> 100755
--- a/scripts/init-dev-env.js
+++ b/scripts/init-dev-env.js
@@ -13,10 +13,6 @@ var pathTo = function(p) {
var validateCommitPath = pathTo('scripts/validate-commit-msg.js');
var gitHookPath = pathTo('.git/hooks/commit-msg');
-... | refactor(scripts): remove unused code to make jshint happy | karma-runner_karma | train | js |
3a12b588935c6e5c7d8aacf6f106aab180f17a68 | diff --git a/scripts/build.js b/scripts/build.js
index <HASH>..<HASH> 100644
--- a/scripts/build.js
+++ b/scripts/build.js
@@ -19,7 +19,7 @@ const nodeBabelConfig = {
},
},
],
- require.resolve('@babel/preset-stage-0'),
+ [require.resolve('@babel/preset-stage-0'), { decoratorsLegacy: true }],... | chore: fix travis ci failed | dvajs_dva | train | js |
e8b15f78ad3259699dc8b4fe1326e570cf0b3482 | diff --git a/__tests__/__helpers__/generate-docs.js b/__tests__/__helpers__/generate-docs.js
index <HASH>..<HASH> 100644
--- a/__tests__/__helpers__/generate-docs.js
+++ b/__tests__/__helpers__/generate-docs.js
@@ -169,6 +169,20 @@ function gendoc (filepath) {
text += '\n```\n'
}
}
+ if ... | chore: update `generate-docs.js` (#<I>)
* feat: rewrite "Edit" button link in docs | isomorphic-git_isomorphic-git | train | js |
5a04a28518b02526dc19723515373d3296473d34 | diff --git a/superset/datasets/api.py b/superset/datasets/api.py
index <HASH>..<HASH> 100644
--- a/superset/datasets/api.py
+++ b/superset/datasets/api.py
@@ -147,6 +147,7 @@ class DatasetRestApi(BaseSupersetModelRestApi):
"owners.username",
"owners.first_name",
"owners.last_name",
+ "... | refactor: Blossom metric fields for dataset API column selection (#<I>) | apache_incubator-superset | train | py |
42c240f6ddbc791b26c46936726df63110a8286e | diff --git a/master/buildbot/test/unit/steps/test_shell.py b/master/buildbot/test/unit/steps/test_shell.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/test/unit/steps/test_shell.py
+++ b/master/buildbot/test/unit/steps/test_shell.py
@@ -665,22 +665,14 @@ class WarningCountingShellCommand(TestBuildStepMixin,
... | test: Reuse upload_string() for file uploads in step tests | buildbot_buildbot | train | py |
bb300fdf1e75704482a7ef93a4993f6eaa96dbd6 | diff --git a/engine-rest/src/main/java/org/camunda/bpm/engine/rest/dto/task/TaskDto.java b/engine-rest/src/main/java/org/camunda/bpm/engine/rest/dto/task/TaskDto.java
index <HASH>..<HASH> 100644
--- a/engine-rest/src/main/java/org/camunda/bpm/engine/rest/dto/task/TaskDto.java
+++ b/engine-rest/src/main/java/org/camunda... | fix(REST): provide null-check to avoid NullPointerException
related to CAM-<I> | camunda_camunda-bpm-platform | train | java |
014f28140c03e8d5c776d4953a5c5de98fc0db14 | diff --git a/src/components/OverflowMenu/OverflowMenu.js b/src/components/OverflowMenu/OverflowMenu.js
index <HASH>..<HASH> 100644
--- a/src/components/OverflowMenu/OverflowMenu.js
+++ b/src/components/OverflowMenu/OverflowMenu.js
@@ -334,17 +334,16 @@ export default class OverflowMenu extends Component {
focu... | fix(OverflowMenu): close open floatingMenu when click on trigger in OverflowMenu (#<I>)
* fix(OverflowMenu): close open floatingMenu when click on trigger in OverflowMenu, resolves #<I>
* fix(OverflowMenu): close open floatingMenu when click on trigger in OverflowMenu, resolves #<I> | carbon-design-system_carbon-components-react | train | js |
23c82818614ed1ea177862d2274d112acfcca205 | diff --git a/packages/strickland/src/required.js b/packages/strickland/src/required.js
index <HASH>..<HASH> 100644
--- a/packages/strickland/src/required.js
+++ b/packages/strickland/src/required.js
@@ -19,6 +19,7 @@ export default function required(validatorProps) {
return {
...validationProps,... | feat: include a required=true prop on required results | jeffhandley_strickland | train | js,js |
194dcf01e025356337c2819f2f7d8936bede8155 | diff --git a/lib/core/sdam/topology.js b/lib/core/sdam/topology.js
index <HASH>..<HASH> 100644
--- a/lib/core/sdam/topology.js
+++ b/lib/core/sdam/topology.js
@@ -930,13 +930,8 @@ function serverConnectEventHandler(server, topology) {
};
}
-function serverErrorEventHandler(server, topology) {
+function serverErro... | fix(topology): don't emit server closed event on network error | mongodb_node-mongodb-native | train | js |
2d084cf27528322e6ad5c0ef70fcfd6f4e12e0c1 | diff --git a/lib/xlsx/xform/drawing/two-cell-anchor-xform.js b/lib/xlsx/xform/drawing/two-cell-anchor-xform.js
index <HASH>..<HASH> 100644
--- a/lib/xlsx/xform/drawing/two-cell-anchor-xform.js
+++ b/lib/xlsx/xform/drawing/two-cell-anchor-xform.js
@@ -129,7 +129,7 @@ utils.inherits(TwoCellAnchorXform, BaseXform, {
... | fix(image): fix editAs assignment | exceljs_exceljs | train | js |
25f9401987cb243f03a0b05af2296c90d7c29710 | diff --git a/lib/datasource/docker/index.js b/lib/datasource/docker/index.js
index <HASH>..<HASH> 100644
--- a/lib/datasource/docker/index.js
+++ b/lib/datasource/docker/index.js
@@ -388,6 +388,20 @@ async function getLabels(registry, repository, tag) {
const url = `${registry}/v2/${repository}/blobs/${configDig... | fix(docker): Fixes issue with private docker registry on amazon s3 (#<I>) | renovatebot_renovate | train | js |
d0a4f3531f62c34c9fad61e26e6a02c1b3e287fc | diff --git a/lib/components/mobile/batch-results-screen.js b/lib/components/mobile/batch-results-screen.js
index <HASH>..<HASH> 100644
--- a/lib/components/mobile/batch-results-screen.js
+++ b/lib/components/mobile/batch-results-screen.js
@@ -59,11 +59,11 @@ class BatchMobileResultsScreen extends Component {
}
... | refactor(BatchResultsScreen): Add uncommited refactors from 7c<I>cd7 | opentripplanner_otp-react-redux | train | js |
f9cb76ae8e1caf30871bba92088cfdaed9034dd2 | diff --git a/src/main/menu.js b/src/main/menu.js
index <HASH>..<HASH> 100644
--- a/src/main/menu.js
+++ b/src/main/menu.js
@@ -92,7 +92,7 @@ export const fileSubMenus = {
accelerator: 'CmdOrCtrl+Shift+S',
},
publish: {
- label: '&Github',
+ label: '&Publish',
submenu: [
{
label: '&... | fix(GithubAuth): Restore submenu title to Publish | nteract_nteract | train | js |
74c011214f5a061d7c64681f27e63faa5e546894 | diff --git a/events/icsEvents.js b/events/icsEvents.js
index <HASH>..<HASH> 100644
--- a/events/icsEvents.js
+++ b/events/icsEvents.js
@@ -49,7 +49,7 @@ function getAllIcsGroups(callback) {
icsGroups.forEach(function(group) {
ical.fromURL(group.ics_url, {}, function(err, data) {
if (err) {
- conso... | refactor: better warning log when ics url is not available. #<I> | webuildorg_webuild-repos | train | js |
9d15015ffc1462b03d014f3ae4f2a4f3412310d9 | diff --git a/build/prepareNightly.js b/build/prepareNightly.js
index <HASH>..<HASH> 100644
--- a/build/prepareNightly.js
+++ b/build/prepareNightly.js
@@ -40,6 +40,7 @@ function updateVersion(version) {
if (isNext) {
// Increase minor version for next branch.
minor++;
+ pat... | chore: fix version patch number of next build | apache_incubator-echarts | train | js |
84a591cc80d76beaebb2b968bba03c75581ee46f | diff --git a/benchbuild/environments/domain/declarative.py b/benchbuild/environments/domain/declarative.py
index <HASH>..<HASH> 100644
--- a/benchbuild/environments/domain/declarative.py
+++ b/benchbuild/environments/domain/declarative.py
@@ -165,7 +165,7 @@ class ContainerImage(list):
DEFAULT_BASES: tp.Dict[str, Co... | fix(environments): explicitly state remote registry location
alpine:edge -> docker.io/alpine:edge | PolyJIT_benchbuild | train | py |
7b9ebfe9afe111956fdb28943fafd396e025de6c | diff --git a/packages/editor/src/setup-bolt.js b/packages/editor/src/setup-bolt.js
index <HASH>..<HASH> 100644
--- a/packages/editor/src/setup-bolt.js
+++ b/packages/editor/src/setup-bolt.js
@@ -539,6 +539,21 @@ export function setupBolt(editor) {
</bolt-interactive-pathways>`,
});
+ BlockManager.add('Multip... | chore(micro-journeys): add multiple pathway two-char starter | bolt-design-system_bolt | train | js |
9b0045eaea0b63b9d0cb706af6ec6e548ee66072 | diff --git a/lib/static/hbs/helpers.js b/lib/static/hbs/helpers.js
index <HASH>..<HASH> 100644
--- a/lib/static/hbs/helpers.js
+++ b/lib/static/hbs/helpers.js
@@ -1,19 +1,6 @@
/* global Handlebars */
-function hasFails(node) {
- return walk(node, hasFails, node.result && (node.result.error || node.result.fail));
... | fix: use 'hasFails' and 'hasRetries' in helpers from utils | gemini-testing_html-reporter | train | js |
b711a05a5f87432dda6cfee19c9aa00235b39f08 | diff --git a/packages/@vue/cli-plugin-unit-mocha/generator/index.js b/packages/@vue/cli-plugin-unit-mocha/generator/index.js
index <HASH>..<HASH> 100644
--- a/packages/@vue/cli-plugin-unit-mocha/generator/index.js
+++ b/packages/@vue/cli-plugin-unit-mocha/generator/index.js
@@ -1,3 +1,4 @@
+/** @type {import('@vue/cli'... | fix(unit-mocha): shouldn't require webpack-4 plugin with cli-service v4 (#<I>)
Note this plugin is compatible with cli-service v4, therefore users can
upgrade to it separately for mocha major version upgrades | vuejs_vue-cli | train | js |
4a58965bf051baab5b7b473ecaa61fe4bc9ce6cf | diff --git a/android/src/main/java/com/bugsnag/BugsnagReactNative.java b/android/src/main/java/com/bugsnag/BugsnagReactNative.java
index <HASH>..<HASH> 100644
--- a/android/src/main/java/com/bugsnag/BugsnagReactNative.java
+++ b/android/src/main/java/com/bugsnag/BugsnagReactNative.java
@@ -16,6 +16,7 @@ import com.bugs... | style: Move fully qualified class name into import | bugsnag_bugsnag-react-native | train | java |
639070d3bc0fce6118eff4043bdee8ef34bcd517 | diff --git a/packages/webpack-config/webpackPkgConfig.js b/packages/webpack-config/webpackPkgConfig.js
index <HASH>..<HASH> 100644
--- a/packages/webpack-config/webpackPkgConfig.js
+++ b/packages/webpack-config/webpackPkgConfig.js
@@ -1,3 +1,3 @@
-const { pkg: { gewebpack = {} } = require('@goldwasserexchange/read-pkg-... | fix(webpack-config): add missing } in webpackPkgConfig
affects: @goldwasserexchange/webpack-config | goldwasserexchange_public | train | js |
0f05ac7544db0f5ab840f9b918deb3a4d932f11f | diff --git a/packages/react/src/components/ComposedModal/ComposedModal.js b/packages/react/src/components/ComposedModal/ComposedModal.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/ComposedModal/ComposedModal.js
+++ b/packages/react/src/components/ComposedModal/ComposedModal.js
@@ -200,7 +200,7 @@ c... | fix(composedmodal): do not run cleanup effect on every update (#<I>) | carbon-design-system_carbon-components | train | js |
959da27e76e63cee1cad1fa24993232710460e4c | diff --git a/src/notebook/components/cell/editor/index.js b/src/notebook/components/cell/editor/index.js
index <HASH>..<HASH> 100644
--- a/src/notebook/components/cell/editor/index.js
+++ b/src/notebook/components/cell/editor/index.js
@@ -243,8 +243,6 @@ export default class Editor extends React.Component {
if (... | fix(markdown): Fixed bug with pressing shift+enter in markdown cells in view mode | nteract_nteract | train | js,js |
5ec22f8662bff83263b8581bbf200d3fdb492ad7 | diff --git a/webapps/camunda-commons-ui/lib/auth/service/authenticationService.js b/webapps/camunda-commons-ui/lib/auth/service/authenticationService.js
index <HASH>..<HASH> 100644
--- a/webapps/camunda-commons-ui/lib/auth/service/authenticationService.js
+++ b/webapps/camunda-commons-ui/lib/auth/service/authentication... | fix(login): fetch new CSRF cookie before login
related to CAM-<I>, #<I> | camunda_camunda-bpm-platform | train | js |
2ca5f353a6a4f9588d300c7d48e277ec73a0f591 | diff --git a/deisctl/deisctl_test.go b/deisctl/deisctl_test.go
index <HASH>..<HASH> 100644
--- a/deisctl/deisctl_test.go
+++ b/deisctl/deisctl_test.go
@@ -6,6 +6,8 @@ import (
"os"
"strings"
"testing"
+
+ "github.com/deis/deis/version"
)
// commandOutput returns stdout for a deisctl command line as a string.
... | fix(deisctl): unit test should also use main version package | deis_deis | train | go |
6a59928440589315786a6def3ac56dbc4888f068 | diff --git a/tracking_fields/tracking.py b/tracking_fields/tracking.py
index <HASH>..<HASH> 100644
--- a/tracking_fields/tracking.py
+++ b/tracking_fields/tracking.py
@@ -57,8 +57,8 @@ def _create_event(instance, action):
def _serialize_field(field):
if isinstance(field, Model):
- return json.dumps(unico... | fix: keep utf8 in json serialization | makinacorpus_django-tracking-fields | train | py |
f4c1039fd700b065af73e58c4219e16f583e01b6 | diff --git a/src/db.js b/src/db.js
index <HASH>..<HASH> 100644
--- a/src/db.js
+++ b/src/db.js
@@ -43,7 +43,12 @@ export default function() {
function database($q, $rootScope, $log, $injector) {
'ngInject';
- const ngZone = $injector.get('ngZone');
+ var ngZone;
+ try {
+ ngZone = $injector.get(... | fix: resource not working when no ngZone | ortoo_angular-resource | train | js |
8fa3a89482bb6aa878aa3ccfca51934b9ebe2356 | diff --git a/src/client/actions/Action.js b/src/client/actions/Action.js
index <HASH>..<HASH> 100644
--- a/src/client/actions/Action.js
+++ b/src/client/actions/Action.js
@@ -93,7 +93,8 @@ class GenericAction {
if (data.guild_id) {
const guild = this.client.guilds.cache.get(data.guild_id);
if (guild)... | fix(Action): Don't crash when partials are disabled (#<I>) | discordjs_discord.js | train | js,js |
68662b0086b2fd42e8ca3eafbdf203f79edef582 | diff --git a/client/deis.py b/client/deis.py
index <HASH>..<HASH> 100755
--- a/client/deis.py
+++ b/client/deis.py
@@ -958,8 +958,9 @@ Make sure that the Controller URI is correct and the server is running.
Arguments:
<image>
- A fully-qualified docker image, either from Docker Hub (e.g... | fix(client): require the tag for builds:create | deis_deis | train | py |
249657eb0b46a995295527cb530b720236cab95e | diff --git a/internal/pipe/nfpm/nfpm.go b/internal/pipe/nfpm/nfpm.go
index <HASH>..<HASH> 100644
--- a/internal/pipe/nfpm/nfpm.go
+++ b/internal/pipe/nfpm/nfpm.go
@@ -149,6 +149,7 @@ func create(ctx *context.Context, fpm config.NFPM, format, arch string, binaries
Version: ctx.Git.CurrentTag,
Section: "",
... | fix(nfpm): propagate epoch config to nfpm (#<I>) | goreleaser_goreleaser | train | go |
da39d1efc7f7cfe62d81bb540745c93313a8fd3a | diff --git a/lib/core/topologies/replset.js b/lib/core/topologies/replset.js
index <HASH>..<HASH> 100644
--- a/lib/core/topologies/replset.js
+++ b/lib/core/topologies/replset.js
@@ -378,6 +378,7 @@ function connectNewServers(self, servers, callback) {
// Command Monitoring events
relayEvents(server, self... | fix(replset): correct server leak on initial connect | mongodb_node-mongodb-native | train | js |
696d9b9b53e65e00e3d6d7384977624cf5d74f48 | diff --git a/lib/plugins/load-plugin.js b/lib/plugins/load-plugin.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/load-plugin.js
+++ b/lib/plugins/load-plugin.js
@@ -686,7 +686,8 @@ function addFrameHandler(req, socket, maxWsPayload, toServer) {
receiver.onData = function(chunk, opts) {
emit.call(socket, 'data... | refactor: add ping pong | avwo_whistle | train | js |
8ebd85332e52205fb17b0bbd26c90fc46630f419 | diff --git a/lib/commands/context.js b/lib/commands/context.js
index <HASH>..<HASH> 100644
--- a/lib/commands/context.js
+++ b/lib/commands/context.js
@@ -81,6 +81,7 @@ extensions.getNewRemoteDebugger = async function getNewRemoteDebugger () {
? !!this.opts.safariGarbageCollect
: false,
udid: this.op... | feat: pass logAllCommunication to remote debugger | appium_appium-xcuitest-driver | train | js |
b03a6394fb6e7c3d8af758cb21219aca71682efc | diff --git a/test/will-sample.js b/test/will-sample.js
index <HASH>..<HASH> 100644
--- a/test/will-sample.js
+++ b/test/will-sample.js
@@ -68,7 +68,6 @@ test('ReservoirBackend willSample is accurate', function t1(assert) {
samplingDecisions[5] = reservoir.willSample('error');
reservoir.slog(new Record('warn',... | test: remove unneeded console.log | uber-common_larch | train | js |
e834dc551020bb84960c938b30bdcc9249c240f4 | diff --git a/views/default/prototyper/input/relationship.php b/views/default/prototyper/input/relationship.php
index <HASH>..<HASH> 100644
--- a/views/default/prototyper/input/relationship.php
+++ b/views/default/prototyper/input/relationship.php
@@ -26,6 +26,8 @@ if ($required) {
$input_vars = $field->getInputVars(... | fix(relationship): pass multiple flag to input view | hypeJunction_hypePrototyper | train | php |
bca031ec43566a2bceec8e036f337b3bc80624bc | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -5,7 +5,7 @@ module.exports = {
name: 'ember-tooltips',
config: function(env, baseConfig) {
- var rootElement = baseConfig.APP.rootElement;
+ var rootElement = baseConfig.APP && baseConfig.APP.rootElement;
v... | fix: ember engine failure at build time
> Cannot read property 'rootElement' of undefined | sir-dunxalot_ember-tooltips | train | js |
d9dad6a4fb2d55c6bb086bf3c58c48e0daffb106 | diff --git a/packages/xgplayer/src/skin/controls/start.js b/packages/xgplayer/src/skin/controls/start.js
index <HASH>..<HASH> 100644
--- a/packages/xgplayer/src/skin/controls/start.js
+++ b/packages/xgplayer/src/skin/controls/start.js
@@ -25,7 +25,7 @@ let s_start = function () {
} else {
player.once('ready', (... | fix: fix the bug when trigger start | bytedance_xgplayer | train | js |
36d4b55ef2fb5dd3b4de8e0e2e64f1588b279cbf | diff --git a/src/geshi.php b/src/geshi.php
index <HASH>..<HASH> 100644
--- a/src/geshi.php
+++ b/src/geshi.php
@@ -1713,7 +1713,7 @@ class GeSHi {
// look for closing quote
$start = $i;
- while ($close_pos = strpos($part, $char, $sta... | fix: SF#<I>: Missed an important detail when handling multichar quotemarks regarding the offsets | GeSHi_geshi-1.0 | train | php |
9e6deb3efd8eafd342bc3c21c3e6c068c0bf351a | diff --git a/tasks/lib/main.js b/tasks/lib/main.js
index <HASH>..<HASH> 100644
--- a/tasks/lib/main.js
+++ b/tasks/lib/main.js
@@ -33,6 +33,11 @@ exports.init = function (grunt) {
from = v.from,
to = v.to;
+ if (util.isUndefined(to)) {
+ grunt.log.error().error('"to" must b... | fix(task): add validation for variables instruction to field allowed types | eliranmal_grunt-sass-replace | train | js |
e5aba4943044d022152e7353663235a4fb1780e8 | diff --git a/jsonschema/_reflect.py b/jsonschema/_reflect.py
index <HASH>..<HASH> 100644
--- a/jsonschema/_reflect.py
+++ b/jsonschema/_reflect.py
@@ -60,7 +60,7 @@ def _importAndCheckStack(importName):
Import the given name as a module, then walk the stack to determine whether
the failure was the module not ... | docs: Fix a few typos
There are small typos in:
- jsonschema/_reflect.py
- jsonschema/tests/_suite.py
Fixes:
- Should read `dynamically` rather than `dynamicallly`.
- Should read `distinguish` rather than `distiguish`. | Julian_jsonschema | train | py,py |
9d59f72f52d4a918b5e2fefd8265bc47609a4c19 | diff --git a/demo/common/assets.js b/demo/common/assets.js
index <HASH>..<HASH> 100644
--- a/demo/common/assets.js
+++ b/demo/common/assets.js
@@ -781,6 +781,14 @@ shakaAssets.testAssets = [
.addFeature(shakaAssets.Feature.LIVE)
.addFeature(shakaAssets.Feature.SUBTITLES)
.addFeature(shakaAssets.Fea... | feat(ll-Dash): Add new low latency DASH manifest (#<I>)
Add a new low latency DASH manifest to the demo page. | google_shaka-player | train | js |
be719772537a753b6e7adc2f4741032a487efc99 | diff --git a/lib/components/narrative/default/default-itinerary.js b/lib/components/narrative/default/default-itinerary.js
index <HASH>..<HASH> 100644
--- a/lib/components/narrative/default/default-itinerary.js
+++ b/lib/components/narrative/default/default-itinerary.js
@@ -286,11 +286,6 @@ class DefaultItinerary exten... | fix(default-itinerary): show detailsHint at correct spot | opentripplanner_otp-react-redux | train | js |
9721be6c2a32cbc3754678b115bc1a500838ec30 | diff --git a/lib/loader/egg_loader.js b/lib/loader/egg_loader.js
index <HASH>..<HASH> 100644
--- a/lib/loader/egg_loader.js
+++ b/lib/loader/egg_loader.js
@@ -258,16 +258,15 @@ class EggLoader {
* ```
* @since 1.0.0
*/
- loadFile(filepath) {
+ loadFile(filepath, ...inject) {
if (!fs.existsSync(filepa... | refactor: use es6 rest parameter. (#<I>) | eggjs_egg-core | train | js |
47faed37af9e4499b76ba9b606d7491481e92e93 | diff --git a/docs/textarea.stories.js b/docs/textarea.stories.js
index <HASH>..<HASH> 100644
--- a/docs/textarea.stories.js
+++ b/docs/textarea.stories.js
@@ -14,5 +14,5 @@ stories.add('textarea', () => {
'is-error': 'is-error',
}, '');
- return `<textarea id="textarea_field" class="textarea ${selectedClass}... | fix(textarea): added closing tag to storybook | nostalgic-css_NES.css | train | js |
33f39ed1a499e09ff2c39ec38f8f9e22a75e9d42 | diff --git a/xml_test.go b/xml_test.go
index <HASH>..<HASH> 100644
--- a/xml_test.go
+++ b/xml_test.go
@@ -388,7 +388,7 @@ func syncGit(t *testing.T) {
_, err := os.Stat("testdata/libvirt/tests")
if err != nil {
if os.IsNotExist(err) {
- msg, err := exec.Command("git", "clone", "--depth", "1", "git://libvirt.o... | test: Clone libvirt.git via https:// instead of git://
The git:// protocol can cause issues when the client is
behind a corporate firewall; https:// works in pretty much
any scenario, and these days it's basically as efficient. | libvirt_libvirt-go-xml | train | go |
e9aba3ddc7f802be68b7bfec64d7d8756d6ad08f | diff --git a/memote/suite/reporting/bag.py b/memote/suite/reporting/bag.py
index <HASH>..<HASH> 100644
--- a/memote/suite/reporting/bag.py
+++ b/memote/suite/reporting/bag.py
@@ -65,6 +65,8 @@ class ResultBagWrapper(object):
continue
with io.open(filename) as file_h:
objec... | fix: handle the case of no JSON files present (#<I>) | opencobra_memote | train | py,py |
08d3412b7c187298501df606b00064401e7fbc10 | diff --git a/scripts/extract.js b/scripts/extract.js
index <HASH>..<HASH> 100644
--- a/scripts/extract.js
+++ b/scripts/extract.js
@@ -18,6 +18,8 @@ function moveIndex(content, i, start, end, escape = true) {
) {
i++;
}
+
+ return i + end.length;
}
return i;
@@ -27,13 +29,14 @@ function skip... | fix(cli): multiline comments and regexp skip reorder | hybridsjs_hybrids | train | js |
65202d870fa602e70483aeebbf87d0e11d6c1017 | diff --git a/lib/reporters/Dots.js b/lib/reporters/Dots.js
index <HASH>..<HASH> 100644
--- a/lib/reporters/Dots.js
+++ b/lib/reporters/Dots.js
@@ -31,9 +31,11 @@ var DotsReporter = function(formatError, reportSlow) {
this.write(this._dotsCount ? '.' : '.\n');
};
- this.onRunComplete = function(browsers, resu... | fix(reporter): print browser stats immediately after it finishes | karma-runner_karma | train | js |
a0d30aa904ddd3b1e9c30adf83cc1968eed0083a | diff --git a/test/spec.js b/test/spec.js
index <HASH>..<HASH> 100644
--- a/test/spec.js
+++ b/test/spec.js
@@ -33,7 +33,7 @@ describe('WorldPay payment gateway', function () {
return new CreditCard()
.withCreditCardNumber('4444333322221111')
.withExpirationMonth('11')
- .withExpirationYe... | fix(test): update credit card expiration date | continuous-software_42-cent-worldpay | train | js |
777fecab795740f5347fc10e93f99f7101aa4b0e | diff --git a/src/Connection.php b/src/Connection.php
index <HASH>..<HASH> 100644
--- a/src/Connection.php
+++ b/src/Connection.php
@@ -104,6 +104,7 @@ class Connection
{
$formatter = new NumberFormatter('en', NumberFormatter::SPELLOUT);
$version = ucfirst($formatter->format($this->config['versi... | fix: explicitly call ucfirst for names | ArkEcosystem_php-client | train | php |
bbd555184f25eaa2e8142bc51471a9ff778db826 | diff --git a/src/eventable.js b/src/eventable.js
index <HASH>..<HASH> 100644
--- a/src/eventable.js
+++ b/src/eventable.js
@@ -36,8 +36,10 @@ function getEventableModule (notifyContext) {
let listeners = {}
function addListener (event, listener) {
- listeners[event] = listeners[event] || []
- listeners[ev... | fix(eventable): fix registering multiple event names | livingdocsIO_editable.js | train | js |
fa0761cc8e833cd55f19eb540b2f00aab9e77d0a | diff --git a/java-securitycenter/synth.py b/java-securitycenter/synth.py
index <HASH>..<HASH> 100644
--- a/java-securitycenter/synth.py
+++ b/java-securitycenter/synth.py
@@ -16,6 +16,8 @@
import synthtool.languages.java as java
+AUTOSYNTH_MULTIPLE_COMMITS = True
+
service = 'securitycenter'
versions = ['v1p1bet... | chore: enable context aware commits (#<I>) | googleapis_google-cloud-java | train | py |
8b5a05597ed470e5cf7325be7d23c8533d36630b | diff --git a/src/Pager.php b/src/Pager.php
index <HASH>..<HASH> 100644
--- a/src/Pager.php
+++ b/src/Pager.php
@@ -80,15 +80,13 @@ class Pager
$parameters['starting_after'] = $this->nextToken;
}
- if (isset($parameters[0])) {
+ if (array_key_exists(0, $parameters)) {
$... | fix: Issue with Pager where ids can be nullable (#<I>)
* IDs can be null
* Fixed param order | cartalyst_stripe | train | php |
b3cb9d9dd2984e4bb4f1575f89fe4a9e9a0d3ebb | diff --git a/src/core/vdom/helpers/update-listeners.js b/src/core/vdom/helpers/update-listeners.js
index <HASH>..<HASH> 100644
--- a/src/core/vdom/helpers/update-listeners.js
+++ b/src/core/vdom/helpers/update-listeners.js
@@ -54,7 +54,8 @@ export function updateListeners (
def = cur = on[name]
old = oldOn[na... | refactor: mark weex-specific block | kaola-fed_megalo | train | js |
bae285bbcac5817fce5c437dddef6d29e72c32cc | diff --git a/lib/container.js b/lib/container.js
index <HASH>..<HASH> 100644
--- a/lib/container.js
+++ b/lib/container.js
@@ -30,8 +30,6 @@ export default class Container {
static _getCallerFile() {
try {
const err = new Error();
- Error.prepareStackTrace = (e, stack) => stack;
-
const curre... | fix: fix issue with error stacktraces | cludden_app-container | train | js |
ce69e1da7673330af4118ddef963f492bd4192f4 | diff --git a/providers/lastfm/lastfm.go b/providers/lastfm/lastfm.go
index <HASH>..<HASH> 100644
--- a/providers/lastfm/lastfm.go
+++ b/providers/lastfm/lastfm.go
@@ -18,7 +18,7 @@ import (
)
var (
- authURL = "http://www.lastfm.com.br/api/auth"
+ authURL = "http://www.lastfm.com/api/auth"
endpoin... | fix(lastfm): fix auth callback param
- Fixes callback url by changing "callback" to "cb"
- Uses ".com" English website | markbates_goth | train | go |
bc64341fb4c0bbb6ce3d20f3087db6753898cb7e | diff --git a/src/module-source.js b/src/module-source.js
index <HASH>..<HASH> 100644
--- a/src/module-source.js
+++ b/src/module-source.js
@@ -255,7 +255,7 @@
function multiPolygonToWKTMultiPolygon (primitive) {
var ret = 'MULTIPOLYGON ';
- if (primitive.coordinates === undefined || primitive.coordinates.l... | fix: do not throw on MULTIPOLYGON with empty first outer ring (#<I>)
* fix: do not throw on MULTIPOLYGON with empty first outer ring
This is consistent with the handling of empty POLYGONs by the parser. Bug was found through fuzzing of a dependent package.
* chore: bump vows to <I> to pass travis | Esri_terraformer-wkt-parser | train | js |
c4f12b6ae9aedda572ab10be7666bdaa9808d83e | diff --git a/modules_v3/families/module.php b/modules_v3/families/module.php
index <HASH>..<HASH> 100644
--- a/modules_v3/families/module.php
+++ b/modules_v3/families/module.php
@@ -252,7 +252,7 @@ class families_WT_Module extends WT_Module implements WT_Module_Sidebar {
}
$vars[]=WT_GED_ID;
- $rows=WT_DB::pr... | fix: ERROR 8: Use of undefined constant WT_AUTOCOMPLETE_LIMIT | fisharebest_webtrees | train | php |
2067dabdcf07cef9da9ffb30503842bb909c70c5 | diff --git a/packages/cli/src/commands/server/runServer.js b/packages/cli/src/commands/server/runServer.js
index <HASH>..<HASH> 100644
--- a/packages/cli/src/commands/server/runServer.js
+++ b/packages/cli/src/commands/server/runServer.js
@@ -79,8 +79,15 @@ async function runServer(argv: Array<string>, ctx: ConfigT, ar... | feat: use server.enhanceMiddleware from custom metro configuration (#<I>) | react-native-community_cli | train | js |
e428186dc725759846cc90c2922ed7074fb35e1a | diff --git a/actor-apps/app-web/gulpfile.babel.js b/actor-apps/app-web/gulpfile.babel.js
index <HASH>..<HASH> 100644
--- a/actor-apps/app-web/gulpfile.babel.js
+++ b/actor-apps/app-web/gulpfile.babel.js
@@ -44,7 +44,7 @@ gulp.task('webpack-dev-server', function(callback) {
// Start a webpack-dev-server
new Webp... | fix(web): change relative path to absolute in webpack-dev-server config; | actorapp_actor-platform | train | js |
3fdadf8aae109e330715dfc061237f0ab4fcd50e | diff --git a/tests/testing_utils.py b/tests/testing_utils.py
index <HASH>..<HASH> 100644
--- a/tests/testing_utils.py
+++ b/tests/testing_utils.py
@@ -286,13 +286,13 @@ def shutdown_environment(config=True, gui_config=True, caplog=None, expected_war
assert not rafcon.core.singleton.state_machine_manager.st... | fix(testing_utils): reload libraries in any case
in shudown_environment function | DLR-RM_RAFCON | train | py |
641967c0dd7f89eed53455441be2ad06e9c96c10 | diff --git a/src/main/java/com/qubole/qds/sdk/java/details/SchemaCommandBuilderImpl.java b/src/main/java/com/qubole/qds/sdk/java/details/SchemaCommandBuilderImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/qubole/qds/sdk/java/details/SchemaCommandBuilderImpl.java
+++ b/src/main/java/com/qubole/qds/sdk/java... | fix: dev: Fix non default schema bug.
This was missed in 9ca0fac4. This change was present in PR #<I> but got missed in #<I>. | qubole_qds-sdk-java | train | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.