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 |
|---|---|---|---|---|---|
b7581a9d20f6b604280735825c1033f581ab5fc5 | diff --git a/lib/Github/Api/Organization/Members.php b/lib/Github/Api/Organization/Members.php
index <HASH>..<HASH> 100644
--- a/lib/Github/Api/Organization/Members.php
+++ b/lib/Github/Api/Organization/Members.php
@@ -44,11 +44,6 @@ class Members extends AbstractApi
return $this->get('/orgs/'.rawurlencode($or... | refactor:Make addMember an alias of add
Duplicate code existed for adding member to an organisation
Under lib/Github/Api/Organisation/Members.php the addMember and add
methods returned the exact same code and used the exact same arguments.
With that in mind I made addMember an "alias" returning $this->add
passing the... | KnpLabs_php-github-api | train | php |
467390f79e84310e0f987b3c19c095941b6925bd | diff --git a/src/sagemaker/utils.py b/src/sagemaker/utils.py
index <HASH>..<HASH> 100644
--- a/src/sagemaker/utils.py
+++ b/src/sagemaker/utils.py
@@ -331,7 +331,7 @@ def create_tar_file(source_files, target=None):
else:
_, filename = tempfile.mkstemp()
- with tarfile.open(filename, mode="w:gz") as t... | fix: Deference symbolic link when create tar file (#<I>)
Dereference all symbolic link when packing source code and dependencies. Symbolic link will unlikely have any meaning once deployed in the Docker instance. | aws_sagemaker-python-sdk | train | py |
30b80a83150dd49055e58bf8be34c7edac61a96b | diff --git a/gorequest.go b/gorequest.go
index <HASH>..<HASH> 100644
--- a/gorequest.go
+++ b/gorequest.go
@@ -5,31 +5,26 @@ import (
"bytes"
"crypto/tls"
"encoding/json"
+ "fmt"
"io"
"io/ioutil"
"log"
+ "mime/multipart"
"net/http"
"net/http/cookiejar"
"net/http/httputil"
+ "net/textproto"
"net/url"... | chore: bump moul.io/http2curl dependency | parnurzeal_gorequest | train | go |
e603af05c458861ce59a89b6af8b929e6184f906 | diff --git a/src/scaffolder-test.js b/src/scaffolder-test.js
index <HASH>..<HASH> 100644
--- a/src/scaffolder-test.js
+++ b/src/scaffolder-test.js
@@ -257,7 +257,7 @@ suite('javascript project scaffolder', () => {
async () => {
const {verificationCommand} = await scaffold(options);
- asse... | feat(verification): redirected `npm ls` output
to improve readability upon project initialization | travi_javascript-scaffolder | train | js,js |
4695a2347e18d386881c13a17c97366ba2f8ba7d | diff --git a/pptx/chart/data.py b/pptx/chart/data.py
index <HASH>..<HASH> 100644
--- a/pptx/chart/data.py
+++ b/pptx/chart/data.py
@@ -302,6 +302,9 @@ class CategoryChartData(_BaseChartData):
category labels (strings, numbers, or dates) replaces the
|data.Categories| object with a new one containing a... | docs: document date axis API and use | scanny_python-pptx | train | py |
95abe94ce067d14d776c3460d9f923c857d137b8 | diff --git a/packages/razzle/config/createConfig.js b/packages/razzle/config/createConfig.js
index <HASH>..<HASH> 100644
--- a/packages/razzle/config/createConfig.js
+++ b/packages/razzle/config/createConfig.js
@@ -239,7 +239,10 @@ module.exports = (
loader: require.resolve('css-loader'),
... | fix(css): add one more missed localIdentName | jaredpalmer_razzle | train | js |
c3f0a6f158fbc7d90544274b9bf09d5ac9ac0060 | diff --git a/gitlab/v4/objects/audit_events.py b/gitlab/v4/objects/audit_events.py
index <HASH>..<HASH> 100644
--- a/gitlab/v4/objects/audit_events.py
+++ b/gitlab/v4/objects/audit_events.py
@@ -18,7 +18,7 @@ class AuditEvent(RESTObject):
_id_attr = "id"
-class AuditEventManager(ListMixin, RESTManager):
+class... | fix(objects): add single get endpoint for instance audit events | python-gitlab_python-gitlab | train | py |
d8e8de851db018800f46b8cd7ab84e8d6802935f | diff --git a/sync_test.go b/sync_test.go
index <HASH>..<HASH> 100644
--- a/sync_test.go
+++ b/sync_test.go
@@ -9,6 +9,7 @@ import (
"io/ioutil"
"os"
"reflect"
+ "strings"
"sync"
"testing"
"time"
@@ -654,7 +655,7 @@ func TestSetup(t *testing.T) {
}
banPeer(svc, h2)
err = svc.SendTransaction(authTx1.Tx,... | test: restore tests to passing status after SendTransaction change
In this commit, we fix the failing set of integration tests. A prior
commit modified the SendTransaction to not ignore "rejected" errors.
This caused the tests to fail as we weren't catching this error. In
order to restore the build we'll catch this er... | lightninglabs_neutrino | train | go |
1f5eac9efe2eed13d5d41d1bbf7080f609816a48 | diff --git a/modules/sitemap/module.php b/modules/sitemap/module.php
index <HASH>..<HASH> 100644
--- a/modules/sitemap/module.php
+++ b/modules/sitemap/module.php
@@ -28,6 +28,8 @@ if (!defined('WT_WEBTREES')) {
exit;
}
+require_once WT_ROOT.'includes/functions/functions_export.php';
+
class sitemap_WT_Module ext... | fix: sitemap module doesn't working | fisharebest_webtrees | train | php |
e845bc51b279865401c8895e17dcec901bf7b7ac | diff --git a/test/docEngine-spec.js b/test/docEngine-spec.js
index <HASH>..<HASH> 100644
--- a/test/docEngine-spec.js
+++ b/test/docEngine-spec.js
@@ -209,15 +209,6 @@ describe('the docEngine', function () {
])
})
- it('should not include helper- or preprocessor-modules that do not exist', function () {
- ... | test: remove errornous test
The removed test was probably a copy-and-paste error. It does not
make sense for the doc-engine | bootprint_customize-engine-handlebars | train | js |
ae44c06abeeba2fe3cd23851b26c499e6b9d2bbe | diff --git a/packages/site/src/ui/link.js b/packages/site/src/ui/link.js
index <HASH>..<HASH> 100644
--- a/packages/site/src/ui/link.js
+++ b/packages/site/src/ui/link.js
@@ -3,7 +3,7 @@ import React from 'react'
import StyledLink from '@pluralsight/ps-design-system-link/react'
// TODO: make handle activeClassName-... | feat(site): add appearance prop to link pass thru | pluralsight_design-system | train | js |
8e0181d1be37cace44e5911e041b974e95333ee8 | diff --git a/packages/zent/src/swiper/Swiper.js b/packages/zent/src/swiper/Swiper.js
index <HASH>..<HASH> 100644
--- a/packages/zent/src/swiper/Swiper.js
+++ b/packages/zent/src/swiper/Swiper.js
@@ -238,7 +238,7 @@ export default class Swiper extends (PureComponent || Component) {
onMouseLeave={this.handleMous... | fix: swiper 当只有一个children时隐藏arrows | youzan_zent | train | js |
3d996795cd6f228dac20d0db5e376104be45658f | diff --git a/src/js/methods.js b/src/js/methods.js
index <HASH>..<HASH> 100644
--- a/src/js/methods.js
+++ b/src/js/methods.js
@@ -494,7 +494,7 @@ export default {
* @return {Object} data
*/
getContainerData() {
- return this.ready ? this.containerData : {};
+ return this.ready ? $.extend({}, this.cont... | fix: output clone to avoid side effect | fengyuanchen_cropperjs | train | js |
b2aed7cfe8ef122d43f224fc2dc0521fb0f269bb | diff --git a/src/performance/zoneService.js b/src/performance/zoneService.js
index <HASH>..<HASH> 100644
--- a/src/performance/zoneService.js
+++ b/src/performance/zoneService.js
@@ -9,7 +9,7 @@ var XMLHttpRequest_send = 'XMLHttpRequest.send'
var opbeatDataSymbol = patchUtils.opbeatSymbol('opbeatData')
-var testTr... | fix(ZoneService): Ignore some mouse events for now. | opbeat_opbeat-js-core | train | js |
ae915f5ab20c457d702ddccf100ef7f34e64b688 | diff --git a/tabula/wrapper.py b/tabula/wrapper.py
index <HASH>..<HASH> 100644
--- a/tabula/wrapper.py
+++ b/tabula/wrapper.py
@@ -488,17 +488,7 @@ def convert_into(
kwargs["output_path"] = output_path
kwargs["format"] = _extract_format_for_conversion(output_format)
- if java_options is None:
- ja... | refactor: use _build_java_options | chezou_tabula-py | train | py |
1ffc7d4780bb3853de9b74a57be4712f3a6ccfff | 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
@@ -472,7 +472,6 @@ export default Vue.extend({
return
}
- // below is meant for multiple mode onl... | fix(quasar): Do not filter after adding new value in QSelect is in single mode
close #<I> | quasarframework_quasar | train | js |
d3cc9a94a9b85f1190db952329928be08ec3bf6d | diff --git a/webapps/tasklist/src/main/webapp/app/common/header.js b/webapps/tasklist/src/main/webapp/app/common/header.js
index <HASH>..<HASH> 100644
--- a/webapps/tasklist/src/main/webapp/app/common/header.js
+++ b/webapps/tasklist/src/main/webapp/app/common/header.js
@@ -5,7 +5,8 @@ define(["angular"], function(angu... | feat(tasklist): show only latest process definition versions
- allow to start processes only for the latest version
closes CAM-<I> | camunda_camunda-bpm-platform | train | js |
13e8d5a776a4960bfbd9f1597621c922450bf068 | diff --git a/wikitextparser/_wikitext.py b/wikitextparser/_wikitext.py
index <HASH>..<HASH> 100644
--- a/wikitextparser/_wikitext.py
+++ b/wikitextparser/_wikitext.py
@@ -789,10 +789,10 @@ class WikiText:
The first section will always be the lead section, even if it is an
empty string.
- :par... | docs(get_sections): fix typo and improve | 5j9_wikitextparser | train | py |
9a1a56aa123fe429dd3d6bddd17542b0b0dcd77d | diff --git a/go/vt/vtgate/planbuilder/plan_test.go b/go/vt/vtgate/planbuilder/plan_test.go
index <HASH>..<HASH> 100644
--- a/go/vt/vtgate/planbuilder/plan_test.go
+++ b/go/vt/vtgate/planbuilder/plan_test.go
@@ -398,6 +398,7 @@ func TestWithDefaultKeyspaceFromFile(t *testing.T) {
tabletType: topodatapb.TabletType_PRI... | test: re-insert accidentally removed test case | vitessio_vitess | train | go |
0f353750f16b5befff243221e2c5e3c66376bcb0 | diff --git a/lib/classes/PluginManager.js b/lib/classes/PluginManager.js
index <HASH>..<HASH> 100644
--- a/lib/classes/PluginManager.js
+++ b/lib/classes/PluginManager.js
@@ -141,6 +141,7 @@ class PluginManager {
loadAllPlugins(servicePlugins) {
const EnterprisePlugin = this.resolveEnterprisePlugin();
+ is... | fix: Ensure detection of external plugins is multi instance safe | serverless_serverless | train | js |
674f069e9954def6be7bcdbed4f3dda79c25765d | diff --git a/src/vendor/pusher.js b/src/vendor/pusher.js
index <HASH>..<HASH> 100644
--- a/src/vendor/pusher.js
+++ b/src/vendor/pusher.js
@@ -81,7 +81,7 @@ const { isWindowDefined } = require('../utils/is-window-defined')
},
subscribeAll: function() {
- var channel;
+ var channelName;
for ... | fix: fix variable name in Pusher's `subscribeAll` (#<I>)
I hate vendor locks | uploadcare_uploadcare-widget | train | js |
312791a03d1c6db6fa728d100bc6f5c1bae85e74 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -27,6 +27,8 @@ var quitting = false
*/
function quitIfAlreadyRunning () {
if (!electron.app.requestSingleInstanceLock()) {
+ console.log('Patchwork is already running!')
+ console.log('Please close the existing ins... | fix: log when Patchwork is already running
Previously if you tried to start Patchwork from the command-line it
would just quit if there was already an instance of Patchwork running
somewhere. This adds some small debug output that should make it more
clear what's going on. | ssbc_patchwork | train | js |
4eb15d3a00cfc64837f9434e85363a1ee77d5da2 | diff --git a/src/lib/store/index.js b/src/lib/store/index.js
index <HASH>..<HASH> 100644
--- a/src/lib/store/index.js
+++ b/src/lib/store/index.js
@@ -7,7 +7,7 @@ import storage from 'redux-persist/lib/storage'
const config = {
storage,
key: 'cozy-bar',
- whitelist: ['locale', 'apps']
+ whitelist: ['locale']
... | feat: Disable redux-persist for apps 🚑
Temporary removing of this feature to avoid 'infinite fetching' state stored in localStorage | cozy_cozy-bar | train | js |
f6fab967ece506fc929995a5436150acad2b076c | diff --git a/magicalimport/__init__.py b/magicalimport/__init__.py
index <HASH>..<HASH> 100644
--- a/magicalimport/__init__.py
+++ b/magicalimport/__init__.py
@@ -28,7 +28,7 @@ def import_from_physical_path(path, as_=None, here=None):
try:
return _create_module(module_id, path)
except FileNotFoundErr... | fix: support py<I> | podhmo_magicalimport | train | py |
c050c760f2fc1993ff9dddecbef7b9d4f0e029a6 | diff --git a/ng-swagger-gen.js b/ng-swagger-gen.js
index <HASH>..<HASH> 100644
--- a/ng-swagger-gen.js
+++ b/ng-swagger-gen.js
@@ -821,6 +821,12 @@ function propertyType(property) {
allTypes: mergeTypes(...variants),
toString: () => variants.join(' | ')
};
+ } else if (!property.type && property.all... | feat: allOf process in responses
This fix cyclosproject/ng-swagger-gen#<I> | cyclosproject_ng-swagger-gen | train | js |
fb6a91c8fdf7e003472934e3b9cfa5c1a94fc395 | diff --git a/easytrader/__init__.py b/easytrader/__init__.py
index <HASH>..<HASH> 100644
--- a/easytrader/__init__.py
+++ b/easytrader/__init__.py
@@ -7,5 +7,5 @@ from .yjbtrader import YJBTrader
from .gftrader import GFTrader
from .joinquant_follower import JoinQuantFollower
-__version__ = '0.10.4'
+__version__ = ... | fix(rq): change ra amount to int type | shidenggui_easytrader | train | py,py |
bf58a8f912ee9232a0cea84e55f770ff229469b6 | diff --git a/build/tasks/update-version.js b/build/tasks/update-version.js
index <HASH>..<HASH> 100644
--- a/build/tasks/update-version.js
+++ b/build/tasks/update-version.js
@@ -28,10 +28,10 @@ shelljs.exec(`npm --no-git-tag-version version ${newVersion} --allow-same-versio
let packageJson = fs.readFileSync(packageJs... | fix(build): update-version script fails with double-digit version numbers | mcdcorp_opentest | train | js |
fe47063c3eb5fb9135335f4d4135346894a073bd | diff --git a/src/resources/views/profile/view.blade.php b/src/resources/views/profile/view.blade.php
index <HASH>..<HASH> 100644
--- a/src/resources/views/profile/view.blade.php
+++ b/src/resources/views/profile/view.blade.php
@@ -17,25 +17,6 @@
<legend>{{ trans('web::seat.user_interface') }}</legend>
- ... | fix: remove the old character drop-down from the profile
the main character drop-down is non longer in use since SeAT 4.
it has been replaced in favor of the change main character option in user menu. | eveseat_web | train | php |
5d375b7c8f6a6c05306296075f327eb9a6352cc3 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -105,6 +105,14 @@ const MysqlDriver = Base.extend({
constraint.push('UNSIGNED');
}
+ if (spec.characterSet) {
+ constraint.push(`CHARACTER SET ${spec.characterSet}`);
+ }
+
+ if (spec.collation) {
+... | feat: add character set and collation to col spec | db-migrate_mysql | train | js |
3e03e580eaa1af1d11924f0bb6539d8f510de846 | diff --git a/src/utils/write-images.js b/src/utils/write-images.js
index <HASH>..<HASH> 100644
--- a/src/utils/write-images.js
+++ b/src/utils/write-images.js
@@ -32,7 +32,7 @@ module.exports = function (opts) {
let rasterizeTask = svg2png(buffer, { width: width, height: height })
.then((pngBuffer) => {
... | style(write-images): Update to add missing semicolon | isleofcode_splicon | train | js |
e07925a8aedd5a324471082269815d0760ecfd51 | 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
@@ -125,6 +125,9 @@ export default class NativeImageRende... | fix(NativeImageRenderer): re-render when changing canvas size attr | Kitware_paraviewweb | train | js |
fd7e362cbf4ef06d6b7ea00fe9edae90631b165c | diff --git a/packages/xod-client-electron/src/app/subscribeIpc.js b/packages/xod-client-electron/src/app/subscribeIpc.js
index <HASH>..<HASH> 100644
--- a/packages/xod-client-electron/src/app/subscribeIpc.js
+++ b/packages/xod-client-electron/src/app/subscribeIpc.js
@@ -6,7 +6,17 @@ import { errorToPlainObject } from '... | fix(xod-client-electron): do not send data through IPC to the renderer if it was destroyed | xodio_xod | train | js |
6b4582a5a9e178844755608f2e0de0f3327de89f | diff --git a/Api/Repository/PostRepositoryInterface.php b/Api/Repository/PostRepositoryInterface.php
index <HASH>..<HASH> 100644
--- a/Api/Repository/PostRepositoryInterface.php
+++ b/Api/Repository/PostRepositoryInterface.php
@@ -21,19 +21,19 @@ interface PostRepositoryInterface
/**
* @param PostInterface $... | fix: Fixed issue with REST compatibility (The PostInterface class doesn't exist and the namespace must be specified) (#<I>) | mirasvit_module-blog | train | php |
e50b01e2765aeeb47b7a9f2e292f0ac37f1a0e61 | diff --git a/lib/draw/DefaultRenderer.js b/lib/draw/DefaultRenderer.js
index <HASH>..<HASH> 100644
--- a/lib/draw/DefaultRenderer.js
+++ b/lib/draw/DefaultRenderer.js
@@ -9,6 +9,9 @@ var renderUtil = require('../util/RenderUtil');
var componentsToPath = renderUtil.componentsToPath,
createLine = renderUtil.createL... | fix(draw): apply default renderer with minimum priority
This makes sure renderers do not need to provide a priority.
BREAKING CHANGE:
* Renderers must now be initialized _AND_ must inherit from diagram-
js/lib/draw/BaseRenderer and invoke BaseRenderer(eventBus) in their
constructors. | bpmn-io_diagram-js | train | js |
15437e408e75b595281567ff3e15b7dadede24b6 | diff --git a/test/k8sT/Bandwidth.go b/test/k8sT/Bandwidth.go
index <HASH>..<HASH> 100644
--- a/test/k8sT/Bandwidth.go
+++ b/test/k8sT/Bandwidth.go
@@ -44,8 +44,6 @@ var _ = Describe("K8sBandwidthTest", func() {
AfterAll(func() {
_ = kubectl.Delete(demoYAML)
ExpectAllPodsTerminated(kubectl)
-
- UninstallCiliumF... | test: Fix incorrect uninstall in K8sBandwidth
The statement to uninstall Cilium in K8sBandwidth/AfterAll doesn't match
the statements to install it, meaning we could try to disable Cilium
even though we never installed it. This commit fixes it. | cilium_cilium | train | go |
8624a484540c253dd3bcdedd4eca633d6ef3e063 | diff --git a/tests/core/test_error_preemption_handling.py b/tests/core/test_error_preemption_handling.py
index <HASH>..<HASH> 100644
--- a/tests/core/test_error_preemption_handling.py
+++ b/tests/core/test_error_preemption_handling.py
@@ -33,8 +33,7 @@ class TestErrorPreemptionHandling():
@classmethod
def t... | fix(test_error_preemption_handling): delete sms at the end of tests
otherwise the environment error will be thrown | DLR-RM_RAFCON | train | py |
2594687d99e1a46c78935f856c6263b54037927c | diff --git a/packages/orbit-components/src/primitives/TooltipPrimitive/index.js b/packages/orbit-components/src/primitives/TooltipPrimitive/index.js
index <HASH>..<HASH> 100644
--- a/packages/orbit-components/src/primitives/TooltipPrimitive/index.js
+++ b/packages/orbit-components/src/primitives/TooltipPrimitive/index.... | fix(Tooltip): only call `preventDefault` on mobile (#<I>)
Calling it aborts stuff like `change` event on chekcbox, so Checkbox
nested inside Tooltip doesn't work. This bug was introduced in #<I>,
this functionality was only supposed to exist on mobile. | kiwicom_orbit-components | train | js |
a1a12af475e335686913d1df2d13732cd5f21c94 | diff --git a/packages/cozy-konnector-libs/src/libs/saveBills.js b/packages/cozy-konnector-libs/src/libs/saveBills.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-konnector-libs/src/libs/saveBills.js
+++ b/packages/cozy-konnector-libs/src/libs/saveBills.js
@@ -66,11 +66,11 @@ module.exports = async (entries, fields, ... | fix: typo in saveBills | konnectors_libs | train | js |
18ee46a4ac48d5907ec2e5aac30b8b7483fd0875 | diff --git a/controller/deis/settings.py b/controller/deis/settings.py
index <HASH>..<HASH> 100644
--- a/controller/deis/settings.py
+++ b/controller/deis/settings.py
@@ -4,6 +4,8 @@ Django settings for the Deis project.
from __future__ import unicode_literals
import os.path
+import random
+import string
import sy... | fix(controller): allow multiple unit tests with random db name | deis_deis | train | py |
31585cd83c397e70ea437639f799a5baced74dcc | diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -34,9 +34,17 @@ it('should dispatch registered tasks', function(done){
}
});
-it('undefined tasks should not run', function(){
+it('undefined tasks should not run', function(done){
should.exist(gul... | test: improved test to prompt for not defined tasks, add another | stringparser_gulp-repl | train | js |
dd4de5e7475db74cf2be48f1cd2c30b43e8add8a | diff --git a/packages/node_modules/@webex/internal-plugin-ediscovery/src/ediscovery.js b/packages/node_modules/@webex/internal-plugin-ediscovery/src/ediscovery.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/internal-plugin-ediscovery/src/ediscovery.js
+++ b/packages/node_modules/@webex/internal-plugi... | fix(ediscovery): returning all content | webex_spark-js-sdk | train | js |
c8da9bbeaed2db421de74bb1e64c4636d9bba4de | diff --git a/src/directives/mwlDraggable.js b/src/directives/mwlDraggable.js
index <HASH>..<HASH> 100644
--- a/src/directives/mwlDraggable.js
+++ b/src/directives/mwlDraggable.js
@@ -28,6 +28,7 @@ angular
}
interact($element[0]).draggable({
+ autoScroll: true,
snap: snap,
onstart: functio... | fix(draggable): auto scroll the page when dragging events
Closes #<I> | mattlewis92_angular-bootstrap-calendar | train | js |
b115463a116f8f667d4add0dcc1f6af6e3f95d21 | diff --git a/test/async.js b/test/async.js
index <HASH>..<HASH> 100644
--- a/test/async.js
+++ b/test/async.js
@@ -165,15 +165,15 @@ test('should handle invalid pathname', async () => {
if (isWin) {
// assume the `o:\` drive doesn't exist on Windows
test('handles non-existent root', async () => {
- let path = 'o:... | chore: swap error code by node version | lukeed_mk-dirs | train | js |
a39eeda381a3d13c8d4d35d86f5331801e435b30 | diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go
index <HASH>..<HASH> 100644
--- a/pkg/features/kube_features.go
+++ b/pkg/features/kube_features.go
@@ -383,6 +383,7 @@ const (
// owner: @andyzhangx
// alpha: v1.15
+ // beta: v1.19
//
// Enables the Azure Disk in-tree driver to Azure... | feat: azure disk and azure file migration go beta
fix comments | kubernetes_kubernetes | train | go |
1ccda9ccf5b74f3ca2e44628d54508728c25076b | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -110,7 +110,7 @@ function Hook (modules, options, onrequire) {
// figure out if this is the main module file, or a file inside the module
let res
try {
- res = resolve.sync(moduleName, { bas... | refactor: use ES<I> Object Shorthand | elastic_require-in-the-middle | train | js |
577357ab8f8cdac70f5483312c7618c6e403fd26 | diff --git a/samples/system-test/spanner.test.js b/samples/system-test/spanner.test.js
index <HASH>..<HASH> 100644
--- a/samples/system-test/spanner.test.js
+++ b/samples/system-test/spanner.test.js
@@ -83,7 +83,7 @@ async function deleteStaleInstances() {
filter: `(labels.${LABEL}:true) OR (labels.cloud_spanner_s... | fix(sample-test): ensure instance is created before proceeding with tests (#<I>)
* fix(sample-test): ensure instance is created before proceeding with tests
* fix: fix the definition of old instance | googleapis_nodejs-spanner | train | js |
cadad262cee3dc0d43e3f288076479054a027c89 | diff --git a/packages/docs/src/util/date.js b/packages/docs/src/util/date.js
index <HASH>..<HASH> 100644
--- a/packages/docs/src/util/date.js
+++ b/packages/docs/src/util/date.js
@@ -1,5 +1,5 @@
import format from 'date-fns/format'
export function formatDate (date) {
- return format(date, 'MMMM d, yyyy')
+ return... | docs(Notifications): update date format | vuetifyjs_vuetify | train | js |
67a74c33e1b124d609bee65f82656e7bf5b09764 | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -43,7 +43,7 @@ module.exports = {
__dirname: true,
process: true,
path: 'empty',
- Buffer: false,
+ Buffer: true,
zlib: 'empty',
},
optimization: { | fix(Webpack): add Buffer polyfill in browser (#<I>) | discordjs_discord.js | train | js |
3fbaf7381ae6d671f0debc35ba9bcb9042994949 | diff --git a/src/pivotal-ui-react/grids/grids.js b/src/pivotal-ui-react/grids/grids.js
index <HASH>..<HASH> 100644
--- a/src/pivotal-ui-react/grids/grids.js
+++ b/src/pivotal-ui-react/grids/grids.js
@@ -103,6 +103,7 @@ Require the subcomponent:
```
var Row = require('pui-react-grids').Row;
+var Col = require('pui-r... | chore(styleguide): Fix docs of requires for search-input and grids
[Finishes #<I>] | pivotal-cf_pivotal-ui | train | js,js |
c84afade35c4b8a0de6b6e9ce900276169a66375 | diff --git a/dsl/pact.go b/dsl/pact.go
index <HASH>..<HASH> 100644
--- a/dsl/pact.go
+++ b/dsl/pact.go
@@ -86,8 +86,8 @@ func (p *Pact) Setup() *Pact {
if p.Server == nil {
args := []string{
fmt.Sprintf("--pact-specification-version %d", p.SpecificationVersion),
- fmt.Sprintf("--pact-dir %s", p.PactDir),
- ... | fix(windows): make log/pact output paths os-specific #9 | pact-foundation_pact-go | train | go |
4ae501284ee6e86824ff14707e83a4d9f39ac7e8 | diff --git a/styleguide/docs/react/iconography.js b/styleguide/docs/react/iconography.js
index <HASH>..<HASH> 100644
--- a/styleguide/docs/react/iconography.js
+++ b/styleguide/docs/react/iconography.js
@@ -7,10 +7,15 @@ categories:
- react_all
---
+***This component is limited to projects that use Webpack.***
+**... | chore(styleguide): Tweak SVG and Iconography docs | pivotal-cf_pivotal-ui | train | js,js |
0a743f044c9c22ccd2ceab410ba1aa94dd99ae1c | diff --git a/google-cloud-monitoring-v3/synth.py b/google-cloud-monitoring-v3/synth.py
index <HASH>..<HASH> 100644
--- a/google-cloud-monitoring-v3/synth.py
+++ b/google-cloud-monitoring-v3/synth.py
@@ -37,3 +37,16 @@ library = gapic.ruby_library(
)
s.copy(library, merge=ruby.global_merge)
+
+# Temporary: Remove do... | chore(monitoring-v3): Hack synth file to remove dead links in docs for an obsolete proto | googleapis_google-cloud-ruby | train | py |
50d5dd3e708a92602e04d6b4aa0822ad3f110a78 | diff --git a/pgjdbc/src/main/java/org/postgresql/Driver.java b/pgjdbc/src/main/java/org/postgresql/Driver.java
index <HASH>..<HASH> 100644
--- a/pgjdbc/src/main/java/org/postgresql/Driver.java
+++ b/pgjdbc/src/main/java/org/postgresql/Driver.java
@@ -7,6 +7,7 @@ package org.postgresql;
import org.postgresql.jdbc.PgC... | fix: reintroduce Driver.getVersion for backward compatibility reasons (#<I>)
The method was removed in <URL> | pgjdbc_pgjdbc | train | java |
7901bf72d588975000415bec4415082e9729326b | diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -9,7 +9,7 @@ module.exports = function (config) {
frameworks : ['jspm', 'jasmine'],
jspm : {
// Edit this to your needs
- loadFiles: ['src/**/*.js', 'test/setup.j... | chore(karma): ensure test/setup.js is loaded first for the polyfill | SpoonX_aurelia-api | train | js |
350dba11a39fd6534fdaa27909515f52ffc1b738 | diff --git a/test-app/app/src/debug/java/com/tns/NativeScriptSyncService.java b/test-app/app/src/debug/java/com/tns/NativeScriptSyncService.java
index <HASH>..<HASH> 100644
--- a/test-app/app/src/debug/java/com/tns/NativeScriptSyncService.java
+++ b/test-app/app/src/debug/java/com/tns/NativeScriptSyncService.java
@@ -3... | refactor(livesync): close socket when application process is killed | NativeScript_android-runtime | train | java |
8ee51b0f10288dd2a24d8b7ec34d57760ff26874 | diff --git a/spec/operators/distinct-spec.js b/spec/operators/distinct-spec.js
index <HASH>..<HASH> 100644
--- a/spec/operators/distinct-spec.js
+++ b/spec/operators/distinct-spec.js
@@ -196,6 +196,21 @@ describe('Observable.prototype.distinct()', function () {
expectSubscriptions(e2.subscriptions).toBe(e2subs);
... | test(distinct): add additional test coverage | ReactiveX_rxjs | train | js |
7d7fc5a67c7d89ee50107de6e333f6d503d25732 | diff --git a/lib/markdownit-directive.js b/lib/markdownit-directive.js
index <HASH>..<HASH> 100644
--- a/lib/markdownit-directive.js
+++ b/lib/markdownit-directive.js
@@ -1,5 +1,6 @@
/**global angular,markdownit */
(function(factory) {
+ /* istanbul ignore if */
if (typeof module === 'object' && typeof module.exp... | test: ignore common-js detection in test coverage | macedigital_angular-markdown-it | train | js |
47d42dddf63dfb6108e5ef9eb1b04ea7ffc05680 | diff --git a/src/components/local-store-provider/local-store-provider.js b/src/components/local-store-provider/local-store-provider.js
index <HASH>..<HASH> 100644
--- a/src/components/local-store-provider/local-store-provider.js
+++ b/src/components/local-store-provider/local-store-provider.js
@@ -109,7 +109,7 @@ expor... | refactor: currentProjectExpired -> projectExpired | commercetools_merchant-center-application-kit | train | js,js |
c6bbf4c7ff2420529c884aa739225cdff6e011fb | diff --git a/.size-limit.js b/.size-limit.js
index <HASH>..<HASH> 100644
--- a/.size-limit.js
+++ b/.size-limit.js
@@ -18,6 +18,12 @@ module.exports = [
limit: '100 KB',
},
{
+ name: '@sentry/nextjs Client - Webpack',
+ path: 'packages/nextjs/esm/index.client.js',
+ import: '{ init }',
+ limit: '... | ci: Add nextjs client to size limit check (#<I>) | getsentry_sentry-javascript | train | js |
36d95a5522d9dea448e43de2bd5aac72fd013de0 | diff --git a/src/Models/PlanetaryInteraction/CorporationCustomsOffice.php b/src/Models/PlanetaryInteraction/CorporationCustomsOffice.php
index <HASH>..<HASH> 100644
--- a/src/Models/PlanetaryInteraction/CorporationCustomsOffice.php
+++ b/src/Models/PlanetaryInteraction/CorporationCustomsOffice.php
@@ -48,22 +48,6 @@ cl... | fix(jobs): do not cast start/end reinforcement from pocos
reinforce_exit_start and reinforce_exit_end properties from Customs Offices have been cast from integer to date - which prevent data to be stored into the database. | eveseat_eveapi | train | php |
7a60f324e625956a7b09befd51b5e45d79e9dae5 | diff --git a/actions/class.PropertiesAuthoring.php b/actions/class.PropertiesAuthoring.php
index <HASH>..<HASH> 100644
--- a/actions/class.PropertiesAuthoring.php
+++ b/actions/class.PropertiesAuthoring.php
@@ -618,6 +618,6 @@ class tao_actions_PropertiesAuthoring extends tao_actions_CommonModule
private functio... | refactor: make PropertyChangedValidator extend configurable service | oat-sa_tao-core | train | php,php |
767524912381e36c657b73ebdaf3378cfabd16c9 | diff --git a/test.js b/test.js
index <HASH>..<HASH> 100755
--- a/test.js
+++ b/test.js
@@ -1,4 +1,4 @@
-import rateLimiter from '.'
+import rateLimit from '.'
import test from 'ava'
const mockCount = 5
@@ -7,8 +7,8 @@ const mockRequests = 15
const epsilonMs = 20
const expectedCycles = Math.max(0, Math.ceil(mock... | fix(test): rename rateLimiter to rateLimit local variable for clarity | dbkaplun_rate-limit-promise | train | js |
128a52c3230516ce62b5663f532b5642bfa2fd1e | diff --git a/go/test/endtoend/reparent/utils/utils.go b/go/test/endtoend/reparent/utils/utils.go
index <HASH>..<HASH> 100644
--- a/go/test/endtoend/reparent/utils/utils.go
+++ b/go/test/endtoend/reparent/utils/utils.go
@@ -309,7 +309,10 @@ func ErsIgnoreTablet(clusterInstance *cluster.LocalProcessCluster, tab *cluster.... | test: only add the durability flag to vtctl if major version exceeds <I> | vitessio_vitess | train | go |
e3fe87bd932ce585c0342a70c2a37b50f36d3b4d | diff --git a/src/Version/ListVersionsListener.php b/src/Version/ListVersionsListener.php
index <HASH>..<HASH> 100644
--- a/src/Version/ListVersionsListener.php
+++ b/src/Version/ListVersionsListener.php
@@ -20,8 +20,13 @@ class ListVersionsListener
$output = $event->output();
$output->writeln('<info... | fix: version:list changelogFile access
- Access the changelog file via the config composed in the event, not
directly.
- Format the release lines so release dates line up, using tabs. | phly_keep-a-changelog | train | php |
eeddf9f518612f6f7ef805eb3ed9b13fb3036114 | diff --git a/lib/Serverless.js b/lib/Serverless.js
index <HASH>..<HASH> 100644
--- a/lib/Serverless.js
+++ b/lib/Serverless.js
@@ -249,6 +249,7 @@ class Serverless {
configuration: this.configurationInput,
isConfigurationResolved: this.isConfigurationInputResolved,
hasResolvedCommandsExternally: th... | fix(Telemetry): If global & local report outcome, report with global | serverless_serverless | train | js |
720310d3840f3b5914dd017d237adef5b4268d6e | diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/dmn/businessruletask/DmnBusinessRuleTaskTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/dmn/businessruletask/DmnBusinessRuleTaskTest.java
index <HASH>..<HASH> 100644
--- a/engine/src/test/java/org/camunda/bpm/engine/test/dmn/businessruletask/Dmn... | chore(engine): update decision result wording in comment | camunda_camunda-bpm-platform | train | java |
f0e3bb4fb6f4d90ede2885e8964f4517baeeab5f | diff --git a/nativescript/webpack.common.js b/nativescript/webpack.common.js
index <HASH>..<HASH> 100644
--- a/nativescript/webpack.common.js
+++ b/nativescript/webpack.common.js
@@ -48,7 +48,7 @@ module.exports = function (platform, destinationApp) {
// Angular AOT compiler
new AotPlugin({
... | chore: {N} webpack wip | NathanWalker_angular-seed-advanced | train | js |
ba7c72e2686c01b49a150dabe77fafd8f1b9c754 | diff --git a/src/Commands/New/steps/on-board-user.js b/src/Commands/New/steps/on-board-user.js
index <HASH>..<HASH> 100644
--- a/src/Commands/New/steps/on-board-user.js
+++ b/src/Commands/New/steps/on-board-user.js
@@ -26,7 +26,7 @@ module.exports = function (appName, chalk) {
const message = `${chalk.dim('Applicati... | refactor(command): update new command post install help
the post install help shows a command to run the server, added --dev flag to it | adonisjs_adonis-cli | train | js |
9213736dcd84834497aa9de212b4a795aaa67853 | diff --git a/src/Models/Corporation/CorporationStructureService.php b/src/Models/Corporation/CorporationStructureService.php
index <HASH>..<HASH> 100644
--- a/src/Models/Corporation/CorporationStructureService.php
+++ b/src/Models/Corporation/CorporationStructureService.php
@@ -41,5 +41,5 @@ class CorporationStructureS... | fix: remove corporation_id field from primary key | eveseat_eveapi | train | php |
06de9ad3ec4acb76aa4d64655eacba3aa7285abd | diff --git a/packages/gatsby-transformer-mdx/utils/remark-mdx-defaults.js b/packages/gatsby-transformer-mdx/utils/remark-mdx-defaults.js
index <HASH>..<HASH> 100644
--- a/packages/gatsby-transformer-mdx/utils/remark-mdx-defaults.js
+++ b/packages/gatsby-transformer-mdx/utils/remark-mdx-defaults.js
@@ -4,7 +4,7 @@ const... | fix: use relative path for default layout component
fix the relative layout resolving logic | buz-zard_gatsby-mdx | train | js |
8589ab27a4e879f5fb1c8430be9b23d9a7f496f6 | diff --git a/script/strip-binaries.py b/script/strip-binaries.py
index <HASH>..<HASH> 100755
--- a/script/strip-binaries.py
+++ b/script/strip-binaries.py
@@ -8,6 +8,7 @@ from lib.util import execute, get_out_dir
LINUX_BINARIES_TO_STRIP = [
'electron',
+ 'chrome_sandbox',
'libffmpeg.so',
'libGLESv2.so',
... | fix: strip chrome_sandbox executable (#<I>) | electron_electron | train | py |
ac1a2076310e8bbad16eba5abeffa02f027aefd0 | diff --git a/master/buildbot/test/util/db.py b/master/buildbot/test/util/db.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/test/util/db.py
+++ b/master/buildbot/test/util/db.py
@@ -213,6 +213,7 @@ class RealDatabaseMixin:
def tearDownRealDatabase(self):
if self.__want_pool:
yield self.d... | test: Shutdown the DB pool when tearing down the DB
The pool may have events in flight which may break the tests that
follow. | buildbot_buildbot | train | py |
2eb700e4d05a3320e503b8b96e44e06383021bbd | diff --git a/website/builder/pages/docs/navigationMobile.js b/website/builder/pages/docs/navigationMobile.js
index <HASH>..<HASH> 100644
--- a/website/builder/pages/docs/navigationMobile.js
+++ b/website/builder/pages/docs/navigationMobile.js
@@ -19,7 +19,7 @@ function Navigation (props) {
return (
<div id='n... | fix(website): correct lint error | cerebral_cerebral | train | js |
0418a47148f4f2562099cc6eb55ca7040ecaad27 | diff --git a/src/utils/types.js b/src/utils/types.js
index <HASH>..<HASH> 100644
--- a/src/utils/types.js
+++ b/src/utils/types.js
@@ -1,3 +1,5 @@
+import Vue from 'vue';
+
export function isString(obj) {
return Object.prototype.toString.call(obj) === '[object String]';
}
@@ -10,11 +12,25 @@ export function isHtml... | fix: update isFunction (#<I>) | ElemeFE_element | train | js |
e68ed4b050df519434f9549a8f3998bdea7a5696 | diff --git a/lib/util/http-mgr.js b/lib/util/http-mgr.js
index <HASH>..<HASH> 100644
--- a/lib/util/http-mgr.js
+++ b/lib/util/http-mgr.js
@@ -14,7 +14,6 @@ var MIN_INTERVAL = 1000 * 10;
var EEXCEED = 'EEXCEED';
var queue = [];
var queueTimer;
-var pending;
function getInterval() {
var len = Object.keys(cache)... | refactor: http-mgr | avwo_whistle | train | js |
b2166abb57a455e73e44a8e17817b911481398b2 | diff --git a/bin/run-tests.js b/bin/run-tests.js
index <HASH>..<HASH> 100755
--- a/bin/run-tests.js
+++ b/bin/run-tests.js
@@ -1,5 +1,6 @@
#!/usr/bin/env node
+const { resolve: pathResolve } = require('path')
const { readdirSync } = require('fs')
const { spawn } = require('tap')
@@ -13,7 +14,7 @@ spawn(
}
)
... | fix: make `readdirSync` look for `openapi` folder relative to current path, part 2 | octokit_routes | train | js |
a05ff4e2f6d7e22ba8b9d62eafcbe4534051b8e3 | diff --git a/src/js/colorpicker-component.js b/src/js/colorpicker-component.js
index <HASH>..<HASH> 100644
--- a/src/js/colorpicker-component.js
+++ b/src/js/colorpicker-component.js
@@ -228,6 +228,7 @@ Colorpicker.prototype = {
val = val || this.color.toString(this.format, false);
if (this.input !== false) {... | fix: Trigger change event on textbox when color picked (#<I>) | farbelous_bootstrap-colorpicker | train | js |
35c9cab976d9debacbc562f23c9264bedec9b495 | diff --git a/ommprotocol/md.py b/ommprotocol/md.py
index <HASH>..<HASH> 100644
--- a/ommprotocol/md.py
+++ b/ommprotocol/md.py
@@ -264,8 +264,9 @@ class Stage(object):
status = '#{}'.format(self._stage_number[0])
if self.total_stages is not None:
status += '/{}'.format(self.to... | fix: temperature and NPT/NVT should only be reported if steps>0 | insilichem_ommprotocol | train | py |
5a0da2eb2e04148b137b4b733e4671da64bec6a8 | diff --git a/packages/cli/createTsLib.js b/packages/cli/createTsLib.js
index <HASH>..<HASH> 100644
--- a/packages/cli/createTsLib.js
+++ b/packages/cli/createTsLib.js
@@ -99,7 +99,12 @@ async function run(root, appName, originalDirectory) {
console.log(e);
}
}
- fs.copySync(templatePath, root, { derefer... | fix: Filters out node_module when copying template (only for dev since the npm package does not contains the node_modules) | nobrainr_typescript-webpack-starter | train | js |
b01c18f0cf83d26fe1c2abb81966df4b2175adad | diff --git a/lib/liquid/tags/render.js b/lib/liquid/tags/render.js
index <HASH>..<HASH> 100644
--- a/lib/liquid/tags/render.js
+++ b/lib/liquid/tags/render.js
@@ -74,6 +74,7 @@ module.exports = class Render extends Liquid.Tag {
async renderAll (subTemplate, variables) {
const renders = []
const value = var... | fix: Don't throw an error if `render` for tries to render a falsy value (#<I>)
* Add a failing test
* Pass that test | liquid-lang_liquid-node | train | js,js |
c47c4a9da50490e95908aa5e1386be1bac58d269 | diff --git a/js/binance.js b/js/binance.js
index <HASH>..<HASH> 100644
--- a/js/binance.js
+++ b/js/binance.js
@@ -49,6 +49,7 @@ module.exports = class binance extends Exchange {
'fetchOrder': true,
'fetchOrderBook': true,
'fetchOrders': true,
+ 'fetchOr... | feat(binance): add fetchOrderTrades for spot | ccxt_ccxt | train | js |
be588aa379b42bde9637d83433d7d596dcfff43c | diff --git a/lib/bson/timestamp.js b/lib/bson/timestamp.js
index <HASH>..<HASH> 100644
--- a/lib/bson/timestamp.js
+++ b/lib/bson/timestamp.js
@@ -3,8 +3,8 @@
function toExtendedJSON(obj) {
return {
$timestamp: {
- t: obj.high_,
- i: obj.low_
+ t: obj.high,
+ i: obj.low
}
};
} | feat(timestamp): the Timestamp type now extends Long
We now outright extend the `Long` type for this type, so the
internal field names have changed slightly | mongodb-js_mongodb-extjson | train | js |
5ca5306738576aa8eeed4f2bde519b044259d645 | diff --git a/natural-language-understanding/src/main/java/com/ibm/watson/natural_language_understanding/v1/model/CategoriesOptions.java b/natural-language-understanding/src/main/java/com/ibm/watson/natural_language_understanding/v1/model/CategoriesOptions.java
index <HASH>..<HASH> 100644
--- a/natural-language-understa... | chore(natural-language-understanding-v1): post-gen manual change | watson-developer-cloud_java-sdk | train | java |
7524b091ea2bce6838dd7f7d8ac07148a62d8c31 | diff --git a/src/util/decode-html-entity.js b/src/util/decode-html-entity.js
index <HASH>..<HASH> 100644
--- a/src/util/decode-html-entity.js
+++ b/src/util/decode-html-entity.js
@@ -10,7 +10,7 @@
var ENTITY_DECODE_MAP = {
lt: '<',
gt: '>',
- nbsp: ' ',
+ nbsp: '\u00a0',
quot: '\"',
emsp: '\u... | fix: map to u<I>a0 | baidu_san | train | js |
0d1f95ace793862fc24614e85aaba03ac0af95f9 | diff --git a/lib/config.js b/lib/config.js
index <HASH>..<HASH> 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -519,7 +519,7 @@ exports.extend = function(newConf) {
config.timeout = +newConf.timeout;
}
if (config.strict) {
- config.timeout = Math.min(1000 * 60 * 3, config.timeout);
+ confi... | refactor: timeout 3m -> 6m | avwo_whistle | train | js |
3e08edf50ea041703dc24e402ffc06e9a7614f25 | diff --git a/src/components/MultiSelect/FilterableMultiSelect.js b/src/components/MultiSelect/FilterableMultiSelect.js
index <HASH>..<HASH> 100644
--- a/src/components/MultiSelect/FilterableMultiSelect.js
+++ b/src/components/MultiSelect/FilterableMultiSelect.js
@@ -297,6 +297,7 @@ export default class FilterableMultiS... | fix(MultiSelect): apply tWI to selection (#<I>)
Fixes #<I>. | carbon-design-system_carbon-components-react | train | js |
a1fe5778d336eb087720093b6903da6af109fbc7 | diff --git a/installer/pyinstaller/hook-samcli.py b/installer/pyinstaller/hook-samcli.py
index <HASH>..<HASH> 100644
--- a/installer/pyinstaller/hook-samcli.py
+++ b/installer/pyinstaller/hook-samcli.py
@@ -17,6 +17,7 @@ hiddenimports = [
# since pyInstaller 4.0.
"pkg_resources.py2_warn",
"aws_lambda_bui... | fix: Add configparser to PyInstaller hiddenimports to resolve dependency issue from botocore (#<I>) | awslabs_aws-sam-cli | train | py |
5b7b101a8ad743879cfa10a8f286bd38f3a6df71 | diff --git a/controllers/FrontController.php b/controllers/FrontController.php
index <HASH>..<HASH> 100644
--- a/controllers/FrontController.php
+++ b/controllers/FrontController.php
@@ -473,15 +473,15 @@ class FrontController
}
$webpageUrl = $request->getQueryParam('url');
- return $response... | refactor(FrontController): We don't need to set the filename twice | Rudloff_alltube | train | php |
4498a463425f60ed321d4089e29abd6bb81ffb54 | diff --git a/src/base/error_mixin.js b/src/base/error_mixin.js
index <HASH>..<HASH> 100644
--- a/src/base/error_mixin.js
+++ b/src/base/error_mixin.js
@@ -9,7 +9,7 @@ const ErrorMixin = {
* @return {Object} Object with formatted error data including origin and scope
*/
createError(error) {
- const scope =... | refactor(error_mixin): set scope as empty string when type is not defined | clappr_clappr | train | js |
d88f139d9dafe2d8dbc250a9080bb5efa5d8c077 | diff --git a/src/View/Helper/FormHelper.php b/src/View/Helper/FormHelper.php
index <HASH>..<HASH> 100644
--- a/src/View/Helper/FormHelper.php
+++ b/src/View/Helper/FormHelper.php
@@ -63,7 +63,7 @@ class FormHelper extends CakeFormHelper {
return $this->widget('button', $options);
}
- public function ... | chore: NULL -> null | maiconpinto_cakephp-adminlte-theme | train | php |
6197b6e3f07fca1f80af7e99664062d0a2f0804e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
from __future__ import absolute_import
-from setuptools import setup, Command, find_packages
+from setuptools import setup, Command
import glob
import os.path
@@ -109,7 +109,7 @@ setup(name=PACKAGE,
li... | fix: explicitely list packages to avoid tests is included accidentally | ssato_python-anyconfig | train | py |
637f8575352c3e34c25f851f16597f5284cdbcc7 | diff --git a/src/DataBuilder.php b/src/DataBuilder.php
index <HASH>..<HASH> 100644
--- a/src/DataBuilder.php
+++ b/src/DataBuilder.php
@@ -631,7 +631,7 @@ class DataBuilder implements DataBuilderInterface
$postData = array();
$body = $request->getBody();
if ($body !== null) {
- ... | fix: only parse body if its non-null | rollbar_rollbar-php | train | php |
170e6c6b25b0f3375ebf409651e38874b1199d2e | diff --git a/pipeline/s3/s3.go b/pipeline/s3/s3.go
index <HASH>..<HASH> 100644
--- a/pipeline/s3/s3.go
+++ b/pipeline/s3/s3.go
@@ -64,10 +64,12 @@ func upload(ctx *context.Context, conf config.S3) error {
awsConfig.Endpoint = aws.String(conf.Endpoint)
awsConfig.S3ForcePathStyle = aws.Bool(true)
}
- // TODO: add... | feat: s3: credentials from env as well (#<I>)
closes #<I>
uses the chained credential provider to get either from the config file or from env. | goreleaser_goreleaser | train | go |
d7b005cb82c86299245fd88793318bd6784d8cc3 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,17 +1,9 @@
-/*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
-*/
const path = require('path');
const loaderUtils = require('loader-utils');
module.exp... | refactor(index): remove outdated loader caching mechanism (`webpack >= <I>`) | webpack-contrib_mocha-loader | train | js |
d39ed44c238772d7df63b417008e30b11c6adaaf | diff --git a/webpack.dist.babel.js b/webpack.dist.babel.js
index <HASH>..<HASH> 100644
--- a/webpack.dist.babel.js
+++ b/webpack.dist.babel.js
@@ -1,6 +1,6 @@
import Path from 'path'
import Webpack from 'webpack'
-import ExtractTextPlugin from 'extract-text-webpack-plugin';
+import ExtractTextPlugin from 'extract-tex... | refactor: remove a semicolon | skipjack_react-banner | train | js |
86d7f1fdaa36432f6564309925690ec20bb2981e | diff --git a/src/util/path.js b/src/util/path.js
index <HASH>..<HASH> 100644
--- a/src/util/path.js
+++ b/src/util/path.js
@@ -70,5 +70,5 @@ export function parsePath (path: string): {
}
export function cleanPath (path: string): string {
- return path.replace(/\/+/g, '/')
+ return path.replace(/\/(?:\s*\/)+/g, '/... | fix: remove whitespace between mulitple slashes
Close #<I> | vuejs_vue-router | train | js |
f7f4e84217642d74bc9fade0e05e3a8f4e2fd916 | diff --git a/packages/components/bolt-button/__tests__/button.js b/packages/components/bolt-button/__tests__/button.js
index <HASH>..<HASH> 100644
--- a/packages/components/bolt-button/__tests__/button.js
+++ b/packages/components/bolt-button/__tests__/button.js
@@ -80,6 +80,7 @@ describe('button', () => {
text:... | test: check for 'disabled' and 'aria-disabled' attributes specifically | bolt-design-system_bolt | train | js |
6fca016392bfd884e8b450ea7f6d2e54634f1fe7 | diff --git a/src/Leevel/Database/Ddd/Relation/Relation.php b/src/Leevel/Database/Ddd/Relation/Relation.php
index <HASH>..<HASH> 100644
--- a/src/Leevel/Database/Ddd/Relation/Relation.php
+++ b/src/Leevel/Database/Ddd/Relation/Relation.php
@@ -244,12 +244,8 @@ abstract class Relation
$this->sourceEntity = $sour... | fix(relation): fix scope of relation | hunzhiwange_framework | train | php |
e2c449822c15bb840185438d0d64c67df849891f | diff --git a/Gruntfile.circle.js b/Gruntfile.circle.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.circle.js
+++ b/Gruntfile.circle.js
@@ -14,7 +14,9 @@ module.exports = function gruntConfig(grunt) {
grunt.registerTask(`coverage`, [
`makeReport2:all`,
- `coveralls:all`,
+ // Disable coveralls for now; i... | chore(tooling): disable coveralls reporting due to broken aggregation | webex_spark-js-sdk | train | js |
81d5bfc66c8c1fd679255d1cd5c41caac48f4f3e | 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
@@ -568,7 +568,9 @@ var initConnectReq = function(req, res) {
'\r\n',
body
].join('\r\n');
- res.write(resCtn, cb);
+ res.write(resC... | refactor: enable tunnel proxy is connected | avwo_whistle | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.