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 |
|---|---|---|---|---|---|
6216f359f647258305d26dce64af3c189abc08de | diff --git a/commitlint.config.js b/commitlint.config.js
index <HASH>..<HASH> 100644
--- a/commitlint.config.js
+++ b/commitlint.config.js
@@ -24,6 +24,7 @@ module.exports = {
'AWS Lambda',
'AWS Local Invocation',
'AWS S3',
+ 'AWS Schedule',
'AWS SNS',
'AWS SQS',
... | chore: Register "AWS Schedule" commit message scope | serverless_serverless | train | js |
e5a80f5049b93197a3a78b7d823e067740f6fd63 | diff --git a/server/etcdserver/server.go b/server/etcdserver/server.go
index <HASH>..<HASH> 100644
--- a/server/etcdserver/server.go
+++ b/server/etcdserver/server.go
@@ -817,7 +817,7 @@ func (s *EtcdServer) run() {
s.cancel()
sched.Stop()
- // wait for gouroutines before closing raft so wal stays open
+ // w... | fix: typo gouroutine
fix: typo gouroutine | etcd-io_etcd | train | go |
67e3a84cf7bd3230e93db920e0e7357be54ef075 | diff --git a/okdownload/src/main/java/com/liulishuo/okdownload/DownloadTask.java b/okdownload/src/main/java/com/liulishuo/okdownload/DownloadTask.java
index <HASH>..<HASH> 100644
--- a/okdownload/src/main/java/com/liulishuo/okdownload/DownloadTask.java
+++ b/okdownload/src/main/java/com/liulishuo/okdownload/DownloadTas... | fix: fix toString of DownloadTask with wrong note problem | lingochamp_okdownload | train | java |
6a538786c5f20e27d81fe2c8fa9ae0ec46b02d1b | diff --git a/stan/model.py b/stan/model.py
index <HASH>..<HASH> 100644
--- a/stan/model.py
+++ b/stan/model.py
@@ -351,8 +351,6 @@ class Model:
The unconstrained parameters are passed to the log_prob_grad
function in stan::model.
"""
- assert isinstance(self.data, dict)
-
... | style: Remove unnecessary assertion
Remove an unnecessary assertion. The type for `data` is well-documented
and checked by the type checker. | stan-dev_pystan | train | py |
8dab3addd1d8130799fc834468fc4743c509c66b | diff --git a/bigchaindb/pipelines/block.py b/bigchaindb/pipelines/block.py
index <HASH>..<HASH> 100644
--- a/bigchaindb/pipelines/block.py
+++ b/bigchaindb/pipelines/block.py
@@ -116,7 +116,7 @@ class BlockPipeline:
Returns:
:class:`~bigchaindb.models.Block`: The Block.
"""
- logge... | chore: fix printing out transactions on block creation
instead of printing the list `block.transactions` print `len(block.transactions)` | bigchaindb_bigchaindb | train | py |
018c496140581e65fb670600de9843b87ac929c5 | diff --git a/lib/utils.js b/lib/utils.js
index <HASH>..<HASH> 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -312,7 +312,7 @@ var filterOptions = function(options, names) {
return filterOptions;
};
-// Object.assign method or polyfille
+// Object.assign method or polyfill
var assign = Object.assign
? Object.... | refactor(utils): fix typo in lib/utils.js | mongodb_node-mongodb-native | train | js |
271d583abb7f3d3653bf412e7e2aae33d4ab6cbc | diff --git a/src/Router/Router.php b/src/Router/Router.php
index <HASH>..<HASH> 100644
--- a/src/Router/Router.php
+++ b/src/Router/Router.php
@@ -162,6 +162,14 @@ class Router implements RouterInterface
$inputCmd = trim($params[0], "$delimiter ");
$noSepChar = strpos($inputCmd, $delimiter) === false... | fix: Match fails when the command line command has the same name as the alias | swoft-cloud_swoft-console | train | php |
3bee22024be9680975fd04719e2e8b1dd06a2f9f | diff --git a/src/Binder.js b/src/Binder.js
index <HASH>..<HASH> 100644
--- a/src/Binder.js
+++ b/src/Binder.js
@@ -7,6 +7,9 @@ var View = require('./View');
var convertValueType = require('./functions/convertValueType');
var callModelAsFunction = require('./functions/callModelAsFunction');
+var leadingPeriodRegex =... | fix(Binder): relative keyPath in dispatch arguments of bindings should not require to have leading or trailing asterisk characters | karfcz_kff | train | js |
32b0b0caddcfada3b1d236f470bdf5d3e2e9c409 | diff --git a/bika/lims/subscribers/analysis.py b/bika/lims/subscribers/analysis.py
index <HASH>..<HASH> 100644
--- a/bika/lims/subscribers/analysis.py
+++ b/bika/lims/subscribers/analysis.py
@@ -35,7 +35,7 @@ def ObjectInitializedEventHandler(instance, event):
'sample_received'):
changeWor... | fix: subscribers/analysis: NameError: global name 'received' is not defined | senaite_senaite.core | train | py |
e0fedd41caece365dd3a3d6cfea5fe50e21a58db | diff --git a/alot/ui.py b/alot/ui.py
index <HASH>..<HASH> 100644
--- a/alot/ui.py
+++ b/alot/ui.py
@@ -120,12 +120,12 @@ class UI(object):
def fire(ignored, cmdline):
clear()
logging.debug("cmdline: '%s'" % cmdline)
- # move keys are always passed
... | fix: fix Command mechanism for move cmds in non-locked state | pazz_alot | train | py |
d0cea4129a2f03a140b56179b6a246d139dda52c | diff --git a/packages/mangojuice-core/flow-types.js b/packages/mangojuice-core/flow-types.js
index <HASH>..<HASH> 100644
--- a/packages/mangojuice-core/flow-types.js
+++ b/packages/mangojuice-core/flow-types.js
@@ -1,10 +1,5 @@
// @flow
declare module "mangojuice-core" {
- declare type CommandType<M> = {
- is: (.... | fix(core): removed old CommandType and fixed new Command type to include args | mangojuicejs_mangojuice | train | js |
e5aa81244e5e77a70b32f8563da214b668198bc0 | diff --git a/packages/components/bolt-tooltip/src/tooltip.js b/packages/components/bolt-tooltip/src/tooltip.js
index <HASH>..<HASH> 100644
--- a/packages/components/bolt-tooltip/src/tooltip.js
+++ b/packages/components/bolt-tooltip/src/tooltip.js
@@ -157,8 +157,8 @@ class BoltTooltip extends BoltElement {
this.con... | fix: set placement based on schema default instead of hardcoding | bolt-design-system_bolt | train | js |
71cfa5253a691fb2068e694f11acff17eda46cd3 | diff --git a/packages/example-phone/Gruntfile.js b/packages/example-phone/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/packages/example-phone/Gruntfile.js
+++ b/packages/example-phone/Gruntfile.js
@@ -58,7 +58,7 @@ module.exports = function configGrunt(grunt) {
'env:test',
'clean:coverage',
'webpack-de... | chore(build): make example-phone gruntfile circleci aware | webex_spark-js-sdk | train | js |
b0c0c003f69e83e5720dca9849215f9b039f934c | diff --git a/packages/components/lists/bolt-list/src/_list-item.js b/packages/components/lists/bolt-list/src/_list-item.js
index <HASH>..<HASH> 100755
--- a/packages/components/lists/bolt-list/src/_list-item.js
+++ b/packages/components/lists/bolt-list/src/_list-item.js
@@ -48,13 +48,15 @@ class BoltListItem extends wi... | fix: fix bolt-list prettier issue | bolt-design-system_bolt | train | js |
ed2119dad291869e3125b02e6e76d798f495cb2d | diff --git a/dangerfile.js b/dangerfile.js
index <HASH>..<HASH> 100644
--- a/dangerfile.js
+++ b/dangerfile.js
@@ -84,7 +84,7 @@ Please remove \`yarn.lock\` changes from your pull request. Try to run \`git che
markdown(
'> (' +
errorCount +
- ') : vue-styleguidist uses conventional change log to generate... | ci: make sure danger links point to the guidelines | vue-styleguidist_vue-styleguidist | train | js |
061c3f482735d0e2d3a05482ff6e02c1aa6fce70 | diff --git a/test/12-integration-tests.js b/test/12-integration-tests.js
index <HASH>..<HASH> 100644
--- a/test/12-integration-tests.js
+++ b/test/12-integration-tests.js
@@ -577,7 +577,9 @@ describe('Integration tests', () => {
/* prettier-ignore */
nodeInfos.isAtLeast... | test(validation): try fix test on npm version < 6 | inikulin_publish-please | train | js |
4a91a7314c017fcde2f9f763c112cec9e30209e6 | diff --git a/src/coord/axisHelper.js b/src/coord/axisHelper.js
index <HASH>..<HASH> 100644
--- a/src/coord/axisHelper.js
+++ b/src/coord/axisHelper.js
@@ -228,7 +228,7 @@ export function niceScaleExtent(scale, model) {
scale.niceExtent({
splitNumber: splitNumber,
fixMin: extentInfo.fixMin,
- ... | fix(axis): fix typo in #<I> | apache_incubator-echarts | train | js |
e945e690c9734b8457e175475e29e779f5e2032b | diff --git a/functional/server_tests.js b/functional/server_tests.js
index <HASH>..<HASH> 100644
--- a/functional/server_tests.js
+++ b/functional/server_tests.js
@@ -675,7 +675,7 @@ exports['Should correctly connect execute 5 evals in parallel'] = {
if(left == 0) {
var total = new Date().getT... | refactor(scram): use crypto.pbkdf2Sync instead of homebrew hash function
NODE-<I>
* updates scram.js hi() algorithm to utilize crypto.pbkdf2Sync() for faster processing. Also caches the result so each worker does not regenerate the same salt more than once.
Removes some calls after the creation of the clientFina... | mongodb_node-mongodb-native | train | js |
954d6a95635cb5da5d93352dc53835d3d1429030 | diff --git a/modules/plugins/browser/index.js b/modules/plugins/browser/index.js
index <HASH>..<HASH> 100644
--- a/modules/plugins/browser/index.js
+++ b/modules/plugins/browser/index.js
@@ -1,4 +1,4 @@
-import { errorCodes, constants } from 'router5';
+import constants, { errorCodes } from '../../constants';
import s... | refactor: remove router5 dependency from browser plugin | router5_router5 | train | js |
651ea1f30db17f741ba3650ea07d319a8a2aa7c2 | diff --git a/packages/express/preset.js b/packages/express/preset.js
index <HASH>..<HASH> 100644
--- a/packages/express/preset.js
+++ b/packages/express/preset.js
@@ -1,5 +1,7 @@
'use strict';
+const { join } = require('path');
+
module.exports = {
https: false,
host: '[HOST]',
@@ -7,6 +9,6 @@ module.exports ... | refactor(express): fix dir resolution | untool_untool | train | js |
459cbed33b104f9d448df076e8c9903f253f8b78 | diff --git a/tools/postinstall-patches.js b/tools/postinstall-patches.js
index <HASH>..<HASH> 100644
--- a/tools/postinstall-patches.js
+++ b/tools/postinstall-patches.js
@@ -68,7 +68,8 @@ const captureNgDevPatches = (files, patches) =>
patches.forEach(p => _captureNgDevPatch(p[0], p[1], files));
const _captureNg... | refactor(dev-infra): convert nullish coalescing operator to plain javascript (#<I>)
low version nodejs doesn't support nullish coalescing operator very well
PR Close #<I> | angular_angular | train | js |
6a4c7e731b80e1187a4f9423ae6e7594e2e6be4f | diff --git a/telebot/types.py b/telebot/types.py
index <HASH>..<HASH> 100644
--- a/telebot/types.py
+++ b/telebot/types.py
@@ -598,29 +598,6 @@ class Document(JsonDeserializable):
self.file_size = file_size
-class Sticker(JsonDeserializable):
- @classmethod
- def de_json(cls, json_string):
- o... | fix: delete doubled Sticker class (left a new one) | eternnoir_pyTelegramBotAPI | train | py |
a36aa8ac6e7a19b278c782c6e37b35cc48982027 | diff --git a/advanced_filters/admin.py b/advanced_filters/admin.py
index <HASH>..<HASH> 100644
--- a/advanced_filters/admin.py
+++ b/advanced_filters/admin.py
@@ -22,16 +22,20 @@ class AdvancedListFilters(admin.SimpleListFilter):
def lookups(self, request, model_admin):
if not model_admin:
- ... | feat: f-string for model_name string interpolation | modlinltd_django-advanced-filters | train | py |
9e0a7fcc01a2cac0e76992451f7c1bcfebc6d13a | diff --git a/src/Computed.js b/src/Computed.js
index <HASH>..<HASH> 100644
--- a/src/Computed.js
+++ b/src/Computed.js
@@ -86,15 +86,14 @@ Computed.updateCache = function (changes) {
Object.keys(level).forEach(function (key) {
currentPath.push(key)
var stringPath = currentPath.join('.')
- if (co... | fix(computed): should update cache on child path update (#<I>) | cerebral_cerebral | train | js |
773a5e1cb0fb36ba5ea6a939756d94746edae6b0 | diff --git a/providers/ValidatorProvider.js b/providers/ValidatorProvider.js
index <HASH>..<HASH> 100644
--- a/providers/ValidatorProvider.js
+++ b/providers/ValidatorProvider.js
@@ -86,7 +86,7 @@ class ValidationProvider extends ServiceProvider {
*/
const Server = this.app.use('Adonis/Src/Server')
Serv... | refactor(middleware): rename middleware to short name | adonisjs_adonis-validation-provider | train | js |
e20eebe2042a4f8a5682a2376c754df7d122d39f | diff --git a/intranet/apps/emerg/views.py b/intranet/apps/emerg/views.py
index <HASH>..<HASH> 100644
--- a/intranet/apps/emerg/views.py
+++ b/intranet/apps/emerg/views.py
@@ -41,6 +41,7 @@ def check_emerg():
"There are no major announcements at this time.",
"There are no major emergency announcements ... | fix(emerg): check for "under maintenance" message in emergency info | tjcsl_ion | train | py |
13242dc7b30cfda2fa30338c9d22114a7ace2704 | diff --git a/test/treasure.tracking.spec.js b/test/treasure.tracking.spec.js
index <HASH>..<HASH> 100644
--- a/test/treasure.tracking.spec.js
+++ b/test/treasure.tracking.spec.js
@@ -21,7 +21,8 @@ describe('Treasure Tracking', function () {
treasure = new Treasure({
database: treasureHelper.database... | fix(tracking): use local server for tests | treasure-data_td-js-sdk | train | js |
93c879b9ba848e07110bd221150f660ad8b95bb0 | diff --git a/src/TestUtils/CloudFunctionDeploymentTrait.php b/src/TestUtils/CloudFunctionDeploymentTrait.php
index <HASH>..<HASH> 100644
--- a/src/TestUtils/CloudFunctionDeploymentTrait.php
+++ b/src/TestUtils/CloudFunctionDeploymentTrait.php
@@ -34,9 +34,12 @@ trait CloudFunctionDeploymentTrait
use EventuallyCons... | fix: add missing static private property (#<I>) | GoogleCloudPlatform_php-tools | train | php |
8dcaea8af19a6dcc2d9cafdd2ebb4277e66e89ae | diff --git a/src/components/tabs/js/tabsDirective.js b/src/components/tabs/js/tabsDirective.js
index <HASH>..<HASH> 100644
--- a/src/components/tabs/js/tabsDirective.js
+++ b/src/components/tabs/js/tabsDirective.js
@@ -181,6 +181,7 @@ function MdTabs ($mdTheming, $mdUtil, $compile) {
ng-repeat="(index, t... | fix(tabs): uses `ng-if` to remove inactive tabs once their animation is complete | angular_material | train | js |
59a7831e646c41e94c7716e36c99ba0b0d712d4c | diff --git a/react/Text/Text.js b/react/Text/Text.js
index <HASH>..<HASH> 100644
--- a/react/Text/Text.js
+++ b/react/Text/Text.js
@@ -33,13 +33,17 @@ export default function Text({
[styles.headline]: headline,
[styles.heading]: heading,
[styles.hero]: hero,
- [styles.raw]: raw,
- ... | fix(Text): Use nested span for modifiers to fix import order issues (#<I>) | seek-oss_seek-style-guide | train | js |
78eb4ec445de9927d94a0bc5e4062c0bc36b9c52 | diff --git a/logger/syslogd/syslogd.go b/logger/syslogd/syslogd.go
index <HASH>..<HASH> 100644
--- a/logger/syslogd/syslogd.go
+++ b/logger/syslogd/syslogd.go
@@ -3,6 +3,7 @@ package main
import (
"fmt"
"io"
+ "log"
"os"
"os/signal"
"path"
@@ -86,7 +87,7 @@ func (h *handler) mainLoop() {
}
err := write... | fix(logger): log the error, but don't panic
We should not panic if we cannot find the app name in the message. | deis_deis | train | go |
871af8c3494fc07c927abb34e0275ef28b87acd1 | diff --git a/mock.js b/mock.js
index <HASH>..<HASH> 100644
--- a/mock.js
+++ b/mock.js
@@ -102,6 +102,7 @@ const Reanimated = {
Text,
Image,
ScrollView: Animated.ScrollView,
+ FlatList: Animated.FlatList,
Code,
Clock: NOOP, | fix: missed FlatList component (#<I>)
Added missed FlatList component in mocks file | kmagiera_react-native-reanimated | train | js |
43ea2c09b34e9a2085b7c542e72390f0ee706e12 | diff --git a/cli.js b/cli.js
index <HASH>..<HASH> 100755
--- a/cli.js
+++ b/cli.js
@@ -5,6 +5,9 @@
// Need that because of regenerator runtime
require("babel-polyfill");
+// $FlowFixMe
+process.noDeprecation = true; // Suppress webpack deprecation warnings
+
const meow = require("meow");
const chalk = require("ch... | fix: Suppress webpack 4 deprecation warnings | d4rkr00t_aik | train | js |
a42ff1628d945d0d63df153c13c92534ce8fcd63 | diff --git a/tsdb/tsm1/report.go b/tsdb/tsm1/report.go
index <HASH>..<HASH> 100644
--- a/tsdb/tsm1/report.go
+++ b/tsdb/tsm1/report.go
@@ -110,7 +110,7 @@ func (r *Report) Run(print bool) (*ReportSummary, error) {
var tagBuf models.Tags // Buffer that can be re-used when parsing keys.
for _, path := range files {... | fix(influxd): --pattern flag matches specified substring
Previously the logic was inverted so `--pattern` matched
everything but the specified value. | influxdata_influxdb | train | go |
a8917d5e063b6fe5a2ffe615a8f423e7aaee06ec | diff --git a/lib/easypost/connection.rb b/lib/easypost/connection.rb
index <HASH>..<HASH> 100644
--- a/lib/easypost/connection.rb
+++ b/lib/easypost/connection.rb
@@ -1,11 +1,12 @@
# frozen_string_literal: true
EasyPost::Connection = Struct.new(:uri, :config, keyword_init: true) do
- attr_reader :connection
+ att... | fix: ensure default connection is thread safe
Rather then tear down and re-establish a connection on every request for
thread safety at the expensive of single thread consumers, cheaply
ensure the existing connection is thread safe by using a semaphore.
Consumer who want to implement connection concurrency should use... | EasyPost_easypost-ruby | train | rb |
ae752552fb3c99a7a148da3aa0891e1c8a82d2cf | diff --git a/dependencyManager.js b/dependencyManager.js
index <HASH>..<HASH> 100644
--- a/dependencyManager.js
+++ b/dependencyManager.js
@@ -84,11 +84,11 @@ function getRequiredDeps(packageJson) {
}
const deps = {
- "@angular/compiler-cli": "~7.1.0",
+ "@angular/compiler-cli": "~7.2.0",
}... | chore: bump ng dependencies version (#<I>)
Bump ng dependencies version to sync with nativescript-angular. | NativeScript_nativescript-dev-webpack | train | js |
49ca882749ced87bf4356e4f1393a578b26e31d2 | diff --git a/management_api.go b/management_api.go
index <HASH>..<HASH> 100644
--- a/management_api.go
+++ b/management_api.go
@@ -215,7 +215,7 @@ func (e *Enforcer) AddGroupingPolicy(params ...interface{}) (bool, error) {
return e.AddNamedGroupingPolicy("g", params...)
}
-// AddGroupingPolicies adds role inherita... | fix: spelling error in comment of management_api.go | casbin_casbin | train | go |
e61489ab39be2a06398d90f476a2df9780252cef | diff --git a/src/Listener/ViewListener.php b/src/Listener/ViewListener.php
index <HASH>..<HASH> 100644
--- a/src/Listener/ViewListener.php
+++ b/src/Listener/ViewListener.php
@@ -95,7 +95,7 @@ class ViewListener extends BaseListener
$controller->set(compact('associations'));
$fields = $this->_scaffo... | chore: avoid compact/extract in userland code | FriendsOfCake_crud-view | train | php |
01ef8d6c9b044066f9892df11622db801ff5e1b3 | diff --git a/src/System/Aggregate.php b/src/System/Aggregate.php
index <HASH>..<HASH> 100755
--- a/src/System/Aggregate.php
+++ b/src/System/Aggregate.php
@@ -104,7 +104,7 @@ class Aggregate implements InternallyMappable
$this->root = $root;
- $mapper = $this->getMapper($entity);
+ $mapper = ... | fix(Aggregate): remove unnecessary argument to getMapper() method | analogueorm_analogue | train | php |
82e405f099ed63a6100026e8e70e7a0bb66ba481 | diff --git a/test/test_host.go b/test/test_host.go
index <HASH>..<HASH> 100644
--- a/test/test_host.go
+++ b/test/test_host.go
@@ -174,6 +174,8 @@ func (s *HostSuite) TestVolumeCreationFailsForNonexistentProvider(t *c.C) {
}
func (s *HostSuite) TestVolumePersistence(t *c.C) {
+ t.Skip("test intermittently fails due... | test: Skip TestVolumePersistence
This test fails quite regularly in CI, we know the fix, and this area of
code (i.e. volume management) isn't currently being worked on, so skip
for now until we fix the underlying issue. | flynn_flynn | train | go |
94d7db681e760d5aefbd06ee459e93c1e30c482e | diff --git a/documentation/serenity-js.org/src/plugins/changelog/index.js b/documentation/serenity-js.org/src/plugins/changelog/index.js
index <HASH>..<HASH> 100644
--- a/documentation/serenity-js.org/src/plugins/changelog/index.js
+++ b/documentation/serenity-js.org/src/plugins/changelog/index.js
@@ -63,7 +63,7 @@ fun... | style(website): applied ESLint suggestions | jan-molak_serenity-js | train | js |
566c3b4aacb4f00259d6e961ba09ada283fbba87 | diff --git a/tests/integration/test_outcome.py b/tests/integration/test_outcome.py
index <HASH>..<HASH> 100644
--- a/tests/integration/test_outcome.py
+++ b/tests/integration/test_outcome.py
@@ -27,6 +27,8 @@ def test_outcomes_processing(
message_text = "some message {}".format(datetime.now())
event_id = "1... | test: Fix flakey outcomes test (#<I>)
This should resolve a potential race where Relay is faster emitting an
event than the Python process to measure the timestamp. | getsentry_semaphore | train | py |
97ee1d7588c8f5e3467a437238bcec7b0b995278 | diff --git a/lib/api/github.js b/lib/api/github.js
index <HASH>..<HASH> 100644
--- a/lib/api/github.js
+++ b/lib/api/github.js
@@ -621,7 +621,7 @@ async function mergePr(pr) {
{ err: err3 },
`Failed to ${options.body.merge_method} PR`
);
- logger.warn({ pr: pr.number }, 'Al... | chore: downgrade "all merge attempts failed" from warn to info | renovatebot_renovate | train | js |
fcf06a274ad5140eaf5beecdcc121eb6e3740ee2 | diff --git a/packages/text-area/src/TextArea.js b/packages/text-area/src/TextArea.js
index <HASH>..<HASH> 100644
--- a/packages/text-area/src/TextArea.js
+++ b/packages/text-area/src/TextArea.js
@@ -35,12 +35,14 @@ export default class TextArea extends Component {
const { variant, ...otherProps } = this.props;
... | fix: restore focus/hover halos | Autodesk_hig | train | js,js |
330832f298de432dbc5d6aad32b9aa75a3c795c0 | diff --git a/src/cli/cms/media/image.js b/src/cli/cms/media/image.js
index <HASH>..<HASH> 100644
--- a/src/cli/cms/media/image.js
+++ b/src/cli/cms/media/image.js
@@ -103,8 +103,8 @@ export function saveFile(req) {
folderWebPath = '/' + config.upload[mediaType]
}
- filePath = path.join(fo... | fix: better fix with posix | abecms_abecms | train | js |
497e671fa8cb4843682ff7955a6ab3e72a1fed9c | diff --git a/src/geshi.php b/src/geshi.php
index <HASH>..<HASH> 100644
--- a/src/geshi.php
+++ b/src/geshi.php
@@ -3046,7 +3046,7 @@ class GeSHi {
// Highlight keywords
$disallowed_before = "(?<![a-zA-Z0-9\$_\|\#;>|^";
- $disallowed_after = "(?<!a-zA-Z0-9_\|%\\-&";
+ $disallowed_after ... | fix: the default disallowed_after for keywords was totally malfunctioning | GeSHi_geshi-1.0 | train | php,php |
5c9d80bb5ab29cba56c0047da1f59cea17a1d29d | diff --git a/packages/bonde-admin-canary/src/components/Gadget/index.js b/packages/bonde-admin-canary/src/components/Gadget/index.js
index <HASH>..<HASH> 100644
--- a/packages/bonde-admin-canary/src/components/Gadget/index.js
+++ b/packages/bonde-admin-canary/src/components/Gadget/index.js
@@ -6,7 +6,10 @@ const Gadget... | chore(admin-canary): adjust gadget component title style | nossas_bonde-client | train | js |
f9519773f81f0851ecb17a532e2571b73605b71f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -6,4 +6,4 @@ const pkg = require('./package.json');
const esmRequire = esmLoader(module);
-module.exports = esmRequire(path.join(__dirname, pkg.module));
+module.exports = esmRequire(path.join(__dirname, pkg.module)).defa... | fix: temporary fix for the CLI | tunnckoCoreLabs_charlike | train | js |
84222f1f19f0faeb7edee5df895d2e4c78d6089f | diff --git a/src/creation-utils.js b/src/creation-utils.js
index <HASH>..<HASH> 100644
--- a/src/creation-utils.js
+++ b/src/creation-utils.js
@@ -26,7 +26,8 @@ export const doNew = (o) => {
export const isFreezable = (o) => (
typeof o === 'object' &&
- o !== null
+ o !== null &&
+ typeof o.getMonth !== 'funct... | fix: make date objects non freezable | carlesba_freezr | train | js,js |
11f071346f8d12dd5533e7e3aaca089c3c9dc6eb | diff --git a/config/spec-bundle.js b/config/spec-bundle.js
index <HASH>..<HASH> 100644
--- a/config/spec-bundle.js
+++ b/config/spec-bundle.js
@@ -22,6 +22,8 @@ require('zone.js/dist/zone');
require('zone.js/dist/long-stack-trace-zone');
require('zone.js/dist/jasmine-patch');
require('zone.js/dist/async-test');
+req... | fix: fakyAsync and sync test (#<I>) | inchingorg_xdata-web | train | js |
d7d95ab94304b843d604a3d2cf9869c80a7eff65 | diff --git a/lib/module-name-mapper-helper.js b/lib/module-name-mapper-helper.js
index <HASH>..<HASH> 100644
--- a/lib/module-name-mapper-helper.js
+++ b/lib/module-name-mapper-helper.js
@@ -11,7 +11,7 @@ const matchModuleImport = /^[^?]*~/
function resolve(to, importPath, fileType) {
importPath =
path.extname... | fix: handle absolute paths when resolving paths on Windows (#<I>) | vuejs_vue-jest | train | js |
c36566145a8c17fda3feecbc802e6fb9e7edaa59 | diff --git a/src/functions.php b/src/functions.php
index <HASH>..<HASH> 100644
--- a/src/functions.php
+++ b/src/functions.php
@@ -200,7 +200,7 @@ function task(string $name, $body = null): Task
$existingTask = $deployer->tasks->get($name);
if (get_class($existingTask) !== get_class($task)) {
... | chore: add task name to replace exception message (#<I>)
To clarify which task is causing the exception. | deployphp_deployer | train | php |
52e37cc7aa2730162e3ea770946f64bd0a96097d | diff --git a/src/components/seo.js b/src/components/seo.js
index <HASH>..<HASH> 100644
--- a/src/components/seo.js
+++ b/src/components/seo.js
@@ -83,7 +83,7 @@ SEO.propTypes = {
export default SEO
-export const detailsQuery = graphql`
+const detailsQuery = graphql`
query DefaultSEOQuery {
site {
si... | fix:don't export query in SEO component (#<I>)
It seems we fail silently in production builds when we export query like that when use with StaticQuery - will need to dig a bit in our babel query extraction, but for now let's fix the default starter | gatsbyjs_gatsby-starter-default | train | js |
ddf5dd51ae29c11004c0b1ed4748cf39420dd2d4 | diff --git a/lib/crabfarm/modes/publisher.rb b/lib/crabfarm/modes/publisher.rb
index <HASH>..<HASH> 100644
--- a/lib/crabfarm/modes/publisher.rb
+++ b/lib/crabfarm/modes/publisher.rb
@@ -14,7 +14,7 @@ module Crabfarm
module Publisher
extend self
- DEFAULT_HOST = 'http://www.crabfarm.io'
+ DEFAUL... | fix(publisher): changes default host | platanus_crabfarm-gem | train | rb |
df1e5b3cb2e2aa1000958021b6c1704920e0f06c | diff --git a/lib/commands/run.js b/lib/commands/run.js
index <HASH>..<HASH> 100644
--- a/lib/commands/run.js
+++ b/lib/commands/run.js
@@ -78,7 +78,7 @@ function run(scriptPath, options) {
log('Log file: %s', logfile);
- const reporter = new ConsoleReporter({ isTTY: process.stdout.isTTY });
+ const r... | fix: Don't start a spinner when stdout is not a TTY | artilleryio_artillery | train | js,js |
749904dfa686ac177bb6efff14cb0fa044329034 | diff --git a/test/bq-translator.test.js b/test/bq-translator.test.js
index <HASH>..<HASH> 100644
--- a/test/bq-translator.test.js
+++ b/test/bq-translator.test.js
@@ -4,7 +4,7 @@ var assert = require('chai').assert;
var BooleanQueryTranslator = require('../lib/bq-translator').BooleanQueryTranslator;
-function test... | test: use translation target for test name
Translate ->
Query | groonga_gcs | train | js |
b16c40fe2377d5a77555025149e4b1a9bee287ae | diff --git a/src/AvRadioGroup.js b/src/AvRadioGroup.js
index <HASH>..<HASH> 100644
--- a/src/AvRadioGroup.js
+++ b/src/AvRadioGroup.js
@@ -187,7 +187,7 @@ export default class AvRadioGroup extends Component {
const hasError = this.context.FormCtrl.hasError(this.props.name);
const classes = classNames(
- ... | fix(AvRadioGroup): set h-auto on form-control | Availity_availity-reactstrap-validation | train | js |
2e34ae3184cd81bc9e6ef0e5cb535939a8d456c7 | diff --git a/src/Auditable.php b/src/Auditable.php
index <HASH>..<HASH> 100644
--- a/src/Auditable.php
+++ b/src/Auditable.php
@@ -239,15 +239,11 @@ trait Auditable
{
$userResolver = Config::get('audit.user.resolver');
- if (is_callable($userResolver)) {
- return $userResolver();
- ... | fix(Auditable): remove support for Closure User ID resolver
- This avoids errors while caching the configuration | owen-it_laravel-auditing | train | php |
3f94b0d1df78a1372e7df268ce934366360866a8 | diff --git a/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/ArgumentsParserTest.java b/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/ArgumentsParserTest.java
index <HASH>..<HASH> 100644
--- a/frontend-plugin-core/src/test/java/com/github/eirslett/ma... | fix(arguments): better assertion on mixed quotes in arguments | eirslett_frontend-maven-plugin | train | java |
05aaf1bfd40a13774c9c85ce70c7f4b11929ada3 | diff --git a/test/install.spec.js b/test/install.spec.js
index <HASH>..<HASH> 100644
--- a/test/install.spec.js
+++ b/test/install.spec.js
@@ -22,7 +22,7 @@ const BASE_PATH = path.join(__dirname, 'dummyProject')
const Context = require('../src/Commands/Install/Context')
const chalk = new Chalk.constructor({ enabled: ... | test(install): rename group title | adonisjs_adonis-cli | train | js |
9f48ac9de9324f149b094c9bbdf3a828f654b3c6 | diff --git a/ibis/backends/tests/test_temporal.py b/ibis/backends/tests/test_temporal.py
index <HASH>..<HASH> 100644
--- a/ibis/backends/tests/test_temporal.py
+++ b/ibis/backends/tests/test_temporal.py
@@ -81,7 +81,7 @@ def test_timestamp_extract_epoch_seconds(backend, alltypes, df):
backend.assert_series_equal(r... | test(sqlite): disable notimpl for sqlite extract week test | ibis-project_ibis | train | py |
f4156b146c894724ac016f941b8414bbc0f9d33b | diff --git a/src/InfoViz/Native/ParallelCoordinates/index.js b/src/InfoViz/Native/ParallelCoordinates/index.js
index <HASH>..<HASH> 100644
--- a/src/InfoViz/Native/ParallelCoordinates/index.js
+++ b/src/InfoViz/Native/ParallelCoordinates/index.js
@@ -406,6 +406,7 @@ function parallelCoordinate(publicAPI, model) {
... | fix(ParallelCoordinates): Expect new SVG loader behavior | Kitware_paraviewweb | train | js |
04502ce702da53c4b00bf391d0fd936746851381 | diff --git a/packages/discord.js/src/structures/MessageReaction.js b/packages/discord.js/src/structures/MessageReaction.js
index <HASH>..<HASH> 100644
--- a/packages/discord.js/src/structures/MessageReaction.js
+++ b/packages/discord.js/src/structures/MessageReaction.js
@@ -113,7 +113,7 @@ class MessageReaction {
... | fix: messageReaction.me being false when it shouldn't (#<I>) | discordjs_discord.js | train | js |
e5196f581aa17b4880a69c7634431f95614eb23e | diff --git a/packages/@vue/cli-service/lib/commands/serve.js b/packages/@vue/cli-service/lib/commands/serve.js
index <HASH>..<HASH> 100644
--- a/packages/@vue/cli-service/lib/commands/serve.js
+++ b/packages/@vue/cli-service/lib/commands/serve.js
@@ -162,6 +162,7 @@ module.exports = (api, options) => {
// create... | fix: fix redundant log messages from webpack-dev-server (#<I>)
By replacing the `quiet` option with `logLevel: 'silent'`.
Fixes #<I> | vuejs_vue-cli | train | js |
7213d1d4f85c7d1583c0eba531e026d3f7a8e96c | diff --git a/lib/plugins/aws/package/compile/events/apiGateway/lib/validate.js b/lib/plugins/aws/package/compile/events/apiGateway/lib/validate.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/aws/package/compile/events/apiGateway/lib/validate.js
+++ b/lib/plugins/aws/package/compile/events/apiGateway/lib/validate.js
@... | refactor: Remove unneeded `split` in `getHttp` (#<I>) | serverless_serverless | train | js |
c09dff7aa9000efb5c3dbadde02ebc05f776fb18 | diff --git a/packages/docs/vue.config.js b/packages/docs/vue.config.js
index <HASH>..<HASH> 100644
--- a/packages/docs/vue.config.js
+++ b/packages/docs/vue.config.js
@@ -40,4 +40,5 @@ module.exports = {
},
},
transpileDependencies: ['vuetify'],
+ lintOnSave: false,
} | chore(docs): disable lintOnSave | vuetifyjs_vuetify | train | js |
917956a7189b44056981ba2e4068ff3ca84acb4a | diff --git a/packages/d3fc-annotation/src/crosshair.js b/packages/d3fc-annotation/src/crosshair.js
index <HASH>..<HASH> 100644
--- a/packages/d3fc-annotation/src/crosshair.js
+++ b/packages/d3fc-annotation/src/crosshair.js
@@ -51,11 +51,9 @@ export default function() {
point.xValue(x)
.yVa... | fix: don't override label accessor | d3fc_d3fc | train | js |
8eba2562f90c6d995a654861dbc5079c0af4e6e3 | diff --git a/events/index.js b/events/index.js
index <HASH>..<HASH> 100644
--- a/events/index.js
+++ b/events/index.js
@@ -61,9 +61,9 @@ function isDuplicateEvent(event1, event2) {
var reply = event1.formatted_time === event2.formatted_time && overlappedWords.length > 1;
if (reply) {
- console.log(clc.magent... | refactor: amend logging words for duplicate events to trigger alerts | webuildorg_webuild-repos | train | js |
53420fa4e7f3ef0e8ee361ed5aec23e02580b0ad | diff --git a/src/structures/Webhook.js b/src/structures/Webhook.js
index <HASH>..<HASH> 100644
--- a/src/structures/Webhook.js
+++ b/src/structures/Webhook.js
@@ -1,6 +1,6 @@
const DataResolver = require('../util/DataResolver');
const Channel = require('./Channel');
-const APIMessage = require('./APIMessage');
+let A... | fix: Webhook#send not resolving content | discordjs_discord.js | train | js |
3d5ec08592535235d4e8b0aaabb141bc638615ce | diff --git a/packages/retail-ui/scripts/git/index.js b/packages/retail-ui/scripts/git/index.js
index <HASH>..<HASH> 100644
--- a/packages/retail-ui/scripts/git/index.js
+++ b/packages/retail-ui/scripts/git/index.js
@@ -16,7 +16,7 @@ const getRevisionRefs = (revId = getRevisionID()) => {
.forEach(str => {
co... | refactor(scripts): remove unused variable | skbkontur_retail-ui | train | js |
5ecbc7f120968b774e9b9a5dcc0b12b8c6559c1a | diff --git a/lib/HomeAssistant/index.js b/lib/HomeAssistant/index.js
index <HASH>..<HASH> 100644
--- a/lib/HomeAssistant/index.js
+++ b/lib/HomeAssistant/index.js
@@ -102,4 +102,4 @@ function validateBaseUrl(baseUrl) {
}
}
-module.exports = createHomeAssistantClient;
+module.exports = { createHomeAssistantClien... | refactor: case changes for HA directory | zachowj_node-red-contrib-home-assistant-websocket | train | js,js |
ce40628821fb8ec687dea93577f8e9f7493fb2d7 | diff --git a/packages/ringcentral-integration/modules/NumberValidate/index.js b/packages/ringcentral-integration/modules/NumberValidate/index.js
index <HASH>..<HASH> 100644
--- a/packages/ringcentral-integration/modules/NumberValidate/index.js
+++ b/packages/ringcentral-integration/modules/NumberValidate/index.js
@@ -2... | feat(NumberValidate): Calling from US to CA should not be considered as international in integration apps (#<I>) | ringcentral_ringcentral-js-widgets | train | js |
df417f71009361a7b0dc812ddaa92e843d1e238f | diff --git a/nomad/structs/services.go b/nomad/structs/services.go
index <HASH>..<HASH> 100644
--- a/nomad/structs/services.go
+++ b/nomad/structs/services.go
@@ -290,7 +290,6 @@ func (sc *ServiceCheck) Hash(serviceID string) string {
hashString(h, sc.Path)
hashString(h, sc.Protocol)
hashString(h, sc.PortLabel)
-... | docs: note why check.Expose is not part of chech.Hash | hashicorp_nomad | train | go |
1daa64773fb70a0ad15831d198a2deb69d559635 | diff --git a/packages/reactstrap-validation-date/src/AvDateRange.js b/packages/reactstrap-validation-date/src/AvDateRange.js
index <HASH>..<HASH> 100644
--- a/packages/reactstrap-validation-date/src/AvDateRange.js
+++ b/packages/reactstrap-validation-date/src/AvDateRange.js
@@ -580,6 +580,7 @@ class AvDateRange extends... | feat(reactstrap-validation-date): adding individual aria-labelledby to each input in avdaterange | Availity_availity-react | train | js |
633b5fbfb9e3aaeb31040fa0d5ee4cb9eb44f9d8 | diff --git a/lib/ejs.js b/lib/ejs.js
index <HASH>..<HASH> 100755
--- a/lib/ejs.js
+++ b/lib/ejs.js
@@ -313,7 +313,9 @@ function includeFile(path, options) {
if (includerResult.filename) {
opts.filename = includerResult.filename;
}
- return handleCache(opts, includerResult.template);
+ i... | fix(includer): fix handling includer option | mde_ejs | train | js |
1ef64dfbf2d512b4649c30f7f35c9b32c541421b | diff --git a/promise.js b/promise.js
index <HASH>..<HASH> 100644
--- a/promise.js
+++ b/promise.js
@@ -96,14 +96,9 @@ function createPool (opts) {
});
},
- execute: function (sql, args) {
+ execute: function (sql, values) {
return new Promise(function (resolve, reject) {
- var done = m... | fix: properly pass arguments to corePool.execute | sidorares_node-mysql2 | train | js |
61e62bdeb573f3837ecfde7f5d407cd8ccba773e | diff --git a/src/lib/local-storage.js b/src/lib/local-storage.js
index <HASH>..<HASH> 100644
--- a/src/lib/local-storage.js
+++ b/src/lib/local-storage.js
@@ -333,6 +333,7 @@ class LocalStorage implements IStorage {
this.logger.info( {name: name, version: ver}, 'unpublishing @{name}@@{version}');
... | fix: unpublish version does not remove it from timeline
Unpublishing a specific module version does not remove that version from the local-storage (package.json) "time" object.
This results in the version still being shown in the webui right-pane "Last Sync".
Added delete of the time[ver] object when module version i... | verdaccio_verdaccio | train | js |
c5326a8e26e4203c32ce9323c93f402faa764013 | diff --git a/src/orbweaver-progress.js b/src/orbweaver-progress.js
index <HASH>..<HASH> 100644
--- a/src/orbweaver-progress.js
+++ b/src/orbweaver-progress.js
@@ -30,8 +30,8 @@
RestfulProgressService.save = function () {
orbProgressService.start();
var result = resource.save.apply(t... | fix(promise): progress service should handle resource promise | aranasoft_orbweaver | train | js |
270d12cbacbd4a1b621b102826ef4f6f69decc0e | diff --git a/packages/react/src/components/ComboBox/ComboBox.js b/packages/react/src/components/ComboBox/ComboBox.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/ComboBox/ComboBox.js
+++ b/packages/react/src/components/ComboBox/ComboBox.js
@@ -371,7 +371,9 @@ export default class ComboBox extends Rea... | fix(combobox): allow bubbling of enter key event (#<I>)
* fix(combobox): allow bubbling of enter key event
* fix(combobox): check for space key to stopPropagation | carbon-design-system_carbon-components | train | js |
32a5e743e7a358b353104bb68dece348306f67cc | diff --git a/lib/error.js b/lib/error.js
index <HASH>..<HASH> 100644
--- a/lib/error.js
+++ b/lib/error.js
@@ -42,6 +42,10 @@ class MongoError extends Error {
static create(options) {
return new MongoError(options);
}
+
+ hasErrorLabel(label) {
+ return this.errorLabels && this.errorLabels.indexOf(label)... | feat(error): all `hasErrorLabel` method to MongoError
This improves readability in the transactions code when branching
on error labels for certain retry scenarios. | mongodb-js_mongodb-core | train | js |
9065b874dd4306df310a68e0903b22e203b6991a | diff --git a/src/Neutrino/Database/Migrations/Migrator.php b/src/Neutrino/Database/Migrations/Migrator.php
index <HASH>..<HASH> 100644
--- a/src/Neutrino/Database/Migrations/Migrator.php
+++ b/src/Neutrino/Database/Migrations/Migrator.php
@@ -2,9 +2,9 @@
namespace Neutrino\Database\Migrations;
-//use Highlight\Hig... | feat(Migration): Pretending migration : Highlight sql command pretended to run | phalcon-nucleon_framework | train | php |
f45d447b9c1087cd8c617494338b1cecaa9750a9 | diff --git a/packages/xod-client/src/debugger/reducer.js b/packages/xod-client/src/debugger/reducer.js
index <HASH>..<HASH> 100644
--- a/packages/xod-client/src/debugger/reducer.js
+++ b/packages/xod-client/src/debugger/reducer.js
@@ -487,6 +487,7 @@ export default (state = initialState, action) => {
return R.co... | fix(xod-client): clean watchNodeValues when simulation is stopped | xodio_xod | train | js |
f90fe8671fe6b1d8eee14f5b01f2af21e2c2385f | diff --git a/src/views/index.js b/src/views/index.js
index <HASH>..<HASH> 100644
--- a/src/views/index.js
+++ b/src/views/index.js
@@ -78,6 +78,7 @@ function template (file, locals = {}) {
const [engine, target] = ex2engine(fullpath);
if (engine !== 'html') {
return render[engine](target, Object.assign({}, local... | feat: pass custom livereload host to the views | gerard2p_koaton | train | js |
ad4939b63164ae33c4064b4e549073113c86a42f | diff --git a/src/cli/cms/reference/reference.js b/src/cli/cms/reference/reference.js
index <HASH>..<HASH> 100644
--- a/src/cli/cms/reference/reference.js
+++ b/src/cli/cms/reference/reference.js
@@ -15,7 +15,7 @@ export function getFiles(name = '') {
else {
const files = coreUtils.file.getFilesSync(pathToRefere... | fix:windows bug getting file paths | abecms_abecms | train | js |
d7f14ad0da3ecb2f9354b65bff2c7a24bd6d6f93 | diff --git a/test/runtime/Policies.go b/test/runtime/Policies.go
index <HASH>..<HASH> 100644
--- a/test/runtime/Policies.go
+++ b/test/runtime/Policies.go
@@ -158,6 +158,8 @@ var _ = Describe("RuntimePolicyEnforcement", func() {
By("Create a new container")
vm.ContainerCreate("new", helpers.HttpdImage, helper... | test: add wait for endpoints to be ready in policy enforcement
Endpoints may not be ready after the container is created, and
as such their policy enforcement fields may not be updated yet
as well. To reduce the possibility of flakes in the CI, wait
for all endpoints to be ready before checking the enforcement
status ... | cilium_cilium | train | go |
bf8b691d9f0b975f75cf59ee53f2f87436f72072 | diff --git a/lib/Compiler.js b/lib/Compiler.js
index <HASH>..<HASH> 100644
--- a/lib/Compiler.js
+++ b/lib/Compiler.js
@@ -44,7 +44,7 @@ class Watching {
this.startTime = Date.now();
this.running = true;
this.invalid = false;
- this.compiler.applyPluginsAsync("watch-run", this, err => {
+ this.compiler.apply... | fix: watch-run params should be compiler | webpack_webpack | train | js |
6ff270ba3ab59b6a52adb8d588e2d4ce1bad2e83 | diff --git a/src/website/app/tableCellTransforms.js b/src/website/app/tableCellTransforms.js
index <HASH>..<HASH> 100644
--- a/src/website/app/tableCellTransforms.js
+++ b/src/website/app/tableCellTransforms.js
@@ -116,7 +116,7 @@ export const isPlanned = (child: React$Node, index: number) => {
return (
<Plan... | chore(website): Fix planned icon title in component status page | mineral-ui_mineral-ui | train | js |
7db69780127f4e95ede7cd9066b513a903c08d23 | diff --git a/src/structures/GuildMember.js b/src/structures/GuildMember.js
index <HASH>..<HASH> 100644
--- a/src/structures/GuildMember.js
+++ b/src/structures/GuildMember.js
@@ -269,7 +269,8 @@ class GuildMember extends Base {
*/
hasPermission(permission, { checkAdmin = true, checkOwner = true } = {}) {
if... | fix(GuildMember): properly check permissions for hasPermissions (#<I>) | discordjs_discord.js | train | js |
4734699d2ab948dd1f0543428fcd6dccfcdff8d7 | diff --git a/actor/appium/src/main/java/org/getopentest/appium/LongPress.java b/actor/appium/src/main/java/org/getopentest/appium/LongPress.java
index <HASH>..<HASH> 100644
--- a/actor/appium/src/main/java/org/getopentest/appium/LongPress.java
+++ b/actor/appium/src/main/java/org/getopentest/appium/LongPress.java
@@ -1... | feat(appium): add support for the swipe argument in LongPress action | mcdcorp_opentest | train | java |
cd31388dcb05832c938fdf04b0b6d95a9c81a49b | diff --git a/src/doc.js b/src/doc.js
index <HASH>..<HASH> 100644
--- a/src/doc.js
+++ b/src/doc.js
@@ -32,6 +32,10 @@ module.exports = {
if(item.class){
var owner = api.classes[item.class];
+ owner.methods = owner.methods || [];
+ owner.properties = owner.properties || [];
+ owner... | fix(doc): handle undefined cases for some docs | aurelia_tools | train | js |
7b89caf121f77f2343c8057e68d97efbbe5689af | diff --git a/src/lib/edge-functions/editor-helper.js b/src/lib/edge-functions/editor-helper.js
index <HASH>..<HASH> 100644
--- a/src/lib/edge-functions/editor-helper.js
+++ b/src/lib/edge-functions/editor-helper.js
@@ -7,6 +7,10 @@ const { runRecipe } = require('../../commands/recipes')
const STATE_PROMPT_PROPERTY = '... | fix: prevent promptEditorHelper to run if running tests in vscode (#<I>)
* fix: prevent promtEditorHelper to run if running tests in vscode
* Add comment to node env test check | netlify_cli | train | js |
7b9454147ffb77903dbfba08a584abcd9ab3d6cb | diff --git a/scripts/validate-commit-messages.py b/scripts/validate-commit-messages.py
index <HASH>..<HASH> 100755
--- a/scripts/validate-commit-messages.py
+++ b/scripts/validate-commit-messages.py
@@ -49,6 +49,9 @@ for commit in commits:
if re.search(r"^(build|chore|ci|docs|feat|fix|perf|refactor|style|test)(\([... | style: add check in commit message validation script for
non-lowercase first letter in commit message description.
Currently, we do not validate if the first letter in the commit message
description is lowercase. | tjcsl_ion | train | py |
141da37e2be2bbb66636c1c3fb9888904fa1a4c9 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,8 +1,9 @@
var through = require('through');
-var isIfRegex = /^\s*#if ([A-Za-z_][A-Za-z_0-9]*)/;
-var isElseRegex = /^\s*#else/;
-var isEndIfRegex = /^\s*#endif/;
+
+var isIfRegex = /^\s*(?:\/\/){0,1}\s*#... | fix: capturing conditions in comments with '//' | janvanhelvoort_browserify-conditionalify | train | js |
785822957074d2faf13b2a089a1c8e13eae07e24 | diff --git a/lib/config.js b/lib/config.js
index <HASH>..<HASH> 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -12,8 +12,8 @@ var pkgConf = require('../package.json');
var config = _extend(exports, pkgConf);
var tunnel = require('hagent').agent;
var socks = require('socksv5');
-var httpsAgents = new LRU({max: 100... | refactor: Use lru cache | avwo_whistle | train | js |
26da3c4814eb8d4fd1514bf5a3290539ba482817 | diff --git a/src/Leevel/Manager/Manager.php b/src/Leevel/Manager/Manager.php
index <HASH>..<HASH> 100644
--- a/src/Leevel/Manager/Manager.php
+++ b/src/Leevel/Manager/Manager.php
@@ -82,25 +82,32 @@ abstract class Manager
}
/**
- * 连接 connect 并返回连接对象
+ * 连接 connect 并返回连接对象.
*
* @param nu... | feat: add `onlyNew` for manager connect | hunzhiwange_framework | train | php |
19047b95b71fcda1484c50428cd92e4ca74b4fb5 | diff --git a/task/backend/scheduler/scheduler_test.go b/task/backend/scheduler/scheduler_test.go
index <HASH>..<HASH> 100644
--- a/task/backend/scheduler/scheduler_test.go
+++ b/task/backend/scheduler/scheduler_test.go
@@ -94,7 +94,13 @@ func TestSchedule_Next(t *testing.T) {
}
}}
mockTime := clock.NewM... | fix: task scheduler test uses a fixed time (#<I>)
* fix: task scheduler test uses a fixed time
* fix: use a string constant for time format | influxdata_influxdb | train | go |
1813f392477e5f7588bf164fc4bf6d03ddefdeea | diff --git a/src/binding-language.js b/src/binding-language.js
index <HASH>..<HASH> 100644
--- a/src/binding-language.js
+++ b/src/binding-language.js
@@ -16,7 +16,6 @@ export class TemplatingBindingLanguage extends BindingLanguage {
this.emptyStringExpression = this.parser.parse('\'\'');
syntaxInterpreter.la... | fix(attributeMap): do not remap style
The new StyleObserver in aurelia-binding handles the style attribute now. | aurelia_templating-binding | train | js |
882276656f42c6bc92524dfb6007731488ca6648 | 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.... | fix(plugin-meeting): locus replace always with the last active | webex_spark-js-sdk | train | js |
5211815ca2271408e1d498f6b97c10b2c4228dd2 | diff --git a/code/pages/ObjectCreatorPage.php b/code/pages/ObjectCreatorPage.php
index <HASH>..<HASH> 100644
--- a/code/pages/ObjectCreatorPage.php
+++ b/code/pages/ObjectCreatorPage.php
@@ -599,8 +599,11 @@ class ObjectCreatorPage_Controller extends Page_Controller {
$s->updateFrontendCreateForm($form);
}
$t... | feat(updateFrontendCreateForm): Added another hook that executes on the record for 'updateFrontendCreateForm' | nyeholt_silverstripe-frontend-objects | train | php |
a0da07ae1986649de635811a1dc06d2e363c5cc9 | diff --git a/examples/webpack.config.js b/examples/webpack.config.js
index <HASH>..<HASH> 100644
--- a/examples/webpack.config.js
+++ b/examples/webpack.config.js
@@ -47,35 +47,17 @@ module.exports = (env, args) => {
},
{
test: /\.css$/,
- use: prod
- ? [
- ... | fix: shorten webpack config in example | darwin-education_resium | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.