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 |
|---|---|---|---|---|---|
ed10acf97efcc4f8e673138842a2d268d0e68805 | diff --git a/src/hotLoader.js b/src/hotLoader.js
index <HASH>..<HASH> 100644
--- a/src/hotLoader.js
+++ b/src/hotLoader.js
@@ -18,7 +18,7 @@ module.exports = function (content) {
return content + `
if(module.hot) {
// ${Date.now()}
- var cssReload = require(${loaderUtils.stringifyRequest(this, '!' +... | fix(HMR): Improved path Settings for hotloader.js load hmr.js (#<I>) (#<I>)
Remove the exclamation point so that HMR can be handled by other loader.
e.g: babel-loader. | faceyspacey_extract-css-chunks-webpack-plugin | train | js |
962f4bf88211dbfb5ad0295a9467dede1e2688ee | diff --git a/packages/discord.js/src/structures/GuildScheduledEvent.js b/packages/discord.js/src/structures/GuildScheduledEvent.js
index <HASH>..<HASH> 100644
--- a/packages/discord.js/src/structures/GuildScheduledEvent.js
+++ b/packages/discord.js/src/structures/GuildScheduledEvent.js
@@ -1,5 +1,6 @@
'use strict';
... | fix: snowflakeutil import (#<I>) | discordjs_discord.js | train | js |
f43f2fe934a9c450c4880bc316f7ae510c5f8320 | diff --git a/teslajsonpy/connection.py b/teslajsonpy/connection.py
index <HASH>..<HASH> 100644
--- a/teslajsonpy/connection.py
+++ b/teslajsonpy/connection.py
@@ -18,10 +18,10 @@ import logging
import secrets
import time
from typing import Dict, Text
-from bs4 import BeautifulSoup
-import yarl
import aiohttp
+fro... | refactor: fix lint errors | zabuldon_teslajsonpy | train | py,py |
bd31923668c0ea80311b9dbe7d72bfbe55956325 | diff --git a/publish.js b/publish.js
index <HASH>..<HASH> 100644
--- a/publish.js
+++ b/publish.js
@@ -6,7 +6,10 @@ var fs = require('fs');
module.exports = function() {
- var modulesName = fs.readdirSync(__dirname + '/dist/sub');
+ var modulesName = [];
+ if (fs.existsSync(__dirname + '/dist/sub')){
+ modul... | fix(publisher): don't throw error when 'dist/sub' don't exist | angular-ui_ui-scrollpoint | train | js |
b6dd67e3f274562752db3179bfd489a860dff99f | diff --git a/packages/transforms/src/image.js b/packages/transforms/src/image.js
index <HASH>..<HASH> 100644
--- a/packages/transforms/src/image.js
+++ b/packages/transforms/src/image.js
@@ -21,11 +21,7 @@ export default function ImageDisplay(props: TopProps): ?React.Element<any> {
}
return (
- <img
- r... | fix: a<I>y - prefer alt='' over role="presentation" | nteract_nteract | train | js |
47a504920dc6b1df7fd0c0abe00f12191b602f41 | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -38,7 +38,9 @@ module.exports = {
modules: ['node_modules', './src'],
},
- externals: [nodeExternals({
- whitelist: [/mapbox-gl\/dist\/mapbox-gl.css/],
- })]
+ ... | fix(webpack): rename whitelist to allowlist | MeilleursAgents_react-mapbox-wrapper | train | js |
a7dbf30239a8dec8a2ce0fdf8f186141d81d38de | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -177,7 +177,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'dclab.tex', 'dclab Documentation',
- author, 'manual'),
+ author.rep... | docs: fix author list in pdf | ZELLMECHANIK-DRESDEN_dclab | train | py |
367ddc2409d16bbed00f435d977cda3b3f2d5ca6 | diff --git a/anyconfig/tests/api.py b/anyconfig/tests/api.py
index <HASH>..<HASH> 100644
--- a/anyconfig/tests/api.py
+++ b/anyconfig/tests/api.py
@@ -358,6 +358,9 @@ class Test_40_multi_load(unittest.TestCase):
except ValueError:
self.assertTrue(1 == 1) # To suppress warn of pylint.
+ def t... | test: add a test case of api.multi_load with empty path list | ssato_python-anyconfig | train | py |
75e8f0759908b2dac074a2d6e4224df1db438c6e | diff --git a/allauth/socialaccount/providers/frontier/urls.py b/allauth/socialaccount/providers/frontier/urls.py
index <HASH>..<HASH> 100644
--- a/allauth/socialaccount/providers/frontier/urls.py
+++ b/allauth/socialaccount/providers/frontier/urls.py
@@ -2,4 +2,5 @@ from allauth.socialaccount.providers.oauth2.urls impo... | fix(frontier): isort issues fixed | pennersr_django-allauth | train | py,py |
978372b02757c3525372fb711e62786580319f5e | diff --git a/packages/create-webiny-project/init.js b/packages/create-webiny-project/init.js
index <HASH>..<HASH> 100644
--- a/packages/create-webiny-project/init.js
+++ b/packages/create-webiny-project/init.js
@@ -86,7 +86,7 @@ module.exports = async function({ root, appName, templateName, tag, log }) {
t... | fix(create-webiny-project): pass cwd to git init command | Webiny_webiny-js | train | js |
41b4fec99362f42c8693ba08d594631ddf83db3f | diff --git a/service.js b/service.js
index <HASH>..<HASH> 100755
--- a/service.js
+++ b/service.js
@@ -113,7 +113,10 @@ class ServiceConsul extends service.Service {
}
});
- watch.on('change', (data, res) => nodesEndpoint.opposite.receive(data));
+ watch.on('change', (data, res) => {
+ conso... | fix: deliver ky endpoints result as dictionay | Kronos-Integration_kronos-service-consul | train | js |
1085ccb05845723748fd6a6b63c497361a8cb587 | diff --git a/views/js/uiForm.js b/views/js/uiForm.js
index <HASH>..<HASH> 100755
--- a/views/js/uiForm.js
+++ b/views/js/uiForm.js
@@ -531,6 +531,7 @@
*/
async function removePropertyGroup() {
const $groupNode = $(this).closest(".form-group");
+
try {
... | fix: add click on manage-schema as success callback | oat-sa_tao-core | train | js |
d02309117c505bb14fc3434d592293cf2e3ef3bb | diff --git a/core/poi/lib/index.js b/core/poi/lib/index.js
index <HASH>..<HASH> 100644
--- a/core/poi/lib/index.js
+++ b/core/poi/lib/index.js
@@ -191,7 +191,9 @@ module.exports = class PoiCore {
* @returns {void}
*/
initPlugins() {
- const cwd = this.resolveCwd()
+ const cwd = this.configPath
+ ?... | fix: plugins should be resolved from config dir | egoist_poi | train | js |
c2cde2703066a4d189a6c51bcca6ad416cb915f8 | 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
@@ -24,6 +24,7 @@ use Closure;
use Leevel\Collection\Collection;
use Leevel\Dat... | fix(relation): fix withoutRelationCondition when exception was happened | hunzhiwange_framework | train | php |
12fbe65045fbb2c8365bf798ccda04e55342f023 | diff --git a/aresponses/main.py b/aresponses/main.py
index <HASH>..<HASH> 100644
--- a/aresponses/main.py
+++ b/aresponses/main.py
@@ -61,7 +61,6 @@ class ResponsesMockServer(BaseTestServer):
def __init__(self, *, scheme=sentinel, host="127.0.0.1", **kwargs):
self._responses = []
- self._host_pat... | refactor: remove unused code | CircleUp_aresponses | train | py |
b02657d23a488df82afab25b2ba2f2c544de2522 | diff --git a/test/src/0_basic.js b/test/src/0_basic.js
index <HASH>..<HASH> 100644
--- a/test/src/0_basic.js
+++ b/test/src/0_basic.js
@@ -46,6 +46,12 @@ let tests = ( Scriptor, build ) => {
it( 'should have exported a addYieldHandler function', () => {
assert.strictEqual( typeof Scriptor.addYield... | test: Test for a few exported utilities | novacrazy_scriptor | train | js |
0db0d84cd339119dd0d6aff00ac0da0bf049c937 | diff --git a/test/units/ui.test.js b/test/units/ui.test.js
index <HASH>..<HASH> 100644
--- a/test/units/ui.test.js
+++ b/test/units/ui.test.js
@@ -19,7 +19,7 @@ module.exports = function() {
util.request('http://local.whistlejs.com/cgi-bin/rules/list');
util.request('http://local.whistlejs.com/cgi-bin/rootca');
... | test: <I> -> <I> | avwo_whistle | train | js |
6dea196bbdc232e2336aa349436add09865c15c3 | diff --git a/src/components/transitions/expand-transition.js b/src/components/transitions/expand-transition.js
index <HASH>..<HASH> 100644
--- a/src/components/transitions/expand-transition.js
+++ b/src/components/transitions/expand-transition.js
@@ -33,7 +33,7 @@ export default function (expandedParentClass = '') {
... | fix: expand-transition error (#<I>)
expand-transition generated error if it started expanded, as el._parent was not set
closes #<I>, closes #<I> | vuetifyjs_vuetify | train | js |
7a7b739fc67ad1281a0d7fb0edb427bd5762eda4 | diff --git a/src/lib/CollectStore.js b/src/lib/CollectStore.js
index <HASH>..<HASH> 100644
--- a/src/lib/CollectStore.js
+++ b/src/lib/CollectStore.js
@@ -7,10 +7,18 @@ import * as konnectors from './konnectors'
const INSTALL_TIMEOUT = 120 * 1000
+const sortByName = (a, b) => {
+ const nameA = a.name.toUpperCase(... | feat: sort konnectors by name in categories views :sparkles: | cozy_cozy-home | train | js |
e8b60de997fc06e1471d9e30a2e0f300bc18869f | diff --git a/src/core/services/layout/layout.js b/src/core/services/layout/layout.js
index <HASH>..<HASH> 100644
--- a/src/core/services/layout/layout.js
+++ b/src/core/services/layout/layout.js
@@ -138,6 +138,7 @@
function attributeWithObserve(className, addDirectiveAsClass) {
return function() {
... | fix(layout): restrict directives to attributes only | angular_material | train | js |
a8040cbb091b9b4201ee6d3c8c597680610ad8f7 | diff --git a/src/Action/DeleteAction.php b/src/Action/DeleteAction.php
index <HASH>..<HASH> 100644
--- a/src/Action/DeleteAction.php
+++ b/src/Action/DeleteAction.php
@@ -16,6 +16,7 @@ class DeleteAction extends Action
/** @var BaseModel $model */
public $model;
public $deleteStatus;
+ public $errorM... | feat(actions): Make errorMessage configurable | CottaCush_yii2-utils | train | php |
9e793ad5d02d538923055aec4f3ea2f8ce757d74 | diff --git a/samples/topics.js b/samples/topics.js
index <HASH>..<HASH> 100644
--- a/samples/topics.js
+++ b/samples/topics.js
@@ -208,18 +208,23 @@ async function publishWithRetrySettings(projectId, topicName, data) {
// Retry settings control how the publisher handles retryable failures
// Default values are sh... | docs(samples): correct publish retry settings (#<I>) | googleapis_nodejs-pubsub | train | js |
b9a8773a0a27846622f0e675590cb9d9900cb9e6 | diff --git a/src/toast/index.js b/src/toast/index.js
index <HASH>..<HASH> 100644
--- a/src/toast/index.js
+++ b/src/toast/index.js
@@ -108,6 +108,7 @@ function Toast(options = {}) {
if (options.onClose) {
options.onClose();
+ options.onClose = null;
}
if (multiple && !isServer) {
diff --g... | fix(Toast): onClose option should only be called once (#<I>) | youzan_vant | train | js,js |
25263fd473584e51c81bb3c5cedd4b9005dfd984 | diff --git a/lib/plugins/aws/invokeLocal/java/src/main/java/com/serverless/InvokeBridge.java b/lib/plugins/aws/invokeLocal/java/src/main/java/com/serverless/InvokeBridge.java
index <HASH>..<HASH> 100644
--- a/lib/plugins/aws/invokeLocal/java/src/main/java/com/serverless/InvokeBridge.java
+++ b/lib/plugins/aws/invokeLoc... | fix(Templates): Set ContextClassLoader for groovy and clojure (#<I>) | serverless_serverless | train | java |
cd8e53a8b2a3ee447f9b65319aab466f0358930a | diff --git a/src/jquery.smoothState.js b/src/jquery.smoothState.js
index <HASH>..<HASH> 100644
--- a/src/jquery.smoothState.js
+++ b/src/jquery.smoothState.js
@@ -513,7 +513,7 @@
* add a new item into the history object
* @param {bool} cacheResponse - used to determine if... | docs: Fix simple typo, thid -> this
There is a small typo in src/jquery.smoothState.js.
Should read `this` rather than `thid`. | miguel-perez_smoothState.js | train | js |
9fa4945bfdc9aaebc60394464b4864f96eddae56 | diff --git a/src/config/html.js b/src/config/html.js
index <HASH>..<HASH> 100644
--- a/src/config/html.js
+++ b/src/config/html.js
@@ -23,7 +23,7 @@ module.exports = {
({ relative }) => `<link rel="apple-touch-icon" sizes="1024x1024" href="${relative("apple-touch-icon-1024x1024.png")}">`,
() => `<meta name="a... | feat: attempt to use `appShortName` for the apple home screen icon (#<I>) | itgalaxy_favicons | train | js |
d14718da5943352400627fae1f5c71c325545118 | diff --git a/docs/lib/tags/issues.js b/docs/lib/tags/issues.js
index <HASH>..<HASH> 100644
--- a/docs/lib/tags/issues.js
+++ b/docs/lib/tags/issues.js
@@ -1,6 +1,6 @@
const util = require('hexo-util')
-function issue (args) {
+function issue (hexo, args) {
// {% issue 74 'not currently supported' %}
const nu... | docs: fixes #<I>, undefined issue | cypress-io_cypress | train | js |
ec07779396de983d829c021941d026bfce67d7c4 | diff --git a/service.js b/service.js
index <HASH>..<HASH> 100755
--- a/service.js
+++ b/service.js
@@ -58,7 +58,7 @@ class ServiceConsul extends service.Service {
}
};
- ['host', 'port', 'secure'].forEach(name => {
+ ['host', 'port', 'secure', 'ca'].forEach(name => {
if (config[name] !== undefined) {
... | fix: also pass co to consul if specified in config | Kronos-Integration_kronos-service-consul | train | js |
2242c2221884445ca59b8b1c55a140b5b4b71753 | diff --git a/packages/components/bolt-svg-animations/src/svg-animations.js b/packages/components/bolt-svg-animations/src/svg-animations.js
index <HASH>..<HASH> 100644
--- a/packages/components/bolt-svg-animations/src/svg-animations.js
+++ b/packages/components/bolt-svg-animations/src/svg-animations.js
@@ -32,9 +32,6 @@... | fix(svg-animations): pull out console log | bolt-design-system_bolt | train | js |
9f5b244f2a49a69560ccb871d2849f666bf48f58 | diff --git a/src/EloGank/Replay/Downloader/ReplayDownloader.php b/src/EloGank/Replay/Downloader/ReplayDownloader.php
index <HASH>..<HASH> 100644
--- a/src/EloGank/Replay/Downloader/ReplayDownloader.php
+++ b/src/EloGank/Replay/Downloader/ReplayDownloader.php
@@ -538,7 +538,7 @@ class ReplayDownloader
$lastInfo... | fix: wrong condition when the game is finished. | EloGank_lol-replay-downloader | train | php |
b1f77752729ad852ab423318af8ef95cb619e5aa | diff --git a/core/src/elements/ons-icon.js b/core/src/elements/ons-icon.js
index <HASH>..<HASH> 100644
--- a/core/src/elements/ons-icon.js
+++ b/core/src/elements/ons-icon.js
@@ -19,6 +19,7 @@ import onsElements from '../ons/elements';
import util from '../ons/util';
import autoStyle from '../ons/autostyle';
import ... | fix(ons-icon): Compile when content is ready | OnsenUI_OnsenUI | train | js |
b965356928e693726661b6ef7c2cc961d486226b | diff --git a/packages/button/src/constants/colorTypes.js b/packages/button/src/constants/colorTypes.js
index <HASH>..<HASH> 100644
--- a/packages/button/src/constants/colorTypes.js
+++ b/packages/button/src/constants/colorTypes.js
@@ -11,7 +11,7 @@ import {
export default {
[PRIMARY]: {
color: "#FF4411",
- ... | fix: fix button hover colors
affects: @crave/farmblocks-button
ISSUES CLOSED: #<I> | CraveFood_farmblocks | train | js |
b8c7e84c2c65b3e0772b83ed54a2d2b318ac8368 | diff --git a/lib/frames/sasl_frame.js b/lib/frames/sasl_frame.js
index <HASH>..<HASH> 100644
--- a/lib/frames/sasl_frame.js
+++ b/lib/frames/sasl_frame.js
@@ -214,7 +214,8 @@ function SaslInit(options) {
this.hostname = up.get(options, 2);
} else {
u.assertArguments(options, ['mechanism']);
- this.mecha... | fix(SaslInitFrame): mechanism _must_ be an amqp symbol | noodlefrenzy_node-amqp10 | train | js |
c9c6523fa85072383b3d7e35bf16ae796efcb09b | diff --git a/src/main/java/pl/domzal/junit/docker/rule/DockerRuleMountBuilderTo.java b/src/main/java/pl/domzal/junit/docker/rule/DockerRuleMountBuilderTo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/pl/domzal/junit/docker/rule/DockerRuleMountBuilderTo.java
+++ b/src/main/java/pl/domzal/junit/docker/rule/DockerR... | fix: DockerRuleMountBuilderTo was not visible outside base package | tdomzal_junit-docker-rule | train | java |
3bf18f26a2c3b1f4e37e0cf39da1950bdaeb6b83 | diff --git a/examples/block-images.js b/examples/block-images.js
index <HASH>..<HASH> 100644
--- a/examples/block-images.js
+++ b/examples/block-images.js
@@ -29,7 +29,7 @@ page.on('request', request => {
else
request.continue();
});
-await page.goto('https://www.reuters.com/');
+await page.goto('https://news.... | chore(examples): use news.google.com for block-images.js (#<I>)
Addresses insecure content errors on try-puppeteer
ebidel/try-puppeteer#7 | GoogleChrome_puppeteer | train | js |
30530a69037b28e58183fac2ebd63b6dcd3f8cee | diff --git a/squad/ci/management/commands/listen.py b/squad/ci/management/commands/listen.py
index <HASH>..<HASH> 100644
--- a/squad/ci/management/commands/listen.py
+++ b/squad/ci/management/commands/listen.py
@@ -71,13 +71,17 @@ class ListenerManager(object):
for backend in Backend.objects.all():
... | ci: listener: respect Backend listen_enabled
This is useful for a few use cases:
- LAVA instances that don't provide a ZMQ interface
- Having remote backends configured locally for debugging once in a
while, without being constantly connected to them. | Linaro_squad | train | py |
2c2a7cfec2e9cca92641ceb5f8ebc3ffd0acc54f | diff --git a/commands/protractor/src/config.js b/commands/protractor/src/config.js
index <HASH>..<HASH> 100644
--- a/commands/protractor/src/config.js
+++ b/commands/protractor/src/config.js
@@ -393,7 +393,8 @@ if (argv.hookRequire) {
argv.require.map(require);
if (
- (!argv.multiCapabilities || argv.multiCapabili... | fix(protractor): safe guard multiCapabilities | qlik-oss_after-work.js | train | js |
b04ca00d5a22225d6b4460752f689a2321d4ca8c | diff --git a/src/cli/cms/data/source.js b/src/cli/cms/data/source.js
index <HASH>..<HASH> 100644
--- a/src/cli/cms/data/source.js
+++ b/src/cli/cms/data/source.js
@@ -22,7 +22,7 @@ export function requestList(obj, tplPath, match, jsonPage) {
}else {
jsonPage[obj.key] = data
}
- ... | fix: The prefill was never triggered from the server | abecms_abecms | train | js |
1d83b17612cdf5ab16c27668bd241d64dd872e5c | diff --git a/src/dependenpy/structures.py b/src/dependenpy/structures.py
index <HASH>..<HASH> 100644
--- a/src/dependenpy/structures.py
+++ b/src/dependenpy/structures.py
@@ -119,7 +119,7 @@ class Matrix(PrintMixin):
if not self.keys or not self.data:
return ""
zero = kwargs.pop("zero", "... | fix: Handle case where all modules names are shorter than header
If the names of all packages are shorter than "Module", then the header is not aligned with the rest of the table.
PR #<I>: <URL> | Genida_dependenpy | train | py |
74df676e26f8bfdfc007e84db419eeee10dd3270 | diff --git a/benchmarks/index.js b/benchmarks/index.js
index <HASH>..<HASH> 100644
--- a/benchmarks/index.js
+++ b/benchmarks/index.js
@@ -20,7 +20,10 @@ const httpOptions = {
method: 'GET',
path: '/',
port: 3000,
- agent: new http.Agent({ keepAlive: true })
+ agent: new http.Agent({
+ keepAlive: true,
+ ... | fix: set maxSockets on benchmark | mcollina_undici | train | js |
38136f3533c6d5b7aa5f9b31a666266daaa2fc23 | diff --git a/packages/theme-data/src/baseTheme/system/colorScheme.js b/packages/theme-data/src/baseTheme/system/colorScheme.js
index <HASH>..<HASH> 100644
--- a/packages/theme-data/src/baseTheme/system/colorScheme.js
+++ b/packages/theme-data/src/baseTheme/system/colorScheme.js
@@ -126,7 +126,7 @@ export default {
}... | fix: set success color for light gray to correct value | Autodesk_hig | train | js,js |
71e9a9c721b4ce0901f7b72c028cd6297197aa39 | diff --git a/.jsdoc.js b/.jsdoc.js
index <HASH>..<HASH> 100644
--- a/.jsdoc.js
+++ b/.jsdoc.js
@@ -41,5 +41,8 @@ module.exports = {
sourceFiles: false,
systemName: 'dialogflow',
theme: 'lumen'
+ },
+ markdown: {
+ idInHeadings: true
}
}; | fix(docs): make anchors work in jsdoc (#<I>) | googleapis_nodejs-dialogflow | train | js |
18367db7ba65c6746d3431217b5f8a14226ca147 | diff --git a/src/js/core/height-match.js b/src/js/core/height-match.js
index <HASH>..<HASH> 100644
--- a/src/js/core/height-match.js
+++ b/src/js/core/height-match.js
@@ -15,7 +15,6 @@ export default {
data: {
target: '> *',
row: true,
- forceHeight: true,
},
computed: {
diff -... | refactor: cleanup properties from flexbug mixin | uikit_uikit | train | js,js |
ef98a935e474bec55aad1a4c15607097c686357f | diff --git a/src/files.js b/src/files.js
index <HASH>..<HASH> 100644
--- a/src/files.js
+++ b/src/files.js
@@ -378,6 +378,11 @@ module.exports = (common) => {
next()
}
}, () => {
+ files = files.sort((a, b) => {
+ if (a.path > b.path) return 1
+ ... | fix(files): don't expect a specific sorting of files | ipfs_interface-js-ipfs-core | train | js |
2a024941fce4db844a3e789ef755a3459937638e | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -181,8 +181,6 @@ ChromeHeadlessBrowser.prototype = {
name: 'ChromeHeadless',
DEFAULT_CMD: {
- // Try chromium-browser before chromium to avoid conflict with the legacy
- // chromium-bsu package previously known a... | refactor: remove incorrect comment
The chromium-browser-related comment doesn't apply to the ChromeHeadless browser. | karma-runner_karma-chrome-launcher | train | js |
fcaba933236a78be45345de2da5f3127ae3e5d1f | diff --git a/task/perf.js b/task/perf.js
index <HASH>..<HASH> 100644
--- a/task/perf.js
+++ b/task/perf.js
@@ -9,7 +9,7 @@ var Server = require('karma').Server;
var benchFilter = gulpFilter(['**', '!**/benchmark.js'], { restore: true });
var filterEverythingExceptWebcomponents = gulpFilter(['**/*','!**/webcomponents.... | chore: make task async | skatejs_build | train | js |
2a6bc31b3b7f63528055476f79327f71d11ef015 | diff --git a/test/cartridgeCopyAssetsSpec.js b/test/cartridgeCopyAssetsSpec.js
index <HASH>..<HASH> 100644
--- a/test/cartridgeCopyAssetsSpec.js
+++ b/test/cartridgeCopyAssetsSpec.js
@@ -36,14 +36,5 @@ describe('As a gulpfile', function() {
it('should add the watch:copy-assets task to the watch group', function() {
... | chore: Remove uncommented, invalid test (doesn't add task to clean path) | cartridge_cartridge-copy-assets | train | js |
b54a0bba04463538cf0ea889199dbc15271d0fa6 | diff --git a/examples/demos/basic.js b/examples/demos/basic.js
index <HASH>..<HASH> 100644
--- a/examples/demos/basic.js
+++ b/examples/demos/basic.js
@@ -1,7 +1,7 @@
import React from 'react'
import { Calendar, Views } from 'react-big-calendar'
import events from '../events'
-import dates from '../../src/utils/date... | docs: update imports in examples (#<I>) | intljusticemission_react-big-calendar | train | js,js |
5e1cfc58236bc5d7f1798a824dff1da5187eed94 | diff --git a/src/build.js b/src/build.js
index <HASH>..<HASH> 100644
--- a/src/build.js
+++ b/src/build.js
@@ -1534,7 +1534,7 @@ function getRules(id) {
// Requires that function parameters are typed as readonly to prevent accidental mutation of inputs
// @see https://github.com/typescript-eslint/typescript-esl... | feat: disable `@typescript-eslint/prefer-readonly-parameter-types`
It seems to trip over generics, and it was merely a nice-to-have rule. | wildpeaks_packages-eslint-config | train | js |
590f2a146cb3d7deecd772e7369c273657db6d85 | diff --git a/DependencyInjection/ClientFactory.php b/DependencyInjection/ClientFactory.php
index <HASH>..<HASH> 100644
--- a/DependencyInjection/ClientFactory.php
+++ b/DependencyInjection/ClientFactory.php
@@ -7,6 +7,7 @@ use Bugsnag\BugsnagBundle\Request\SymfonyResolver;
use Bugsnag\Callbacks\CustomUser;
use Bugsna... | feat: add Symfony runtime version reporting
Uses new hook in Configuration to append the Symfony application version to device data to make it
reportable. | bugsnag_bugsnag-symfony | train | php |
4dcf555f7faa41ef12647135acd1de7dddd899ab | diff --git a/src/types/color.js b/src/types/color.js
index <HASH>..<HASH> 100644
--- a/src/types/color.js
+++ b/src/types/color.js
@@ -8,11 +8,11 @@
* @property {number} saturation
* @property {number} lightness
*/
-export type HslColor = {
+export type HslColor = {|
hue: number,
saturation: number,
li... | chore(types): Add “exact” object types to the color types (#<I>) | styled-components_polished | train | js |
5500e4480b325f57e5e541809f50f9b4921bac7b | diff --git a/example/src/HomePage.react.js b/example/src/HomePage.react.js
index <HASH>..<HASH> 100644
--- a/example/src/HomePage.react.js
+++ b/example/src/HomePage.react.js
@@ -359,8 +359,7 @@ function Home() {
icon="dollar-sign"
header={
<a>
- 132
- ... | fix(Homepage): StampCards headers missing spaces | tabler_tabler-react | train | js |
8f78fc96f8fe6f3dad8d7673e8f4664d9ab6eadc | diff --git a/imgui/__init__.py b/imgui/__init__.py
index <HASH>..<HASH> 100644
--- a/imgui/__init__.py
+++ b/imgui/__init__.py
@@ -129,3 +129,9 @@ WINDOW_ALWAYS_HORIZONTAL_SCROLLBAR = core.WINDOW_ALWAYS_HORIZONTAL_SCROLLBAR
#: Ensure child windows without border uses style.WindowPadding (ignored by
#: default for non... | docs: some test attribs [skip ci] | swistakm_pyimgui | train | py |
42914f9a606598114943135011ef6284f40f0bba | diff --git a/spec/spellcheck.spec.js b/spec/spellcheck.spec.js
index <HASH>..<HASH> 100644
--- a/spec/spellcheck.spec.js
+++ b/spec/spellcheck.spec.js
@@ -70,7 +70,7 @@ describe('Spellcheck:', function () {
expect(misspelledWord.length).toEqual(1)
// correct the error
- misspelledWord.innerHT... | test: Fix a test in the spellchecker | livingdocsIO_editable.js | train | js |
85fa3db1218432d33425536f9b9b145e65edbd29 | diff --git a/test/test_parser.rb b/test/test_parser.rb
index <HASH>..<HASH> 100644
--- a/test/test_parser.rb
+++ b/test/test_parser.rb
@@ -14,5 +14,18 @@ module ParseGemspec
end
end
end
+
+ sub_test_case 'rubocop-select' do
+ gemspec = File.read('./test/fixtures/rubocop-select/rubocop-selec... | chore(test): test git based fixture | packsaddle_ruby-parse_gemspec | train | rb |
1715f2d8e60085b55afc6125604197cccff940bc | diff --git a/src/components/VApp/mixins/app-theme.js b/src/components/VApp/mixins/app-theme.js
index <HASH>..<HASH> 100644
--- a/src/components/VApp/mixins/app-theme.js
+++ b/src/components/VApp/mixins/app-theme.js
@@ -48,12 +48,19 @@ export default {
},
vueMeta () {
if (this.$vuetify.theme === false) ... | fix(app-theme): add csp nonce to vueMeta
when using `vue-meta` or `nuxt`, the **cspNonce** option was not being applied
fixes #<I> | vuetifyjs_vuetify | train | js |
d960f4f3f82262d387c70ebc0b49f3cd55ef6029 | diff --git a/tests/integration/mapillary_tools_upload_provider/test_upload_provider.py b/tests/integration/mapillary_tools_upload_provider/test_upload_provider.py
index <HASH>..<HASH> 100644
--- a/tests/integration/mapillary_tools_upload_provider/test_upload_provider.py
+++ b/tests/integration/mapillary_tools_upload_pr... | fix: updating the user key in the tests | mapillary_mapillary_tools | train | py |
9b141d7584c5d103fba00f1d4199630d8eb9dc24 | diff --git a/ui/src/components/input/QInput.js b/ui/src/components/input/QInput.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/input/QInput.js
+++ b/ui/src/components/input/QInput.js
@@ -208,7 +208,7 @@ export default createComponent({
}
function onInput (e) {
- if (!e || !e.target || e.target.... | fix(QInput): set temp value when composing so on re-render the correct text is used #<I> (#<I>) | quasarframework_quasar | train | js |
73ee9ba13cb4b337f06e2ed61099d6af9a4968da | diff --git a/src/__tests__/renderHook.js b/src/__tests__/renderHook.js
index <HASH>..<HASH> 100644
--- a/src/__tests__/renderHook.js
+++ b/src/__tests__/renderHook.js
@@ -1,7 +1,7 @@
import React from 'react'
import {renderHook} from '../pure'
-test('gives comitted result', () => {
+test('gives committed result', (... | test: Correct a typo in test name (#<I>) | testing-library_react-testing-library | train | js |
13782847db5ff748ee49b67f753c92738bce2cda | diff --git a/src/config/commandOptions.js b/src/config/commandOptions.js
index <HASH>..<HASH> 100644
--- a/src/config/commandOptions.js
+++ b/src/config/commandOptions.js
@@ -136,8 +136,7 @@ export default {
},
useInProcess: {
type: 'boolean',
- usage:
- "Run handlers in the same process as 'serverle... | chore: remove memory leak warning from commands (for now) | dherault_serverless-offline | train | js |
b90d1700bc70c0bc694e114263f615eb9f964eb6 | diff --git a/packages/metascraper-media-provider/test/index.js b/packages/metascraper-media-provider/test/index.js
index <HASH>..<HASH> 100644
--- a/packages/metascraper-media-provider/test/index.js
+++ b/packages/metascraper-media-provider/test/index.js
@@ -5,11 +5,11 @@ const snapshot = require('snap-shot')
const sh... | test: fix load proxies from env | microlinkhq_metascraper | train | js |
cecac9217271241d82334af245603f42d501b7a7 | diff --git a/src/filters.js b/src/filters.js
index <HASH>..<HASH> 100644
--- a/src/filters.js
+++ b/src/filters.js
@@ -20,6 +20,7 @@ angular.module('angular.filter', [
'a8m.repeat',
'a8m.concat',
+ 'a8m.contains',
'a8m.unique',
'a8m.is-empty',
'a8m.after', | fix(filters): register contains/some filter | a8m_angular-filter | train | js |
20a190a19fe13bcf3f19f7224f3ed13e5c61dbed | diff --git a/src/base/events.js b/src/base/events.js
index <HASH>..<HASH> 100644
--- a/src/base/events.js
+++ b/src/base/events.js
@@ -495,7 +495,7 @@ Events.MEDIACONTROL_RENDERED = 'mediacontrol:rendered'
/**
* Fired when the player enters/exit on fullscreen
*
- * @event MEDIACONTROL_SHOW
+ * @event MEDIACONTROL_... | docs: fixes fullscreen event name | clappr_clappr | train | js |
bd74cab5e8328c7be4ad2f6fe549700f8e927a3c | diff --git a/spec/range.spec.js b/spec/range.spec.js
index <HASH>..<HASH> 100644
--- a/spec/range.spec.js
+++ b/spec/range.spec.js
@@ -1,16 +1,18 @@
'use strict';
var Ajv = require('ajv');
+var ajvPack = require('ajv-pack');
var defFunc = require('../keywords/range');
var defineKeywords = require('..');
var shou... | test: range keyword with ajv-pack | epoberezkin_ajv-keywords | train | js |
ff767056a3396218c88c2fdb1ab544ade67b3d07 | diff --git a/packages/site/pages/components/icon.js b/packages/site/pages/components/icon.js
index <HASH>..<HASH> 100644
--- a/packages/site/pages/components/icon.js
+++ b/packages/site/pages/components/icon.js
@@ -106,7 +106,7 @@ export default withServerProps(_ => (
/>
<SectionHeading>Size</SectionHea... | fix(site): fix number of icon sizes
Fixes: #<I> | pluralsight_design-system | train | js |
e0d79ae6077e15cda81b95268aaa9a9672d36345 | diff --git a/src/Iron.php b/src/Iron.php
index <HASH>..<HASH> 100644
--- a/src/Iron.php
+++ b/src/Iron.php
@@ -51,7 +51,7 @@ class Iron implements IronInterface
public function __construct(array $options)
{
$this->setOptions($options);
- $this->macPrefix = 'Fe26.' . $this->macFormatVersion;
+ ... | refactor: use double-quotes for MAC prefix | shawm11_iron-crypto-php | train | php |
f29d03b26b909964688731efd349e44657c5f766 | diff --git a/src/Modal/index.js b/src/Modal/index.js
index <HASH>..<HASH> 100644
--- a/src/Modal/index.js
+++ b/src/Modal/index.js
@@ -138,6 +138,7 @@ const CloseContainer = styled.div`
border-top-right-radius: ${({ isMobileFullPage }) =>
!isMobileFullPage && "12px"}; // TODO: create token
transition: ${tran... | fix(Modal): click ability under CloseContainer (#<I>) | kiwicom_orbit-components | train | js |
bcedd1e7caee9cb3dbd23d9465ed613502f487c7 | 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
@@ -70,6 +70,11 @@ class Exceptions
$this->config = $config;
$this->request = $request;
$this->response = $response;
+
+ ... | fix: add workaround for upgraded users who not update Config\Exceptions
Uncaught ErrorException: Undefined property: Config\Exceptions::$sensitiveDataInTrace | codeigniter4_CodeIgniter4 | train | php |
ac622fac09f9987940d5cdb2bee5aa535c032046 | diff --git a/sslyze/plugins/heartbleed_plugin.py b/sslyze/plugins/heartbleed_plugin.py
index <HASH>..<HASH> 100644
--- a/sslyze/plugins/heartbleed_plugin.py
+++ b/sslyze/plugins/heartbleed_plugin.py
@@ -196,7 +196,7 @@ def _do_handshake_with_heartbleed(self): # type: ignore
if did_receive_hello_done:
exp... | docs: fix simple typo, hearbeat -> heartbeat
There is a small typo in sslyze/plugins/heartbleed_plugin.py.
Should read `heartbeat` rather than `hearbeat`. | nabla-c0d3_sslyze | train | py |
1fb23899da9d2081a004fbb8e7d1df2ddc477069 | diff --git a/src/hooks-worker-client.js b/src/hooks-worker-client.js
index <HASH>..<HASH> 100644
--- a/src/hooks-worker-client.js
+++ b/src/hooks-worker-client.js
@@ -60,7 +60,7 @@ class HooksWorkerClient {
logger.verbose('Terminating hooks handler process, PID', this.handler.pid);
if (this.handler.terminated... | chore: Fix AppVeyor build | apiaryio_dredd | train | js |
fc17404e6361536d4647be93d6925ded9970d8af | diff --git a/react-onsenui/src/index.umd.js b/react-onsenui/src/index.umd.js
index <HASH>..<HASH> 100644
--- a/react-onsenui/src/index.umd.js
+++ b/react-onsenui/src/index.umd.js
@@ -1,3 +1,6 @@
+// make sure Onsen UI setup is done (polyfills etc.)
+import 'onsenui';
+
import ActionSheet from './components/ActionSheet... | fix(react): Make sure polyfills are loaded before components | OnsenUI_OnsenUI | train | js |
63426a05a6147ba31aeb70d12ad4c6ec1443ca63 | diff --git a/src/View/Helper/CrudViewHelper.php b/src/View/Helper/CrudViewHelper.php
index <HASH>..<HASH> 100644
--- a/src/View/Helper/CrudViewHelper.php
+++ b/src/View/Helper/CrudViewHelper.php
@@ -209,7 +209,10 @@ class CrudViewHelper extends Helper
}
$format = isset($options['format']) ? $options['... | fix: do not send value in when its an incorrect type | FriendsOfCake_crud-view | train | php |
2745505fcb97a21e3d57f59312c499757b72169f | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -54,6 +54,9 @@ html_context = {
}
}
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'crud-view'
+
# Grouping the document tree into LaTeX files. List of tuples
# (source start fil... | docs: move custom setting up | FriendsOfCake_crud-view | train | py |
c11ba86d6e4aef61b2952af346509bfe62ae7c75 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -25,6 +25,7 @@ function PostHTML (plugins) {
this.version = pkg.version
this.name = pkg.name
this.plugins = typeof plugins === 'function' ? [plugins] : plugins || []
+ this.source = ''
/**
* ... | feat: source in tree, close issue #<I> | posthtml_posthtml | train | js |
0883674f765c4293b493dab203e51c6a3d1fa2d5 | diff --git a/lib/session.js b/lib/session.js
index <HASH>..<HASH> 100755
--- a/lib/session.js
+++ b/lib/session.js
@@ -443,14 +443,12 @@ function hash(sess) {
}
/**
- * cookie use maxage, hack to compat connect type `maxAge`
+ * cookie use maxAge, hack to compat connect type `maxage`
*/
function compatMaxage(opt... | fix: maxage => maxAge (#<I>) | koajs_generic-session | train | js |
d93b1afe79ea61bea592e5d4a3b06c5949c4dfcd | diff --git a/tests/core_tests.py b/tests/core_tests.py
index <HASH>..<HASH> 100644
--- a/tests/core_tests.py
+++ b/tests/core_tests.py
@@ -588,10 +588,10 @@ class TestCore(SupersetTestCase):
) == [{"slice_id": slc.id, "viz_error": None, "viz_status": "success"}]
def test_cache_logging(self):
- sl... | test: test_cache_logging is not depending on other dashboard (#<I>)
* Changed test_cache_logging to be idempotent and not depending on other data than tested one
* Changed cache uid to be depending on table, not datashource | apache_incubator-superset | train | py |
e012abf51d42e11901b17fd207bfc88018ec72dc | diff --git a/src/android/NITHelper.java b/src/android/NITHelper.java
index <HASH>..<HASH> 100644
--- a/src/android/NITHelper.java
+++ b/src/android/NITHelper.java
@@ -71,6 +71,35 @@ public class NITHelper {
return map;
}
+ public static HashMap<String, Object> validateMapArgument(JSONArray args, int ... | feat(android): utility method to validate map arg | nearit_Cordova-SDK | train | java |
4a9dace8140adfbdf3e1508368e12d17b70ff9ae | diff --git a/docs/examples/go-ipfs-as-a-library/main.go b/docs/examples/go-ipfs-as-a-library/main.go
index <HASH>..<HASH> 100644
--- a/docs/examples/go-ipfs-as-a-library/main.go
+++ b/docs/examples/go-ipfs-as-a-library/main.go
@@ -312,7 +312,12 @@ func main() {
// "/ip4/127.0.0.1/udp/4010/quic/p2p/QmZp2fhDLxjYue2RiU... | refactor(as-a-library): wrap error
wrap error handling from connectToPeers in a closure | ipfs_go-ipfs | train | go |
10a92a47aece95fc0c0c100932b772fd37eae606 | diff --git a/lib/cron_for_github/ping.rb b/lib/cron_for_github/ping.rb
index <HASH>..<HASH> 100644
--- a/lib/cron_for_github/ping.rb
+++ b/lib/cron_for_github/ping.rb
@@ -1,6 +1,6 @@
module CronForGithub
class Ping
- NAMESPACE = 'cron'
+ NAMESPACE = 'cron_for_github'
BASE = 'master'
def ping(param... | chore(app): change name space | packsaddle_ruby-cron_for_github | train | rb |
7745369dce1f399409302d2a6d7427c45d400df0 | diff --git a/builder/osc/bsu/builder_acc_test.go b/builder/osc/bsu/builder_acc_test.go
index <HASH>..<HASH> 100644
--- a/builder/osc/bsu/builder_acc_test.go
+++ b/builder/osc/bsu/builder_acc_test.go
@@ -47,7 +47,8 @@ const testBuilderAccBasic = `
"vm_type": "t2.micro",
"source_omi": "ami-abe953fa",
"ssh_userna... | chore: set true associate_public_ip_address attribute to test the step_public_ip | hashicorp_packer | train | go |
08c14f09d262cd34513d8fa8d9c4366457d8d466 | diff --git a/test/map-test.js b/test/map-test.js
index <HASH>..<HASH> 100644
--- a/test/map-test.js
+++ b/test/map-test.js
@@ -5,7 +5,7 @@ const { expect } = require("chai");
const { spy, stub } = require("sinon");
const { map } = require("../src");
-describe("map function", function() {
+describe("map operator", f... | chore: operator not function for test titles. | Netflix_falcor-observable | train | js,js |
fa32955638d61ed1114866339b00223412f4b582 | diff --git a/src/lib/build.js b/src/lib/build.js
index <HASH>..<HASH> 100644
--- a/src/lib/build.js
+++ b/src/lib/build.js
@@ -18,7 +18,7 @@ const netlifyBuildPromise = import('@netlify/build')
* @param {import('commander').OptionValues} config.options
* @returns {BuildConfig}
*/
-const getBuildOptions = ({ cache... | fix: pass through cwd flag in getBuildOptions (#<I>) | netlify_cli | train | js |
5e0cf452aebb11cff4a3357548baf6adb57a830f | diff --git a/spec/matcher_spec.js b/spec/matcher_spec.js
index <HASH>..<HASH> 100644
--- a/spec/matcher_spec.js
+++ b/spec/matcher_spec.js
@@ -1,4 +1,4 @@
-var Rematch = require('../lib/Rematch').default;
+var Rematch = require('../lib/rematch').default;
describe("Clauses", () => {
it('should support a Value case... | test: support case-sensitive filesystems | jiaweihli_rematch | train | js,js |
b71593d8af50cf69053e6ea2623ed3f514d0db85 | diff --git a/test/functional/mongo_client_tests.js b/test/functional/mongo_client_tests.js
index <HASH>..<HASH> 100644
--- a/test/functional/mongo_client_tests.js
+++ b/test/functional/mongo_client_tests.js
@@ -616,7 +616,7 @@ describe('MongoClient', function() {
var url = configuration
.url()
- ... | test: fix test that assumes old url style for replicasets | mongodb_node-mongodb-native | train | js |
78ac2e18d6226071474cdfeb38bf92bf522d4479 | diff --git a/src/Cursor.js b/src/Cursor.js
index <HASH>..<HASH> 100644
--- a/src/Cursor.js
+++ b/src/Cursor.js
@@ -21,10 +21,10 @@ export class Cursor {
* It's useful when you want to chain few streams before pipe it into the cursor or want to modify what cursor pipes to `stdout`.
*
* @constructor
- * @pa... | refactor(cursor): Rename stdout to stream property | kittikjs_cursor | train | js |
3d666032f18531aad7b22cb7c5aaeb85b68ecab8 | diff --git a/lib/rules/index.js b/lib/rules/index.js
index <HASH>..<HASH> 100644
--- a/lib/rules/index.js
+++ b/lib/rules/index.js
@@ -198,10 +198,10 @@ function initRules(req) {
if (valueHeader) {
req.rulesHeaders[VALUE_HEADER] = valueHeader;
}
- if (valueHeader) {
+ if (HOST_HEADER) {
req.rulesHeade... | feat: Support replay ws request | avwo_whistle | train | js |
c522e624a34f5702be3f61a6a2224524c654cdd1 | diff --git a/src/server/public/abecms/scripts/modules/EditorReferences.js b/src/server/public/abecms/scripts/modules/EditorReferences.js
index <HASH>..<HASH> 100644
--- a/src/server/public/abecms/scripts/modules/EditorReferences.js
+++ b/src/server/public/abecms/scripts/modules/EditorReferences.js
@@ -6,6 +6,8 @@ impor... | fix: don't init on other page than reference editor | abecms_abecms | train | js |
79bc088beb87897c6316bbfe1fb3ab0ac559b6f0 | diff --git a/packages/@vue/cli-service/lib/util/prepareProxy.js b/packages/@vue/cli-service/lib/util/prepareProxy.js
index <HASH>..<HASH> 100644
--- a/packages/@vue/cli-service/lib/util/prepareProxy.js
+++ b/packages/@vue/cli-service/lib/util/prepareProxy.js
@@ -86,7 +86,7 @@ module.exports = function prepareProxy (pro... | fix(serve): don't set header origin if using an agent (#<I>) | vuejs_vue-cli | train | js |
1a0f7e02f19650303d333231585198aed194cc8c | diff --git a/bin/whistle.js b/bin/whistle.js
index <HASH>..<HASH> 100755
--- a/bin/whistle.js
+++ b/bin/whistle.js
@@ -37,7 +37,7 @@ function showStartupInfo(err, options) {
info('[i] Please check if ' + config.name + ' is already running or if another application is using the port');
info('[i] Or if another appl... | style: Add color and style in console | avwo_whistle | train | js |
5b793831e9f174b923382d222b266c4d8010f3de | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -60,7 +60,7 @@ function matchSorter(items, value, options = {}) {
* @param {Array} keys - the keys to get values from the item for the ranking
* @param {String} value - the value to rank against
* @param ... | docs: fix jsdoc for highest ranking method (#<I>)
* Fix jsdoc for highest ranking method
* Remove unnecessary info in jsdoc | kentcdodds_match-sorter | train | js |
9c773d6d6be70675a1cda8d8a3f82bbede5be959 | diff --git a/internal/pipe/brew/brew.go b/internal/pipe/brew/brew.go
index <HASH>..<HASH> 100644
--- a/internal/pipe/brew/brew.go
+++ b/internal/pipe/brew/brew.go
@@ -153,7 +153,6 @@ func doRun(ctx *context.Context, brew config.Homebrew, cl client.Client) error {
return pipe.Skip("brew tap name is not set")
}
- ... | fix: remove some deprecated brew todos | goreleaser_goreleaser | train | go,go |
da80767784e84cce1bda8fffa9c840058f2f3a29 | diff --git a/src/rule/rule-error.js b/src/rule/rule-error.js
index <HASH>..<HASH> 100644
--- a/src/rule/rule-error.js
+++ b/src/rule/rule-error.js
@@ -5,7 +5,7 @@ class RuleError {
* RuleError is like Error object.
* It's used for adding to TextLintResult.
* @param {string} message error message shoul... | fix(rule): fix jsdoc annotation | textlint_textlint | train | js |
6806e44e99505446f6a25622bc32ac6267dd7adc | diff --git a/src/router.js b/src/router.js
index <HASH>..<HASH> 100644
--- a/src/router.js
+++ b/src/router.js
@@ -859,7 +859,7 @@ function connectRootRouter(host, invalidate, options) {
}
const method = pushOffset ? "pushState" : "replaceState";
- const nextState = [entry, ...state.slice(offset + ... | fix(router): navigate back state offset related to history method | hybridsjs_hybrids | train | js |
21a1de2ee1050ed9aff4de33084c8395b3fa571a | diff --git a/src/command.js b/src/command.js
index <HASH>..<HASH> 100644
--- a/src/command.js
+++ b/src/command.js
@@ -9,7 +9,10 @@ export function processArguments(args, commandName, RedisMock) {
}
commandArgs = commandArgs.map(
// transform non-buffer arguments to strings to simulate real ioredis behavior
... | chore: trigger prettier (#<I>)
* chore: trigger prettier
* Sync with Prettier | stipsan_ioredis-mock | train | js |
5be13c73f08b645aa49d3368766d7020e463706c | diff --git a/src/aurelia-orm.js b/src/aurelia-orm.js
index <HASH>..<HASH> 100644
--- a/src/aurelia-orm.js
+++ b/src/aurelia-orm.js
@@ -4,8 +4,8 @@ import {ValidationRules} from 'aurelia-validation';
import {Entity} from './entity';
// added for bundling
-import {AssociationSelect} from './component/association-sele... | feat(project): export components to enable patching | SpoonX_aurelia-orm | train | js |
ffb7b042c1081d02c72d9e24bd4a0bd33efcf6a2 | diff --git a/lib/utils/is-module-should-be-extracted.js b/lib/utils/is-module-should-be-extracted.js
index <HASH>..<HASH> 100644
--- a/lib/utils/is-module-should-be-extracted.js
+++ b/lib/utils/is-module-should-be-extracted.js
@@ -22,7 +22,7 @@ function isModuleShouldBeExtracted(module) {
issuerResource = typeof i... | fix(loader): check module request properly in isModuleShouldBeExtracted with DLL Plugin
ISSUES CLOSED: #<I> | kisenka_svg-sprite-loader | train | js |
a8ca1ae55cd1418288f1fbce08245b0c8ce5f1bc | diff --git a/src/Lob/Resource/IntlVerifications.php b/src/Lob/Resource/IntlVerifications.php
index <HASH>..<HASH> 100644
--- a/src/Lob/Resource/IntlVerifications.php
+++ b/src/Lob/Resource/IntlVerifications.php
@@ -22,7 +22,7 @@ class IntlVerifications extends ResourceBase
throw new BadMethodCallException(__CL... | fix(intl-ver): change method signature to match ResourceBase (#<I>) | lob_lob-php | train | php |
817d8ccdc0851a79de0e867163ee2b15bb82a2d6 | diff --git a/helpers.php b/helpers.php
index <HASH>..<HASH> 100644
--- a/helpers.php
+++ b/helpers.php
@@ -109,7 +109,7 @@ if (!function_exists('view')) {
* @return void
*/
function view($view, $data = []) {
- View::make($view, $data);
+ return View::make($view, $data);
}
}
@@ -455,6 +455,7 @@ if... | feat: return view instance
and depreciate fn helper in <I> | modulusphp_support | train | php |
05569c501ec97e727fbe914c48444223d98f9c9b | diff --git a/src/anyconfig/api.py b/src/anyconfig/api.py
index <HASH>..<HASH> 100644
--- a/src/anyconfig/api.py
+++ b/src/anyconfig/api.py
@@ -84,7 +84,7 @@ from __future__ import absolute_import
import warnings
# Import some global constants will be re-exported:
-from anyconfig.globals import (
+from anyconfig.glo... | fix: add workarounds for the F<I> (import-but-not-used) errors by flake8 (pyflakes) | ssato_python-anyconfig | train | py |
866f6dfc14558590015e7b7269cb3fb3f376be09 | diff --git a/lib/instrumentation/http-shared.js b/lib/instrumentation/http-shared.js
index <HASH>..<HASH> 100644
--- a/lib/instrumentation/http-shared.js
+++ b/lib/instrumentation/http-shared.js
@@ -137,7 +137,7 @@ exports.traceOutgoingRequest = function (agent, moduleName, method) {
return function (orig) {
re... | fix: 'http' spans should be marked as exitSpans (#<I>)
I don't think this currently impacts anything. Because http spans always
propagate trace-context they cannot be compressed or dropped. If we
later add child HTTP spans (to breakdown dns, connect, etc. phases) then
it will matter. | elastic_apm-agent-nodejs | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.