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 |
|---|---|---|---|---|---|
ab3dd21ce7b2dcc2e7a4861d4554e63bd1d64494 | diff --git a/lib/steps/release-info.js b/lib/steps/release-info.js
index <HASH>..<HASH> 100644
--- a/lib/steps/release-info.js
+++ b/lib/steps/release-info.js
@@ -101,6 +101,7 @@ function determineReleaseInfo(commits, acceptInvalidCommits) {
case 'refactor':
case 'style':
case 'test':
+ case '... | fix: properly accept `perf` commit prefix as patch | groupon_nlm | train | js |
c9aff0ac92c3aea78645e10787d52df8b1d0777d | diff --git a/site/component/utils.js b/site/component/utils.js
index <HASH>..<HASH> 100644
--- a/site/component/utils.js
+++ b/site/component/utils.js
@@ -5,6 +5,10 @@ import { Menu } from '../../';
export function objectToComponent(object, index) {
if (object === null) return;
+ if (typeof object === 'string') ... | fix: should support nested list | ant-design_ant-design | train | js |
cb9171fffb41b97ec4a0f6a313436364faa6b213 | diff --git a/packages/components/bolt-form/src/form.js b/packages/components/bolt-form/src/form.js
index <HASH>..<HASH> 100644
--- a/packages/components/bolt-form/src/form.js
+++ b/packages/components/bolt-form/src/form.js
@@ -29,7 +29,17 @@ for (let i = 0, len = inputs.length; i < len; i++) {
}
};
- input.o... | fix: Prevent error display when form blur is triggered by js (BDS-<I>) | bolt-design-system_bolt | train | js |
aa56c049b4a0924e5263a6bdf5f199e5b7cbe0a5 | diff --git a/lib/datasource/npm.js b/lib/datasource/npm.js
index <HASH>..<HASH> 100644
--- a/lib/datasource/npm.js
+++ b/lib/datasource/npm.js
@@ -136,7 +136,8 @@ async function getDependency(name, retries = 5) {
return null;
}
if (err.statusCode === 404) {
- logger.info({ err, name }, `Dependency... | chore: remove err from dep not found info log | renovatebot_renovate | train | js |
8a6139094cf4aafcaca79deafb4e8d22b7b5b59e | diff --git a/source/rafcon/gui/utils/notification_overview.py b/source/rafcon/gui/utils/notification_overview.py
index <HASH>..<HASH> 100644
--- a/source/rafcon/gui/utils/notification_overview.py
+++ b/source/rafcon/gui/utils/notification_overview.py
@@ -119,6 +119,17 @@ class NotificationOverview(dict):
info_... | feat(notification_info): add method get_cause()
The cause can either by a method_name or the action of a ActionSignalMsg
Both were appended to the NotificationInfo.method_name list! | DLR-RM_RAFCON | train | py |
73573c06ce93e481f5bb0f9803e540edaa931f6c | diff --git a/src/rsql.js b/src/rsql.js
index <HASH>..<HASH> 100644
--- a/src/rsql.js
+++ b/src/rsql.js
@@ -71,6 +71,3 @@ function getRsqlFromComplexConstraint (constraint) {
const rsqlParts = constraint.operands.map(child => getChildRsql(constraint.operator, child))
return rsqlParts.join(operator)
}
-export defa... | refactor: Only publish named exports | molgenis_molgenis-js-rsql | train | js |
940c7f397efa5418d82e26ab64d8138f0791005e | diff --git a/task.js b/task.js
index <HASH>..<HASH> 100644
--- a/task.js
+++ b/task.js
@@ -62,6 +62,8 @@ module.exports = function(gulp, projectConfig, tasks) {
.pipe(gulp.dest(projectConfig.paths.dest[TASK_NAME]));
})
+ scriptTasks.push(bundleTaskName);
+
if(includeLintTask) {
gulp.task(lintTaskName,... | fix: Setting lintFiles to false stopping bundle tasks being part of gulp scripts | cartridge_cartridge-javascript | train | js |
ac7878d7400802e13ad8f943db25722aa6cbe622 | diff --git a/spec/integration_spec.rb b/spec/integration_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration_spec.rb
+++ b/spec/integration_spec.rb
@@ -21,6 +21,9 @@ ActiveRecord::Schema.define do
t.string :tags
t.text :description
end
+ create_table :companies do |t|
+ t.string :name
+ end
en... | test: product search should return only products | kidpollo_tanker | train | rb |
010b0acbe27e7925e293fcd10cac6f30cae5463b | diff --git a/src/Auditable.php b/src/Auditable.php
index <HASH>..<HASH> 100644
--- a/src/Auditable.php
+++ b/src/Auditable.php
@@ -216,7 +216,6 @@ trait Auditable
'url' => $this->resolveUrl(),
'ip_address' => $this->resolveIpAddress(),
'user_agent' => $this->res... | fix(Auditable): no need to explicitly set the created_at value | owen-it_laravel-auditing | train | php |
e82d9903df66754df45ec24d13c2a97be41688af | diff --git a/src/config/bundleIdentifiers.js b/src/config/bundleIdentifiers.js
index <HASH>..<HASH> 100644
--- a/src/config/bundleIdentifiers.js
+++ b/src/config/bundleIdentifiers.js
@@ -24,8 +24,12 @@ export function bundleIdentifiers(currentAppName, newName, projectName, currentB
paths: [`${newBundlePath}/Main... | fix(naming): Prevent inappropriate package name update | junedomingo_react-native-rename | train | js |
65f6c9f524e672b8b5718bc9ed234a4ea021634e | diff --git a/twilio/base/obsolete.py b/twilio/base/obsolete.py
index <HASH>..<HASH> 100644
--- a/twilio/base/obsolete.py
+++ b/twilio/base/obsolete.py
@@ -2,7 +2,7 @@ import warnings
import functools
-class ObsoleteException(BaseException):
+class ObsoleteException(Exception):
""" Base class for warnings abou... | fix: Change ObsoleteException to inherit from Exception instead of BaseException (#<I>) | twilio_twilio-python | train | py |
b46a95a9e2b87d86ffcf030ee2adb3da996342ac | diff --git a/lib/datasource/npm.js b/lib/datasource/npm.js
index <HASH>..<HASH> 100644
--- a/lib/datasource/npm.js
+++ b/lib/datasource/npm.js
@@ -40,9 +40,9 @@ function maskToken(token) {
if (!token) {
return token;
}
- return `${token.substring(0, 2)}${new Array(token.length - 3).join(
+ return `${token.... | refactor: debug log npm token for each lookup | renovatebot_renovate | train | js |
dc0e4237ee6f431a9be56f9c8c96ad72e9d557d3 | diff --git a/GEOparse/GEOTypes.py b/GEOparse/GEOTypes.py
index <HASH>..<HASH> 100755
--- a/GEOparse/GEOTypes.py
+++ b/GEOparse/GEOTypes.py
@@ -406,9 +406,9 @@ class GSM(SimpleGEO):
download_sra (:obj:`bool`): Indicates whether to download SRA raw
data too. Defaults to True.
em... | docs: #<I> E-mail is not optional for downloading when downloading SRA | guma44_GEOparse | train | py |
0329f94901a495db30235e1537ea00eefc9ac57f | diff --git a/lib/modem.js b/lib/modem.js
index <HASH>..<HASH> 100644
--- a/lib/modem.js
+++ b/lib/modem.js
@@ -1,3 +1,11 @@
+function parseJSON(s) {
+ try {
+ return JSON.parse(s);
+ } catch (e) {
+ return null;
+ }
+}
+
var querystring = require('querystring'),
http = require('./http'),
fs = require('f... | fix: the cause could be a JSON string | apocas_docker-modem | train | js |
5f7da9a224f646477528708fcbddc29ea7f98c79 | diff --git a/packages/banner/src/BannerAction/stylesheet.js b/packages/banner/src/BannerAction/stylesheet.js
index <HASH>..<HASH> 100644
--- a/packages/banner/src/BannerAction/stylesheet.js
+++ b/packages/banner/src/BannerAction/stylesheet.js
@@ -6,12 +6,7 @@ export default function stylesheet(props, themeData) {
re... | fix: in verbose dividers should not be included | Autodesk_hig | train | js |
f543221ca6c0845022e58300c0e44dd71933e379 | diff --git a/src/utils.js b/src/utils.js
index <HASH>..<HASH> 100644
--- a/src/utils.js
+++ b/src/utils.js
@@ -169,10 +169,10 @@ function setGroupedTimeout(fn, ttl) {
export
function getNullableText(...args) {
for (const arg of args) {
- if (arg)
+ if (arg || arg === '')
return arg;
... | fix(utils): allow empty string attribute to be set for nullable text | Sitebase_react-avatar | train | js |
7aec3550de35af9dc8ee7716481e29f2b8eeeb1f | diff --git a/packages/node_modules/@cerebral/http/src/utils.js b/packages/node_modules/@cerebral/http/src/utils.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@cerebral/http/src/utils.js
+++ b/packages/node_modules/@cerebral/http/src/utils.js
@@ -8,7 +8,7 @@ export function createResponse(options, resolve, ... | fix(http): fix logic bug that caused onProgress event to always emit either 0 or 1.
ISSUES CLOSED: #<I> | cerebral_cerebral | train | js |
5fd74acfff99592b601aba66923d933d312dcda3 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -36,13 +36,13 @@ Deployor.defaults = {
};
-Deployor.verbose = true;
+Deployor.verbose = false;
var e = Deployor.exec = function (cmd) {
if (Deployor.verbose) {
console.log('$ ', cmd);
}
- return sh.exec(cmd... | fix(deploy): silent by default | douglasduteil_node-git-deployor | train | js |
f9fabd70fd07a2d9fd7eb049d8cf06fcf6ac8594 | diff --git a/lib/platform/gitlab/index.js b/lib/platform/gitlab/index.js
index <HASH>..<HASH> 100644
--- a/lib/platform/gitlab/index.js
+++ b/lib/platform/gitlab/index.js
@@ -577,6 +577,7 @@ async function ensureComment(issueNo, topic, content) {
}
});
}
+ body = body.replace(/Pull Request/g, 'Merge Req... | fix(gitlab): ensure that comments in GitLab uses MR, not PR (#<I>) | renovatebot_renovate | train | js |
bb4722cf5097b235d27cb1a0d00a84b6d656cf23 | diff --git a/intranet/apps/auth/views.py b/intranet/apps/auth/views.py
index <HASH>..<HASH> 100644
--- a/intranet/apps/auth/views.py
+++ b/intranet/apps/auth/views.py
@@ -200,11 +200,13 @@ class LoginView(View):
today_8 = Day.objects.today().day_type.blocks.filter(name__contains="8")
... | fix(eighth): change times for eighth_location to be shown | tjcsl_ion | train | py |
a5cf5fc7ec139bfa21c89774963af251828af8a2 | diff --git a/src/plugin/exec.js b/src/plugin/exec.js
index <HASH>..<HASH> 100644
--- a/src/plugin/exec.js
+++ b/src/plugin/exec.js
@@ -20,7 +20,7 @@ const command = 'exec [command...]'
const description = 'Execute a command in all packages'
function filterExclusions (packages, exclusions) {
- return filter(package... | fix(northbrook): fix exec plugin | northbrookjs_northbrook | train | js |
5fb4d84a33351c13057dc542513a3fe2309e08b0 | diff --git a/packages/babel-traverse/src/scope/index.js b/packages/babel-traverse/src/scope/index.js
index <HASH>..<HASH> 100644
--- a/packages/babel-traverse/src/scope/index.js
+++ b/packages/babel-traverse/src/scope/index.js
@@ -490,12 +490,7 @@ export default class Scope {
}
buildUndefinedNode() {
- if (t... | perf: always return `void 0` as undefined node (#<I>) | babel_babel | train | js |
3e6da2cae0443d66575d5571fde5333ffed50632 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -266,6 +266,7 @@ module.exports = function (grunt) {
grunt.registerTask('default', [
'newer:jshint',
- 'test'
+ 'test',
+ 'build'
]);
}; | chore(grunt): also run distribution packaging ( `build`) by default | seriema_angular-apimock | train | js |
575d71711213173de5c7ab549a806369a91fe877 | diff --git a/src/directives/scroll.js b/src/directives/scroll.js
index <HASH>..<HASH> 100644
--- a/src/directives/scroll.js
+++ b/src/directives/scroll.js
@@ -18,6 +18,8 @@ function inserted (el, binding) {
}
function unbind (el, binding) {
+ if (!el._onScroll) return
+
const { callback, options, target } = el.... | fix(v-scroll): check if property exists before destructuring
during development, hot reload would call the unbind hook when rebuilding elements using `v-scroll`.
This was throwing an error if it had already been removed | vuetifyjs_vuetify | train | js |
8ca00a1de3842d2c9bf6d5d54d3ec81ff8d9c73a | diff --git a/src/bucket/media.js b/src/bucket/media.js
index <HASH>..<HASH> 100644
--- a/src/bucket/media.js
+++ b/src/bucket/media.js
@@ -68,18 +68,14 @@ const mediaMethods = (bucket_config) => ({
return requestHandler(HTTP_METHODS.GET, endpoint)
},
deleteMedia: (params) => {
- const endpoint = `${URI}/b... | fix: trigger webhook on media delete | cosmicjs_cosmicjs-node | train | js |
0f57f9a69ae1cdaab295c40a178dc98fadec23b2 | diff --git a/lib/workers/repository/onboarding/pr/errors-warnings.js b/lib/workers/repository/onboarding/pr/errors-warnings.js
index <HASH>..<HASH> 100644
--- a/lib/workers/repository/onboarding/pr/errors-warnings.js
+++ b/lib/workers/repository/onboarding/pr/errors-warnings.js
@@ -30,10 +30,10 @@ function getDepWarnin... | fix(onboarding): defensive warnings check | renovatebot_renovate | train | js |
a666fbbe3ef601039f760a9ab809faa9ed9bc866 | diff --git a/folium/plugins/heat_map_withtime.py b/folium/plugins/heat_map_withtime.py
index <HASH>..<HASH> 100644
--- a/folium/plugins/heat_map_withtime.py
+++ b/folium/plugins/heat_map_withtime.py
@@ -42,7 +42,7 @@ class HeatMapWithTime(JSCSSMixin, Layer):
display_index: default True
Display the index (... | docs: fix simple typo, aimation -> animation
There is a small typo in folium/plugins/heat_map_withtime.py.
Should read `animation` rather than `aimation`. | python-visualization_folium | train | py |
360446261143e0b3e082022f62fc77315124c200 | diff --git a/src/main/menu.js b/src/main/menu.js
index <HASH>..<HASH> 100644
--- a/src/main/menu.js
+++ b/src/main/menu.js
@@ -240,11 +240,11 @@ export const cell = {
click: createSender('menu:run-all-below'),
},
{
- label: 'Clear All',
+ label: 'Clear All Outputs',
click: createSender... | refactor(cell): Add outputs for clarity. | nteract_nteract | train | js |
8f96d6a2183501c59d08b2df222842d90ca6920f | diff --git a/src/ConnectCore.js b/src/ConnectCore.js
index <HASH>..<HASH> 100644
--- a/src/ConnectCore.js
+++ b/src/ConnectCore.js
@@ -81,7 +81,8 @@ class ConnectCore {
this.uriHandler = opts.uriHandler || defaultUriHandler
this.mobileUriHandler = opts.mobileUriHandler
this.closeUriHandler = opts.closeUr... | fix: temp support old ids | uport-project_uport-connect | train | js |
2f0d7f39ffbf6ebd12b2f57d1571836d64306034 | diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -37,6 +37,10 @@ var webpackConfig = {
]
};
+if (!WATCH) {
+ webpackConfig.plugins.push(new webpack.NoErrorsPlugin());
+}
+
if (MIN) {
webpackConfig.module.loaders.push({
test: /.*src.*\.js$/... | test(lint): Fail the build if the lint check does not pass | mattlewis92_angular-bootstrap-calendar | train | js |
2ee3a8489305e0a959b9c4a0b9651e95faccb528 | diff --git a/dev/test/events/order.spec.js b/dev/test/events/order.spec.js
index <HASH>..<HASH> 100644
--- a/dev/test/events/order.spec.js
+++ b/dev/test/events/order.spec.js
@@ -129,15 +129,6 @@ describe('Order events', function () {
it('should create orders/new event and an orders/fulfilled', async function () {... | test(order-events): remove expect for order/create events CDP-<I> | emartech_magento2-extension | train | js |
210813fae4eaa16504db1140d1f00fcc8fe1f03d | diff --git a/src/mixins/detachable.js b/src/mixins/detachable.js
index <HASH>..<HASH> 100644
--- a/src/mixins/detachable.js
+++ b/src/mixins/detachable.js
@@ -13,6 +13,10 @@ export default {
this.initDetach()
},
+ deactivated () {
+ this.isActive = false
+ },
+
beforeDestroy () {
if (!this.$refs.... | fix(detachable): Hide when deactivated (#<I>)
* fix: The issue where the tooltip would persist after route change while it was a child of the keep-alive component
fixes #<I>
* refactor: move hook to detachable so it works on more components | vuetifyjs_vuetify | train | js |
2a566e06395772fbb0193f4d02c3fd7b17759501 | diff --git a/src/geshi.php b/src/geshi.php
index <HASH>..<HASH> 100644
--- a/src/geshi.php
+++ b/src/geshi.php
@@ -1329,6 +1329,7 @@ class GeSHi {
function get_language_name_from_extension( $extension, $lookup = array() ) {
if ( !is_array($lookup) || empty($lookup)) {
$lookup = array(
+ ... | fix: Added ABAP in list of file extensions | GeSHi_geshi-1.0 | train | php |
35af37d4e217763fd15f1caab72e39fe02c72a6a | diff --git a/install/installer.go b/install/installer.go
index <HASH>..<HASH> 100644
--- a/install/installer.go
+++ b/install/installer.go
@@ -17,9 +17,9 @@ type Installer struct {
}
const (
- mockServiceRange = ">= 3.1.0, < 4.0.0"
- verifierRange = ">= 1.23.0, < 3.0.0"
- brokerRange = ">= 1.18.0"
+ mockSer... | chore: bump minimum versions of standalone libs | pact-foundation_pact-go | train | go |
8aef4bb2768e524d5edb85397407203ab73b2dfc | diff --git a/packages/article/article.js b/packages/article/article.js
index <HASH>..<HASH> 100644
--- a/packages/article/article.js
+++ b/packages/article/article.js
@@ -110,7 +110,7 @@ class ArticlePage extends React.Component {
}
componentWillReceiveProps(nextProps) {
- if (!nextProps.isLoading) {
+ if... | fix: article condition missing (#<I>) | newsuk_times-components | train | js |
85611d2af6f3eb8955527e330ea6314477ad8b59 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,6 +2,7 @@ from setuptools import setup
import urlfetch
import re
import os
+import sys
setup(
name = "urlfetch",
@@ -14,7 +15,7 @@ setup(
license = "BSD",
keywords = "httpclient urlfetch",
py_modul... | fix: in some platforms urlfetch.useragents.list located in wrong place | ifduyue_urlfetch | train | py |
fe5136df69fa006dbd840bb3fa1858c0a361a724 | diff --git a/packages/site/pages/core/motion.js b/packages/site/pages/core/motion.js
index <HASH>..<HASH> 100644
--- a/packages/site/pages/core/motion.js
+++ b/packages/site/pages/core/motion.js
@@ -57,18 +57,19 @@ const Speeds = _ => (
min-width: 150px;
height: 150px;
background: ${core.colo... | fix(site): motion opacity
Resolves #<I> | pluralsight_design-system | train | js |
610fbf0a54e63e4117d139415aa2cf2c5667cd3b | 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
@@ -139,7 +139,7 @@ describe('button', async () => {
... | refactor: increase the precision of the button component's test config when running vrt | bolt-design-system_bolt | train | js |
3f622bc0e0164021f1e04d3dba72d0e258f47519 | diff --git a/docs/referenceConf.js b/docs/referenceConf.js
index <HASH>..<HASH> 100644
--- a/docs/referenceConf.js
+++ b/docs/referenceConf.js
@@ -99,6 +99,9 @@ exports.config = {
smoke: 'spec/smoketests/*.js',
full: 'spec/*.js'
},
+ // If you would like protractor to use a specific suite by default inste... | chore(docs): include information about using `suite` property in config file | angular_protractor | train | js |
b0258085d53cfb8db62c529af16eb5d54e9515eb | diff --git a/packages/api-client/src/main/tcp/ReconnectingWebsocket.test.node.js b/packages/api-client/src/main/tcp/ReconnectingWebsocket.test.node.js
index <HASH>..<HASH> 100644
--- a/packages/api-client/src/main/tcp/ReconnectingWebsocket.test.node.js
+++ b/packages/api-client/src/main/tcp/ReconnectingWebsocket.test.n... | test(api-client): Use shorter while (#<I>) | wireapp_wire-web-packages | train | js |
774951cd087abdfe7cc4b1ddd53ebedaa2d5416f | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -100,9 +100,7 @@ const indent = (tree, {rules: {indent, eol, blankLines, maxlen}}) => {
if (tree.length === 1 && typeof tree[index] === 'string') {
if (tree[index].length >= maxlen) {
- let... | refactor: removed unneccesary variables | Scrum_posthtml-beautify | train | js |
5c8f4746129c57579f5ce8aa24aad36b09fc801b | diff --git a/lib/httpServerAgent.js b/lib/httpServerAgent.js
index <HASH>..<HASH> 100644
--- a/lib/httpServerAgent.js
+++ b/lib/httpServerAgent.js
@@ -97,14 +97,15 @@ module.exports = function httpServerAgent () {
/**
* Utils
*/
-
function cleanDomainNamespace() {
// remove current req/res from bound domains i... | fix: cleanup stack of the current domain completely | sematext_spm-agent-nodejs | train | js |
d6ca5ef0570bffc162b5928fc95bb9de610952cb | diff --git a/src/EasyField/easyFieldHandler.js b/src/EasyField/easyFieldHandler.js
index <HASH>..<HASH> 100644
--- a/src/EasyField/easyFieldHandler.js
+++ b/src/EasyField/easyFieldHandler.js
@@ -131,6 +131,7 @@ export function parseProps(props) {
checked,
unchecked,
__TYPE__,
+ __DIFF_... | feat: EasyField support __DIFF__ for $memo optimization | qiqiboy_react-formutil | train | js |
e3d3b71e6073d853674b49a7a2aa8f016b2fdaf5 | diff --git a/system/Debug/Exceptions.php b/system/Debug/Exceptions.php
index <HASH>..<HASH> 100644
--- a/system/Debug/Exceptions.php
+++ b/system/Debug/Exceptions.php
@@ -109,7 +109,9 @@ class Exceptions
if (! is_cli()) {
$this->response->setStatusCode($statusCode);
- header(sprintf('... | fix: do not call header() if headers have already been sent | codeigniter4_CodeIgniter4 | train | php |
2853e98546568a17530e12abe460daeaab96e8bb | diff --git a/test/setup.js b/test/setup.js
index <HASH>..<HASH> 100644
--- a/test/setup.js
+++ b/test/setup.js
@@ -17,14 +17,13 @@ const BROWSER_POLYFILL_PATH = "./dist/browser-polyfill.js";
// Create the jsdom window used to run the tests
const testDOMWindow = jsdom("", {virtualConsole}).defaultView;
-global.windo... | fix: the test jsdom window doesn't need to be in the shared global. | mozilla_webextension-polyfill | train | js |
9db9713151b708f24e1a0f2251a04ce0819445d3 | diff --git a/src/Form/Filter/Guesser/DoctrineOrmFilterTypeGuesser.php b/src/Form/Filter/Guesser/DoctrineOrmFilterTypeGuesser.php
index <HASH>..<HASH> 100644
--- a/src/Form/Filter/Guesser/DoctrineOrmFilterTypeGuesser.php
+++ b/src/Form/Filter/Guesser/DoctrineOrmFilterTypeGuesser.php
@@ -50,7 +50,12 @@ class DoctrineOrmF... | feat(filters): only add placeholder for entity type if at least one join column is nullable | EasyCorp_EasyAdminBundle | train | php |
d0df64f390db5aa8d8133a5a9ddbc84811a46cf8 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -135,7 +135,7 @@ def init(
if 'debian' in platform.dist():
try:
import stdeb
- except ImportError, e:
+ except ImportError:
pass
return setup | fix: fix package setup on python 3 | salsita_flask-raml | train | py |
3dba0ba0e6e02dccf56cd8f36ec2f719888c685a | diff --git a/packages/api-core/src/tests/ms.test.js b/packages/api-core/src/tests/ms.test.js
index <HASH>..<HASH> 100644
--- a/packages/api-core/src/tests/ms.test.js
+++ b/packages/api-core/src/tests/ms.test.js
@@ -110,6 +110,12 @@ describe('AvMicroservice', () => {
}).toThrow('called method without [id]');
... | test(api-core): add test for get by id for ms | Availity_sdk-js | train | js |
81d7b759ac1739ba90fe55b13db38d4023952349 | diff --git a/packages/testing/test-web/chai-a11y-axe.test.js b/packages/testing/test-web/chai-a11y-axe.test.js
index <HASH>..<HASH> 100644
--- a/packages/testing/test-web/chai-a11y-axe.test.js
+++ b/packages/testing/test-web/chai-a11y-axe.test.js
@@ -5,7 +5,7 @@ describe('chaiA11yAxe', () => {
it('passes axe acces... | chore: increase timeout for flaky test | open-wc_open-wc | train | js |
e0ffaacce95bbb99797ef5642ca9f3606321fd50 | diff --git a/ui/src/components/date/QDate.js b/ui/src/components/date/QDate.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/date/QDate.js
+++ b/ui/src/components/date/QDate.js
@@ -699,7 +699,7 @@ export default Vue.extend({
? this.__getDaysInMonth(date)
: this.daysInMonth
- date.da... | fix(QDate): Do not set day to 0 in __updateValue when source model day is null #<I> (#<I>) | quasarframework_quasar | train | js |
e77c38dbf71cbc27420650de9277586840cd5b9e | diff --git a/qds_sdk/template.py b/qds_sdk/template.py
index <HASH>..<HASH> 100644
--- a/qds_sdk/template.py
+++ b/qds_sdk/template.py
@@ -184,7 +184,8 @@ class Template(Resource):
Dictionary containing the updated details of the template.
"""
conn = Qubole.agent()
- return conn.po... | fix: dev: SDK-<I>: Template Id type casted to String (#<I>)
Fix an issue to type cast id variable to string. | qubole_qds-sdk-py | train | py |
177a468335ffc900d7ca36408b1c3985b7b5155b | diff --git a/nbgitpuller/pull.py b/nbgitpuller/pull.py
index <HASH>..<HASH> 100644
--- a/nbgitpuller/pull.py
+++ b/nbgitpuller/pull.py
@@ -49,13 +49,12 @@ class GitPuller(Configurable):
depth = Integer(
config=True,
help="""
- Depth (ie, commit count) to which to perform a
- shallow... | docs: tweak inline docstring about depth traitlet | jupyterhub_nbgitpuller | train | py |
0abcf7122198afc5d9421f3ca8cc8fbe837fa654 | diff --git a/lib/passes/forward.js b/lib/passes/forward.js
index <HASH>..<HASH> 100644
--- a/lib/passes/forward.js
+++ b/lib/passes/forward.js
@@ -5,8 +5,6 @@ const HttpProxy = require('http-proxy')
const Readable = require('stream').Readable
module.exports = function forward(route, opts, req, res, done) {
- done... | refactor: now we always receive a callback | h2non_rocky | train | js,js |
3054400275062cd369b8fe519ac0044cdc91d22a | diff --git a/types_test.go b/types_test.go
index <HASH>..<HASH> 100644
--- a/types_test.go
+++ b/types_test.go
@@ -30,6 +30,6 @@ func TestCapabilitiesContains(t *testing.T) {
t.Fatal("capabilities should not contain SYS_ADMIN")
}
if !caps.Contains("MKNOD") {
- t.Fatal("capabilities should container MKNOD but do... | chore(libcontainer): small grammar fix in types_test
Someone probably got really used to typing er on the end of contain :)
Docker-DCO-<I>- | opencontainers_runc | train | go |
2afdada5740040e70319d7c378d5dbcb6a647254 | diff --git a/src/View.js b/src/View.js
index <HASH>..<HASH> 100644
--- a/src/View.js
+++ b/src/View.js
@@ -973,7 +973,8 @@ var View = createClass(
}
break;
}
- view = view.parentView;
+ if(view._isolated) view = null;
+ else view = view.parentView;
}
}
}, | feat(View): isolated view should not try to dispatch actions to its parent | karfcz_kff | train | js |
82c1feeea017dfa02ecb16dd8fe432e116c1fc2d | diff --git a/lib/https/index.js b/lib/https/index.js
index <HASH>..<HASH> 100644
--- a/lib/https/index.js
+++ b/lib/https/index.js
@@ -42,7 +42,7 @@ function handleWebsocket(socket, clientIp, callback) {
socket.reqId = data.reqId = ++index;
var reqSocket, options, plugin, pluginRules, matchedUrl, done;
- var plu... | refactor: websocket proxy | avwo_whistle | train | js |
c5e784de8e2bd378e014e1c3ea599916e23a0a13 | diff --git a/cli/lib/cli.js b/cli/lib/cli.js
index <HASH>..<HASH> 100644
--- a/cli/lib/cli.js
+++ b/cli/lib/cli.js
@@ -428,6 +428,8 @@ module.exports = {
debug('running Cypress run-ct')
require('./exec/run')
.start(util.parseOpts(opts), { isComponentTesting: true })
+ .then(util.exit)
+ .... | fix: add exit management on run-ct cli comand | cypress-io_cypress | train | js |
33030f9e0595a1e683369289aa62d282da0cfdbe | diff --git a/test/show-permissions-state-machine-test.js b/test/show-permissions-state-machine-test.js
index <HASH>..<HASH> 100644
--- a/test/show-permissions-state-machine-test.js
+++ b/test/show-permissions-state-machine-test.js
@@ -44,6 +44,9 @@ describe('RBAC Permissions State Machine', function () {
tymly_s... | test: update expected permissions because of updated tymly core dep | wmfs_tymly-rbac-plugin | train | js |
e101856181e19d44b995b14549874be86500f65a | diff --git a/packages/cozy-stack-client/src/SharingCollection.js b/packages/cozy-stack-client/src/SharingCollection.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-stack-client/src/SharingCollection.js
+++ b/packages/cozy-stack-client/src/SharingCollection.js
@@ -179,7 +179,7 @@ class SharingCollection extends Docum... | docs: Don't link to github, link to cozy's doc | cozy_cozy-client | train | js |
dc04d36a0a95e8e60fc4e973c39e8b96bbeceda2 | diff --git a/src/to-vdom.js b/src/to-vdom.js
index <HASH>..<HASH> 100644
--- a/src/to-vdom.js
+++ b/src/to-vdom.js
@@ -59,7 +59,9 @@ export default function (dom) {
const walker = document.createTreeWalker(
dom,
- SHOW_DOCUMENT_FRAGMENT | SHOW_ELEMENT | SHOW_TEXT
+ SHOW_DOCUMENT_FRAGMENT | SHOW_ELEMENT ... | refactor: Try and fix IE. | skatejs_dom-diff | train | js |
fc0598423dadb5c59c5d5f9be0519f90f62c93fc | diff --git a/lib/https/ws/WebSocketServer.js b/lib/https/ws/WebSocketServer.js
index <HASH>..<HASH> 100644
--- a/lib/https/ws/WebSocketServer.js
+++ b/lib/https/ws/WebSocketServer.js
@@ -118,7 +118,10 @@ function handleHybiUpgrade(req, socket, upgradeHead) {
}
});
}
- var completeHandShake = fun... | refactor: Handle connect error | avwo_whistle | train | js |
c9f78f7c2638b8f7866ab59e6f7f2ffe005875d2 | diff --git a/examples/index.js b/examples/index.js
index <HASH>..<HASH> 100644
--- a/examples/index.js
+++ b/examples/index.js
@@ -18,7 +18,7 @@ kernel.command(
const validateName = function (input) {
return !input ? 'Enter your name' : true
}
- name = name || await this.question.on('validate', vali... | refactor(command): add direct proxy to question methods | adonisjs_ace | train | js |
cc1c0692f89c08c08f3c32c3d6be727a1330cee7 | diff --git a/jsonschema/validators.py b/jsonschema/validators.py
index <HASH>..<HASH> 100644
--- a/jsonschema/validators.py
+++ b/jsonschema/validators.py
@@ -140,13 +140,10 @@ def create(meta_schema, validators=(), version=None, default_types=None):
pytypes = self._types[type]
# bool inheri... | perf: Make is_type faster and cleaner
Instead of flattening to find out `is_number`, we can just check `issubclass(int, pytypes)` which doesn't require flattening the types list. Only if that passes do we need to look further. | Julian_jsonschema | train | py |
854443a291b12137918011b91866dde724a35d1e | diff --git a/script/lib/version-utils.js b/script/lib/version-utils.js
index <HASH>..<HASH> 100644
--- a/script/lib/version-utils.js
+++ b/script/lib/version-utils.js
@@ -52,7 +52,7 @@ async function nextNightly (v) {
let next = semver.valid(semver.coerce(v))
const pre = `nightly.${getCurrentDate()}`
- const b... | chore: trim output of branch correctly (#<I>) | electron_electron | train | js |
4ba8979d39801625bd78c93f4479b6543cc67cf7 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -111,9 +111,7 @@ module.exports = function(grunt) {
coveralls: {
options: {
force: true,
- debug: true,
coverage_dir: 'coverage-results',
-... | chore(coveralls): Remove dryRun option to make it live | angular-gantt_angular-gantt | train | js |
790ab13abbac0bc4a1e1458a9a73a1a75438408e | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -8,7 +8,8 @@ var supercollider = require('supercollider');
var COMPATIBILITY = [
'last 2 versions',
'ie >= 10',
- 'and_chr >= 2.3'
+ 'android >= 4.4',
+ 'ios >= 7'
];
supercollider | chore: update browser compatibility
Update Autoprefixer browser compatibility table to be consistent with `foundation-sites` and remove support for very old browsers. | zurb_motion-ui | train | js |
35e43bcf0d4038bbbd14863283a27e8d8b8b6394 | diff --git a/test/frontend-rest-adaptor.test.js b/test/frontend-rest-adaptor.test.js
index <HASH>..<HASH> 100644
--- a/test/frontend-rest-adaptor.test.js
+++ b/test/frontend-rest-adaptor.test.js
@@ -119,9 +119,9 @@ suite('REST API', function() {
.next(function(response) {
backend.assertReceived([{ t... | test: fix inverted expected adn actual order
chai uses "actual, expected" order instead of "expected, actual" order. | droonga_express-droonga | train | js |
cd1151056ec6d0252a242d778b346784d4fb26ef | diff --git a/packages/xod-patch-search/test/index.spec.js b/packages/xod-patch-search/test/index.spec.js
index <HASH>..<HASH> 100644
--- a/packages/xod-patch-search/test/index.spec.js
+++ b/packages/xod-patch-search/test/index.spec.js
@@ -45,7 +45,7 @@ describe('xod-patch-search/index', () => {
it('searches: "numb... | fix(xod-patch-search): fix test | xodio_xod | train | js |
9c01dad83a66779d1754f0a4cef950a51dfa51b8 | diff --git a/packages/@vue/cli-plugin-typescript/vue-compiler-sfc-shim.js b/packages/@vue/cli-plugin-typescript/vue-compiler-sfc-shim.js
index <HASH>..<HASH> 100644
--- a/packages/@vue/cli-plugin-typescript/vue-compiler-sfc-shim.js
+++ b/packages/@vue/cli-plugin-typescript/vue-compiler-sfc-shim.js
@@ -10,5 +10,7 @@ mod... | fix: should return the parse result in the compiler-sfc-shim (#<I>)
Fixes #<I> | vuejs_vue-cli | train | js |
a0476869b63858527d6b1351b5436f2423501fdb | diff --git a/cordova-lib/spec-cordova/lazy_load.spec.js b/cordova-lib/spec-cordova/lazy_load.spec.js
index <HASH>..<HASH> 100644
--- a/cordova-lib/spec-cordova/lazy_load.spec.js
+++ b/cordova-lib/spec-cordova/lazy_load.spec.js
@@ -202,7 +202,7 @@ describe('lazy_load module', function() {
}
... | fix(tests): cordova/lazy_load spec on Windows
Path on Windows is returned with forward slashes which is totaly fine; we should use path normalization before string comparison | apache_cordova-lib | train | js |
799cc109bde382964dc0e1928f86db63267a2c7e | diff --git a/src/stateDirectives.js b/src/stateDirectives.js
index <HASH>..<HASH> 100644
--- a/src/stateDirectives.js
+++ b/src/stateDirectives.js
@@ -49,7 +49,7 @@ function $StateRefDirective($state) {
if ((button == 1) && !e.ctrlKey && !e.metaKey && !e.shiftKey) {
scope.$evalAsync(function() {
... | chore(uiSref): clean up lint issues | ui-router_angular | train | js |
6ffe68a856e67c3a41909a2bde22babb55fe0cbe | diff --git a/test/index.test.js b/test/index.test.js
index <HASH>..<HASH> 100644
--- a/test/index.test.js
+++ b/test/index.test.js
@@ -49,7 +49,8 @@ http.createServer(function(req, res) {
}).listen(config.serverPort, startTest);
startWhistle({
- port: config.port
+ port: config.port,
+ storage: 'test_'
}, startTes... | test: Use a separate storage directory | avwo_whistle | train | js |
7844425ba5ccbb6e044b9adea07acf5abb57cb27 | diff --git a/packages/node_modules/@webex/plugin-meetings/src/meetings/index.js b/packages/node_modules/@webex/plugin-meetings/src/meetings/index.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/plugin-meetings/src/meetings/index.js
+++ b/packages/node_modules/@webex/plugin-meetings/src/meetings/index.... | feat(plugin-meetings): toggleUnifiedMeetings api change meeting info between v1 & v2 | webex_spark-js-sdk | train | js |
2cb0f68a7bc0d2aa5eebee936346084f178dc864 | diff --git a/packages/bazel/src/protractor/protractor.conf.js b/packages/bazel/src/protractor/protractor.conf.js
index <HASH>..<HASH> 100644
--- a/packages/bazel/src/protractor/protractor.conf.js
+++ b/packages/bazel/src/protractor/protractor.conf.js
@@ -107,6 +107,11 @@ if (process.env['WEB_TEST_METADATA']) {
i... | test(bazel): allow no sandbox for protractor tests (#<I>)
It specifies --no-sandbox flag when running the protractor tests as
root. This is needed for running the tests inside a docker container.
PR Close #<I> | angular_angular | train | js |
c76fe9e088952406a78e56825b6cd3dac2b962c8 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -92,16 +92,15 @@ module.exports = function( grunt ) {
obj = require( file );
}
-
Object.keys( conf ).forEach( function ( key ) {
if (typeof conf[ ke... | fix: Corrected json config path and variables. | CleverStack_clever-orm | train | js |
e3898febf9080a80a80a907cd4ab9b21a15311ed | diff --git a/ui/src/components/btn/QBtn.js b/ui/src/components/btn/QBtn.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/btn/QBtn.js
+++ b/ui/src/components/btn/QBtn.js
@@ -277,6 +277,7 @@ export default createComponent({
}
function onLoadingEvt (evt) {
+ stopAndPrevent(evt)
evt.qSkipRippl... | fix(QBtn): QBtn with loading=true does not hinder form submission #<I> | quasarframework_quasar | train | js |
ce2ac753f1d38c88103699e88ce7eba4f109616f | diff --git a/src/internals/init_options.js b/src/internals/init_options.js
index <HASH>..<HASH> 100644
--- a/src/internals/init_options.js
+++ b/src/internals/init_options.js
@@ -36,7 +36,7 @@ function __initOptions(userPreference) {
const optionAccessors = {
// deprecated
set ignoreEvents(v) {
-... | fix(manageEvents): fix typo | idiotWu_smooth-scrollbar | train | js |
01b888049ee6fab58dba69c0339f2483436e67a2 | diff --git a/test/evaluation.spec.js b/test/evaluation.spec.js
index <HASH>..<HASH> 100644
--- a/test/evaluation.spec.js
+++ b/test/evaluation.spec.js
@@ -35,7 +35,7 @@ module.exports.addTests = function({testRunner, expect}) {
const result = await page.evaluate(() => 7 * 3);
expect(result).toBe(21);
... | test(firefox): disable BigInt tests for Firefox (#<I>)
Juggler doesn't yet support BigInt transferring. | GoogleChrome_puppeteer | train | js |
0b8dad027feb521ced2fbb77b839562dd173cb7e | diff --git a/lib/winston-telegram.js b/lib/winston-telegram.js
index <HASH>..<HASH> 100644
--- a/lib/winston-telegram.js
+++ b/lib/winston-telegram.js
@@ -43,7 +43,7 @@ module.exports = class Telegram extends Transport {
this.chatId = options.chatId
this.parseMode = options.parseMode || ''
this.level = o... | fix: handle uncaught exceptions | ivanmarban_winston-telegram | train | js |
69f1d6eb27db5cacf9b2241e4f595ec1ba6dcf64 | diff --git a/packages/testing/testing-jest/jest-reporter-vrt.js b/packages/testing/testing-jest/jest-reporter-vrt.js
index <HASH>..<HASH> 100644
--- a/packages/testing/testing-jest/jest-reporter-vrt.js
+++ b/packages/testing/testing-jest/jest-reporter-vrt.js
@@ -144,7 +144,7 @@ ${vrtScreenshots.join('\n')}
... | fix: fix typo in VRT reporting for Travis | bolt-design-system_bolt | train | js |
7d79d94c160819ffacd6ea484e2cd7433052e687 | diff --git a/app/lib/webpack/create-chain.js b/app/lib/webpack/create-chain.js
index <HASH>..<HASH> 100644
--- a/app/lib/webpack/create-chain.js
+++ b/app/lib/webpack/create-chain.js
@@ -210,6 +210,7 @@ module.exports = function (cfg, configName) {
.use('url-loader')
.loader('url-loader')
.options({
... | fix(app): revert to esModule:false for media assets | quasarframework_quasar | train | js |
75424f73b66e8b6b21d00fd32af461c19bb36560 | diff --git a/packages/vue-styleguidist/src/utils/processComponents.js b/packages/vue-styleguidist/src/utils/processComponents.js
index <HASH>..<HASH> 100644
--- a/packages/vue-styleguidist/src/utils/processComponents.js
+++ b/packages/vue-styleguidist/src/utils/processComponents.js
@@ -23,7 +23,7 @@ export default func... | fix: async conlict with routing | vue-styleguidist_vue-styleguidist | train | js |
fb9621717b18dcd0030dd17993710729ee3f8c23 | diff --git a/packages/react/src/components/FormGroup/FormGroup-story.js b/packages/react/src/components/FormGroup/FormGroup-story.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/FormGroup/FormGroup-story.js
+++ b/packages/react/src/components/FormGroup/FormGroup-story.js
@@ -37,16 +37,12 @@ export co... | fix(Storybook): move margin to wrapper (#<I>) | carbon-design-system_carbon-components | train | js |
095cf8031add6e55b8909829fdce4ba713132049 | diff --git a/src/anyconfig/query.py b/src/anyconfig/query.py
index <HASH>..<HASH> 100644
--- a/src/anyconfig/query.py
+++ b/src/anyconfig/query.py
@@ -42,7 +42,7 @@ def query(data, jexp, **_options):
except (NameError, AttributeError):
raise ValueError("Required 'jmespath' module is not available.")
- ... | fix: suppress warning of flake8 as same as pylint | ssato_python-anyconfig | train | py |
acc7f9effb315648d018a5c537215b5a7b3fd867 | diff --git a/src/tabs/Tabs.js b/src/tabs/Tabs.js
index <HASH>..<HASH> 100644
--- a/src/tabs/Tabs.js
+++ b/src/tabs/Tabs.js
@@ -27,6 +27,8 @@ export default class Tabs extends Component {
if (nextProps.activeKey !== this.props.activeKey) {
this.setState({
activeKey: nextProps.activeKey,
+ }, ()... | fix(Tabs): The component will receive the props activeKey style issue. | uiwjs_uiw | train | js |
99a59e7dce484acd2ce93298306d44fb19b3f17a | diff --git a/test/informer.js b/test/informer.js
index <HASH>..<HASH> 100644
--- a/test/informer.js
+++ b/test/informer.js
@@ -724,7 +724,7 @@ describe('Informer', function() {
}, 10);
});
});
-return
+
describe('afterOnce(type, listener)', function() {
it('should fire after being attached if an event h... | test: removed stray return statement | skerit_protoblast | train | js |
715d82be0daf1b25e0b0eb57531477ae71e39e14 | diff --git a/Facades/Route.php b/Facades/Route.php
index <HASH>..<HASH> 100755
--- a/Facades/Route.php
+++ b/Facades/Route.php
@@ -37,6 +37,7 @@ namespace Illuminate\Support\Facades;
* @method static string|null currentRouteName()
* @method static void apiResources(array $resources, array $options = [])
* @method... | feat: route facade macro (#<I>) | illuminate_support | train | php |
be619dedf2513dfe3dcd0eb80fa45d65c231f440 | diff --git a/src/mocks/datePicker.js b/src/mocks/datePicker.js
index <HASH>..<HASH> 100644
--- a/src/mocks/datePicker.js
+++ b/src/mocks/datePicker.js
@@ -6,7 +6,7 @@
* A service for testing datepicker features
* in an app build with ngCordova.
*/
-ngCordovaMocks.factory('$cordovaDatePicker', function ($q) {
+ngC... | fix(mocks): Fix [$injector:unpr] by using inline array annotation. | ionic-team_ng-cordova | train | js |
e98a8993cef85bd84b9efd66d0b98bb758c9c104 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -65,7 +65,7 @@ app.use(morgan.middleware(C.morganFormat));
var IndexRouter = require('./routes');
app.use(mount('/', IndexRouter));
-app.use(koaStatic('./public/'));
+app.use(koaStatic(path.join(__dirname,'... | fix:js file not found in view template | efeiefei_node-file-manager | train | js |
d3cb397903d16637bf7b3ccac4404b8d58bc7d22 | diff --git a/src/Keboola/StorageApi/Client.php b/src/Keboola/StorageApi/Client.php
index <HASH>..<HASH> 100644
--- a/src/Keboola/StorageApi/Client.php
+++ b/src/Keboola/StorageApi/Client.php
@@ -1589,7 +1589,13 @@ class Client
foreach ($slices as $filePath) {
$manifest['entries'][] = [
- ... | fix(abs): upload sliced file | keboola_storage-api-php-client | train | php |
c87a70ce8b948ce727e507b540d4f68bff35080b | diff --git a/web/src/main/webapp/my-app/marketplace/controllers.js b/web/src/main/webapp/my-app/marketplace/controllers.js
index <HASH>..<HASH> 100644
--- a/web/src/main/webapp/my-app/marketplace/controllers.js
+++ b/web/src/main/webapp/my-app/marketplace/controllers.js
@@ -34,18 +34,17 @@ define(['angular', 'jquery', ... | style(lint): Style code to follow style guide (#<I>)
Style marketplace controller code to adhere to style guide | uPortal-Project_uportal-home | train | js |
eb6672a58000f6ce07c3f6ee2dd18c65555228d9 | diff --git a/js/directives/bootstrap-error-states.js b/js/directives/bootstrap-error-states.js
index <HASH>..<HASH> 100644
--- a/js/directives/bootstrap-error-states.js
+++ b/js/directives/bootstrap-error-states.js
@@ -26,6 +26,9 @@ export const BootstrapErrorStatesDirective = {
setErrorStates(element, modelCtrl... | fix(BootstrapErrorStatesDirective): Set default class style when call the object
Before, the class style only was set after some change | ResourcefulHumans_rheactor-web-app | train | js |
4464919c5114193179490c151844fd771bfd880b | diff --git a/flask_ecstatic.py b/flask_ecstatic.py
index <HASH>..<HASH> 100644
--- a/flask_ecstatic.py
+++ b/flask_ecstatic.py
@@ -12,10 +12,13 @@ __all__ = 'add'.split()
__version__ = '0.1.1'
import os
-from flask import send_from_directory
-def add(app, url = None, path = None, endpoint=None, index='index.html'... | chore: fix setup without flask installed | salsita_flask-ecstatic | train | py |
16974913b1279d92cc9d0e3a8fa7fa2c5304b6ba | diff --git a/tests/test_common.py b/tests/test_common.py
index <HASH>..<HASH> 100644
--- a/tests/test_common.py
+++ b/tests/test_common.py
@@ -46,9 +46,11 @@ def test_allows_master_version(monkeypatch):
def test_allows_next_version(monkeypatch):
+ TMUX_NEXT_VERSION = str(float(TMUX_MAX_VERSION) + 0.1)
+
de... | test(allows_next_version): Update to check for next release | tmux-python_libtmux | train | py |
3967d7961b2609cc4da5d92fa4f8cad153b64f57 | diff --git a/snapshot/android/utils.js b/snapshot/android/utils.js
index <HASH>..<HASH> 100644
--- a/snapshot/android/utils.js
+++ b/snapshot/android/utils.js
@@ -15,12 +15,11 @@ const downloadFile = (url, destinationFilePath) =>
const request = httpsGet(url, response => {
switch (response.statusC... | fix(snapshot): use autoclose option on writestream (#<I>) | NativeScript_nativescript-dev-webpack | train | js |
18eb05655f1e5bcf35b96f5ae45c4831369db600 | diff --git a/styleguide/src/intro-page.js b/styleguide/src/intro-page.js
index <HASH>..<HASH> 100644
--- a/styleguide/src/intro-page.js
+++ b/styleguide/src/intro-page.js
@@ -2,7 +2,7 @@ const React = global.React || require('react');
const BasePane = global.BasePane || require('pui-react-panes').BasePane;
const Butt... | fix(docs): home page is now including TileLayoutItem and rendering properly | pivotal-cf_pivotal-ui | train | js |
a7324f0af65d07b0b9b6f053fc3233a1e87fa52f | diff --git a/packages/article-skeleton/src/head.web.js b/packages/article-skeleton/src/head.web.js
index <HASH>..<HASH> 100644
--- a/packages/article-skeleton/src/head.web.js
+++ b/packages/article-skeleton/src/head.web.js
@@ -60,14 +60,7 @@ function appendToUrl(uriString, key, value) {
return uriString;
}
- ... | fix: refactor url constructor (#<I>) | newsuk_times-components | train | js |
59c286a776c71d38866e3d20f121cd58482d05a9 | diff --git a/nomad/rpc_test.go b/nomad/rpc_test.go
index <HASH>..<HASH> 100644
--- a/nomad/rpc_test.go
+++ b/nomad/rpc_test.go
@@ -805,7 +805,7 @@ func TestRPC_Limits_OK(t *testing.T) {
defer conn.Close()
buf := []byte{0}
- deadline := time.Now().Add(10 * time.Second)
+ deadline := time.Now().Add(6 * time.Sec... | test: add timeout to ease debugging | hashicorp_nomad | train | go |
05ffe82319828c03cc443f33f6ed670671232eb8 | diff --git a/lib/sessions.js b/lib/sessions.js
index <HASH>..<HASH> 100644
--- a/lib/sessions.js
+++ b/lib/sessions.js
@@ -78,7 +78,6 @@ class ClientSession extends EventEmitter {
* Ends this session on the server
*
* @param {Object} [options] Optional settings
- * @param {Boolean} [options.skipCommand] S... | fix(sessions): never send `endSessions` from a `ClientSession`
Sessions are meant to be cached, and the `endSessions` command is
only meant to be used as a way to signal to the server that cached
sessions will no longer be used (due to the client closing). We
were sending too many `endSessions` commands, now we just s... | mongodb-js_mongodb-core | train | js |
40a56a0613505d8bb8b3735e70b8c1c7837ea454 | diff --git a/src/api/geo.js b/src/api/geo.js
index <HASH>..<HASH> 100644
--- a/src/api/geo.js
+++ b/src/api/geo.js
@@ -69,6 +69,8 @@ assign(View.prototype, {
}
},
// projection
+ // export getGeoProjection for custom used.
+ getGeoProjection,
geoProject(feature, projection) {
projection = getGeoPro... | feat: add getGeoProjection api to dataView
export getGeoProjection api to dataView, so we can get projection in d3-geo, d3-geo-projection and d3-composite-projections without import another package. | antvis_data-set | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.