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 |
|---|---|---|---|---|---|
b02ac1a717981e945aa02fae74f578f57f192a06 | diff --git a/lib/plugins/load-plugin.js b/lib/plugins/load-plugin.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/load-plugin.js
+++ b/lib/plugins/load-plugin.js
@@ -64,7 +64,11 @@ module.exports = function(options, callback) {
if (typeof initial === 'function') {
initial(options);
}
- } catch(e) {}
... | refactor: debugMode | avwo_whistle | train | js |
01a5b937cc60f6ee07a528cede375626930ef5e3 | diff --git a/ui/src/components/option-group/QOptionGroup.js b/ui/src/components/option-group/QOptionGroup.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/option-group/QOptionGroup.js
+++ b/ui/src/components/option-group/QOptionGroup.js
@@ -111,17 +111,17 @@ export default Vue.extend({
props: {
... | chore(QOptionGroup): improve evaluation of option props (#<I>) | quasarframework_quasar | train | js |
50275e75c282dc02f46ebccffcb582ffe0e3a238 | diff --git a/packages/__docs__/src/Header/index.js b/packages/__docs__/src/Header/index.js
index <HASH>..<HASH> 100644
--- a/packages/__docs__/src/Header/index.js
+++ b/packages/__docs__/src/Header/index.js
@@ -58,10 +58,11 @@ class Header extends Component {
const { versionsData } = this.props
const { latest... | chore: rename variables, add comments | instructure_instructure-ui | train | js |
665a4ae0c1a4d116e6f9e4c6632b53ebfcfedc56 | diff --git a/shodan/host.go b/shodan/host.go
index <HASH>..<HASH> 100644
--- a/shodan/host.go
+++ b/shodan/host.go
@@ -2,6 +2,7 @@ package shodan
import (
"encoding/json"
+ "strconv"
)
const (
@@ -31,11 +32,33 @@ type HostLocation struct {
DMA int `json:"dma_code"`
}
+// HostVersion is string... | fix(HostData): use custom version type to handle numbers and strings. | ns3777k_go-shodan | train | go |
77f053cb983fb2adc6d77f234f10b9d7c01736ef | diff --git a/packages/modal/src/Modal.js b/packages/modal/src/Modal.js
index <HASH>..<HASH> 100644
--- a/packages/modal/src/Modal.js
+++ b/packages/modal/src/Modal.js
@@ -136,9 +136,11 @@ const Modal = ({
);
};
+const DOCUMENT_EXISTS = typeof document !== "undefined";
+
Modal.defaultProps = {
isOpen: false,
-... | fix(modal): conditional use of document global | CraveFood_farmblocks | train | js |
2e259ecd06a76471456d35afc8d3e1e9add15ae3 | diff --git a/tests/CommonDatatypeTest.php b/tests/CommonDatatypeTest.php
index <HASH>..<HASH> 100644
--- a/tests/CommonDatatypeTest.php
+++ b/tests/CommonDatatypeTest.php
@@ -2,9 +2,6 @@
namespace Keboola\DataypeTest;
use Keboola\Datatype\Definition\Common;
-use Keboola\Datatype\Definition\GenericStorage;
-use Kebo... | fix(tests): remove unwanted uses | keboola_php-datatypes | train | php,php |
6ee54710c0fb82e49910515d1984ef523cd0be65 | diff --git a/codename.go b/codename.go
index <HASH>..<HASH> 100644
--- a/codename.go
+++ b/codename.go
@@ -78,12 +78,13 @@ func Get(format FormatType) (string, error) {
codename = strings.Join(csn, " ")
break
case Sanitized:
- codename = strings.ToLower(strings.Trim(codename, "-"))
- reg, err := regexp.Compil... | fix(codename): avoid multiple dashes | jgautheron_codename-generator | train | go |
ed6e6fbdee91f01b13582a48e8f9555b134b5627 | diff --git a/src/foremast/exceptions.py b/src/foremast/exceptions.py
index <HASH>..<HASH> 100644
--- a/src/foremast/exceptions.py
+++ b/src/foremast/exceptions.py
@@ -126,20 +126,20 @@ class LambdaAliasDoesNotExist(ForemastError):
class RequiredKeyNotFound(ForemastError):
- """Required key in json config not fo... | docs: Add periods to docstrings | foremast_foremast | train | py |
c5305f30bbd7a9f65c4fda8b406adb3e3f8e5c98 | diff --git a/lib/reducers/create-otp-reducer.js b/lib/reducers/create-otp-reducer.js
index <HASH>..<HASH> 100644
--- a/lib/reducers/create-otp-reducer.js
+++ b/lib/reducers/create-otp-reducer.js
@@ -2,7 +2,7 @@ import clone from 'clone'
import update from 'immutability-helper'
import queryParams from '../util/query... | fix(reducer): Fix outdated import, clean up misc formatting issues in create-otp-reducer | opentripplanner_otp-react-redux | train | js |
75c45151236defd7193b43bb5a23d228c7ff8add | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -1013,8 +1013,8 @@ var QUERIES = [
},
{
regexp: /^defaults$/i,
- select: function () {
- return browserslist(browserslist.defaults)
+ select: function (context) {
+ return resolve(browserslist.defaul... | fix: defaults query should respect options (#<I>) | browserslist_browserslist | train | js,js |
e4406daea826e7bae9798d6dc7f62667085c63a8 | diff --git a/test/spec/directives/ivh-treeview.js b/test/spec/directives/ivh-treeview.js
index <HASH>..<HASH> 100644
--- a/test/spec/directives/ivh-treeview.js
+++ b/test/spec/directives/ivh-treeview.js
@@ -64,6 +64,18 @@ describe('Directive ivhTreeview', function() {
});
});
+ describe('programmatic data... | test: Add failing test for programmatic change recognition
See #2 and #4 | iVantage_angular-ivh-treeview | train | js |
5419215636fbd335b2c3789b8a2eae0e3921f8bd | diff --git a/Upstart.php b/Upstart.php
index <HASH>..<HASH> 100644
--- a/Upstart.php
+++ b/Upstart.php
@@ -40,11 +40,19 @@ class Upstart
protected $request;
/**
+ * $response
+ *
+ * @var mixed
+ */
+ protected $response;
+
+ /**
* Start application
*
- * @return void
+ * @param bool|null ... | feat: make the boot method return the Upstart instance
Also added a get application response method | modulusphp_framework | train | php |
0a936b2be287a1af17e08f7de3198584c3de8691 | diff --git a/crd-generator/api/src/test/java/io/fabric8/crd/generator/CustomResourceInfoTest.java b/crd-generator/api/src/test/java/io/fabric8/crd/generator/CustomResourceInfoTest.java
index <HASH>..<HASH> 100644
--- a/crd-generator/api/src/test/java/io/fabric8/crd/generator/CustomResourceInfoTest.java
+++ b/crd-genera... | chore: use HasMetadata methods instead of deprecated versions
(cherry picked from commit <I>f<I>fd<I>b<I>cf<I>e<I>ea<I>fb7) | fabric8io_kubernetes-client | train | java |
9469392c76895949dd7ee11d28202c9c91753a6b | diff --git a/src/notebook/menu.js b/src/notebook/menu.js
index <HASH>..<HASH> 100644
--- a/src/notebook/menu.js
+++ b/src/notebook/menu.js
@@ -54,8 +54,7 @@ export function dispatchSaveAs(store, evt, filename) {
store.dispatch(saveAs(filename, notebook));
}
-const remoteElectron = remote.require('electron');
-con... | refactor(saveDialog): Simplify remote electron require | nteract_nteract | train | js,js |
47b7798b03e4fd67479892d51cd1f1db8333a7bb | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -20,7 +20,7 @@ module.exports = function(content) {
let result = {};
try {
- result = mjml2html(content, { level: 'soft' });
+ result = mjml2html(content, { level: 'soft', filePath: this.resourcePath });
} cat... | fix: set filePath for relative mj-include to work. (#3) | nodkz_mjml-with-images-loader | train | js |
7e8fb1a410b588b2d8318590645bdef5a0e7cffa | diff --git a/src/uppy.js b/src/uppy.js
index <HASH>..<HASH> 100644
--- a/src/uppy.js
+++ b/src/uppy.js
@@ -62,6 +62,7 @@ module.exports.socket = (server, { redisUrl }) => {
// client attempts to reconnect.
wss.on('connection', (ws) => {
const fullPath = ws.upgradeReq.url
+ let redisClient
// the toke... | refactor: create redis client just once | transloadit_uppy-server | train | js |
cbc7cfc79a43289f0e6213666463487326158aee | diff --git a/packages/server/lib/environment.js b/packages/server/lib/environment.js
index <HASH>..<HASH> 100644
--- a/packages/server/lib/environment.js
+++ b/packages/server/lib/environment.js
@@ -66,6 +66,10 @@ try {
// https://github.com/cypress-io/cypress/issues/15814
app.commandLine.appendSwitch('disable-de... | chore: fix server performance flake (#<I>)
* chore: fix server performance flake
* rerun in circle | cypress-io_cypress | train | js |
bf603f50dfd48b63bfdef50508c1e8f95b2553da | diff --git a/bin/elementexplorer.js b/bin/elementexplorer.js
index <HASH>..<HASH> 100755
--- a/bin/elementexplorer.js
+++ b/bin/elementexplorer.js
@@ -36,11 +36,11 @@ console.log('Please use "protractor [configFile] [options] --elementExplorer"' +
' for full functionality\n');
if (process.argv.length > 3) {
- co... | chore(selenium): update breakpoint to line <I> and update element explorer to use the built directory (#<I>) | angular_protractor | train | js,js |
62660c569700bcf74fe31a5e501faac70f278c23 | diff --git a/src/bucket/media.js b/src/bucket/media.js
index <HASH>..<HASH> 100644
--- a/src/bucket/media.js
+++ b/src/bucket/media.js
@@ -22,7 +22,7 @@ const mediaMethods = (bucket_config) => ({
data.append('metadata', JSON.stringify(params.metadata))
}
if (params.trigger_webhook) {
- data.append... | fix: axios type issue | cosmicjs_cosmicjs-node | train | js |
5c9c939042677627ed7f38b4d8c92aa250effd0d | diff --git a/lib/rules/rules.js b/lib/rules/rules.js
index <HASH>..<HASH> 100644
--- a/lib/rules/rules.js
+++ b/lib/rules/rules.js
@@ -251,7 +251,7 @@ function _getRuleList(url, list, vals, index) {
if (filePath.indexOf(wPath) === 0) {
var wpLen = wPath.length;
filePath = filePath.substri... | feat: Add new pattern as *.domain, **.domain | avwo_whistle | train | js |
8a598759eefdb38b80a458c51e4a7712fe3e6ff1 | diff --git a/src/Passport/Token.php b/src/Passport/Token.php
index <HASH>..<HASH> 100644
--- a/src/Passport/Token.php
+++ b/src/Passport/Token.php
@@ -40,7 +40,6 @@ class Token extends Model
* @var array
*/
protected $casts = [
- 'scopes' => 'array',
'revoked' => 'bool',
]; | fix: don't cast scopes as an array
Because it's already an array when it comes back from MongoDB - accessing `$token->scopes` without this change throws an error because it's trying to cast from a MySQL json-encoded array
```
json_decode() expects parameter 1 to be string, array given
``` | designmynight_laravel-mongodb-passport | train | php |
1a8b5658a7e6cc37d307c725f9bb24d8e5dbd2e7 | diff --git a/src/components/autocomplete/js/autocompleteDirective.js b/src/components/autocomplete/js/autocompleteDirective.js
index <HASH>..<HASH> 100644
--- a/src/components/autocomplete/js/autocompleteDirective.js
+++ b/src/components/autocomplete/js/autocompleteDirective.js
@@ -42,6 +42,7 @@
template: '\... | fix(autocomplete): disables browser autocomplete
Closes #<I> | angular_material | train | js |
586134a6b9d9313bfbf8e785ce00c42af462e1d5 | diff --git a/client/controllers/WebPublisherContentListsController.js b/client/controllers/WebPublisherContentListsController.js
index <HASH>..<HASH> 100644
--- a/client/controllers/WebPublisherContentListsController.js
+++ b/client/controllers/WebPublisherContentListsController.js
@@ -372,7 +372,7 @@ export function W... | fix: automatic content lists route filtering | superdesk_superdesk-publisher | train | js |
e9e5fff3d07aa266ec525e438f05f954e6998632 | diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -17,7 +17,7 @@ it("version", function() {
it("logging", function() {
assert.strictEqual(groove.LOG_ERROR, 16);
- groove.setLogging(groove.LOG_INFO);
+ groove.setLogging(groove.LOG_QUIET);
});
... | test: use dummy device and set log to quiet | andrewrk_node-groove | train | js |
e8c78919763f7740d0c7bcc4f42d9f39f38dda02 | diff --git a/ui/src/components/btn/QBtn.js b/ui/src/components/btn/QBtn.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/btn/QBtn.js
+++ b/ui/src/components/btn/QBtn.js
@@ -60,7 +60,8 @@ export default Vue.extend({
keyup: this.__onLoadingEvt
}
}
- else if (this.isActionable === tru... | fix(QBtn): disable not working correctly with type="a" + href #<I> | quasarframework_quasar | train | js |
06cfca036139408abaf4a157cc51e4b65b2b7194 | diff --git a/src/helpers.js b/src/helpers.js
index <HASH>..<HASH> 100644
--- a/src/helpers.js
+++ b/src/helpers.js
@@ -112,8 +112,10 @@ export function findLastObject (model, object) {
? model.ctx.knex('sqlite_sequence').first('seq').where({ name: model.name })
: model.ctx.knex(model.name).first().where({ [ke... | fix(create): native vs `sql.js` last object handling | citycide_trilogy | train | js |
0cee39e7ede4a2e3dddf3e10c142524fece92144 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -8,12 +8,6 @@ const delay = require('delay')
const rename = promisify(fs.rename)
module.exports = function renameOverwrite (oldPath, newPath) {
- return _renameOverwrite(oldPath, newPath, 0, 200)
-}
-
-const MAX_RETRY = 8... | fix: revert not needed retry | zkochan_rename-overwrite | train | js |
29c23a615f73db1fc24df1ca1497c5b222264840 | diff --git a/java-dns/synth.py b/java-dns/synth.py
index <HASH>..<HASH> 100644
--- a/java-dns/synth.py
+++ b/java-dns/synth.py
@@ -16,6 +16,8 @@
import synthtool.languages.java as java
+AUTOSYNTH_MULTIPLE_COMMITS = True
+
java.common_templates(excludes=[
'README.md',
]) | chore: enable context aware commits (#<I>) | googleapis_google-cloud-java | train | py |
82293c458c219d4ef92b95bd9ce854faa2083761 | diff --git a/ui/src/components/scroll-observer/QScrollObserver.js b/ui/src/components/scroll-observer/QScrollObserver.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/scroll-observer/QScrollObserver.js
+++ b/ui/src/components/scroll-observer/QScrollObserver.js
@@ -63,8 +63,8 @@ export default defineComponent({
... | fix(QScrollObserver): correctly abort if movement was not on the predefined axis | quasarframework_quasar | train | js |
57dc71f61d2e579e04fedd3550003af45c448f9c | diff --git a/lib/https/h2.js b/lib/https/h2.js
index <HASH>..<HASH> 100644
--- a/lib/https/h2.js
+++ b/lib/https/h2.js
@@ -1,6 +1,7 @@
var https = require('https');
var LRU = require('lru-cache');
var tls = require('tls');
+var sockx = require('sockx');
var util = require('../util');
var config = require('../confi... | feat: add socksv5 proxy for http2 request | avwo_whistle | train | js |
4943f65be149ab1295e154c46dd8ee69f863faa9 | diff --git a/scripts/prepublish.js b/scripts/prepublish.js
index <HASH>..<HASH> 100644
--- a/scripts/prepublish.js
+++ b/scripts/prepublish.js
@@ -47,8 +47,10 @@ function validateFile(fileName) {
if (env.isWindows) {
const output = exec(`certutil -hashfile ${fileName} sha1`).split('\r\n');
- cons... | fix: find file name in certutil language independent | yfinkelstein_node-zookeeper | train | js |
dcc8ff9dba7ffa8fc5be3099c1da022eaff48f0f | diff --git a/tests/passing-configs/pac.js b/tests/passing-configs/pac.js
index <HASH>..<HASH> 100644
--- a/tests/passing-configs/pac.js
+++ b/tests/passing-configs/pac.js
@@ -53,9 +53,9 @@ const config = {
lessModuleLoader(false),
]),
},
- postcss: [
- autoprefixer({browsers: ['last 2 versions']}),
-... | test(configs): Adapt postcss property usage to documented format.
Although it is (still?) allowed to just specify an array, the only
documented form is specifying a function. (See <URL> | kentcdodds_webpack-validator-DEPRECATED | train | js |
83725747655cd7ab4e602f7ab7371d52e9046f5d | diff --git a/src/plugin/release/index.js b/src/plugin/release/index.js
index <HASH>..<HASH> 100644
--- a/src/plugin/release/index.js
+++ b/src/plugin/release/index.js
@@ -151,10 +151,12 @@ function action (config, directory, options) {
function execute (...commands) {
function _exec (cmd) {
- const code = exec... | fix(northbrook): log error if it occurs | northbrookjs_northbrook | train | js |
b0cebd56e716e5b830ee1f52c75a05773823e242 | diff --git a/src/components/core/core.js b/src/components/core/core.js
index <HASH>..<HASH> 100644
--- a/src/components/core/core.js
+++ b/src/components/core/core.js
@@ -245,7 +245,7 @@ export default class Core extends UIObject {
this.renderContainers()
this.setupMediaControl(this.getCurrentContainer())
... | fix(core): Append core element to parent only once
The core element needs to be immutable in DOM to avoid render problems and others unexpected behaviors (e.g. DFP freezed after a new load on Android) | clappr_clappr | train | js |
ac1238ca59eac4c2448884693defb6065d8eac74 | diff --git a/test/extended/operators/images.go b/test/extended/operators/images.go
index <HASH>..<HASH> 100644
--- a/test/extended/operators/images.go
+++ b/test/extended/operators/images.go
@@ -139,8 +139,8 @@ var _ = Describe("[sig-arch] Managed cluster", func() {
e2e.Logf("unable to run command:%v with error:... | test: Broaden check for base images that are RHEL8
The UBI8 image has the following string in /etc/redhat-release
Red Hat Enterprise Linux ...
and thus fails this test. We accept both UBI/RHEL 7/8 images and
so we loosen the test here. | openshift_origin | train | go |
db5391848cacced2a5e9c15588b003880287121f | diff --git a/.eslintrc.js b/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -3,8 +3,13 @@ module.exports = {
"@tivac",
],
+ parserOptions: {
+ ecmaVersion : 2017,
+ },
+
env : {
node : true,
es6 : true,
+ jest : true,
},
... | chore: linting tidy up | tivac_rollup-plugin-sizes | train | js,js |
5b8fe707bed83792ba05bece960f47b4b45d8f87 | diff --git a/__tests__/manual.js b/__tests__/manual.js
index <HASH>..<HASH> 100644
--- a/__tests__/manual.js
+++ b/__tests__/manual.js
@@ -98,7 +98,8 @@ function runTests(name, useProxies) {
expect(res2).toEqual({a: 2, b: 4})
})
- it("combines with produce - 2", () => {
+ // TODO: fix
+ it.skip("combines wi... | test: disabled obscure test for now, for later investigation | immerjs_immer | train | js |
5315b63a5d17c7de877019ac53bec5bd7fd8e12c | diff --git a/src/Voyager.php b/src/Voyager.php
index <HASH>..<HASH> 100644
--- a/src/Voyager.php
+++ b/src/Voyager.php
@@ -7,7 +7,7 @@ use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Arr;
-use Illuminate\Support\Facades... | feat(update): remove unused class and import the Cache class (#<I>) | the-control-group_voyager | train | php |
c43caed30b799cb073d34c8ae4de4b50b9bb7d89 | diff --git a/test/extract-stream.js b/test/extract-stream.js
index <HASH>..<HASH> 100644
--- a/test/extract-stream.js
+++ b/test/extract-stream.js
@@ -238,7 +238,7 @@ test('accepts dmode/fmode/umask opts', {
}),
// no entry in tarball, so mode is default from node-tar (0700) mixed with
// our provi... | fix(test): missed a spot converting tests to promises | zkat_pacote | train | js |
b57edbae7609b3802a3e7e08e27bfc1a8b65bad6 | diff --git a/src/modules/signalStore/index.js b/src/modules/signalStore/index.js
index <HASH>..<HASH> 100644
--- a/src/modules/signalStore/index.js
+++ b/src/modules/signalStore/index.js
@@ -153,7 +153,7 @@ module.exports = function SignalStore () {
console.warn('Cerebral - Looking in the past, ignored signal ... | fix(signalStore): do not store prevented signals | cerebral_cerebral | train | js |
de3ac1a8eef788e1946a5beb4b65bb995fedf14d | diff --git a/anom/query.py b/anom/query.py
index <HASH>..<HASH> 100644
--- a/anom/query.py
+++ b/anom/query.py
@@ -395,7 +395,7 @@ class Query(namedtuple("Query", (
entities += len(list(page))
return entities
- def delete(self, *, page_size=300, **options):
+ def delete(self, *, page_size=... | fix: use DEAFULT_BATCH_SIZE in Query.delete | Bogdanp_anom-py | train | py |
6c0ae2ad3bfb662a18d008879374eb4ba5898c44 | diff --git a/commitlint.config.js b/commitlint.config.js
index <HASH>..<HASH> 100644
--- a/commitlint.config.js
+++ b/commitlint.config.js
@@ -2,4 +2,9 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
+ rules: {
+ "header-max-length": [0],
+ "body-max-line-length": [0],
+ "footer-max-... | chore: disable commit message length check (#<I>) | itgalaxy_imagemin-webpack | train | js |
8bd803d1c4b69fb168b390814aaac2f1d769490a | diff --git a/lib/push-to-s3.js b/lib/push-to-s3.js
index <HASH>..<HASH> 100644
--- a/lib/push-to-s3.js
+++ b/lib/push-to-s3.js
@@ -1,5 +1,6 @@
const AWS = require('aws-sdk')
const fs = require('fs')
+const mime = require('mime')
const uuid = require('uuid')
const browserify = require('./browserify')
@@ -59,6 +60,... | feat(push): Set content type manually when pushing to S3 | conveyal_mastarm | train | js |
dcabbdf97e9fd9d8cba101af31a0a22e9e704f64 | diff --git a/packages/api-core/src/api.js b/packages/api-core/src/api.js
index <HASH>..<HASH> 100644
--- a/packages/api-core/src/api.js
+++ b/packages/api-core/src/api.js
@@ -292,7 +292,7 @@ export default class AvApi {
(pageResp) => pageResp.data[key] || []
)
)
- ).then((p... | fix(api-core): use flat for lint | Availity_sdk-js | train | js |
1bbd5bb49de0613585e01b155dc75ffd7e479619 | diff --git a/binutil/walk.go b/binutil/walk.go
index <HASH>..<HASH> 100644
--- a/binutil/walk.go
+++ b/binutil/walk.go
@@ -46,6 +46,7 @@ func walk(v reflect.Value, spath string, walker Walker) error {
}
if sz, ok := v.Interface().(AlignedSizer); ok {
n := sz.AlignedSize() - sz.Size()
+ var pad [8]byte
p... | refactor: make pad a local var, not global | akavel_rsrc | train | go,go |
1f1e2dd29ad6b67d15319fae0de7fb186e928d3f | diff --git a/superset/jinja_context.py b/superset/jinja_context.py
index <HASH>..<HASH> 100644
--- a/superset/jinja_context.py
+++ b/superset/jinja_context.py
@@ -297,7 +297,7 @@ class ExtraCache:
for flt in form_data.get("adhoc_filters", []):
val: Union[Any, List[Any]] = flt.get("comparator")
-... | fix: ensure setting operator to `None` (#<I>) (#<I>) | apache_incubator-superset | train | py |
e41a70b5d13980b4fbf5323201974096dec1ba15 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -63,12 +63,14 @@ export default {
const fail = to.meta.fail || options.failRoute
const meta = to.meta || {}
+ const canNavigate = (verb, subject, ...otherArgs) => {
+ return (subject && acl.... | refactor: extract canNavigate function | mblarsen_vue-browser-acl | train | js |
62430269a058af599573cfdabe24a46edec3b619 | diff --git a/Dialogflow/synth.py b/Dialogflow/synth.py
index <HASH>..<HASH> 100644
--- a/Dialogflow/synth.py
+++ b/Dialogflow/synth.py
@@ -27,6 +27,7 @@ common = gcp.CommonTemplates()
library = gapic.php_library(
service='dialogflow',
version='v2',
+ config_path='/google/cloud/dialogflow/v2/artman_dialogf... | chore: Explicitly define artman configuration path (#<I>) | googleapis_google-cloud-php | train | py |
2cef337f5f8bdb67a76f7e1bda5aea9fe72b12ce | diff --git a/src/components/local-store-provider/local-store-provider.js b/src/components/local-store-provider/local-store-provider.js
index <HASH>..<HASH> 100644
--- a/src/components/local-store-provider/local-store-provider.js
+++ b/src/components/local-store-provider/local-store-provider.js
@@ -94,11 +94,13 @@ expor... | feat(dashboard): define routes using components | commercetools_merchant-center-application-kit | train | js |
f675fbba1064c25477da3268283a65a9a247cd17 | diff --git a/test/cluster/cluster.go b/test/cluster/cluster.go
index <HASH>..<HASH> 100644
--- a/test/cluster/cluster.go
+++ b/test/cluster/cluster.go
@@ -73,6 +73,7 @@ func (c *Cluster) BuildFlynn(rootFS, commit string) (string, error) {
User: uid,
Group: gid,
Memory: "512",
+ Cores: 8,
Drives: map[st... | test: Build Flynn with 8 Cpus | flynn_flynn | train | go,go |
631b94f013a7511700e19efe910a91a159335dde | diff --git a/meleeuploader/forms.py b/meleeuploader/forms.py
index <HASH>..<HASH> 100755
--- a/meleeuploader/forms.py
+++ b/meleeuploader/forms.py
@@ -363,7 +363,7 @@ class MeleeUploader(BaseWidget):
# Add ControlCombo values
for t in consts.match_types:
self._mtype += t
- for t in... | refactor: make unlisted the default privacy option | NikhilNarayana_Melee-YouTube-Uploader | train | py |
8da08103651a8c58a374c7ce805612175d90d414 | diff --git a/tests/FormTest.php b/tests/FormTest.php
index <HASH>..<HASH> 100644
--- a/tests/FormTest.php
+++ b/tests/FormTest.php
@@ -48,4 +48,10 @@ class FormTest extends PHPUnit_Framework_TestCase {
$this->assertEquals('PUT', $mock->field['foobar']->get_value());
}
+ public function testFromBeginEnd(){
+ $mo... | test: ensure begin/end is called | NitroXy_php-forms | train | php |
8930c653bf3979d960f1ce748e007db7395912b2 | diff --git a/schedula/utils/drw/__init__.py b/schedula/utils/drw/__init__.py
index <HASH>..<HASH> 100644
--- a/schedula/utils/drw/__init__.py
+++ b/schedula/utils/drw/__init__.py
@@ -752,6 +752,9 @@ class SiteFolder(object):
filepath = uncpath(filepath)
if osp.isfile(filepath):
os.remove(... | fix(drw): Log error when dot is not able to render a graph. | vinci1it2000_schedula | train | py |
8b94e137e28eb839cf13acc62701189682a94970 | diff --git a/test/udif.js b/test/udif.js
index <HASH>..<HASH> 100644
--- a/test/udif.js
+++ b/test/udif.js
@@ -204,7 +204,7 @@ context( 'UDIF.SparseReadStream', function() {
UDIF.getUncompressedSize( filename, ( error, size ) => {
if( error ) return done( error )
- var actual = Buff... | fix(test): Don't allocUnsafe for sparse stream read data | jhermsmeier_node-udif | train | js |
2913524632e6f2c9bb0ef7ee6eac7c32b38b3bda | diff --git a/packages/@vue/cli-ui/tests/e2e/specs/g2-plugins.js b/packages/@vue/cli-ui/tests/e2e/specs/g2-plugins.js
index <HASH>..<HASH> 100644
--- a/packages/@vue/cli-ui/tests/e2e/specs/g2-plugins.js
+++ b/packages/@vue/cli-ui/tests/e2e/specs/g2-plugins.js
@@ -12,7 +12,7 @@ describe('Plugins', () => {
cy.get('.i... | test: fix tests according to cypress 6 breaking change | vuejs_vue-cli | train | js |
82e291d03ec1e5ff2408d5e4dec1445ec3488d17 | diff --git a/lib/components/user/with-logged-in-user-support.js b/lib/components/user/with-logged-in-user-support.js
index <HASH>..<HASH> 100644
--- a/lib/components/user/with-logged-in-user-support.js
+++ b/lib/components/user/with-logged-in-user-support.js
@@ -13,16 +13,12 @@ import AwaitingScreen from './awaiting-sc... | refactor(UserLoaderScreen): Cleanup | opentripplanner_otp-react-redux | train | js |
7f8a8e34b7c973c98a9e5efc4bf272c61333aab8 | diff --git a/packages/test-helper-file/src/file.shim.js b/packages/test-helper-file/src/file.shim.js
index <HASH>..<HASH> 100644
--- a/packages/test-helper-file/src/file.shim.js
+++ b/packages/test-helper-file/src/file.shim.js
@@ -90,7 +90,7 @@ var FileShim = module.exports = {
fetch: function fetch(filename) {
... | fix(test-helper-file): fix invalid character for IE <I> | webex_spark-js-sdk | train | js |
29310c819ab3bc29aad48ba5d8a424d1235667bf | diff --git a/src/platforms/mp/runtime/lifecycle/index.js b/src/platforms/mp/runtime/lifecycle/index.js
index <HASH>..<HASH> 100644
--- a/src/platforms/mp/runtime/lifecycle/index.js
+++ b/src/platforms/mp/runtime/lifecycle/index.js
@@ -7,7 +7,7 @@ export {
}
export function initMP (vm, options) {
- const { mpType }... | feat: set mpType default value as "page" | kaola-fed_megalo | train | js |
5c2f235b6cc1b0788e4658e7bdec3e325da89512 | diff --git a/cmd/helm/status.go b/cmd/helm/status.go
index <HASH>..<HASH> 100644
--- a/cmd/helm/status.go
+++ b/cmd/helm/status.go
@@ -53,6 +53,9 @@ func newStatusCmd(cfg *action.Configuration, out io.Writer) *cobra.Command {
return err
}
+ // strip chart metadata from the output
+ rel.Chart = nil
+
... | fix(install): fix issue where chart metadata is not being saved on `helm install` | helm_helm | train | go,go |
191660ca2044e74a09b816071f1ac5f85fa331b1 | diff --git a/packages/cli/cli.js b/packages/cli/cli.js
index <HASH>..<HASH> 100644
--- a/packages/cli/cli.js
+++ b/packages/cli/cli.js
@@ -15,6 +15,7 @@ const trackingNotice = () => {
yargs
.usage("Usage: $0 <command>")
.demandCommand(1)
+ .strict()
.example("$0 deploy-api --env=dev --debug")
.e... | fix: handle unknown CLI commands (#<I>) | Webiny_webiny-js | train | js |
d269e957fe9d5906aa86c9a5854b1206c36b9d65 | diff --git a/files/rollup.config.js b/files/rollup.config.js
index <HASH>..<HASH> 100644
--- a/files/rollup.config.js
+++ b/files/rollup.config.js
@@ -9,7 +9,7 @@ export default {
format : 'cjs',
},
{
- file : './dist/rambdax.es.js',
+ file : './dist/rambdax.esm.js',
format : 'es',... | fix: wrong esm rollup file declaration | selfrefactor_rambdax | train | js |
1fa0dc36f0616888dfb070846c2ce689c331a345 | diff --git a/src/registry.js b/src/registry.js
index <HASH>..<HASH> 100644
--- a/src/registry.js
+++ b/src/registry.js
@@ -154,7 +154,7 @@ function fetchVersions(nameVersion) {
}
// console.log('fetching versions for', name, 'current version', version);
- var MAX_WAIT_TIMEOUT = 5000;
+ var MAX_WAIT_TI... | fix(timeout): increased NPM registry request timeout from 5 to <I> seconds | bahmutov_next-update | train | js |
ea82fbf55684193c10e81545378a7656a0871840 | diff --git a/src/browser-polyfill.js b/src/browser-polyfill.js
index <HASH>..<HASH> 100644
--- a/src/browser-polyfill.js
+++ b/src/browser-polyfill.js
@@ -173,7 +173,7 @@ if (typeof browser === "undefined") {
* Wraps an existing method of the target object, so that calls to it are
* intercepted by the given... | chore: Fixed typos in inline comments (#<I>) | mozilla_webextension-polyfill | train | js |
237bc005f1cf3f49bade91b0482b42b3d8cd9c4b | diff --git a/test/unit/url.test.js b/test/unit/url.test.js
index <HASH>..<HASH> 100644
--- a/test/unit/url.test.js
+++ b/test/unit/url.test.js
@@ -392,6 +392,25 @@ describe('Url', function () {
url = new Url(rawUrl);
expect(url.getPath()).to.eql('/get');
});
+
+ it('should ... | test: Added unit test for non-stringy path-variable resolution :white_check_mark: | postmanlabs_postman-collection | train | js |
c4834492b9e3f7f64d1dd2421eae00c7094efba4 | diff --git a/util/grpc/grpc.go b/util/grpc/grpc.go
index <HASH>..<HASH> 100644
--- a/util/grpc/grpc.go
+++ b/util/grpc/grpc.go
@@ -12,6 +12,7 @@ import (
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/credentials"
+ "google.golang.org/grpc/keepalive"
"google.golang.org/grpc/stat... | feat: add client side keepalive pings (#<I>) | argoproj_argo-cd | train | go |
ba316d918928b2d581a73410d809fe5145f4e673 | diff --git a/ui/src/components/select/QSelect.js b/ui/src/components/select/QSelect.js
index <HASH>..<HASH> 100755
--- a/ui/src/components/select/QSelect.js
+++ b/ui/src/components/select/QSelect.js
@@ -350,7 +350,10 @@ export default Vue.extend({
}
if (this.$q.platform.is.mobile === true) {
- on... | fix(QSelect): prevent blurring on mobile when dialog is closing because it triggers click outside on parent menus (#<I>)
ref <URL> | quasarframework_quasar | train | js |
700201e3fe36651f77fbe06e2424adb90905d19d | diff --git a/src/structures/GuildAuditLogs.js b/src/structures/GuildAuditLogs.js
index <HASH>..<HASH> 100644
--- a/src/structures/GuildAuditLogs.js
+++ b/src/structures/GuildAuditLogs.js
@@ -148,6 +148,7 @@ class GuildAuditLogs {
* * An emoji
* * An invite
* * A webhook
+ * * An object with an id key if t... | fix(GuildAuditLogs): default target to object with target_id (#<I>) | discordjs_discord.js | train | js |
0c535a53ac5c633d805acda909d2dc9fb62709c0 | diff --git a/vault/testing.go b/vault/testing.go
index <HASH>..<HASH> 100644
--- a/vault/testing.go
+++ b/vault/testing.go
@@ -26,8 +26,6 @@ import (
"sync/atomic"
"time"
- "github.com/hashicorp/vault/internalshared/configutil"
-
"github.com/armon/go-metrics"
hclog "github.com/hashicorp/go-hclog"
log "githu... | fix: configutil redeclared as imported package name (#<I>) | hashicorp_vault | train | go |
bd1e4b2d0b9e0f892167a605760514f94bcbd028 | diff --git a/src/menu/SubMenu.js b/src/menu/SubMenu.js
index <HASH>..<HASH> 100644
--- a/src/menu/SubMenu.js
+++ b/src/menu/SubMenu.js
@@ -14,9 +14,11 @@ function getMenuKeyList(key, menus) {
if (menuFilter.length > 0) return true;
let isAtive = false;
menus.forEach((item) => {
- if (toString.apply(item.pro... | fix(Menu): Fix the submenu selection issue. | uiwjs_uiw | train | js |
02a29f97828ff2de16d7937eaf0e8e36ba1e81af | diff --git a/website/webpack.config.js b/website/webpack.config.js
index <HASH>..<HASH> 100644
--- a/website/webpack.config.js
+++ b/website/webpack.config.js
@@ -58,7 +58,10 @@ module.exports = {
hashDigestLength: 8,
},
devServer: {
- contentBase: sourceDirectory,
+ allowedHosts: 'all',
+ static: {... | chore: Allow all hosts in dev mode | reactjs_react-docgen | train | js |
4462240bbecfeaf234e75495d70def81c80a912c | diff --git a/packages/api-page-builder/__tests__/graphql/settings.js b/packages/api-page-builder/__tests__/graphql/settings.js
index <HASH>..<HASH> 100644
--- a/packages/api-page-builder/__tests__/graphql/settings.js
+++ b/packages/api-page-builder/__tests__/graphql/settings.js
@@ -26,6 +26,7 @@ export const UPDATE_SET... | test: check `id` field | Webiny_webiny-js | train | js |
1ddd41e53290f96d517d22d76244571337dd064f | diff --git a/src/Models/User.php b/src/Models/User.php
index <HASH>..<HASH> 100644
--- a/src/Models/User.php
+++ b/src/Models/User.php
@@ -128,7 +128,7 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon
/**
* @var bool
*/
- public $incrementing = false;
+ public $... | fix: set user as auto-incremented | eveseat_web | train | php |
3fb3c49c05903e703e896f61ef1b9d1d18d7b2b2 | diff --git a/src/utils/DayEventLayout.js b/src/utils/DayEventLayout.js
index <HASH>..<HASH> 100644
--- a/src/utils/DayEventLayout.js
+++ b/src/utils/DayEventLayout.js
@@ -21,7 +21,7 @@ export function getStyledEvents({
dayLayoutAlgorithm, // one of DefaultAlgorithms keys
// or custom function
}) {
- let algorit... | fix: `dayLayoutAlgorithm` prop with custom function (#<I>) | intljusticemission_react-big-calendar | train | js |
f4ee63ca1059efcbdcacea9f6c1ce4e9433e2baf | diff --git a/src/core/vdom/create-functional-component.js b/src/core/vdom/create-functional-component.js
index <HASH>..<HASH> 100644
--- a/src/core/vdom/create-functional-component.js
+++ b/src/core/vdom/create-functional-component.js
@@ -8,6 +8,7 @@ import { resolveSlots } from '../instance/render-helpers/resolve-slot... | refactor: also use emptyObject for functional listeners | kaola-fed_megalo | train | js |
adc06dbf6ecdca193ab449c2e9a48bedb8d83cc9 | diff --git a/test/functional/operation_promises_example_tests.js b/test/functional/operation_promises_example_tests.js
index <HASH>..<HASH> 100644
--- a/test/functional/operation_promises_example_tests.js
+++ b/test/functional/operation_promises_example_tests.js
@@ -3126,7 +3126,7 @@ describe('Operation (Promises)', fu... | chore: skip test that leaks a client | mongodb_node-mongodb-native | train | js |
5ffe5c478e67c1b0ecedfed6f1b1d0d707e2ad7f | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -5,7 +5,7 @@ import del from './del';
import each from './each';
import empty from './empty';
import every from './every';
-import flattenKeys from './flattenKeys';
+import deflate from './deflate';
import ... | refactor(deflate): rename flattenKeys to deflate | hammy2899_o | train | js |
1068001e45a60fc65364989e1b21f1f4940c7694 | diff --git a/dist/jasmine-matchers.js b/dist/jasmine-matchers.js
index <HASH>..<HASH> 100644
--- a/dist/jasmine-matchers.js
+++ b/dist/jasmine-matchers.js
@@ -669,12 +669,15 @@ module.exports = function toBeFalse(actual) {
};
},{"./lib/is":12}],31:[function(require,module,exports){
+// modules
+var is = require('./... | fix(functions): add android <I> support in toBeFunction | JamieMason_Jasmine-Matchers | train | js,js |
d7b7b3c105042a0bcdf3e70cebca9a09dd35629f | diff --git a/tinydb/queries.py b/tinydb/queries.py
index <HASH>..<HASH> 100644
--- a/tinydb/queries.py
+++ b/tinydb/queries.py
@@ -129,7 +129,7 @@ class Query(QueryInstance):
def __init__(self) -> None:
# The current path of fields to access when evaluating the object
- self._path = ()
+ s... | chore: add missing type hint for `Query._path` | msiemens_tinydb | train | py |
4fedadcda38abcbc28026d8849806011f4221ddf | diff --git a/src/ui/dropdown/controller.js b/src/ui/dropdown/controller.js
index <HASH>..<HASH> 100644
--- a/src/ui/dropdown/controller.js
+++ b/src/ui/dropdown/controller.js
@@ -136,7 +136,7 @@ class AvDropdownController {
const optionValuesKeys = this.getOptionValuesKeys(optionValues);
const index = findI... | fix(Dropdown): account for 'select as'
The 'select as' syntax will have the model as a property of the collection items and not the item itself. We need to check if the item matches using the key | Availity_availity-angular | train | js |
2bf5add24d2f5972875767a18a490d465ada0b8e | diff --git a/zk_shell/shell.py b/zk_shell/shell.py
index <HASH>..<HASH> 100644
--- a/zk_shell/shell.py
+++ b/zk_shell/shell.py
@@ -1484,7 +1484,7 @@ child_watches=%s"""
for host, port in hosts_to_endpoints(params.hosts):
for ip in get_ips(host, port):
endpoints.add("%s:%s" % (ip, ... | fix(chkzk): sort endpoints so that the output is stable | rgs1_zk_shell | train | py |
9e7a5c0c1a4ef4c44ba0015ce5bae2726092fd5f | diff --git a/gulp/config.js b/gulp/config.js
index <HASH>..<HASH> 100644
--- a/gulp/config.js
+++ b/gulp/config.js
@@ -29,6 +29,7 @@ module.exports = {
unit: [
'tests/**/*.test.ts',
'!tests/**/browser/**/*.test.ts',
+ '!tests/**/binary/**/*.test.ts',
],
binary: [
'... | fix(gulp): fix the gulp task "test:unit:node" (#5)
There was an issue where the task "test:unit:node" was running tests that dependend on the
build artifact. This change ignores those tests as they are run in a different suite. | firebase_firebase-js-sdk | train | js |
7bd68f462b8e3810cb1156954845aeb476044d35 | diff --git a/lib/cluster.js b/lib/cluster.js
index <HASH>..<HASH> 100644
--- a/lib/cluster.js
+++ b/lib/cluster.js
@@ -150,10 +150,17 @@ class ClusterApplication extends Coffee {
/**
* kill the process
+ * @return {Promise} promise
*/
close() {
- this.proc.kill('SIGTERM');
- this.closed = true;
... | feat: cluster should wait process exit (#<I>) | eggjs_egg-mock | train | js |
b809e7cda2a96823eccf20e012843d04d3571d4d | diff --git a/dramatiq/brokers/stub.py b/dramatiq/brokers/stub.py
index <HASH>..<HASH> 100644
--- a/dramatiq/brokers/stub.py
+++ b/dramatiq/brokers/stub.py
@@ -1,3 +1,4 @@
+from itertools import chain
from queue import Queue, Empty
from ..broker import Broker, Consumer, MessageProxy
@@ -99,7 +100,7 @@ class StubBrok... | fix: make StubBroker.flush_all flush delay queues | Bogdanp_dramatiq | train | py |
380c3d1bbfb1a3d8e2ae0e4e9b7bc8c6129bb1a2 | diff --git a/lib/components/form/settings-bar.js b/lib/components/form/settings-bar.js
index <HASH>..<HASH> 100644
--- a/lib/components/form/settings-bar.js
+++ b/lib/components/form/settings-bar.js
@@ -38,7 +38,7 @@ class SettingsBar extends Component {
<div className='some-selected-label'>{selectedMo... | fix(form): Set keys for settings-bar mode icon list | opentripplanner_otp-react-redux | train | js |
e90ee226d90ec7d94f4dbe7974ba7402299add28 | diff --git a/examples/demo/index.js b/examples/demo/index.js
index <HASH>..<HASH> 100644
--- a/examples/demo/index.js
+++ b/examples/demo/index.js
@@ -1,6 +1,6 @@
"use strict";
-const cursor = require('kittik-cursor').create().resetTTY();
+const Deck = require('../../lib/Deck');
const SLIDES = [
require('./slide... | docs(package): Update examples | ghaiklor_kittik | train | js |
771c6b287702bd15a7cce8dd77aed119f76f0dd6 | diff --git a/lib/optimize/DedupePlugin.js b/lib/optimize/DedupePlugin.js
index <HASH>..<HASH> 100644
--- a/lib/optimize/DedupePlugin.js
+++ b/lib/optimize/DedupePlugin.js
@@ -2,11 +2,14 @@
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
-function DedupePlugin() {}
-mo... | refactor(ES6): upgrade DedupePlugin to ES6 (#<I>) | webpack_webpack | train | js |
b51c72735676eedce3ed0e391b3db3528933332d | diff --git a/src/actions/query.js b/src/actions/query.js
index <HASH>..<HASH> 100644
--- a/src/actions/query.js
+++ b/src/actions/query.js
@@ -388,6 +388,15 @@ function appbaseSearch({
size: 5,
value: internalValue && internalValue.value,
enableSynonyms,
+ defaultQuery: {
+ sort: [
+ {
+ count... | fix: use defaultQuery to sort suggestions by count | appbaseio_reactivecore | train | js,js |
4c65cb8c239a51d613c2ca31243d7dffc966a262 | diff --git a/rules/stylistic_issues.js b/rules/stylistic_issues.js
index <HASH>..<HASH> 100644
--- a/rules/stylistic_issues.js
+++ b/rules/stylistic_issues.js
@@ -8,7 +8,8 @@ module.exports = {
'arraysInArrays': false
}],
// disallow or enforce spaces inside of single line blocks (fixable... | fix(block-spacing): ignore this rule | adoyle-h_eslint-config-adoyle-style | train | js |
5361e7d13b188fdcfc849a43a2c9ab3e9dc52cf6 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -188,7 +188,7 @@ install_requires = [
"pyjwt==2.1.0",
"pyld==2.0.3",
"pyOpenSSL>=19.0.0,<20.1.0",
- "pyshacl==0.17.0.post1",
+ "pyshacl==0.17.2",
"python-dateutil>=2.6.1,<2.8.3",
"python-editor==... | chore: bump pyshacl (#<I>) | SwissDataScienceCenter_renku-python | train | py |
3f308cdf630a3f6fc80ce2e72f03f4cde10ca2d8 | diff --git a/tooling/lib/test/mocha.js b/tooling/lib/test/mocha.js
index <HASH>..<HASH> 100644
--- a/tooling/lib/test/mocha.js
+++ b/tooling/lib/test/mocha.js
@@ -8,7 +8,6 @@ require('@babel/register')({
only: [
'./packages/node_modules/**/*.js',
],
- exclude: [/node_modules\/@webex\/internal-media-core/],
... | fix: remove internal-media-core from excludes
Internal media core converts to cjs
No excludes required at user end | webex_spark-js-sdk | train | js,js |
c7ef9b20033d08b21af6f77e055ebc64c51dbafe | diff --git a/packages/edition-slices/edition-slices.showcase.js b/packages/edition-slices/edition-slices.showcase.js
index <HASH>..<HASH> 100644
--- a/packages/edition-slices/edition-slices.showcase.js
+++ b/packages/edition-slices/edition-slices.showcase.js
@@ -59,7 +59,7 @@ const sliceStories = [
},
{
mock... | fix: lead 1 and 1 slice title in storybook (#<I>) | newsuk_times-components | train | js |
e29e582d2d47096034b402c9bc7f7f91e092cede | diff --git a/packages/grunt-stryker/tasks/stryker.js b/packages/grunt-stryker/tasks/stryker.js
index <HASH>..<HASH> 100644
--- a/packages/grunt-stryker/tasks/stryker.js
+++ b/packages/grunt-stryker/tasks/stryker.js
@@ -30,8 +30,8 @@ module.exports = function (grunt) {
var stryker = new Stryker(options);
stryk... | fix(stryker): Display stryker errors on the console instead of hiding them (#9) | stryker-mutator_stryker | train | js |
cdd13704329be103001016a982098b013252804b | diff --git a/packages/taro-components/src/components/tabbar/index.js b/packages/taro-components/src/components/tabbar/index.js
index <HASH>..<HASH> 100644
--- a/packages/taro-components/src/components/tabbar/index.js
+++ b/packages/taro-components/src/components/tabbar/index.js
@@ -39,6 +39,12 @@ class Tabbar extends N... | fix(taro-components): H5 & Weapp统一pagePath. (#<I>) | NervJS_taro | train | js |
1c4fa0b2fb5a791b4f6a7bc4cf8eb9f55b71f2d4 | diff --git a/lib/client-base.js b/lib/client-base.js
index <HASH>..<HASH> 100644
--- a/lib/client-base.js
+++ b/lib/client-base.js
@@ -682,19 +682,19 @@ function resume (client) {
return
}
- if (!request.idempotent && client.running) {
+ if (request.reset && util.bodyLength(request.body) === 0) {
+ ... | refactor: client.running first | mcollina_undici | train | js |
dd6ed7e7e91c1b148c18f5c5f66d72bd95c36934 | diff --git a/tests/func/test_repro.py b/tests/func/test_repro.py
index <HASH>..<HASH> 100644
--- a/tests/func/test_repro.py
+++ b/tests/func/test_repro.py
@@ -957,7 +957,7 @@ class TestReproExternalS3(TestReproExternalBase):
return TEST_AWS_REPO_BUCKET
def cmd(self, i, o):
- return "where aws && ... | test: s3: remove debug marker | iterative_dvc | train | py |
fc1b571fedaaa9d0685c15ed19596c24128c84be | diff --git a/lib/parser/statement/member.js b/lib/parser/statement/member.js
index <HASH>..<HASH> 100644
--- a/lib/parser/statement/member.js
+++ b/lib/parser/statement/member.js
@@ -89,6 +89,7 @@ class MemberNode extends Node {
if (this.computed) {
this.property = Node.from(source, astNode.property, scop... | fix: Properly handle computed member expressions | goldibex_targaryen | train | js,js |
6addf76c1664573efc1cd89344c75424e39fa4bd | diff --git a/lib/cast/cast_utils.js b/lib/cast/cast_utils.js
index <HASH>..<HASH> 100644
--- a/lib/cast/cast_utils.js
+++ b/lib/cast/cast_utils.js
@@ -303,8 +303,8 @@ shaka.cast.CastUtils.VideoVoidMethods = [
shaka.cast.CastUtils.PlayerGetterMethods = {
// NOTE: The 'drmInfo' property is not proxied, as it is very ... | test: decrease the frequency of updates for some cast methods.
This should help with the recent test failures.
Change-Id: I<I>e<I>fe5c<I>eba<I>bc4cea<I>d8b<I>e | google_shaka-player | train | js |
772879cee188ea9e439c6c1c16911f8054c577c4 | diff --git a/algolia/search/generate_secured_api_key.go b/algolia/search/generate_secured_api_key.go
index <HASH>..<HASH> 100644
--- a/algolia/search/generate_secured_api_key.go
+++ b/algolia/search/generate_secured_api_key.go
@@ -40,6 +40,7 @@ func GenerateSecuredAPIKey(apiKey string, opts ...interface{}) (string, err... | fix: make filters usable for secured API keys | algolia_algoliasearch-client-go | train | go |
cb47cd72f27b6a44fb9063b58b579e3847ccc6f1 | diff --git a/tests/test_composition.py b/tests/test_composition.py
index <HASH>..<HASH> 100644
--- a/tests/test_composition.py
+++ b/tests/test_composition.py
@@ -414,4 +414,4 @@ def test_groups_can_have_completion_callbacks(stub_broker, stub_worker, rate_lim
assert len(finalize_times) == 1
# And the callba... | fix(tests): windows monotonic() resolution | Bogdanp_dramatiq | train | py |
c3e11ea46ab2acf7a0c54d59c70a5554247b498e | diff --git a/jest.config.js b/jest.config.js
index <HASH>..<HASH> 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -14,7 +14,7 @@ module.exports = {
: ['html', 'text-summary'],
coverageThreshold: {
global: {
- branches: 95,
+ branches: 96,
functions: 100,
lines: 100,
state... | test: raise branch coverage (#<I>) | renovatebot_renovate | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.