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 |
|---|---|---|---|---|---|
1caf2cf84a171a6d0ee613857e4d4f5122402bd9 | diff --git a/ui/src/components/drawer/QDrawer.js b/ui/src/components/drawer/QDrawer.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/drawer/QDrawer.js
+++ b/ui/src/components/drawer/QDrawer.js
@@ -350,11 +350,19 @@ export default Vue.extend({
}
},
- __applyBackdrop (x) {
+ __applyBackdrop (x, ... | fix(QDrawer): Corner case where backdrop color doesn't get properly updated #<I> | quasarframework_quasar | train | js |
488944f89f40639e9c87319363709c68f366e312 | diff --git a/src/middlewares/cache.js b/src/middlewares/cache.js
index <HASH>..<HASH> 100644
--- a/src/middlewares/cache.js
+++ b/src/middlewares/cache.js
@@ -14,7 +14,7 @@ type CacheMiddlewareOpts = {|
cacheErrors?: boolean,
|};
-export default function queryMiddleware(opts?: CacheMiddlewareOpts): Middleware {
+... | fix: update cacheMiddleware function name (#<I>)
Noticed a small typo! | relay-tools_react-relay-network-modern | train | js |
7daacce022045ca1eb2c4fee3e1419c512a723d6 | diff --git a/packages/patternfly-4/react-table/src/components/Table/utils/transformers.test.js b/packages/patternfly-4/react-table/src/components/Table/utils/transformers.test.js
index <HASH>..<HASH> 100644
--- a/packages/patternfly-4/react-table/src/components/Table/utils/transformers.test.js
+++ b/packages/patternfly... | fix(typeUtils): fix transformers test (#<I>) | patternfly_patternfly-react | train | js |
eebe67fc31c39a02a763bcaa815baab805112cf3 | diff --git a/version.go b/version.go
index <HASH>..<HASH> 100644
--- a/version.go
+++ b/version.go
@@ -1,4 +1,4 @@
package swag
// Version of swag
-const Version = "v1.6.4"
+const Version = "v1.6.5" | chore: jump to <I> (#<I>) | swaggo_swag | train | go |
09650022d730ad7e5e28129ee229f8c978d70274 | diff --git a/system/Filters/Filters.php b/system/Filters/Filters.php
index <HASH>..<HASH> 100644
--- a/system/Filters/Filters.php
+++ b/system/Filters/Filters.php
@@ -116,7 +116,7 @@ class Filters
/**
* If discoverFilters is enabled in Config then system will try to
* auto-discover custom filters files... | docs: fix doc comments | codeigniter4_CodeIgniter4 | train | php |
c7586c68b728dcef51a56d25578d5c0b2eeee0c7 | diff --git a/model/ListDecorator.php b/model/ListDecorator.php
index <HASH>..<HASH> 100644
--- a/model/ListDecorator.php
+++ b/model/ListDecorator.php
@@ -15,8 +15,7 @@ abstract class SS_ListDecorator extends ViewableData implements SS_List, SS_Sort
protected $list;
public function __construct(SS_List $list) {
- ... | feat(ListDecorator): Add setList() function. Useful for keeping a decorator/paginated list configuration intact while modifying the underlying list. | silverstripe_silverstripe-framework | train | php |
e3fe3c6b01289910ba2fb26a15dffd89f8be50b6 | diff --git a/test/e2e/index.js b/test/e2e/index.js
index <HASH>..<HASH> 100644
--- a/test/e2e/index.js
+++ b/test/e2e/index.js
@@ -21,14 +21,13 @@ $("[data-action=setup]")
}
});
-let scope = null
+let scope = null;
+let serviceWorkerUrl = "sw.min.js";
if (window.location.hostname === "leanplum.github.i... | chore: set correct serviceWorker path for gh-pages (#<I>)
* chore: set correct serviceWorker path for gh-pages
* chore: add comment | Leanplum_Leanplum-JavaScript-SDK | train | js |
598fd4a4649ba65a4cc10dd3e54198b2729f60b9 | diff --git a/src/image-preview/ImagePreviewItem.js b/src/image-preview/ImagePreviewItem.js
index <HASH>..<HASH> 100644
--- a/src/image-preview/ImagePreviewItem.js
+++ b/src/image-preview/ImagePreviewItem.js
@@ -235,6 +235,7 @@ export default {
state.imageRatio = naturalHeight / naturalWidth;
};
+ watch... | feat(ImagePreview): reset scale after swiping (#<I>) | youzan_vant | train | js |
9edc6e121d5e51cb88f9c7debc75c0c6be87bc39 | diff --git a/pipenv/cli.py b/pipenv/cli.py
index <HASH>..<HASH> 100644
--- a/pipenv/cli.py
+++ b/pipenv/cli.py
@@ -1009,7 +1009,6 @@ def do_purge(bare=False, downloads=False, allow_global=False):
if not bare:
puts(crayons.blue(c.out))
-
puts(crayons.green('Environment now purged and fresh!'))
... | refactor: removed extra spaces and unused packages | pypa_pipenv | train | py,py |
fd68a1be87e8b0970b7dc16d3d2ca01a22514df0 | diff --git a/test/scripts/box/box.js b/test/scripts/box/box.js
index <HASH>..<HASH> 100644
--- a/test/scripts/box/box.js
+++ b/test/scripts/box/box.js
@@ -499,7 +499,7 @@ describe('Box', () => {
});
it('watch() - update with simple "ignore" option', async () => {
- const box = newBox('test', {ignore: '**/ign... | test(box): fix test cases for macOS (#<I>) | hexojs_hexo | train | js |
8aeeea25f5d7b54517043be7ad5a5853eb537a50 | diff --git a/test/e2e/runner.js b/test/e2e/runner.js
index <HASH>..<HASH> 100644
--- a/test/e2e/runner.js
+++ b/test/e2e/runner.js
@@ -39,7 +39,6 @@ const NW_CONFIG = isLocal
// add a configuration by default if not provided
// add a configuration by default if not provided
if (args.indexOf('-c') < 0) {
- args.push... | chore(test): improve e2e test runner warning (#<I>) | vuejs_vue-router | train | js |
2d5132fab629f4b907b3521503aff23c95a1e972 | diff --git a/test/SegmentsTest.php b/test/SegmentsTest.php
index <HASH>..<HASH> 100644
--- a/test/SegmentsTest.php
+++ b/test/SegmentsTest.php
@@ -32,7 +32,7 @@ class SegmentsTest extends PHPUnit_Framework_TestCase
CurlMock::disable();
}
- public function testCreateSegment()
+ public function tes... | test: clean segments test-methods names | voucherifyio_voucherify-php-sdk | train | php |
3b2d84860f445041ffb5566cdd135ad0d3b829dd | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -1,7 +1,5 @@
'use strict';
-import { isObject } from './utilities';
-
const DELIMITER = '/';
function flatten(value, keyPath='', flattenedObject={}) {
@@ -30,6 +28,11 @@ function flattenMany(data) {
}... | refactor: move isObject into index module | joelcolucci_flatten2 | train | js |
aa74805efcd44a670e05b78e281305e29e117d26 | diff --git a/lib/util/prepare-swagger-ui.js b/lib/util/prepare-swagger-ui.js
index <HASH>..<HASH> 100644
--- a/lib/util/prepare-swagger-ui.js
+++ b/lib/util/prepare-swagger-ui.js
@@ -79,8 +79,8 @@ const sha = {
style: []
}
function computeCSPHashes (path) {
- const scriptRegex = /<script>(.*)<\/script>/gs
- cons... | chore(prepare-swagger-ui): make regex case-insensitive (#<I>) | fastify_fastify-swagger | train | js |
7c6ab95ca5d9ed0369540422e080d1ae3f0e0deb | diff --git a/packages/app-frontend/src/features/components/index.js b/packages/app-frontend/src/features/components/index.js
index <HASH>..<HASH> 100644
--- a/packages/app-frontend/src/features/components/index.js
+++ b/packages/app-frontend/src/features/components/index.js
@@ -31,9 +31,9 @@ export function useComponen... | fix(components): use router.replace when appropriate to prevent erasing history | vuejs_vue-devtools | train | js |
01b03d04d3efc317d933ca05c515f3ed68d18b61 | diff --git a/lib/rules/exports-always-on-top.js b/lib/rules/exports-always-on-top.js
index <HASH>..<HASH> 100644
--- a/lib/rules/exports-always-on-top.js
+++ b/lib/rules/exports-always-on-top.js
@@ -1,11 +1,11 @@
+const ACCEPTED_TYPES = {
+ ExportNamedDeclaration: true,
+ ImportDeclaration: true,
+ VariableDec... | chore: move constants out of exports on top | benderTheCrime_eslint-plugin-benderthecrime | train | js |
631f0763ef94311dfa722a42027d9995f40ad440 | diff --git a/packages/form-upload/Upload.js b/packages/form-upload/Upload.js
index <HASH>..<HASH> 100644
--- a/packages/form-upload/Upload.js
+++ b/packages/form-upload/Upload.js
@@ -8,7 +8,7 @@ import Dropzone from 'react-dropzone';
import Icon from '@availity/icon';
import { useField, useFormikContext } from 'formi... | fix(form-upload): fix uuid import | Availity_availity-react | train | js |
65f5d64bc1cd9f0b9c6ac7f099d49c97d427db16 | diff --git a/raiden/raiden_service.py b/raiden/raiden_service.py
index <HASH>..<HASH> 100644
--- a/raiden/raiden_service.py
+++ b/raiden/raiden_service.py
@@ -930,13 +930,7 @@ class RaidenService(object):
if route.state == CHANNEL_STATE_OPENED
]
- # send ping to target to make sure we can... | fix: using health check instead of send_ping | raiden-network_raiden | train | py |
ad1c76f443bdb435b5aae3d7004b249825e7d31f | diff --git a/lib/parsers.js b/lib/parsers.js
index <HASH>..<HASH> 100644
--- a/lib/parsers.js
+++ b/lib/parsers.js
@@ -213,10 +213,6 @@ function getUserContextFromRequest (req) {
var context = {}
- if (typeof user.authenticated === 'boolean') {
- context.is_authenticated = user.authenticated
- }
-
if (ty... | fix: drop obsolete .context.user.is_authenticated field (#<I>)
This field is dropped by apm-server on injest. This is suspected to be
cruft from opbeat days. | elastic_apm-agent-nodejs | train | js |
aa121b3a5504b43d0c10450a1b984694fcd2b8ee | diff --git a/commons-serialization/src/main/java/se/l4/commons/serialization/format/BinaryInput.java b/commons-serialization/src/main/java/se/l4/commons/serialization/format/BinaryInput.java
index <HASH>..<HASH> 100644
--- a/commons-serialization/src/main/java/se/l4/commons/serialization/format/BinaryInput.java
+++ b/c... | fix(serialization): Use readFully for reading bytes | LevelFourAB_commons | train | java |
3fcc3e88211d96e7c5f5f79a56fbff8cf62b2cb4 | diff --git a/packages/cerebral/src/Controller.js b/packages/cerebral/src/Controller.js
index <HASH>..<HASH> 100644
--- a/packages/cerebral/src/Controller.js
+++ b/packages/cerebral/src/Controller.js
@@ -63,15 +63,18 @@ class Controller extends EventEmitter {
if (this.devtools) {
this.devtools.init(this)
... | fix(Controller): info about strict render should not be a warning (#<I>) | cerebral_cerebral | train | js |
2587d210229f4b133683444ece4586eab3dc9a11 | diff --git a/app/models/webpage.rb b/app/models/webpage.rb
index <HASH>..<HASH> 100644
--- a/app/models/webpage.rb
+++ b/app/models/webpage.rb
@@ -3,6 +3,7 @@ class Webpage < ApplicationRecord
include SearchableWebpage
serialize :tables_widget
+ serialize :charts_widget
scope :find_by_protocol_agnostic_ur... | feat: copy tables widget methods in Webpage model | cortex-cms_cortex | train | rb |
95bb0ba0017d75dd53524776181cb008679d5743 | diff --git a/script/release/notes/index.js b/script/release/notes/index.js
index <HASH>..<HASH> 100755
--- a/script/release/notes/index.js
+++ b/script/release/notes/index.js
@@ -8,6 +8,11 @@ const semver = require('semver');
const { ELECTRON_DIR } = require('../../lib/utils');
const notesGenerator = require('./notes... | fix: use default_branch in release-notes (#<I>) | electron_electron | train | js |
1644a15f2967e3036a92ae187adb2d363f57ff9a | diff --git a/packages/postcss-minify-gradients/src/index.js b/packages/postcss-minify-gradients/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/postcss-minify-gradients/src/index.js
+++ b/packages/postcss-minify-gradients/src/index.js
@@ -83,7 +83,7 @@ function optimise(decl) {
}
if (las... | fix(postcss-minify-gradients): handle node values as strings (#<I>)
Explicitly convert numbers to strings before assigning them to a
node value, so it's clearer how to compare them. | cssnano_cssnano | train | js |
90f0608122e127da1785afe6de1d513f2b80027d | diff --git a/packages/node_modules/@webex/internal-plugin-board/test/integration/spec/realtime.js b/packages/node_modules/@webex/internal-plugin-board/test/integration/spec/realtime.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/internal-plugin-board/test/integration/spec/realtime.js
+++ b/packages/n... | refactor(board): add a 'sleep' after user creation in int tests | webex_spark-js-sdk | train | js |
912b881745f83061d3be7a093a9c3caff7faf2eb | diff --git a/core/dvan/lib/webpack/webpack.config.js b/core/dvan/lib/webpack/webpack.config.js
index <HASH>..<HASH> 100644
--- a/core/dvan/lib/webpack/webpack.config.js
+++ b/core/dvan/lib/webpack/webpack.config.js
@@ -77,10 +77,20 @@ module.exports = (config, api) => {
}
/**
- * Alias @ to source directory
-... | feat: add some alias for src directory | evillt_dvan | train | js |
62593d4e8a36b11bc6774f976bc6872247b15d26 | diff --git a/examples/fp.py b/examples/fp.py
index <HASH>..<HASH> 100644
--- a/examples/fp.py
+++ b/examples/fp.py
@@ -47,10 +47,12 @@ factor = @ _ factor mk_map
primary = decimal mk_aref
| ~ _ integer mk_literal
| name mk_call
- ... | fix: parser conflict for - and ->; missing > operator | darius_peglet | train | py |
d853d9a36a02447199ad1d27c79f5d1d2a026562 | diff --git a/lib/module.js b/lib/module.js
index <HASH>..<HASH> 100644
--- a/lib/module.js
+++ b/lib/module.js
@@ -66,7 +66,7 @@ module.exports = function nuxtAdSense (moduleOptions = {}) {
// Initialize Adsense with ad client id
this.options.head.script.push({innerHTML: `
- (adsbygoogle = window.adsbygoog... | fix: prevent `adsbygoogle` is not defined error (#<I>) | nuxt-community_google-adsense-module | train | js |
371a48dd51f61f81dbb60f63dff0fa623f8ac51d | diff --git a/src/Keboola/Syrup/Command/JobCommand.php b/src/Keboola/Syrup/Command/JobCommand.php
index <HASH>..<HASH> 100644
--- a/src/Keboola/Syrup/Command/JobCommand.php
+++ b/src/Keboola/Syrup/Command/JobCommand.php
@@ -223,7 +223,6 @@ class JobCommand extends ContainerAwareCommand
$this->job->setStatus... | fix(JobCommand): possible inconsistent job state on internal error | keboola_syrup | train | php |
246e8134dcc2e15f60ae25465108adbe108508e2 | diff --git a/views/js/uiForm.js b/views/js/uiForm.js
index <HASH>..<HASH> 100755
--- a/views/js/uiForm.js
+++ b/views/js/uiForm.js
@@ -757,11 +757,7 @@
propertyUriToSend = $this.parent().parent().parent()[0].id;
propertyUriToSend = propertyUriToSend.replace('property_', '');
- ... | chore: Improvements in code and delete comments | oat-sa_tao-core | train | js |
fbd62be52eaad5615daed00eeeff1e455bdff173 | diff --git a/lib/waterline/query/finders/basic.js b/lib/waterline/query/finders/basic.js
index <HASH>..<HASH> 100644
--- a/lib/waterline/query/finders/basic.js
+++ b/lib/waterline/query/finders/basic.js
@@ -26,6 +26,14 @@ module.exports = {
criteria = null;
}
+ // Check if criteria is an integer and no... | fix: allow an integer to be passed into findOne as well as an object
this will automatically run the query on { id: <int> } | balderdashy_waterline | train | js,js |
b9a4ba4009d639caf1cdbaa27aad363009245906 | diff --git a/lib/filter.js b/lib/filter.js
index <HASH>..<HASH> 100644
--- a/lib/filter.js
+++ b/lib/filter.js
@@ -2,9 +2,8 @@
const CleanCSS = require('clean-css');
const micromatch = require('micromatch');
-const Promise = require('bluebird');
-module.exports = function(str, data) {
+module.exports = async func... | refactor: async/await | hexojs_hexo-clean-css | train | js |
abb7519bce0fa803b24d70c26b94eb43b83001af | diff --git a/src/base/Processor.php b/src/base/Processor.php
index <HASH>..<HASH> 100644
--- a/src/base/Processor.php
+++ b/src/base/Processor.php
@@ -408,8 +408,10 @@ abstract class Processor implements ProcessorInterface
* @return array
*/
public function exportFieldLayout($fieldLayout) {
-
... | fix: Processor fieldLayoutConfig being empty. | Pennebaker_craft-architect | train | php |
c9ff29d71aef7ffd1105cd5f83ddadc4803da867 | diff --git a/packages/vuetify/.eslintrc.js b/packages/vuetify/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/packages/vuetify/.eslintrc.js
+++ b/packages/vuetify/.eslintrc.js
@@ -30,10 +30,10 @@ module.exports = {
'jest/prefer-to-contain': 'warn',
'jest/prefer-to-have-length': 'warn'
},
- overrides: {
+ ... | chore: properly setup the eslint overrides | vuetifyjs_vuetify | train | js |
091a109e5ab95c458cae3e9d252c426e678d72f0 | diff --git a/cmd/client-s3.go b/cmd/client-s3.go
index <HASH>..<HASH> 100644
--- a/cmd/client-s3.go
+++ b/cmd/client-s3.go
@@ -886,6 +886,7 @@ func (c *S3Client) Copy(ctx context.Context, source string, opts CopyOptions, pr
// Assign metadata after irrelevant parts are delete above
destOpts.UserMetadata = opts.me... | fix: set replace metadata to preserve (#<I>) | minio_mc | train | go |
1729a31c03c80f12433e37999cfc4922827079b8 | diff --git a/src/components/Tabset/pageObject/index.js b/src/components/Tabset/pageObject/index.js
index <HASH>..<HASH> 100644
--- a/src/components/Tabset/pageObject/index.js
+++ b/src/components/Tabset/pageObject/index.js
@@ -37,7 +37,7 @@ class PageTabset {
isButtonsVisible() {
const buttons = $(this.ro... | test: fix integration test on tabset component when screen size is resized (#<I>)
* test: add accessibility test on ProgressCircular component
* test: fix integration test on tabset component when screen size is resized | 90milesbridge_react-rainbow | train | js |
a8c9f608906aa7611f2f3b216c671a9ca23ee6e3 | diff --git a/webapps/client/scripts/process/index.js b/webapps/client/scripts/process/index.js
index <HASH>..<HASH> 100644
--- a/webapps/client/scripts/process/index.js
+++ b/webapps/client/scripts/process/index.js
@@ -119,7 +119,7 @@ define([
$scope.loadingProcesses = true;
ProcessDefinition.list({
- ... | chore(process): filter suspended process definitions
related to CAM-<I> | camunda_camunda-bpm-platform | train | js |
f4d18417232bccab46cf87658a22786c1ff9ba63 | diff --git a/packages/@vue/cli-plugin-e2e-nightwatch/generator/template/test/e2e/custom-assertions/elementCount.js b/packages/@vue/cli-plugin-e2e-nightwatch/generator/template/test/e2e/custom-assertions/elementCount.js
index <HASH>..<HASH> 100644
--- a/packages/@vue/cli-plugin-e2e-nightwatch/generator/template/test/e2e... | fix: nightwatch helper compat with airbnb linter
close #<I> | vuejs_vue-cli | train | js |
4db9eb48539cf073cfce7b4c291666d97e77017b | diff --git a/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js b/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js
+++ b/packages/node_modules/@webex/plugin-meetings/src/meeting/index.js
@... | feat(meetings): disable auto reconnect from mercury | webex_spark-js-sdk | train | js |
662d8ec614cc544304a2a0b5befa5b570085724a | diff --git a/util/createResolver.js b/util/createResolver.js
index <HASH>..<HASH> 100644
--- a/util/createResolver.js
+++ b/util/createResolver.js
@@ -81,7 +81,7 @@ function createResolver (multicodec, EthObjClass, mapFromEthObject) {
// only match whole path chunks
matches = matches.filter((child) => chi... | fix: sorting function needs to return an integer
The sorting function was returning a boolean, which is wrong.
For proper comparison it needs to return an integer.
Intrestingly enough, this issue only surfaced in the Browser
test run on Windows. There somehow the sorting function of a
two element array gets the secon... | ipld_js-ipld-ethereum | train | js |
aae6f58c2347ecdac91046755e706ab0e253f6b4 | diff --git a/packages/cozy-konnector-libs/src/libs/saveBills.js b/packages/cozy-konnector-libs/src/libs/saveBills.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-konnector-libs/src/libs/saveBills.js
+++ b/packages/cozy-konnector-libs/src/libs/saveBills.js
@@ -80,7 +80,7 @@ module.exports = (entries, fields, options ... | fix: Fix typo in remove bills addition | konnectors_libs | train | js |
c73be965a021fcc51e766b90bdab90bd11cf43ff | diff --git a/packages/simplebar/src/simplebar.js b/packages/simplebar/src/simplebar.js
index <HASH>..<HASH> 100755
--- a/packages/simplebar/src/simplebar.js
+++ b/packages/simplebar/src/simplebar.js
@@ -293,17 +293,20 @@ export default class SimpleBar {
window.addEventListener('resize', this.onWindowResize);
... | fix: rework raq hack to fix instantiation not happening if element hidden (fix #<I>) | Grsmto_simplebar | train | js |
54db513fa305c62bed194a090927ad667c9c3f04 | diff --git a/src/packages/server/request/index.js b/src/packages/server/request/index.js
index <HASH>..<HASH> 100644
--- a/src/packages/server/request/index.js
+++ b/src/packages/server/request/index.js
@@ -23,7 +23,15 @@ export function createRequest(req: any, {
method: headers.get('x-http-method-override') || re... | feat: expose controller and action in public request api (#<I>) | postlight_lux | train | js,js |
4a8992def247167784f842b477506931c2561a50 | diff --git a/packages/site/next.config.js b/packages/site/next.config.js
index <HASH>..<HASH> 100644
--- a/packages/site/next.config.js
+++ b/packages/site/next.config.js
@@ -12,15 +12,18 @@ module.exports = {
const files = await globAsync(`pages/**/*.js`)
const matchExtension = /\.[^/.]+$/
- return file... | fix(site): fix root page path mapping | pluralsight_design-system | train | js |
bd4d4835233f13b9b9401d14d00a59070cdf81d8 | diff --git a/lib/algolia/index.rb b/lib/algolia/index.rb
index <HASH>..<HASH> 100644
--- a/lib/algolia/index.rb
+++ b/lib/algolia/index.rb
@@ -1266,7 +1266,7 @@ module Algolia
res = []
page = 0
loop do
- curr = search_rules('', { :hits_per_page => hits_per_page, :page => page }, request_opti... | fix(rules): export rules hitsPerPage (#<I>) | algolia_algoliasearch-client-ruby | train | rb |
6e0ae20ce8fe3936d24368b66123e3bc3b1df131 | diff --git a/benchbuild/source/git.py b/benchbuild/source/git.py
index <HASH>..<HASH> 100644
--- a/benchbuild/source/git.py
+++ b/benchbuild/source/git.py
@@ -86,10 +86,13 @@ class Git(base.FetchableSource):
tgt_loc = pb.local.path(target_dir) / self.local
clone = git['clone']
pull = git['pul... | fix(sources): unshallow only when needed | PolyJIT_benchbuild | train | py |
95646853fbacc88189fb349e414d943a93911f58 | diff --git a/lib/util/log-server.js b/lib/util/log-server.js
index <HASH>..<HASH> 100644
--- a/lib/util/log-server.js
+++ b/lib/util/log-server.js
@@ -1,6 +1,6 @@
var MAX_LENGTH = 512;
var MIN_LENGTH = 400;
-var SIZE = 1024 * 2;
+var SIZE = 1024 * 32;
var COUNT = 100;
var count = 0;
var logs = []; | refactor: The maximum length of the log text is adjusted to <I>K | avwo_whistle | train | js |
160f47fe775c7738399ccd588b557b27fe525a2a | diff --git a/src/EloquentViewableServiceProvider.php b/src/EloquentViewableServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/EloquentViewableServiceProvider.php
+++ b/src/EloquentViewableServiceProvider.php
@@ -27,6 +27,13 @@ use CyrildeWit\EloquentViewable\Contracts\Services\ViewableService as ViewableSe
clas... | feat: set defer to false in Service Provider | cyrildewit_eloquent-viewable | train | php |
c9c1073a024c69caf5aa825c5679ea869dadab7a | diff --git a/ui/src/components/slider/use-slider.js b/ui/src/components/slider/use-slider.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/slider/use-slider.js
+++ b/ui/src/components/slider/use-slider.js
@@ -129,7 +129,7 @@ export default function ({ updateValue, updatePosition, getDragging, formAttrs }
&& ... | chore(ui): fix trim method (#<I>) | quasarframework_quasar | train | js |
25843ac064c7099f412d6f4f4b9972e9069dc98b | diff --git a/src/rules/tagname-lowercase.js b/src/rules/tagname-lowercase.js
index <HASH>..<HASH> 100644
--- a/src/rules/tagname-lowercase.js
+++ b/src/rules/tagname-lowercase.js
@@ -1,11 +1,12 @@
HTMLHint.addRule({
id: 'tagname-lowercase',
description: 'All html element names must be in lowercase.',
- in... | chore(htmlhint): adding support for a white list of elements that can be lower case. (#<I>)
When enabling the rule instead of using a boolean, use an array with the attributes (camelCased) that you want to ignore
```json
{
"tagname-lowercase": ["clipPath"]
}
``` | htmlhint_HTMLHint | train | js |
f49b5084eb5b45fd8b9c794a7f87ca4f831d1892 | diff --git a/src/lib/middleware/response-time.js b/src/lib/middleware/response-time.js
index <HASH>..<HASH> 100644
--- a/src/lib/middleware/response-time.js
+++ b/src/lib/middleware/response-time.js
@@ -1,15 +1,13 @@
'use strict';
-const url = require('url');
const responseTime = require('response-time');
const { ... | fix: gh-<I> Use express path templates for prometheus metrics (#<I>) | Unleash_unleash | train | js |
0170bf07e80149457cefc9650a4a5b49ea73261d | diff --git a/lib/tools/mp4-inspector.js b/lib/tools/mp4-inspector.js
index <HASH>..<HASH> 100644
--- a/lib/tools/mp4-inspector.js
+++ b/lib/tools/mp4-inspector.js
@@ -727,8 +727,11 @@ var
offset += 4;
}
if (sampleCompositionTimeOffsetPresent) {
- // Note: this should be a signed in... | fix: Parse signed CTO in v1 trun boxes to fix garbled captions (#<I>) | videojs_mux.js | train | js |
42f24d706c9c906d9cae321176e87212f175738f | diff --git a/packages/cozy-client/src/CozyClient.js b/packages/cozy-client/src/CozyClient.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-client/src/CozyClient.js
+++ b/packages/cozy-client/src/CozyClient.js
@@ -55,7 +55,11 @@ const ensureArray = arr => (Array.isArray(arr) ? arr : [arr])
* @module CozyClient
*/
... | docs: Add method doc | cozy_cozy-client | train | js |
f79186faaca9ff477720a976bd9cf10b8047a4ec | diff --git a/src/components/input/input.js b/src/components/input/input.js
index <HASH>..<HASH> 100644
--- a/src/components/input/input.js
+++ b/src/components/input/input.js
@@ -474,9 +474,11 @@ function inputTextareaDirective($mdUtil, $window, $mdAria, $timeout, $mdGesture)
function setupAttributeWatchers() {
... | fix(input): check that containerCtrl.label is defined before accessing it
Fixes #<I> | angular_material | train | js |
4c14437bbba7d672dccbd6bd6c715a35310a870c | diff --git a/src/Connector/WebControllerConnector.php b/src/Connector/WebControllerConnector.php
index <HASH>..<HASH> 100644
--- a/src/Connector/WebControllerConnector.php
+++ b/src/Connector/WebControllerConnector.php
@@ -52,7 +52,7 @@ final class WebControllerConnector implements ControllerConnectorInterface
... | fix: remove blocking mode for web connector. | maestroprog_saw-php | train | php |
a22c897013e3de5b324bb31683706e8390169978 | diff --git a/src/views/ProviderView/index.js b/src/views/ProviderView/index.js
index <HASH>..<HASH> 100644
--- a/src/views/ProviderView/index.js
+++ b/src/views/ProviderView/index.js
@@ -451,8 +451,9 @@ module.exports = class ProviderView {
const link = `${this.Provider.authUrl()}?state=${authState}`
const ... | fix: strip protocol before comparing urls | transloadit_uppy | train | js |
625402b37d7fe74be57eeb88d749677f22d1afae | diff --git a/sdcclient/_secure.py b/sdcclient/_secure.py
index <HASH>..<HASH> 100644
--- a/sdcclient/_secure.py
+++ b/sdcclient/_secure.py
@@ -719,6 +719,8 @@ class SdSecureClient(_SdcCommon):
try:
policy_obj = json.loads(policy_json)
+ if "origin" in policy_obj:
+ del ... | fix: The Policy API has changed origins and still requires Secure UI | draios_python-sdc-client | train | py |
be23f538131228d1deeec1aedf9a2a51f0a7957f | diff --git a/addon/serializer.js b/addon/serializer.js
index <HASH>..<HASH> 100644
--- a/addon/serializer.js
+++ b/addon/serializer.js
@@ -203,6 +203,21 @@ class Serializer {
Note that, in accordance with the spec, Mirage gives precedence to an ?include query param over a default include: [] array that you mig... | docs: clarify default server-side nested includes
closes #<I> | samselikoff_ember-cli-mirage | train | js |
2aae6298928167e097aea8479de445594ac2907b | diff --git a/cluster/calcium/replace.go b/cluster/calcium/replace.go
index <HASH>..<HASH> 100644
--- a/cluster/calcium/replace.go
+++ b/cluster/calcium/replace.go
@@ -165,8 +165,6 @@ func (c *Calcium) doReplaceContainer(
ctx,
// if
func(ctx context.Context) error {
- ctx, cancel := context.WithCancel... | fix: rm debugging codes. (#<I>) | projecteru2_core | train | go |
b7fcc1ef50b648be656d2402ec19e8cf6939b3a0 | diff --git a/src/anyconfig/backend/xml.py b/src/anyconfig/backend/xml.py
index <HASH>..<HASH> 100644
--- a/src/anyconfig/backend/xml.py
+++ b/src/anyconfig/backend/xml.py
@@ -449,17 +449,10 @@ def etree_write(tree, stream):
"""
Write XML ElementTree 'root' content into 'stream'.
- .. note:
- It see... | fix: remove the code for python <I> because it's not supported any more
remove the code to make it work with python <I> because python <I> is
noot supported platform any more. | ssato_python-anyconfig | train | py |
5cd63d3c7a6331a5b5a9efebcab29f935c8c9408 | diff --git a/src/geshi.php b/src/geshi.php
index <HASH>..<HASH> 100644
--- a/src/geshi.php
+++ b/src/geshi.php
@@ -1520,7 +1520,7 @@ class GeSHi {
$code = str_replace("\r\n", "\n", $this->source);
$code = str_replace("\r", "\n", $code);
// Add spaces for regular expression matching and line n... | fix: SF#<I>: Proposed patch for faulty span end tag with incomplete strings and multiline comments | GeSHi_geshi-1.0 | train | php |
e55b4572b11a0dd4ca85d6a38f0ca8e9b07387fe | diff --git a/tasks/copy.js b/tasks/copy.js
index <HASH>..<HASH> 100644
--- a/tasks/copy.js
+++ b/tasks/copy.js
@@ -80,7 +80,7 @@ module.exports = function(grunt) {
}
if (tally.dirs) {
- grunt.log.write('Created ' + chalk.cyan(tally.dirs.toString()) + ' directories');
+ grunt.log.write('Created ' +... | fix(log): return singular if only one directory | gruntjs_grunt-contrib-copy | train | js |
5358a4fb0c03102b2b9be03508f9389dcfc68105 | diff --git a/dht.go b/dht.go
index <HASH>..<HASH> 100644
--- a/dht.go
+++ b/dht.go
@@ -66,6 +66,7 @@ type IpfsDHT struct {
birth time.Time // When this peer started up
rng *rand.Rand // Source of randomness
+ rnglk sync.Mutex // Rand does not support concurrency
Validator record.Validator
diff --git a/qu... | fix: protect rng with a mutex | libp2p_go-libp2p-kad-dht | train | go,go |
59aa3b9a915203a57cc59b4028eee516e3cdf7dd | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -244,7 +244,7 @@ class Apsis {
files: [
config.paths.serve + '*.html',
config.paths.serve + '*.js',
- config.paths.src.javascript + ... | fix: update path to browsersync js files watch | ApsisInternational_gulp-config-apsis | train | js |
461dcef26ed4c47d565217408b9e3ea4e7d4dd62 | diff --git a/tests/api/single_load/test_schema.py b/tests/api/single_load/test_schema.py
index <HASH>..<HASH> 100644
--- a/tests/api/single_load/test_schema.py
+++ b/tests/api/single_load/test_schema.py
@@ -50,7 +50,7 @@ class TestCase(BaseTestCase):
),
None
... | fix: add workarounds for plugin test cases | ssato_python-anyconfig | train | py,py |
f7a8e5096ab7f4087409c97a7e76a2fad576de03 | diff --git a/lib/gateway/Shard.js b/lib/gateway/Shard.js
index <HASH>..<HASH> 100644
--- a/lib/gateway/Shard.js
+++ b/lib/gateway/Shard.js
@@ -118,7 +118,9 @@ class Shard extends EventEmitter {
this.syncGuild(guild.id);
}
if(this.client.options.getAllUsers && guild.members.size < guild.me... | fix(getAllUsers): request presences if intent is enabled (#<I>) | abalabahaha_eris | train | js |
4cfc4e769d9a9134eb6f4abfbe4daf6c852cb9ef | diff --git a/lib/datasource/npm.js b/lib/datasource/npm.js
index <HASH>..<HASH> 100644
--- a/lib/datasource/npm.js
+++ b/lib/datasource/npm.js
@@ -23,6 +23,7 @@ let map = new Map();
let memcache = {};
let npmrc = null;
+let npmrcRaw;
function resetMemCache() {
logger.debug('resetMemCache()');
@@ -47,6 +48,10 ... | refactor: skip duplicate setNpmrc | renovatebot_renovate | train | js,js |
449f72131b343d415a2895996ce293a0d49a42ef | diff --git a/lib/workers/repository/result.js b/lib/workers/repository/result.js
index <HASH>..<HASH> 100644
--- a/lib/workers/repository/result.js
+++ b/lib/workers/repository/result.js
@@ -2,8 +2,7 @@ module.exports = {
processResult,
};
-function processResult(config, result) {
- let res = result;
+function p... | fix: better enabled/disabled/onboarding/unknown status | renovatebot_renovate | train | js |
e822ab0e225a404766294fa7eae8210ef0f72a62 | diff --git a/cocaine/proxy/mds_direct.py b/cocaine/proxy/mds_direct.py
index <HASH>..<HASH> 100644
--- a/cocaine/proxy/mds_direct.py
+++ b/cocaine/proxy/mds_direct.py
@@ -74,15 +74,17 @@ class MDSDirect(IPlugin):
# disconnect app explicitly to break possibly existing connection
app.disconnect()
+ ... | feat: add srw application last chance to process invocation from common pool | cocaine_cocaine-tools | train | py |
dc97b48bd7fa99f241b6e85ed40b0b3191ff1df8 | diff --git a/switchbot/devices/bulb.py b/switchbot/devices/bulb.py
index <HASH>..<HASH> 100644
--- a/switchbot/devices/bulb.py
+++ b/switchbot/devices/bulb.py
@@ -100,7 +100,5 @@ class SwitchbotBulb(SwitchbotBaseLight):
"isOn": result[1] == 0x80,
"color_mode": result[10],
}
- _... | fix: cleanup some debug log messages (#<I>) | Danielhiversen_pySwitchbot | train | py,py |
60feee88c2d20bc18af23b3abb6d8cb22fe17e16 | diff --git a/NfcManager.js b/NfcManager.js
index <HASH>..<HASH> 100644
--- a/NfcManager.js
+++ b/NfcManager.js
@@ -518,7 +518,7 @@ class NfcManager {
}
return new Promise((resolve, reject) => {
- NativeNfcManager.mifareUltralightReadPage(pageOffset, (err, result) => {
+ NativeNfcManager.mifareUltr... | fix: call the correct method `mifareUltralightReadPages` (notice the tailing s) | whitedogg13_react-native-nfc-manager | train | js |
8045e9f91a0440dadfc69e551371799abb41fb46 | diff --git a/sample/www/js/app.js b/sample/www/js/app.js
index <HASH>..<HASH> 100644
--- a/sample/www/js/app.js
+++ b/sample/www/js/app.js
@@ -63,7 +63,12 @@ angular.module('starter', ['ionic', 'starter.controllers'])
// GRANTED: you can start NearIT radar
nearit.startRadar();
}... | feat(sample): if location permission not granted, ask it via ui bindings | nearit_Cordova-SDK | train | js |
9b76352f740b2e09527a091c369d885a0f6bed0c | diff --git a/v1/tsdb/shard_test.go b/v1/tsdb/shard_test.go
index <HASH>..<HASH> 100644
--- a/v1/tsdb/shard_test.go
+++ b/v1/tsdb/shard_test.go
@@ -222,6 +222,7 @@ func TestShard_MaxTagValuesLimit(t *testing.T) {
opts.Config.WALDir = filepath.Join(tmpDir, "wal")
opts.Config.MaxValuesPerTag = 1000
opts.InmemIndex =... | fix(tsdb): MaxValuesPerTag is only supported by the inmem index type | influxdata_influxdb | train | go |
b622fd44806fc1c32f92c66fb5e2edc673135285 | diff --git a/test/link-check.test.js b/test/link-check.test.js
index <HASH>..<HASH> 100644
--- a/test/link-check.test.js
+++ b/test/link-check.test.js
@@ -168,7 +168,7 @@ describe('link-check', function () {
});
it('should handle file protocol', function(done) {
- linkCheck('fixtures/file.md', { base... | test: use __dirname instead of process.cwd() | tcort_link-check | train | js |
29dba681527de12c464f1e3eff97e040c8118517 | diff --git a/packages/website/src/components/HeroGitHubButton.js b/packages/website/src/components/HeroGitHubButton.js
index <HASH>..<HASH> 100644
--- a/packages/website/src/components/HeroGitHubButton.js
+++ b/packages/website/src/components/HeroGitHubButton.js
@@ -42,7 +42,10 @@ const HeroGitHubButton = props => (
... | chore(website): Fix flash of zero GitHub stars | reakit_reakit | train | js |
b9d361c79fd71a2ce3fb0d21b80b652ee2ea4848 | diff --git a/src/components/provider.js b/src/components/provider.js
index <HASH>..<HASH> 100644
--- a/src/components/provider.js
+++ b/src/components/provider.js
@@ -35,7 +35,7 @@ export function onRenderUpdate (model) {
});
};
- this.syncValue(model.value);
+ this.value = model.value;
this.va... | fix: set the value directly if its coming from the model | baianat_vee-validate | train | js |
447e58cbfeb6f916f7642e66a2fe9d599970461b | diff --git a/packages/file-collections/src/browser/MeteorFileCollection.js b/packages/file-collections/src/browser/MeteorFileCollection.js
index <HASH>..<HASH> 100644
--- a/packages/file-collections/src/browser/MeteorFileCollection.js
+++ b/packages/file-collections/src/browser/MeteorFileCollection.js
@@ -49,12 +49,12 ... | fix(MeteorFileCollection): Make find and findOne work in browser | reactioncommerce_reaction-file-collections | train | js |
736679ec37384960eb2cd49357dfefe9605bf841 | diff --git a/core/onNodeAdded.js b/core/onNodeAdded.js
index <HASH>..<HASH> 100644
--- a/core/onNodeAdded.js
+++ b/core/onNodeAdded.js
@@ -68,13 +68,13 @@ function setupChildren (node, state, contentMiddlewares) {
}
function shouldProcess (node) {
- if (node[symbols.lifecycleStage] !== undefined) {
+ if (node[sym... | perf(core): improve shouldProcess performance | nx-js_framework | train | js |
52f9778c6a9d1c31236d44d380bf91b49d33b371 | diff --git a/packages/node_modules/@webex/internal-plugin-encryption/test/integration/spec/kms.js b/packages/node_modules/@webex/internal-plugin-encryption/test/integration/spec/kms.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/internal-plugin-encryption/test/integration/spec/kms.js
+++ b/packages/n... | test(encryption): skip broken test | webex_spark-js-sdk | train | js |
14379d8cf186d58a7ce257c343861c43e2bb197a | diff --git a/packages/cozy-konnector-libs/src/libs/saveFiles.js b/packages/cozy-konnector-libs/src/libs/saveFiles.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-konnector-libs/src/libs/saveFiles.js
+++ b/packages/cozy-konnector-libs/src/libs/saveFiles.js
@@ -28,14 +28,17 @@ const DEFAULT_VALIDATE_FILECONTENT = asyn... | fix: saveFiles validateFileContent did not work | konnectors_libs | train | js |
66f795f5b6ce8f75d30469041cababd6e9deb6ee | diff --git a/packages/cozy-client/src/store/queries.js b/packages/cozy-client/src/store/queries.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-client/src/store/queries.js
+++ b/packages/cozy-client/src/store/queries.js
@@ -175,7 +175,8 @@ const queries = (state = {}, action, documents = {}) => {
return upd... | refactor: Removed unreachable condition | cozy_cozy-client | train | js |
545599bcb95a4297eeea7f66faa77f899853b801 | diff --git a/lib/anycable/config.rb b/lib/anycable/config.rb
index <HASH>..<HASH> 100644
--- a/lib/anycable/config.rb
+++ b/lib/anycable/config.rb
@@ -95,6 +95,20 @@ module AnyCable
SENTINEL_RXP = /^([\w\-_]*)\:(\d+)$/.freeze
+ unless {}.respond_to?(:transform_keys!)
+ using(Module.new do
+ refi... | fix: backport transform_keys! for config | anycable_anycable | train | rb |
daf4b2cbb8f74cf459fd72ad8cd0133e3331bbe2 | diff --git a/addon/-private/route-ext.js b/addon/-private/route-ext.js
index <HASH>..<HASH> 100644
--- a/addon/-private/route-ext.js
+++ b/addon/-private/route-ext.js
@@ -7,7 +7,8 @@ import { getOwner } from '@ember/application';
function externalAlias(methodName) {
return function _externalAliasMethod(routeName, .... | fix(route-ext): try `Route#_router` and `Route#router` | ember-engines_ember-engines | train | js |
9fbe0058b006f5381cf3df28b407721d656573c3 | diff --git a/src/Leevel/Database/Ddd/Relation/BelongsTo.php b/src/Leevel/Database/Ddd/Relation/BelongsTo.php
index <HASH>..<HASH> 100644
--- a/src/Leevel/Database/Ddd/Relation/BelongsTo.php
+++ b/src/Leevel/Database/Ddd/Relation/BelongsTo.php
@@ -125,7 +125,7 @@ class BelongsTo extends Relation
{
$data = ... | refactor(relation): code poem | hunzhiwange_framework | train | php,php |
9e354e06c303bfdd8852b8dc3c1fdef1f2b83df9 | diff --git a/src/components/TabNavigator/index.js b/src/components/TabNavigator/index.js
index <HASH>..<HASH> 100644
--- a/src/components/TabNavigator/index.js
+++ b/src/components/TabNavigator/index.js
@@ -23,11 +23,11 @@ const TabNavigator = ({tabs, onChange, idSelected}) => (
TabNavigator.propTypes = {
tabs:... | feat(tabNavigator): add propTypes support for string ids (#<I>) | indec-it_react-native-commons | train | js |
fec54c9c5ddf587febc11027d79ca70b0e6b3dac | diff --git a/spec/modules-spec.js b/spec/modules-spec.js
index <HASH>..<HASH> 100644
--- a/spec/modules-spec.js
+++ b/spec/modules-spec.js
@@ -54,26 +54,6 @@ describe('modules support', () => {
}
})
- // TODO(alexeykuzmin): Disabled during the Chromium 62 (Node.js 9) upgrade.
- // Enable it back whe... | test: remove ffi specs (#<I>) | electron_electron | train | js |
b595faf438ea17bcdb0e1c74813e08e84272b090 | diff --git a/src/create-glamorous.js b/src/create-glamorous.js
index <HASH>..<HASH> 100644
--- a/src/create-glamorous.js
+++ b/src/create-glamorous.js
@@ -46,6 +46,11 @@ export default function createGlamorous(splitProps) {
state = {theme: null}
setTheme = theme => this.setState({theme})
+ co... | fix(create-glamorous): forward nativeProps to inner component (#<I>)
HOC should always forward native properties to their inner components
closes #<I> | robinpowered_glamorous-native | train | js |
44205882e25238992b004397111844e22150a7d8 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -157,7 +157,8 @@ gulp.task('docs:compile', ['examples:compile', 'docs:replace-data'], shell.task(
gulp.task('docs:add-dist', shell.task([
'echo "Adding dist files to docs..."',
`mkdir -p ${distDir} && mkdir ... | chore: add src/js to the docs for source maps | farbelous_bootstrap-colorpicker | train | js |
ffa7d7639de9ae5f3ed53804a8aa86da5366dbb5 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100755
--- a/index.js
+++ b/index.js
@@ -154,7 +154,8 @@ function* run() {
);
} else if (!commander.quiet) {
const client = yield mongodb.MongoClient.connect(`mongodb://${hosts[0]}/test`, {
- useNewUrlParser: true
+ useNewUrlParser: true,
+ ... | chore: set useUnifiedTopology | vkarpov15_run-rs | train | js |
f66d94aaf14106efc2b7855828f285f7f7b0db5a | diff --git a/exchange/bitswap/bitswap.go b/exchange/bitswap/bitswap.go
index <HASH>..<HASH> 100644
--- a/exchange/bitswap/bitswap.go
+++ b/exchange/bitswap/bitswap.go
@@ -315,19 +315,20 @@ func (bs *bitswap) ReceiveMessage(ctx context.Context, p peer.Peer, incoming bsm
log.Error(err)
}
}
- var blkeys []u.Key
+... | fix: move the check into the function.
function should be a no-op when passed an empty slice
License: MIT | ipfs_go-ipfs | train | go |
4b504ed7217d73d9be1453e16362ad40171dbfa2 | diff --git a/packages/core/src/middleware.js b/packages/core/src/middleware.js
index <HASH>..<HASH> 100644
--- a/packages/core/src/middleware.js
+++ b/packages/core/src/middleware.js
@@ -40,9 +40,7 @@ export const createAPIMiddleware = adapter => ({ dispatch, getState }) => {
try {
const response = await ... | fix(core): improve code coverage, code quality | tungv_redux-api-call | train | js |
ad8ab8ed56a58fc56b1108852aa723d901c5e673 | diff --git a/blueprints/ember-cli-mirage/index.js b/blueprints/ember-cli-mirage/index.js
index <HASH>..<HASH> 100644
--- a/blueprints/ember-cli-mirage/index.js
+++ b/blueprints/ember-cli-mirage/index.js
@@ -56,17 +56,6 @@ module.exports = {
return this.insertIntoFile('tests/helpers/destroy-app.js', shutdownText,... | fix: remove outdated warning about missing destroy-app helper
This warning was introduced for applications generated with ember-cli <= <I>.
It's safe to assume that none of the applications which weren't updated yet
will install ember-cli-mirage now if they haven't so far.
On the other hand this warning is misleading... | samselikoff_ember-cli-mirage | train | js |
db3b1e480907eebf92219d5f2696bbbd9b38a338 | diff --git a/lib/proxy.js b/lib/proxy.js
index <HASH>..<HASH> 100644
--- a/lib/proxy.js
+++ b/lib/proxy.js
@@ -27,9 +27,11 @@ function proxy (state, { target }) {
onError (error, request, response) {
/* istanbul ignore if */
if (error.message.indexOf('Nock: No match for request') !== 0) {
- re... | fix: avoid headers already sent error | octokit_fixtures-server | train | js |
18c0eb723d6c9df69db154cc04710fe4b316864f | diff --git a/site/public/app.js b/site/public/app.js
index <HASH>..<HASH> 100644
--- a/site/public/app.js
+++ b/site/public/app.js
@@ -1,4 +1,4 @@
-/* global qrcodelib otplib*/
+/* global QRCode otplib*/
(function() {
var secret = '';
var step = 30;
@@ -28,7 +28,7 @@
document.querySelector('.otp-secret').... | fix(website): QRCode not generating | yeojz_otplib | train | js |
28fa0b9f9d2293c9f1604e01bc9e204f530644c1 | diff --git a/src/services/storage.js b/src/services/storage.js
index <HASH>..<HASH> 100644
--- a/src/services/storage.js
+++ b/src/services/storage.js
@@ -1,6 +1,6 @@
/* eslint-disable no-param-reassign */
import {AsyncStorage} from 'react-native';
-import {castArray, filter, isEmpty, map, startsWith} from 'lodash';
... | feat(storage): count items into the collection (#<I>) | indec-it_react-native-commons | train | js |
9f921dbe3c3ab2f9efe381cc1bfe09d7b1adfae7 | diff --git a/switchbot/__init__.py b/switchbot/__init__.py
index <HASH>..<HASH> 100644
--- a/switchbot/__init__.py
+++ b/switchbot/__init__.py
@@ -142,7 +142,7 @@ def _process_woplugmini(data: bytes, mfr_data: bytes | None) -> dict[str, bool |
return {
"switchMode": True,
"isOn": mfr_data[7] == 0... | fix: wifi rssi incorrect on plugs (should be negative) (#<I>) | Danielhiversen_pySwitchbot | train | py |
6ed31f25b919933eab489e61bb149830c066eaf0 | diff --git a/packages/components/bolt-svg-animations/svg-animations.schema.js b/packages/components/bolt-svg-animations/svg-animations.schema.js
index <HASH>..<HASH> 100644
--- a/packages/components/bolt-svg-animations/svg-animations.schema.js
+++ b/packages/components/bolt-svg-animations/svg-animations.schema.js
@@ -2... | refactor: small code cleanups | bolt-design-system_bolt | train | js,js |
5dfe57783c5dbd78050abdf49a009caf9fd1fe00 | diff --git a/src/events/http/HttpServer.js b/src/events/http/HttpServer.js
index <HASH>..<HASH> 100644
--- a/src/events/http/HttpServer.js
+++ b/src/events/http/HttpServer.js
@@ -55,7 +55,10 @@ export default class HttpServer {
readFile(resolve(httpsProtocol, 'key.pem'), 'utf-8'),
])
- return [cert, ke... | refactor: use conditional spread | dherault_serverless-offline | train | js |
969fd3a99d83cd9a63ddb1311194dcf4bdc980b7 | diff --git a/website/data/version.js b/website/data/version.js
index <HASH>..<HASH> 100644
--- a/website/data/version.js
+++ b/website/data/version.js
@@ -1 +1 @@
-export default '0.12.7'
+export default '0.12.9' | docs: update website to <I> | hashicorp_nomad | train | js |
cc2928f3c3e2915e46c6b57779880e134766eb9a | diff --git a/lib/chunker.js b/lib/chunker.js
index <HASH>..<HASH> 100644
--- a/lib/chunker.js
+++ b/lib/chunker.js
@@ -5,7 +5,7 @@ function Chunker(chunkSize) {
if (!(this instanceof Chunker)) return new Chunker(chunkSize);
this.chunkSize = chunkSize || 8192;
- this.buffer = new Buffer(0);
+ this.buff... | fix: Buffer() is deprecated, fixes #9 | richardschneider_pbn | train | js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.