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 |
|---|---|---|---|---|---|
93f89d950bfab6f99a4970c0e075399b37ca5f12 | diff --git a/components/form/methods.js b/components/form/methods.js
index <HASH>..<HASH> 100644
--- a/components/form/methods.js
+++ b/components/form/methods.js
@@ -41,28 +41,28 @@ export const methods = {
},
minLength(value, item, param) {
- return value.length >= param;
+ return value.leng... | fix(Form): convert to number | ksc-fe_kpc | train | js |
d20817878fe50c4718e873ee4f9079d0b63a52f6 | diff --git a/packages/api/middleware/endpoints/url.js b/packages/api/middleware/endpoints/url.js
index <HASH>..<HASH> 100644
--- a/packages/api/middleware/endpoints/url.js
+++ b/packages/api/middleware/endpoints/url.js
@@ -18,7 +18,7 @@ class Url {
for (let i = 0; i < eurl.length; i++) {
let fragment = eurl... | fix(api): now correctly decodes params and query segments, resolves nexus-devs/NexusHub#<I> | cubic-js_cubic | train | js |
3450ab72114d7dbdbac65905b474ba85e6e6f443 | diff --git a/tests/specs/sign-up-test.js b/tests/specs/sign-up-test.js
index <HASH>..<HASH> 100644
--- a/tests/specs/sign-up-test.js
+++ b/tests/specs/sign-up-test.js
@@ -83,7 +83,7 @@ test('signUp with username & password', function (t) {
.catch(t.error)
})
-test.skip('signUp with profile', function (t) {
+test(... | test: signUp rejects on error, does not throw | hoodiehq_hoodie-account-client | train | js |
439770f1295f4084fbed6c524b848ead40472d84 | diff --git a/src/Service/ElasticaService.php b/src/Service/ElasticaService.php
index <HASH>..<HASH> 100644
--- a/src/Service/ElasticaService.php
+++ b/src/Service/ElasticaService.php
@@ -478,7 +478,7 @@ class ElasticaService
$query->setPostFilter($search->getPostFilter());
}
$suggest = $s... | fix: ignore suggest with es7 and after | ems-project_EMSCommonBundle | train | php |
32b73775ff6e99328db3858ae1b957f410819417 | diff --git a/packages/core/testResources/config-reader/deprecated.conf.js b/packages/core/testResources/config-reader/deprecated.conf.js
index <HASH>..<HASH> 100644
--- a/packages/core/testResources/config-reader/deprecated.conf.js
+++ b/packages/core/testResources/config-reader/deprecated.conf.js
@@ -19,5 +19,5 @@ mod... | chore: remove trailing space from deprecated.conf.js (#<I>) | stryker-mutator_stryker | train | js |
149cecf6eb1ed2c46420e48dc16f30838982330c | diff --git a/wikitextparser/_wikitext.py b/wikitextparser/_wikitext.py
index <HASH>..<HASH> 100644
--- a/wikitextparser/_wikitext.py
+++ b/wikitextparser/_wikitext.py
@@ -535,13 +535,13 @@ class WikiText:
string = self._lststr[0][ss:se]
byte_array = bytearray(string, 'ascii', 'replace')
subsp... | chore(_ext_link_shadow): treat wikilinks the same as comments
they cannot contain ext links.
example: [[a|[http://b]]] is treated as plain text. | 5j9_wikitextparser | train | py |
e73f59606218f274bbace969ae48af3bbe1d8b2a | diff --git a/src/image/roi/Roi.js b/src/image/roi/Roi.js
index <HASH>..<HASH> 100644
--- a/src/image/roi/Roi.js
+++ b/src/image/roi/Roi.js
@@ -705,7 +705,7 @@ export default class Roi {
get roundness() {
/*Slide 24 https://static.horiba.com/fileadmin/Horiba/Products/Scientific/Particle_Characterization/Webina... | fix: roundness was not 1 for perfect circle (#<I>) | image-js_image-js | train | js |
6eb6937c594dfcb150e20f82c2536e0c3d0b15d6 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -66,7 +66,7 @@ interface Platform {
/**
* The runtime environment's global.
*/
- global: Object,
+ global: any,
/**
* A function wich does nothing.
*/ | fix(platform): fix type of global | aurelia_pal | train | js |
12e3e7bcd82cba3d625d5c05bec7f0120c8f2ad6 | diff --git a/core/src/main/java/com/google/cloud/sql/core/CloudSqlInstance.java b/core/src/main/java/com/google/cloud/sql/core/CloudSqlInstance.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/google/cloud/sql/core/CloudSqlInstance.java
+++ b/core/src/main/java/com/google/cloud/sql/core/CloudSqlInstance.ja... | fix: include value of INSTANCE_CONNECTION_NAME when invalid (#<I>) | GoogleCloudPlatform_cloud-sql-jdbc-socket-factory | train | java |
182af30f8cfedcff56e6d4d520b2709fddfdccb1 | diff --git a/anyconfig/backend/tests/json.py b/anyconfig/backend/tests/json.py
index <HASH>..<HASH> 100644
--- a/anyconfig/backend/tests/json.py
+++ b/anyconfig/backend/tests/json.py
@@ -7,7 +7,7 @@ from __future__ import absolute_import
import anyconfig.backend.json as TT
import anyconfig.backend.tests.ini
-from a... | fix: object_pairs_hoo is not available in json module (py<I>) | ssato_python-anyconfig | train | py |
5afff6fe89b056383931f33ef32048d179a93a45 | diff --git a/lib/dev.js b/lib/dev.js
index <HASH>..<HASH> 100644
--- a/lib/dev.js
+++ b/lib/dev.js
@@ -143,7 +143,7 @@ function resolveHost (host) {
async function resolvePort (port) {
const portfinder = require('portfinder')
- portfinder.basePort = port || 8080
+ portfinder.basePort = parseInt(port) || 8080
... | refactor: setting HMR port (better solution of #<I>) (#<I>) | vuejs_vuepress | train | js |
5b8b443735089c3c0906ef53c5bcb44888c97482 | diff --git a/core/src/main/java/com/ibm/watson/developer_cloud/util/CredentialUtils.java b/core/src/main/java/com/ibm/watson/developer_cloud/util/CredentialUtils.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/ibm/watson/developer_cloud/util/CredentialUtils.java
+++ b/core/src/main/java/com/ibm/watson/dev... | feat(core): Add utility method to check for bad characters in creds | watson-developer-cloud_java-sdk | train | java |
899a89e516274528d8aca06905b395b1fbefd6f7 | diff --git a/test/input/album-mapper.spec.js b/test/input/album-mapper.spec.js
index <HASH>..<HASH> 100644
--- a/test/input/album-mapper.spec.js
+++ b/test/input/album-mapper.spec.js
@@ -52,10 +52,10 @@ describe('Album mapper', function () {
it('with a path relative to the current directory', () => {
cons... | test(mapper): fix unit test that relied on a folder called “tmp” to already exist | thumbsup_thumbsup | train | js |
1f410dbc704b14eff2459d3731a68999b6b1565a | diff --git a/lib/output.js b/lib/output.js
index <HASH>..<HASH> 100644
--- a/lib/output.js
+++ b/lib/output.js
@@ -190,6 +190,9 @@ module.exports = {
* @param {string} [color]
*/
say(message, color = 'cyan') {
+ if (colors[color] === undefined) {
+ color = 'cyan';
+ }
if (outputLevel >= 1) pr... | fix: Second argument of I.say throw misleading error with invalid system color (#<I>) | Codeception_CodeceptJS | train | js,js |
d5524291f91c58c955532584f8c7c530ca71d7e8 | diff --git a/lib/utils.js b/lib/utils.js
index <HASH>..<HASH> 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -56,7 +56,7 @@ exports.help = function (bin, tree, key) {
if (key === DEF) {
// General help :: print all non-internal commands & their 1st line of text
let cmds = Object.keys(tree).filter(k => !/__/.te... | fix: don’t throw in help & have cmds w/o a description
- Closes #<I> | lukeed_sade | train | js |
cad860eb07b4b90afbba69c515cecac363275eb0 | diff --git a/templates/component/index.js b/templates/component/index.js
index <HASH>..<HASH> 100644
--- a/templates/component/index.js
+++ b/templates/component/index.js
@@ -4,7 +4,7 @@ import themeable from '../../themeable'
import { omitProps } from '../../util/passthroughProps'
import styles from './styles.css'... | fix(build): Remove `.js` from theme import in template
When I tried to create a new component, I got an error
in its index.js until I removed the `.js` from the
theme import
Change-Id: Idebbe<I>ebe<I>a<I>d<I>cc<I>de8f<I>bb
Reviewed-on: <URL> | instructure_instructure-ui | train | js |
118cbd2d6333e476bbe78ce66f5ab1daa39f65b0 | diff --git a/src/baseConfig.js b/src/baseConfig.js
index <HASH>..<HASH> 100644
--- a/src/baseConfig.js
+++ b/src/baseConfig.js
@@ -145,7 +145,7 @@ export class BaseConfig {
storageKey = 'aurelia_authentication';
// List of value-converters to make global
- globalValueConverters = ['authFilterValueConverter', '... | fix(baseConfig): revert to only globalValueConverters=["authFilterValueConverter"] (again) | SpoonX_aurelia-authentication | train | js |
4482b009807e6bf398e435e8fb65155e0812bdc2 | diff --git a/src/InfoViz/Core/MutualInformationProvider/index.js b/src/InfoViz/Core/MutualInformationProvider/index.js
index <HASH>..<HASH> 100644
--- a/src/InfoViz/Core/MutualInformationProvider/index.js
+++ b/src/InfoViz/Core/MutualInformationProvider/index.js
@@ -22,6 +22,8 @@ function listToPair(list = []) {
// --... | fix(MutualInformationProvider): Allow precomputed data to be push to a new listener | Kitware_paraviewweb | train | js |
2016684df35d19b969b64cdbdb96935a43eab214 | diff --git a/tests/Unit/ViewsTest.php b/tests/Unit/ViewsTest.php
index <HASH>..<HASH> 100644
--- a/tests/Unit/ViewsTest.php
+++ b/tests/Unit/ViewsTest.php
@@ -16,6 +16,7 @@ namespace CyrildeWit\EloquentViewable\Tests\Unit;
use Carbon\Carbon;
use CyrildeWit\EloquentViewable\View;
use CyrildeWit\EloquentViewable\Views... | test: overrideIpAddress method | cyrildewit_eloquent-viewable | train | php |
47992e73b4d02fb1547d6faef4d23b2895593f17 | diff --git a/lib/cfpropertylist/rbCFPropertyList.rb b/lib/cfpropertylist/rbCFPropertyList.rb
index <HASH>..<HASH> 100644
--- a/lib/cfpropertylist/rbCFPropertyList.rb
+++ b/lib/cfpropertylist/rbCFPropertyList.rb
@@ -296,7 +296,7 @@ module CFPropertyList
# load a plist from a plain string
# str:: The string c... | fix: fixed a typo in a method name | ckruse_CFPropertyList | train | rb |
35ba1589491bc596a179dc3e21aa2059593589c2 | diff --git a/src/lib/CollectStore.js b/src/lib/CollectStore.js
index <HASH>..<HASH> 100644
--- a/src/lib/CollectStore.js
+++ b/src/lib/CollectStore.js
@@ -5,6 +5,7 @@ import * as jobs from './jobs'
import {
createConnection,
+ deleteConnection,
enqueueConnection,
updateConnectionError,
updateConnectionR... | feat: dispatch 'deleteConnection' after deleting an account :sparkles: | cozy_cozy-home | train | js |
572e512375a6c432187a4e90a97e99e456d63c10 | diff --git a/test/player_integration.js b/test/player_integration.js
index <HASH>..<HASH> 100644
--- a/test/player_integration.js
+++ b/test/player_integration.js
@@ -756,7 +756,7 @@ describe('Player', () => {
// buffering goal so we append another segment.
player.configure('streaming.bufferingGoal', 40);... | test: Fix edge case in player integration test
If bufferBehind is set to <I>, then having <I> seconds buffered behind
is fine. It doesn't need to be strictly less than <I>.
This test was previously failing only on Xbox One.
Change-Id: I<I>e<I>b<I>eadfcd5edd<I>cc7bd | google_shaka-player | train | js |
5e413beb779b7efe77082c85eca4e2beea2935ce | diff --git a/lib/generators/activeadmin_addons/install/install_generator.rb b/lib/generators/activeadmin_addons/install/install_generator.rb
index <HASH>..<HASH> 100644
--- a/lib/generators/activeadmin_addons/install/install_generator.rb
+++ b/lib/generators/activeadmin_addons/install/install_generator.rb
@@ -1,13 +1,1... | fix(style): to match my dear monkey friend | platanus_activeadmin_addons | train | rb |
f3b6bcdcc3dabcb74d7d953a0cc5d42b4c421676 | diff --git a/bin/test.js b/bin/test.js
index <HASH>..<HASH> 100644
--- a/bin/test.js
+++ b/bin/test.js
@@ -19,8 +19,8 @@ var STANDARD = path.join(__dirname, 'cmd.js')
var URLS = [
'https://github.com/feross/webtorrent.git',
'https://github.com/feross/bittorrent-tracker.git',
- 'https://github.com/feross/bittorr... | test: temporarily disable mafintosh/level-temp
until this PR is merged: <URL> | standard_standard-engine | train | js |
70cd8a3a0826759e9975e22537ffbc8e348084fc | 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
@@ -340,7 +340,7 @@ export default Vue.extend({
true
)
- this.$refs.target.focus()
+ ... | fix(QSelect): Guard $refs.target for existence before trying to focus (#<I>)
close #<I> | quasarframework_quasar | train | js |
3db99525baff0bdfd6470191aa2937613cc874c0 | diff --git a/packages/ui-img/src/Img/index.js b/packages/ui-img/src/Img/index.js
index <HASH>..<HASH> 100644
--- a/packages/ui-img/src/Img/index.js
+++ b/packages/ui-img/src/Img/index.js
@@ -49,7 +49,6 @@ class Img extends Component {
makeStyles: PropTypes.func,
// eslint-disable-next-line react/require-defau... | refactor(ui-img): removed deprecated `blur` prop, use `withBlur` instead.
BREAKING CHANGE:
Removed deprecated `blur` prop, use `withBlur` instead. | instructure_instructure-ui | train | js |
66a0f6a635f2fbafbfd6fc065f1105831dd1ea02 | diff --git a/angular-pouchdb.js b/angular-pouchdb.js
index <HASH>..<HASH> 100644
--- a/angular-pouchdb.js
+++ b/angular-pouchdb.js
@@ -57,10 +57,9 @@ angular.module('pouchdb', [])
};
})
.provider('pouchDB', function(POUCHDB_METHODS) {
- this.methods = POUCHDB_METHODS;
- this.$get = function($window, po... | refactor: delint/reference self | angular-pouchdb_angular-pouchdb | train | js |
63271e2cb54b746c8595bf26750e7914795d88df | diff --git a/anyconfig/backends.py b/anyconfig/backends.py
index <HASH>..<HASH> 100644
--- a/anyconfig/backends.py
+++ b/anyconfig/backends.py
@@ -149,10 +149,12 @@ _PARSERS_BY_TYPE = tuple(_list_parsers_by_type(PARSERS))
_PARSERS_BY_EXT = tuple(_list_parsers_by_extension(PARSERS))
-def _find_by_filepath(filepath,... | refactor: rename .backends._find_by_filepath
- rename .backends._find_by_filepath to find_by_filepath
- fix the description of its parameter, cps | ssato_python-anyconfig | train | py |
c1deec491067e25312859cdd9fb7d260155c2eb5 | diff --git a/azurerm/provider.go b/azurerm/provider.go
index <HASH>..<HASH> 100644
--- a/azurerm/provider.go
+++ b/azurerm/provider.go
@@ -23,7 +23,7 @@ func Provider() terraform.ResourceProvider {
// However this requires that the following be done first:
// 1. (DONE) Migrating the top level functions into the in... | docs: updating the provider refactor status | terraform-providers_terraform-provider-azurerm | train | go |
e5b0389d8754fd453f64863cf00551b5a4faf3dd | diff --git a/ddl/column_type_change_test.go b/ddl/column_type_change_test.go
index <HASH>..<HASH> 100644
--- a/ddl/column_type_change_test.go
+++ b/ddl/column_type_change_test.go
@@ -1884,7 +1884,7 @@ func (s *testColumnTypeChangeSuite) TestChangeIntToBitWillPanicInBackfillIndexes
tk.MustQuery("select * from t").Chec... | test: fix a name typo error in test file (#<I>) | pingcap_tidb | train | go |
aefb0a2943399af9c01245e82d84d0f92219a9e6 | diff --git a/packages/emotion/src/styleUtils/index.js b/packages/emotion/src/styleUtils/index.js
index <HASH>..<HASH> 100644
--- a/packages/emotion/src/styleUtils/index.js
+++ b/packages/emotion/src/styleUtils/index.js
@@ -106,7 +106,6 @@ const useStyle = (componentName, generateStyle, props, ...extraArgs) => {
const ... | refactor(emotion): calculate initial style object in withStyle decorator | instructure_instructure-ui | train | js |
936b88166fb4cc6d90ebdab78127926fc7cc89e6 | diff --git a/src/components/autocomplete/js/autocompleteDirective.js b/src/components/autocomplete/js/autocompleteDirective.js
index <HASH>..<HASH> 100644
--- a/src/components/autocomplete/js/autocompleteDirective.js
+++ b/src/components/autocomplete/js/autocompleteDirective.js
@@ -56,7 +56,7 @@
aria-exp... | fix(autocomplete): hides cancel button when field is disabled
Closes #<I> | angular_material | train | js |
35912949f59cfa1c6863b08fea37043bba8c991d | diff --git a/packages/theme-data/src/baseTheme/components/textLink.js b/packages/theme-data/src/baseTheme/components/textLink.js
index <HASH>..<HASH> 100644
--- a/packages/theme-data/src/baseTheme/components/textLink.js
+++ b/packages/theme-data/src/baseTheme/components/textLink.js
@@ -38,25 +38,25 @@ export default {
... | refactor: changed secondary text link ref | Autodesk_hig | train | js |
7bc2e231cf4e8f1e2f0c45d77c57a28feb8cdb8c | diff --git a/src/client/rest/RESTMethods.js b/src/client/rest/RESTMethods.js
index <HASH>..<HASH> 100644
--- a/src/client/rest/RESTMethods.js
+++ b/src/client/rest/RESTMethods.js
@@ -261,7 +261,18 @@ class RESTMethods {
}
createChannel(guild, name, options) {
- const { type, topic, nsfw, bitrate, userLimit, ... | feat(Guild): add position to createChannel's implementation (#<I>) | discordjs_discord.js | train | js |
0763d42a85603f3ae5b8c3292252e52e920cbc27 | diff --git a/engine-rest/src/main/java/org/camunda/bpm/engine/rest/dto/task/TaskQueryDto.java b/engine-rest/src/main/java/org/camunda/bpm/engine/rest/dto/task/TaskQueryDto.java
index <HASH>..<HASH> 100644
--- a/engine-rest/src/main/java/org/camunda/bpm/engine/rest/dto/task/TaskQueryDto.java
+++ b/engine-rest/src/main/j... | fix(REST): use correct property
related to CAM-<I> | camunda_camunda-bpm-platform | train | java |
5ebc51e7748cc45c89d4423c4d2d9feb93ff05c1 | diff --git a/src/tab/index.js b/src/tab/index.js
index <HASH>..<HASH> 100644
--- a/src/tab/index.js
+++ b/src/tab/index.js
@@ -30,16 +30,16 @@ export default createComponent({
},
isActive() {
- return this.computedName === this.parent.currentName;
+ const active = this.computedName === this.parent... | fix(Tab): fail to init in some cases (#<I>) | youzan_vant | train | js |
ceb61c0e1bbd9c078f2d68a5c1cf792b4b24e435 | diff --git a/src/NativeUI/Renderers/NativeImageRenderer/index.js b/src/NativeUI/Renderers/NativeImageRenderer/index.js
index <HASH>..<HASH> 100644
--- a/src/NativeUI/Renderers/NativeImageRenderer/index.js
+++ b/src/NativeUI/Renderers/NativeImageRenderer/index.js
@@ -64,7 +64,7 @@ export default class NativeImageRendere... | fix(NativeImageRenderer): Allow different size between canvas and received image | Kitware_paraviewweb | train | js |
4d0ad813702fe8024b9111b6ab242f7126e77a4f | diff --git a/Makefile b/Makefile
index <HASH>..<HASH> 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ install:
test:
./go.coverage.sh
+ bash -c 'diff -u <(echo -n) <(gofmt -d -s .)'
test-integ: test
diff --git a/helpers/eventwebhook/eventwebhook_test.go b/helpers/eventwebhook/eventwebhook_test.go
index <... | test: ensure source files are properly formatted (#<I>) | sendgrid_sendgrid-go | train | Makefile,go,go |
0625d3cb511826cb0cc1d545a7762d3739570bc8 | diff --git a/app/reducers/index.js b/app/reducers/index.js
index <HASH>..<HASH> 100644
--- a/app/reducers/index.js
+++ b/app/reducers/index.js
@@ -1,3 +1,4 @@
+import R from 'ramda';
import { combineReducers } from 'redux';
import undoable from 'redux-undo';
@@ -6,11 +7,7 @@ import { editor } from './editor';
impo... | refactor(reducers): simplified filter method (using ramda) in undo config | xodio_xod | train | js |
bc40c98f955bd1b1d9fc4b35774f1c55f3b6674a | diff --git a/lib/util/package-rules.js b/lib/util/package-rules.js
index <HASH>..<HASH> 100644
--- a/lib/util/package-rules.js
+++ b/lib/util/package-rules.js
@@ -83,7 +83,7 @@ function applyPackageRules(inputConfig) {
? '.*'
: packagePattern
);
- if (depName.match(pack... | fix: check depName before matching | renovatebot_renovate | train | js |
d75597314ac6e935ef91cef9522a922b84b93d9f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -33,7 +33,7 @@ function serve(root, opts) {
// options
debug('static "%s" %j', root, opts);
opts.root = resolve(root);
- opts.index = opts.index || 'index.html';
+ if (opts.index !== false) opts.index = opts.index |... | fix: default index could be disabled
closes #<I> | koajs_static | train | js,js |
366fc39855083e98832d968a4c9d12e326cbee4a | diff --git a/tests/utils/test_py27hash_fix.py b/tests/utils/test_py27hash_fix.py
index <HASH>..<HASH> 100644
--- a/tests/utils/test_py27hash_fix.py
+++ b/tests/utils/test_py27hash_fix.py
@@ -99,7 +99,7 @@ class TestPy27UniStr(TestCase):
def test_deepcopy(self):
a = Py27UniStr("abcdef")
- self.ass... | chore(test): Move assert_ to assertTrue (#<I>) | awslabs_serverless-application-model | train | py |
8caec6eb9d98ffa6857805e5a60fdd334f79d191 | diff --git a/test/unit/mail.spec.js b/test/unit/mail.spec.js
index <HASH>..<HASH> 100644
--- a/test/unit/mail.spec.js
+++ b/test/unit/mail.spec.js
@@ -49,7 +49,7 @@ Ioc.bind('Config', function () {
})
const View = {
- render: function * (name) {
+ make: function * (name) {
return new Promise(function (resolv... | refactor(test): update test after view change
update test mocks after using view.make instead of view.render | adonisjs_adonis-mail | train | js,js |
a561762f74daf104a1e20b776531f7dbb06efc48 | diff --git a/spec/validated_object_spec.rb b/spec/validated_object_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/validated_object_spec.rb
+++ b/spec/validated_object_spec.rb
@@ -29,6 +29,7 @@ describe ValidatedObject do
apple = ImmutableApple.new(diameter: 4.0)
expect( apple.diameter ).to eq 4.0
+ exp... | chore: failing test for readonly attributes | public-law_validated_object | train | rb |
6228dc47944759f6bab35b658ef5201749307b11 | diff --git a/connection/connection.js b/connection/connection.js
index <HASH>..<HASH> 100644
--- a/connection/connection.js
+++ b/connection/connection.js
@@ -135,6 +135,8 @@ var Connection = function(messageHandler, options) {
this.cert = options.cert || null;
this.key = options.key || null;
this.passphrase =... | feat(ssl): adding ssl options ciphers and ecdhCurve | mongodb_node-mongodb-native | train | js |
5cd019e0a156bd4de9077fe1da3c579fef437e3a | diff --git a/packages/node_modules/@webex/webex-core/src/lib/services/interceptors/service.js b/packages/node_modules/@webex/webex-core/src/lib/services/interceptors/service.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/webex-core/src/lib/services/interceptors/service.js
+++ b/packages/node_modules/... | fix(webex-core): add resource and uri validation catch
Add a catch to bypass the interceptor if no service is defined,
but a resource is defined. | webex_spark-js-sdk | train | js |
96c3eed429630964c111e6d88b0c8612870cdc25 | diff --git a/src/style/button.js b/src/style/button.js
index <HASH>..<HASH> 100644
--- a/src/style/button.js
+++ b/src/style/button.js
@@ -16,7 +16,11 @@ var buttonStyle = {
padding: '8px 12px 6px 12px',
textAlign: 'center',
textDecoration: 'none',
- verticalAlign: 'bottom'
+ verticalAlign: 'bottom... | style(Button): prevent user selection | nikgraf_belle | train | js |
6d94eeda8bfabc73d2a4abbebe075fcaa0800d0c | diff --git a/functional/operations_tests.js b/functional/operations_tests.js
index <HASH>..<HASH> 100644
--- a/functional/operations_tests.js
+++ b/functional/operations_tests.js
@@ -5,12 +5,14 @@ const f = require('util').format;
const mock = require('mongodb-mock-server');
const ConnectionSpy = require('./shared').... | test(operations): cleanup before running these tests | mongodb_node-mongodb-native | train | js |
47130a40a1f24214caa71041bb5a645814538076 | diff --git a/tests/test_vcs_helpers.py b/tests/test_vcs_helpers.py
index <HASH>..<HASH> 100644
--- a/tests/test_vcs_helpers.py
+++ b/tests/test_vcs_helpers.py
@@ -352,9 +352,9 @@ def test_checkout_should_checkout_correct_branch(mock_git):
@pytest.mark.parametrize(
"pattern, skip_tags,expected_result",
[
- ... | chore: Fix deprecation warnings in tests | relekang_python-semantic-release | train | py |
0299fb29157b3b0610039ffbca6b032878ebe7b7 | diff --git a/webapps/camunda-webapp/webapp/src/main/webapp/plugin/base/app/views/dashboard/processDefinitionTiles.js b/webapps/camunda-webapp/webapp/src/main/webapp/plugin/base/app/views/dashboard/processDefinitionTiles.js
index <HASH>..<HASH> 100644
--- a/webapps/camunda-webapp/webapp/src/main/webapp/plugin/base/app/v... | chore(tiles): State is now red or green
related to CAM-<I> | camunda_camunda-bpm-platform | train | js |
590112099f5a4605fd6674ea17e3ed80a0bf8e72 | diff --git a/packages/example-phone/Gruntfile.js b/packages/example-phone/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/packages/example-phone/Gruntfile.js
+++ b/packages/example-phone/Gruntfile.js
@@ -64,6 +64,10 @@ module.exports = function configGrunt(grunt) {
]);
}
+ if (process.env.SAUCE_IS_DOWN) {
+ ... | chore(tooling): disable example-phone tests when sauce is down | webex_spark-js-sdk | train | js |
140cc3d3483ba2c5718fc899461ba109398a7b13 | diff --git a/packages/posts/db/schema/post.js b/packages/posts/db/schema/post.js
index <HASH>..<HASH> 100644
--- a/packages/posts/db/schema/post.js
+++ b/packages/posts/db/schema/post.js
@@ -1,7 +1,7 @@
import {Photo, Post, util} from "@randy.tarampi/js";
import {Schema} from "dynamoose";
-const throughput = {read:... | fix(posts): Increase posts table read/write capacity to 4 units.
Might as well use everything we get for free. | randytarampi_me | train | js |
1cb6e7ecd39234dbf21327851ea3966e6cc69bcc | diff --git a/jspdf.plugin.from_html.js b/jspdf.plugin.from_html.js
index <HASH>..<HASH> 100644
--- a/jspdf.plugin.from_html.js
+++ b/jspdf.plugin.from_html.js
@@ -789,7 +789,7 @@
this.pdf.internal.write("ET", "Q");
this.pdf.addPage();
this.y = this.pdf.margins_doc.top;
- this.pdf.internal.write("q", "BT 0... | fix: Auto page break code uses undefined value for color | MrRio_jsPDF | train | js |
04a5c207cb673d72a7dce58e3eefcfb92a189c48 | diff --git a/go/vt/orchestrator/util/token.go b/go/vt/orchestrator/util/token.go
index <HASH>..<HASH> 100644
--- a/go/vt/orchestrator/util/token.go
+++ b/go/vt/orchestrator/util/token.go
@@ -50,14 +50,14 @@ type Token struct {
Hash string
}
-func (this *Token) Short() string {
- if len(this.Hash) <= shortTokenLeng... | refactor: fix lint issues in util package | vitessio_vitess | train | go |
58a1bf0de33adb1d54c8051090f01984daa08c86 | diff --git a/docs/.eleventy.js b/docs/.eleventy.js
index <HASH>..<HASH> 100644
--- a/docs/.eleventy.js
+++ b/docs/.eleventy.js
@@ -390,7 +390,7 @@ module.exports = function(eleventyConfig) {
*/
eleventyConfig.setBrowserSyncConfig({
middleware: (req, res, next) => {
- if (!/(?:\.[^/]+|\/)$... | chore: tweak URL rewriting for local previews (#<I>) | eslint_eslint | train | js |
fa3547373377c78afc0524df82ad6716b6136b0c | diff --git a/src/utils/update-config.js b/src/utils/update-config.js
index <HASH>..<HASH> 100644
--- a/src/utils/update-config.js
+++ b/src/utils/update-config.js
@@ -39,7 +39,7 @@ const addNodes = function(json, opts) {
_forOwn(opts.desiredNodes, (nodeData, platformName) => {
//Cordova wont always have a pla... | style(update-config): Update parse XML function to add space between if and condition | isleofcode_splicon | train | js |
f4d8f5fbd143883d9f3b89e762e183b7d0fc8f86 | diff --git a/src/Common/Traits/Model/Nestable.php b/src/Common/Traits/Model/Nestable.php
index <HASH>..<HASH> 100644
--- a/src/Common/Traits/Model/Nestable.php
+++ b/src/Common/Traits/Model/Nestable.php
@@ -253,7 +253,7 @@ trait Nestable
// Save breadcrumbs of all children
/** @var Database $... | chore: Ensure correctly cast ID is passed down the chain | nails_common | train | php |
a63da5479a6a053daafc89566a40996cd05183b3 | diff --git a/tests/scale_test.go b/tests/scale_test.go
index <HASH>..<HASH> 100644
--- a/tests/scale_test.go
+++ b/tests/scale_test.go
@@ -167,14 +167,14 @@ func TestScaleHA(t *testing.T) {
return fmt.Errorf("Should get %d iperf(tcp/5001) flow from datastore got %d : %#+v", flowExpected, len(flows), flowsTCP)
... | test: disable socket info as not stable
Will re-enable with the fix | skydive-project_skydive | train | go |
45cf852aac5cc8e4dc0b5d74264629e04d88d802 | diff --git a/models/Mapper/ResultMapper.php b/models/Mapper/ResultMapper.php
index <HASH>..<HASH> 100644
--- a/models/Mapper/ResultMapper.php
+++ b/models/Mapper/ResultMapper.php
@@ -23,6 +23,7 @@ namespace oat\taoResultServer\models\Mapper;
use common_exception_InvalidArgumentType;
use common_exception_NotImplemen... | fix: `ResultMapper` variables timestamp generation | oat-sa_extension-tao-outcome | train | php |
7ef8ea977fc9fd946851592166d244829500f2ca | diff --git a/src/collection-service.js b/src/collection-service.js
index <HASH>..<HASH> 100644
--- a/src/collection-service.js
+++ b/src/collection-service.js
@@ -55,7 +55,6 @@ var CollectionService = function (provider, type) {
* @returns {Promise} promise resolves with an array of the collection's data
*/
... | fix(CollectionService): allow load and sync of empty collections
closes #2 | castle-dev_le-storage-service | train | js |
bb745589454648ebf28f7a1c3965f1884e26762e | diff --git a/code/extensions/ElementPageExtension.php b/code/extensions/ElementPageExtension.php
index <HASH>..<HASH> 100644
--- a/code/extensions/ElementPageExtension.php
+++ b/code/extensions/ElementPageExtension.php
@@ -54,16 +54,22 @@ class ElementPageExtension extends DataExtension
$area = $this->owner-... | fix(FrontendFields): Fix calling getCMSFields on for frontend fields.
- Calling getCMSFields on the frontend should not attempt to write a 'ElementArea'/'Page' if it doesn't already exist.
- Setup UnsavedRelationList for cases where ElementArea()->Elements() is empty. (ie. frontend fields / empty data object) | dnadesign_silverstripe-elemental | train | php |
0cece87436a575df6781590732d4146b35889e70 | diff --git a/build/tools/materialize-css.js b/build/tools/materialize-css.js
index <HASH>..<HASH> 100644
--- a/build/tools/materialize-css.js
+++ b/build/tools/materialize-css.js
@@ -24,6 +24,7 @@ require([
'parallax',
'picker',
'picker.date',
+ 'picker.time',
'pushpin',
'scrollFire',
'scrollspy',
di... | fix(tools): add timepicker to AMD scripts, #<I> | aurelia-ui-toolkits_aurelia-materialize-bridge | train | js,js |
06c7c2498c9ed8c7583c66211cbf85e779bbec9e | diff --git a/src/Field.js b/src/Field.js
index <HASH>..<HASH> 100644
--- a/src/Field.js
+++ b/src/Field.js
@@ -219,12 +219,7 @@ class Field extends React.PureComponent {
// Escape hatch for more complex Field types.
if (typeof children === 'function') {
fieldProps.type = resolveToNativeType(resolvedTyp... | fix: don't change value prop on function | jquense_react-formal | train | js |
7c9794ccd062b9e4e7b8ab0e188ea84ae22c4ecb | diff --git a/src/Keboola/GoodData/Projects.php b/src/Keboola/GoodData/Projects.php
index <HASH>..<HASH> 100644
--- a/src/Keboola/GoodData/Projects.php
+++ b/src/Keboola/GoodData/Projects.php
@@ -40,13 +40,13 @@ class Projects
return "/gdc/projects/$pid";
}
- public function createProject($title, $aut... | feat: add param for setting project engine | keboola_gooddata-php-client | train | php |
639607d68d8290548f532365edd992daaf6139d4 | diff --git a/src/sentry_plugins/slack/plugin.py b/src/sentry_plugins/slack/plugin.py
index <HASH>..<HASH> 100644
--- a/src/sentry_plugins/slack/plugin.py
+++ b/src/sentry_plugins/slack/plugin.py
@@ -4,7 +4,7 @@ import operator
from django.core.urlresolvers import reverse
from django.db.models import Q
-from sentry ... | fix: Move methodcall from TagKey to tagstore | getsentry_sentry-plugins | train | py |
19a3b4b063127ce6f422068110708f2b77b0844b | diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js
index <HASH>..<HASH> 100644
--- a/docs/.vuepress/config.js
+++ b/docs/.vuepress/config.js
@@ -99,4 +99,25 @@ module.exports = {
dest: '_site',
plugins: ['@vuepress/google-analytics'],
ga: 'UA-131782693-1',
+ head: [
+ [
+ 'meta',
+ ... | docs: add minimal meta info to website for twitter, slack, ... | open-wc_open-wc | train | js |
5cc781fbdba35f0d119357b4b8b197f58ff88c53 | diff --git a/mapillary_tools/uploader.py b/mapillary_tools/uploader.py
index <HASH>..<HASH> 100644
--- a/mapillary_tools/uploader.py
+++ b/mapillary_tools/uploader.py
@@ -879,6 +879,7 @@ def send_videos_for_processing(video_import_path, user_name, user_email=None, us
if not os.path.exists(stationary_fo... | feat: when moving video to stationary folder, also move gpx file | mapillary_mapillary_tools | train | py |
42dbee3a2ae1fa08783c5767641c70755dd80d33 | diff --git a/webpack.config.common.js b/webpack.config.common.js
index <HASH>..<HASH> 100644
--- a/webpack.config.common.js
+++ b/webpack.config.common.js
@@ -96,7 +96,7 @@ module.exports = {
context: 'components/',
from: '**/*',
to: './',
- ignore: [ '*.js', '*.vue', '*.css', '*.snap'... | chore(build): Don't copy tests in dist directory | matsp_material-components-vue | train | js |
93b3193f1600c7bf97185a7d77083ef219125457 | diff --git a/Cron/Manager.php b/Cron/Manager.php
index <HASH>..<HASH> 100644
--- a/Cron/Manager.php
+++ b/Cron/Manager.php
@@ -14,6 +14,7 @@ use Cron\CronBundle\Entity\CronJobRepository;
use Cron\CronBundle\Entity\CronReport;
use Doctrine\Persistence\ManagerRegistry;
use Cron\Report\JobReport;
+use Doctrine\DBAL\Con... | fix: wakeup server if needed (#<I>) | Cron_Symfony-Bundle | train | php |
ee23ffd0b3e865310723383df6b909c76a8c31c6 | diff --git a/packages/react-ui-screenshot-tests/gemini.config.js b/packages/react-ui-screenshot-tests/gemini.config.js
index <HASH>..<HASH> 100644
--- a/packages/react-ui-screenshot-tests/gemini.config.js
+++ b/packages/react-ui-screenshot-tests/gemini.config.js
@@ -10,10 +10,16 @@ Suite.create = function() {
};
Br... | refactor(react-ui-screenshot-tests): improve caching ability | skbkontur_retail-ui | train | js |
6f948127ccce8cb843b88782123cdc01f1b910cd | diff --git a/test/test-plugin.js b/test/test-plugin.js
index <HASH>..<HASH> 100644
--- a/test/test-plugin.js
+++ b/test/test-plugin.js
@@ -29,19 +29,19 @@ test('processing with plugin beautify should not lost native api', async t => {
const fixture = '<div></div>\n\n<div></div>';
t.true(
Object.prototype.hasOwnP... | test: revrite check api to async | Scrum_posthtml-beautify | train | js |
e9582c5123c73c6bd9b88edb3e058ebe4c3313b8 | diff --git a/docs/scripts/showcase-screenshots.js b/docs/scripts/showcase-screenshots.js
index <HASH>..<HASH> 100644
--- a/docs/scripts/showcase-screenshots.js
+++ b/docs/scripts/showcase-screenshots.js
@@ -83,21 +83,26 @@ nightmare
.end()
.then(() => {
console.log("✅ Showcase screenshots cached");
- scre... | docs: avoid screenshots optimisation when it's not necessary | phenomic_phenomic | train | js |
0b4df458e2e6b80fb3831f6559b879af85a8912b | diff --git a/test/api/log.spec.js b/test/api/log.spec.js
index <HASH>..<HASH> 100644
--- a/test/api/log.spec.js
+++ b/test/api/log.spec.js
@@ -3,9 +3,16 @@
'use strict'
const expect = require('chai').expect
+const isNode = require('detect-node')
+
+// For some reason these tests time out in PhantomJS so we need to ... | test: Skip log.tail in PhantomJS | ipfs_js-ipfs | train | js |
6bb10409a7014c7166d30cdc95c67e6cbaf800b9 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -187,7 +187,6 @@ ee(Object.defineProperties(SiteTree.prototype, assign({
// Assure repaint after content change
reflow.call(this.document);
- console.log("View render in", ((Date.now() - time) / 1000).toFixed(2) + "s"... | fix: remove obtrusive log | medikoo_site-tree | train | js |
7ec1fed51f9bc6f9f3e19e212d0ca50bcaf77008 | diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -2,7 +2,10 @@ module.exports = function(config) {
config.set({
singleRun: true,
basePath: '',
- files: ['tests/dist/index.js'],
+ files: [
+ 'node_modules/regenerator-runtime/runtime... | chore: use regenerator runtime in tests for async/await | filerjs_filer | train | js |
cabefa4fff9c130813dd1539a9ba486ff28ca93b | diff --git a/public/app/features/playlist/playlist_routes.js b/public/app/features/playlist/playlist_routes.js
index <HASH>..<HASH> 100644
--- a/public/app/features/playlist/playlist_routes.js
+++ b/public/app/features/playlist/playlist_routes.js
@@ -33,7 +33,7 @@ function (angular) {
.then(function(play... | fix(playlist): fix for timespan -> interval | grafana_grafana | train | js |
83fc61eae9993b1fd38ae64612ce4fd20af2cd0c | diff --git a/sessions.js b/sessions.js
index <HASH>..<HASH> 100644
--- a/sessions.js
+++ b/sessions.js
@@ -249,6 +249,10 @@ function endTransaction(clientSession, commandName, callback) {
callback(e, r);
}
+ function transactionError(err) {
+ return commandName === 'commitTransaction' ? err : null;
+ }
+... | refactor(txns): determine whether to report errors based on cmd
commitTransaction should propagate errors, while abortTransaction
should always swallow them.
NODE-<I> | mongodb_node-mongodb-native | train | js |
28e598dac13cf304d60af378845ddd5accd2f9d7 | diff --git a/packages/xod-project/src/patch.js b/packages/xod-project/src/patch.js
index <HASH>..<HASH> 100644
--- a/packages/xod-project/src/patch.js
+++ b/packages/xod-project/src/patch.js
@@ -48,6 +48,7 @@ import {
getArityStepFromPatchPath,
getSpecializationPatchPath,
normalizeTypeNameForAbstractsResolutio... | feat(xod-project): make outputs of tweak nodes bindable | xodio_xod | train | js |
17a57432c22cf1a4463c4a3e47e3567d8454af42 | diff --git a/src/notebook/components/cell/codemirror/index.js b/src/notebook/components/cell/codemirror/index.js
index <HASH>..<HASH> 100644
--- a/src/notebook/components/cell/codemirror/index.js
+++ b/src/notebook/components/cell/codemirror/index.js
@@ -151,6 +151,7 @@ const CodeMirrorWrapper: CodeMirrorHOC = (EditorV... | fix(editor): Shift+Tab de-indents selection by one unit (#<I>) | nteract_nteract | train | js |
05f420e2667635ef4b8fb2795f3fe3c1b3395350 | diff --git a/src/picker/index.js b/src/picker/index.js
index <HASH>..<HASH> 100644
--- a/src/picker/index.js
+++ b/src/picker/index.js
@@ -31,6 +31,8 @@ export default createComponent({
type: String,
default: 'top',
},
+ // @deprecated
+ // should be removed in next major version
valueKey:... | chore(Picker): mark value-key as deprecated | youzan_vant | train | js |
ac3d03639980e020805fa213b940d1ee85643bc3 | diff --git a/packages/generators/yeoman-create-component/generators/component/update-boltrc.js b/packages/generators/yeoman-create-component/generators/component/update-boltrc.js
index <HASH>..<HASH> 100644
--- a/packages/generators/yeoman-create-component/generators/component/update-boltrc.js
+++ b/packages/generators... | fix: displaying new component in more elegant way in boltrc.js | bolt-design-system_bolt | train | js |
d66ef55160ae515132381f3803dc6b16cc8c7325 | diff --git a/eam/simulator/simulator_test.go b/eam/simulator/simulator_test.go
index <HASH>..<HASH> 100644
--- a/eam/simulator/simulator_test.go
+++ b/eam/simulator/simulator_test.go
@@ -36,6 +36,9 @@ import (
"github.com/vmware/govmomi/vim25"
"github.com/vmware/govmomi/vim25/soap"
vim "github.com/vmware/govmomi/... | fix: explicitly import eam/simulator in test
The previous approach only worked because "go test" links both simulator and
simulator_test into the same binary. | vmware_govmomi | train | go |
f847e113b154495b20143a5c4964cd97020a4289 | diff --git a/src/controllers/entity/Sensor.js b/src/controllers/entity/Sensor.js
index <HASH>..<HASH> 100644
--- a/src/controllers/entity/Sensor.js
+++ b/src/controllers/entity/Sensor.js
@@ -160,11 +160,13 @@ class Sensor extends EntityNode {
state: state,
attributes: attr,
};
- ... | fix(entity): Only save payload to disk if resend is enabled | zachowj_node-red-contrib-home-assistant-websocket | train | js |
08f318a1d867d8aa30480978a1465060cd294eec | diff --git a/lib/social_shares/base.rb b/lib/social_shares/base.rb
index <HASH>..<HASH> 100644
--- a/lib/social_shares/base.rb
+++ b/lib/social_shares/base.rb
@@ -15,6 +15,12 @@ module SocialShares
nil
end
+ def shares!
+ raise NotImplementedError
+ end
+
+ protected
+
def get(url, params... | fix(base): move #get and #post to protected, coz they are out of interface | Timrael_social_shares | train | rb |
6898391470745ce443e910dcd7dc6fcdf3b3c236 | diff --git a/python/lib/pexif.py b/python/lib/pexif.py
index <HASH>..<HASH> 100644
--- a/python/lib/pexif.py
+++ b/python/lib/pexif.py
@@ -853,10 +853,16 @@ class ExifSegment(DefaultSegment):
if (count == 1):
ifd = IfdTIFF(self.e, offset, self, self.mode, tiff_data)
elif (coun... | fix(pexif): Catch parsing error for thumbnail ifd for now | mapillary_mapillary_tools | train | py |
ffe04d9f3141d300d33ad4e5da70b2b4abac6fc7 | diff --git a/scripts/tools/AddLanguageSupportForDelivery.php b/scripts/tools/AddLanguageSupportForDelivery.php
index <HASH>..<HASH> 100644
--- a/scripts/tools/AddLanguageSupportForDelivery.php
+++ b/scripts/tools/AddLanguageSupportForDelivery.php
@@ -65,6 +65,6 @@ class AddLanguageSupportForDelivery extends ScriptActio... | chore: Remove double quotes in AddLanguageSupportForDelivery | oat-sa_extension-tao-delivery-rdf | train | php |
b04162ab6a30c799df7f3926cbe80a9ed1ac660b | diff --git a/ui/src/mixins/model-toggle.js b/ui/src/mixins/model-toggle.js
index <HASH>..<HASH> 100644
--- a/ui/src/mixins/model-toggle.js
+++ b/ui/src/mixins/model-toggle.js
@@ -21,12 +21,6 @@ export default {
}
},
- computed: {
- navigationHideCondition () {
- return this.persistent !== true
- }... | chore(model-toggle): Addition to previous commit | quasarframework_quasar | train | js |
8242e686e113cb3118c0892fb7511a508918dd08 | diff --git a/test/setup.js b/test/setup.js
index <HASH>..<HASH> 100644
--- a/test/setup.js
+++ b/test/setup.js
@@ -34,6 +34,7 @@ global.window.document.createRange = function createRange() {
}
};
+// Mocks for tests
var mock = require('mock-require');
mock('electron-json-storage', {
'get': function(key, call... | test(mocks): Add mocks for spawnteract | nteract_nteract | train | js |
05ee49986bf7e324ac0ee7ef36fc08c4bb1ad874 | diff --git a/moneyed/test_moneyed_classes.py b/moneyed/test_moneyed_classes.py
index <HASH>..<HASH> 100644
--- a/moneyed/test_moneyed_classes.py
+++ b/moneyed/test_moneyed_classes.py
@@ -27,7 +27,7 @@ class CustomDecimal(Decimal):
return 'error'
-class CustomClassesAdd:
+class CustomClassAdd:
"""Test ... | test: put custom_class_add logic in a dedicated test | limist_py-moneyed | train | py |
ce695fa9eeb9639671fda9f67dc06e15c9dcd821 | diff --git a/lib/highLevelProducer.js b/lib/highLevelProducer.js
index <HASH>..<HASH> 100644
--- a/lib/highLevelProducer.js
+++ b/lib/highLevelProducer.js
@@ -83,7 +83,7 @@ HighLevelProducer.prototype.send = function (payloads, cb) {
HighLevelProducer.prototype.buildPayloads = function (payloads) {
var self = thi... | fix(HighLevelProducer): allow sending to partition 0 | SOHU-Co_kafka-node | train | js |
ad13e0363ae9cd0cb3166ac955653d59436ddea2 | diff --git a/packages/plugin-import/src/index.test.js b/packages/plugin-import/src/index.test.js
index <HASH>..<HASH> 100644
--- a/packages/plugin-import/src/index.test.js
+++ b/packages/plugin-import/src/index.test.js
@@ -1,10 +1,9 @@
jest.mock('fs-extra');
-jest.mock('@emdaer/core', () => async () => 'Hello, World... | test(plugin-import): hey core is here | emdaer_emdaer | train | js |
55d240b3bf3836e661c20da51cd0050bc71fb7df | diff --git a/packages/phenomic-preset-default/src/client.js b/packages/phenomic-preset-default/src/client.js
index <HASH>..<HASH> 100644
--- a/packages/phenomic-preset-default/src/client.js
+++ b/packages/phenomic-preset-default/src/client.js
@@ -1,8 +1,9 @@
import {
+ renderApp,
createApp,
createContainer,
... | feat(phenomic-preset-default): expose renderApp so people can hot load their app | phenomic_phenomic | train | js |
5e986998da6d3d660851c0ce74edd8aebda52d06 | diff --git a/source/php/Profile.php b/source/php/Profile.php
index <HASH>..<HASH> 100644
--- a/source/php/Profile.php
+++ b/source/php/Profile.php
@@ -40,7 +40,7 @@ class Profile
//Get data for view
$data = array(
- 'sites' => array_chunk(get_sites(), 3),
+ 'sit... | fix: Allow more than <I> sites to be edited.
New max: <I> | helsingborg-stad_multisite-role-propagation | train | php |
d5873f85b4d5995428a5f2e0a5d5cd083d5e5da9 | diff --git a/test/functional/session_leak_test.js b/test/functional/session_leak_test.js
index <HASH>..<HASH> 100644
--- a/test/functional/session_leak_test.js
+++ b/test/functional/session_leak_test.js
@@ -106,6 +106,9 @@ afterEach('Session Leak After Each - ensure no leaks', function() {
`client close failed t... | test: stop session leak tests from cascading
Clear all of the session tracking if a test fails, b/c otherwise
those can cause every subsequent test to fail | mongodb_node-mongodb-native | train | js |
25e6c8bd515e16c7309d85e83f1f24b53477509a | diff --git a/inc/interactive/class-content.php b/inc/interactive/class-content.php
index <HASH>..<HASH> 100644
--- a/inc/interactive/class-content.php
+++ b/inc/interactive/class-content.php
@@ -254,9 +254,11 @@ class Content {
* @return string
*/
public function replaceOembed( $return, $data, $url ) {
-
- // ... | fix: handle Twitter oEmbeds for EPUB and PDF (#<I>) | pressbooks_pressbooks | train | php |
f2c19ac3f831a2c8c0749f9f4415b7ba2648aa5f | diff --git a/readdir.js b/readdir.js
index <HASH>..<HASH> 100644
--- a/readdir.js
+++ b/readdir.js
@@ -52,6 +52,7 @@ Readdir.prototype = {
promise = data.files;
if (this.stream) {
promise.aside(function (files) {
+ if (!files) return;
promise.emit("change", { data: files, added: files, removed: [... | fix: readdir 'loose' option handling with depth: Infinity | medikoo_fs2 | train | js |
5bafa111c0602936ebf2d1de5ddd8a458a221b3e | diff --git a/config/backup-manager.php b/config/backup-manager.php
index <HASH>..<HASH> 100644
--- a/config/backup-manager.php
+++ b/config/backup-manager.php
@@ -58,4 +58,7 @@ return [
'privateKey' => '',
'root' => '',
],
+
+ // Add additional options to dump-command (like '--max-allowed-pack... | feat: Move extra params to config file | backup-manager_laravel | train | php,php |
a4d336019d2104f2816915cd5d510b49b6759b63 | diff --git a/packages/node_modules/ciscospark/src/ciscospark.js b/packages/node_modules/ciscospark/src/ciscospark.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/ciscospark/src/ciscospark.js
+++ b/packages/node_modules/ciscospark/src/ciscospark.js
@@ -14,7 +14,6 @@ require('@ciscospark/plugin-authorization')... | chore(ciscospark): do not include plugin-meetings by default | webex_spark-js-sdk | train | js |
d60486fb4763a039b3a9938d3d779b071f388c1d | diff --git a/util/cache/redis.go b/util/cache/redis.go
index <HASH>..<HASH> 100644
--- a/util/cache/redis.go
+++ b/util/cache/redis.go
@@ -50,7 +50,7 @@ func (r *redisCache) Delete(key string) error {
}
func (r *redisCache) OnUpdated(ctx context.Context, key string, callback func() error) error {
- pubsub := r.clie... | fix: use redis pub-sub with correct context (#<I>) | argoproj_argo-cd | train | go |
dea6ba276566e078a5e7e0c31028e683ec1fa772 | diff --git a/machine/state.go b/machine/state.go
index <HASH>..<HASH> 100644
--- a/machine/state.go
+++ b/machine/state.go
@@ -18,7 +18,7 @@ const (
// MachineState represents a point-in-time snapshot of the
// state of the local host.
type MachineState struct {
- ID string `json:"BootId"`
+ ID string
... | refactor(machine): Rename BootId to ID | coreos_fleet | train | go |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.