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 |
|---|---|---|---|---|---|
483430f0175456e122baadd5d0ce323cb1982275 | diff --git a/lib/serializer.js b/lib/serializer.js
index <HASH>..<HASH> 100644
--- a/lib/serializer.js
+++ b/lib/serializer.js
@@ -269,6 +269,8 @@ function parseRelations (data, relations, options) {
// No `data` key should be present unless there is actual relationship data.
if (relationship) {
relati... | fix: null response for empty BelongsTo relationship | digitalsadhu_loopback-component-jsonapi | train | js |
c6c643dfcec8ba5bf799a039c3738b1f39a5d88e | diff --git a/test/functional/apm_tests.js b/test/functional/apm_tests.js
index <HASH>..<HASH> 100644
--- a/test/functional/apm_tests.js
+++ b/test/functional/apm_tests.js
@@ -266,7 +266,7 @@ describe('APM', function() {
client.on('commandStarted', filterForCommands(desiredEvents, started));
client.on('com... | test(connection): don't use unreliable `fullsetup`/`open` events | mongodb_node-mongodb-native | train | js,js |
a11b982c549cea41268d42482f53f1b56a6b7f57 | diff --git a/draft-js-drag-n-drop-upload-plugin/src/components/UploadPlaceholder.js b/draft-js-drag-n-drop-upload-plugin/src/components/UploadPlaceholder.js
index <HASH>..<HASH> 100644
--- a/draft-js-drag-n-drop-upload-plugin/src/components/UploadPlaceholder.js
+++ b/draft-js-drag-n-drop-upload-plugin/src/components/Up... | feat(upload): simple refactor (#<I>) | draft-js-plugins_draft-js-plugins | train | js |
bfddb3d25b573219b8aa46dfdf5759a9debd524a | diff --git a/lib/ditty/components/app/seed.rb b/lib/ditty/components/app/seed.rb
index <HASH>..<HASH> 100644
--- a/lib/ditty/components/app/seed.rb
+++ b/lib/ditty/components/app/seed.rb
@@ -1,4 +1 @@
-require 'ditty/db'
-require 'ditty/models/role'
-
::Ditty.seeders.each(&:call)
diff --git a/lib/ditty/rake_tasks.rb b... | fix: Don't define DB. Let the implementation do that. | EagerELK_ditty | train | rb,rb |
7f2956af2c6a718cb4c77867e39a0dceae702813 | diff --git a/packages/node_modules/@ciscospark/internal-plugin-ediscovery/test/unit/spec/report-generator.js b/packages/node_modules/@ciscospark/internal-plugin-ediscovery/test/unit/spec/report-generator.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@ciscospark/internal-plugin-ediscovery/test/unit/spec/rep... | fix(ediscovery): fixing test | webex_spark-js-sdk | train | js |
378ce0132d02e6a7271c55cebccd75e6fdd6b74f | diff --git a/spec/rollbar/plugins/rack_spec.rb b/spec/rollbar/plugins/rack_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/rollbar/plugins/rack_spec.rb
+++ b/spec/rollbar/plugins/rack_spec.rb
@@ -73,6 +73,20 @@ describe Rollbar::Middleware::Rack::Builder, :reconfigure_notifier => true do
end
end
+ context 'wi... | test: test scrubbing of rack request body | rollbar_rollbar-gem | train | rb |
af354db11063d0d1ffe1cec9bdaae1077c639612 | diff --git a/webpack.dev.config.js b/webpack.dev.config.js
index <HASH>..<HASH> 100644
--- a/webpack.dev.config.js
+++ b/webpack.dev.config.js
@@ -18,7 +18,7 @@ var paths = [
'/404.html',
];
-var basepath = env === 'production' ? '/availity-reactstrap-validation/' : '/';
+var basepath = env === 'production' ? pro... | docs(build): add ability to override basepath | Availity_availity-reactstrap-validation | train | js |
50e1dee5c3fa224b0dffb6821e3c7c20a1b0a730 | diff --git a/src/components/slider/QSlider.js b/src/components/slider/QSlider.js
index <HASH>..<HASH> 100644
--- a/src/components/slider/QSlider.js
+++ b/src/components/slider/QSlider.js
@@ -6,7 +6,7 @@ import {
} from './slider-utils'
import { between } from '../../utils/format'
import { QChip } from '../chip'
-imp... | chore: Fix import statement in QSlider | quasarframework_quasar | train | js |
a96ed9b6aa882919b790740c3dfb1305d2be2c1d | diff --git a/core/lib/engine_util.js b/core/lib/engine_util.js
index <HASH>..<HASH> 100644
--- a/core/lib/engine_util.js
+++ b/core/lib/engine_util.js
@@ -190,7 +190,7 @@ function isProbableEnough(obj) {
function template(o, context) {
let result;
- if (typeof o === 'object') {
+ if (o.constructor === Object) {... | fix: Only strings and plain objects should be templated | artilleryio_artillery | train | js |
55e7615d2da39937dc8d294fbdcf53ebf9597727 | diff --git a/plugins/colors/trumbowyg.colors.js b/plugins/colors/trumbowyg.colors.js
index <HASH>..<HASH> 100644
--- a/plugins/colors/trumbowyg.colors.js
+++ b/plugins/colors/trumbowyg.colors.js
@@ -69,7 +69,13 @@
pt_br: {
foreColor: 'Cor de fonte',
backColor: 'Cor de fund... | feat: add korean translation to colors plugin | Alex-D_Trumbowyg | train | js |
5ba79ad330f4dbd33f78e9e16ff7c796990c5fe9 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -33,6 +33,10 @@ function prettyFormat (value) {
}
function onSuccess (value) {
+ if (typeof value === 'number' && value % 1 === 0) {
+ return process.exit(value)
+ }
+
if (value !== undefined) {
console.log(pr... | feat: returned int is used as exit code | JsCommunity_exec-promise | train | js,js |
280bd2a4fd1871e64f728779d14853b38c641fe5 | diff --git a/packages/retail-ui/test-setup.js b/packages/retail-ui/test-setup.js
index <HASH>..<HASH> 100644
--- a/packages/retail-ui/test-setup.js
+++ b/packages/retail-ui/test-setup.js
@@ -46,5 +46,6 @@ beforeAll(() => {
// Add variables used by tests by hand as those are not read from the variables.less file
T... | chore(DatePicker): fix warning from jest's tests | skbkontur_retail-ui | train | js |
ed2f263d55a6f7d0585e8cdc1267c758e45967d0 | diff --git a/models/classes/TaoLtiSession.php b/models/classes/TaoLtiSession.php
index <HASH>..<HASH> 100644
--- a/models/classes/TaoLtiSession.php
+++ b/models/classes/TaoLtiSession.php
@@ -110,7 +110,7 @@ class TaoLtiSession extends common_session_DefaultSession
*
* @throws LtiVariableMissingException
... | chore: change visibility of method `getLtiConsumer` to private in TaoLtiSession | oat-sa_extension-tao-lti | train | php |
869ab8ddac6aa73ca3006b0a03572bc32228f961 | diff --git a/build/tasks/prepare-release.js b/build/tasks/prepare-release.js
index <HASH>..<HASH> 100644
--- a/build/tasks/prepare-release.js
+++ b/build/tasks/prepare-release.js
@@ -6,7 +6,7 @@ var fs = require('fs');
var bump = require('gulp-bump');
gulp.task('bump-version', function(){
- return gulp.src(['./pac... | fix(build): add missing bower bump | aurelia_path | train | js |
3995e21c5b0263c2d4dbe42b8f0ec193179dfc6c | diff --git a/cmd/web-handlers.go b/cmd/web-handlers.go
index <HASH>..<HASH> 100644
--- a/cmd/web-handlers.go
+++ b/cmd/web-handlers.go
@@ -271,7 +271,15 @@ func (web *webAPIHandlers) RemoveObject(r *http.Request, args *RemoveObjectArgs,
return &json2.Error{Message: errAuthentication.Error()}
}
if err := objectAP... | fix: Ignore object not found error in RemoveObject() in web-handler. (#<I>)
Fixes #<I> | minio_minio | train | go |
37d0d8dd5a1190d5b63406fc88535ec5d433e020 | diff --git a/lib/components/Geojson.js b/lib/components/Geojson.js
index <HASH>..<HASH> 100644
--- a/lib/components/Geojson.js
+++ b/lib/components/Geojson.js
@@ -105,6 +105,7 @@ const Geojson = props => {
<Marker
key={index}
coordinate={overlay.coordinates}
+ ima... | feat: add the ability to pass a Marker image as Geojson prop (#<I>) | react-native-community_react-native-maps | train | js |
6418f693f7a5eea4508da9a94a33fdc26f2764c8 | diff --git a/task/options/options.go b/task/options/options.go
index <HASH>..<HASH> 100644
--- a/task/options/options.go
+++ b/task/options/options.go
@@ -5,7 +5,6 @@ import (
"context"
"errors"
"fmt"
- "strconv"
"strings"
"time"
@@ -13,6 +12,7 @@ import (
"github.com/influxdata/flux/ast"
"github.com/in... | refactor: use new flux function to format duration literals (#<I>) | influxdata_influxdb | train | go |
a55fe60b5a66046baa51d33f68c4ff3420d31519 | diff --git a/packages/plugin-bibtex/src/mapping/biblatex.js b/packages/plugin-bibtex/src/mapping/biblatex.js
index <HASH>..<HASH> 100644
--- a/packages/plugin-bibtex/src/mapping/biblatex.js
+++ b/packages/plugin-bibtex/src/mapping/biblatex.js
@@ -173,7 +173,7 @@ export default new util.Translator([
source: { mai... | fix(plugin-bibtex): consider entries with no type | citation-js_citation-js | train | js |
b6fe487dcb2d1994c7a1fef06dd1b58619a48651 | diff --git a/views/cypress/tests/assets.spec.js b/views/cypress/tests/assets.spec.js
index <HASH>..<HASH> 100644
--- a/views/cypress/tests/assets.spec.js
+++ b/views/cypress/tests/assets.spec.js
@@ -63,8 +63,6 @@ describe('Assets', () => {
.addClass(selectors.assetClassForm, selectors.treeRenderUrl, select... | fix: move treeRender in commands | oat-sa_extension-tao-mediamanager | train | js |
e5d7d7b9f1bf875a91b5d8ef8c1b490389264e53 | diff --git a/lib/utils/easy-error.js b/lib/utils/easy-error.js
index <HASH>..<HASH> 100644
--- a/lib/utils/easy-error.js
+++ b/lib/utils/easy-error.js
@@ -1,7 +1,10 @@
-var ui = require('./ui');
var chalk = require('chalk');
-module.exports = function easyError(message) {
+module.exports = fun... | fix(easyError): only require ui if it is not passed | isleofcode_ember-cordova | train | js |
94348dfdd945e55e5359e89a46427aaa280be34f | diff --git a/logger/logger.go b/logger/logger.go
index <HASH>..<HASH> 100644
--- a/logger/logger.go
+++ b/logger/logger.go
@@ -78,14 +78,15 @@ func (t *telegrafLog) Write(b []byte) (n int, err error) {
func (t *telegrafLog) Close() error {
stdErrWriter := os.Stderr
// avoid closing stderr
- if t.internalWriter != ... | refactor: use early return pattern (#<I>) | influxdata_telegraf | train | go |
d203b972fc8460a3caf1bac53c8643a694cb31cb | diff --git a/engine-dmn/engine/src/main/java/org/camunda/bpm/dmn/engine/delegate/DmnDecisionEvaluationEvent.java b/engine-dmn/engine/src/main/java/org/camunda/bpm/dmn/engine/delegate/DmnDecisionEvaluationEvent.java
index <HASH>..<HASH> 100644
--- a/engine-dmn/engine/src/main/java/org/camunda/bpm/dmn/engine/delegate/Dmn... | chore(dmn-engine): Adjusted java docs for required decision results
related to #CAM-<I> | camunda_camunda-bpm-platform | train | java |
5ae85768cfcf8279aa70d370eaa7f4ce857c8976 | diff --git a/src/modules/Modal/Modal.js b/src/modules/Modal/Modal.js
index <HASH>..<HASH> 100644
--- a/src/modules/Modal/Modal.js
+++ b/src/modules/Modal/Modal.js
@@ -250,9 +250,10 @@ class Modal extends Component {
setDimmerNodeStyle = () => {
debug('setDimmerNodeStyle()')
+ const { current } = this.dimme... | perf(Modal): reduce unnecessary layout invalidations (#<I>)
Improve performance especially in IE<I> when a modal is used | Semantic-Org_Semantic-UI-React | train | js |
8edccca1a1545c7bc0a8e0d0fd2f9a20b54e59fe | diff --git a/packages/website/src/components/Header.js b/packages/website/src/components/Header.js
index <HASH>..<HASH> 100644
--- a/packages/website/src/components/Header.js
+++ b/packages/website/src/components/Header.js
@@ -89,10 +89,11 @@ const Navigation = () => (
</StyleguidistContainer>
);
-const DarkModeT... | fix(website): Make DarkModeToggle a ToolbarFocusable | reakit_reakit | train | js |
8ac27061999a0005d5aab342319cccfe6bbc9d49 | diff --git a/scripts/serverless.js b/scripts/serverless.js
index <HASH>..<HASH> 100755
--- a/scripts/serverless.js
+++ b/scripts/serverless.js
@@ -280,7 +280,7 @@ const processSpanPromise = (async () => {
// Resolve all unresolved configuration properties
resolverConfiguration.fulfilledSources.add... | fix(Plugins): Prevent variables resolution with "plugin .." command | serverless_serverless | train | js |
adbdcbcd9008248d9976b8746f9ebcf0b449d4e1 | diff --git a/src/core/main.js b/src/core/main.js
index <HASH>..<HASH> 100644
--- a/src/core/main.js
+++ b/src/core/main.js
@@ -2,7 +2,7 @@
* Angular Materials initialization function that validates environment
* requirements.
*/
- angular.module('material.core',['ng'])
+ angular.module('material.core', ['... | fix(build): added explicit module dependency on ngAria | angular_material | train | js |
a67acdfaa8896194587a56ede02f239d7a8da408 | diff --git a/dataformat-xml-dom/src/main/java/org/camunda/spin/impl/xml/dom/query/DomXPathNamespaceResolver.java b/dataformat-xml-dom/src/main/java/org/camunda/spin/impl/xml/dom/query/DomXPathNamespaceResolver.java
index <HASH>..<HASH> 100644
--- a/dataformat-xml-dom/src/main/java/org/camunda/spin/impl/xml/dom/query/Do... | fix(xpath): remove use of jdk7 method
- spin must work with Java 6
related to CAM-<I> | camunda_camunda-spin | train | java |
161a72d925c33876780bfebbfe2e4611cb99e7f0 | diff --git a/commands/check.js b/commands/check.js
index <HASH>..<HASH> 100644
--- a/commands/check.js
+++ b/commands/check.js
@@ -51,6 +51,9 @@ function commitInfo () {
} else if (process.env.BITBUCKET_BRANCH) {
branch = process.env.BITBUCKET_BRANCH;
sha = process.env.BITBUCKET_COMMIT;
+ } else {
+ br... | fix(local): added local branch and commit id with giv-rev-sync | bithound_cli.bithound.io | train | js |
893594c9c4021c7c811bba74ca50826aebbb48a6 | diff --git a/engine-rest/src/main/java/org/camunda/bpm/engine/rest/util/PathUtil.java b/engine-rest/src/main/java/org/camunda/bpm/engine/rest/util/PathUtil.java
index <HASH>..<HASH> 100644
--- a/engine-rest/src/main/java/org/camunda/bpm/engine/rest/util/PathUtil.java
+++ b/engine-rest/src/main/java/org/camunda/bpm/engi... | fix(groups): double encode backslash
Related to: #CAM-<I> | camunda_camunda-bpm-platform | train | java |
e6a4808cb70e5347557e3a3231dc1f961abb47dd | diff --git a/tests/datasets/api_tests.py b/tests/datasets/api_tests.py
index <HASH>..<HASH> 100644
--- a/tests/datasets/api_tests.py
+++ b/tests/datasets/api_tests.py
@@ -824,6 +824,10 @@ class TestDatasetApi(SupersetTestCase):
Dataset API: Test export dataset
"""
birth_names_dataset = self.g... | fix(tests): export dataset tests fails with presto (#<I>)
* fix(tests): export dataset tests fails with presto
* debug
* debug
* skip dataset export test on presto
* add TODO on failing test | apache_incubator-superset | train | py |
cd1fca10af480a0228d4e6a8dba8cf3d9b2c0754 | diff --git a/src/mixin.js b/src/mixin.js
index <HASH>..<HASH> 100644
--- a/src/mixin.js
+++ b/src/mixin.js
@@ -11,7 +11,8 @@ export function mixin(behavior: Object): any {
? target.prototype
: target;
- for (let property of instanceKeys) {
+ for (var i = instanceKeys.length - 1; i >= 0; i-... | fix(for-of): remove for of loop
Prevents needing a symbol polyfill | aurelia_metadata | train | js |
56b4cd979edc0af07b9a00682d999ae234bc9c95 | 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 with spread | Availity_sdk-js | train | js |
60e05055833b11cad1a018689a7874314df85653 | diff --git a/tests/unit/rest/test_client.py b/tests/unit/rest/test_client.py
index <HASH>..<HASH> 100644
--- a/tests/unit/rest/test_client.py
+++ b/tests/unit/rest/test_client.py
@@ -110,7 +110,7 @@ class TestUserAgentClients(unittest.TestCase):
def test_set_default_user_agent(self):
self.client.request('... | fix: useragent regrex unit test for RC branch (#<I>)
* [DI-<I>] modify unit test for RC branch | twilio_twilio-python | train | py |
bb92d65774d8d357a7f1ed1893eb3dc06468f2c8 | diff --git a/vyper/context/validation/module.py b/vyper/context/validation/module.py
index <HASH>..<HASH> 100644
--- a/vyper/context/validation/module.py
+++ b/vyper/context/validation/module.py
@@ -162,8 +162,14 @@ class ModuleNodeVisitor(VyperNodeVisitorBase):
elif call_name == "public":
... | fix: annotate public variable with function type during type-checking | ethereum_vyper | train | py |
2c6b1843a0c9c4e8d5cade18f014ee1e34d4ebd2 | diff --git a/lib/telegram/models.rb b/lib/telegram/models.rb
index <HASH>..<HASH> 100644
--- a/lib/telegram/models.rb
+++ b/lib/telegram/models.rb
@@ -301,12 +301,17 @@ module Telegram
@user = @sender = event.message.from
@receiver = event.message.to
- @target = case @receiver.type
- when 'use... | fix: NoMethodError - handler was added to models.rb (#<I>) | ssut_telegram-rb | train | rb |
8f423659b8a1f2b0d97636d5f07ccf897f33d021 | diff --git a/src/notebook/components/cell/editor/index.js b/src/notebook/components/cell/editor/index.js
index <HASH>..<HASH> 100644
--- a/src/notebook/components/cell/editor/index.js
+++ b/src/notebook/components/cell/editor/index.js
@@ -115,7 +115,7 @@ export default class Editor extends React.Component {
re... | fix(autocomplete): autocomplete when kernel idle | nteract_nteract | train | js |
f4078a6db6efc9f297988ca994d3e80b3201abba | diff --git a/src/updater.js b/src/updater.js
index <HASH>..<HASH> 100644
--- a/src/updater.js
+++ b/src/updater.js
@@ -94,7 +94,7 @@ const offlineUpdater = function offlineUpdater(
}
if (action.type === RESET_STATE) {
- return { ...initialState, online: state.online };
+ return { ...initialState, onli... | fix: includes netInfo in RESET_STATE action | redux-offline_redux-offline | train | js |
9b066c05694855e6e0b89902eea42ba51e0301c3 | diff --git a/src/graphic/helper/image.js b/src/graphic/helper/image.js
index <HASH>..<HASH> 100644
--- a/src/graphic/helper/image.js
+++ b/src/graphic/helper/image.js
@@ -50,7 +50,7 @@ export function createOrUpdateImage(newImageOrSrc, image, hostEl, cb, cbPayload)
!isImageReady(image) && cachedImgObj.pend... | fix(image): fix #<I> image cache bug
Image cache reference image instance, so it's needed to init new Image instance each time | ecomfe_zrender | train | js |
e9fe8dd4dd7420786fe496903aeb10db0f35c63f | diff --git a/src/Line3.js b/src/Line3.js
index <HASH>..<HASH> 100644
--- a/src/Line3.js
+++ b/src/Line3.js
@@ -139,7 +139,9 @@ class Line3 {
// Lines are not coplanar, stop here
// Coplanar only if the vectors AB, u, v are linearly dependent, i.e AB . (u × v) = 0
const coplanarResult = dc.dot(daCrossDb);... | fix: Normalize coplanar dot product check in intersectLine (#<I>) | cornerstonejs_cornerstoneMath | train | js |
0f3a809487eda7d43bab360bcff5a8bd9233850e | diff --git a/alot/command.py b/alot/command.py
index <HASH>..<HASH> 100644
--- a/alot/command.py
+++ b/alot/command.py
@@ -475,7 +475,10 @@ class ReplyCommand(Command):
reply.attach(bodypart)
# copy subject
- subject = mail['Subject']
+ if 'Subject' not in mail or mail['Subject'] == No... | fix: reply to mail w/o subject issue #<I> | pazz_alot | train | py |
5ebb3edeffaa49f5bdf05e6f810d171714211628 | diff --git a/types.go b/types.go
index <HASH>..<HASH> 100644
--- a/types.go
+++ b/types.go
@@ -517,6 +517,7 @@ type ForceReply struct {
type ChatMember struct {
User *User `json:"user"`
Status string `json:"status"`
+ CustomTitle string `json:"custom_title,omitempty"` ... | feat: Add CustomTitle field to ChatMember | go-telegram-bot-api_telegram-bot-api | train | go |
005346125898472dc2a5e44f60fa650ca9d0b6e0 | diff --git a/packages/cozy-client/src/manifest.js b/packages/cozy-client/src/manifest.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-client/src/manifest.js
+++ b/packages/cozy-client/src/manifest.js
@@ -28,11 +28,11 @@ export function sanitizeCategories(categories) {
}
export function areTermsValid(terms) {
- ... | chore: Typos and use of Boolean | cozy_cozy-client | train | js |
00e338159e2158b23a58a4da9e95c5f5075257aa | diff --git a/lib/lifecycles/changelog.js b/lib/lifecycles/changelog.js
index <HASH>..<HASH> 100644
--- a/lib/lifecycles/changelog.js
+++ b/lib/lifecycles/changelog.js
@@ -35,8 +35,7 @@ function outputChangelog (args, newVersion) {
oldContent = oldContent.substring(oldContentStart)
}
let content = ''
- ... | fix: always pass version to changelog context (#<I>) | conventional-changelog_standard-version | train | js |
8e698895f1f4db5fb1370defb32b1f138a313819 | diff --git a/controller/index.js b/controller/index.js
index <HASH>..<HASH> 100644
--- a/controller/index.js
+++ b/controller/index.js
@@ -210,9 +210,10 @@ export default class Controller {
}
// 支持使用方手动传入自定义fetch方法
- let fetch = typeof options.fetch === 'function' ? options.fetch : fetch
+ let raw... | fix: fetch is not a function | Lucifier129_react-imvc | train | js |
89c0da78d5ebf3c9f2754b3c8d557155dd70c8d7 | diff --git a/src/utils/mergeTree.js b/src/utils/mergeTree.js
index <HASH>..<HASH> 100644
--- a/src/utils/mergeTree.js
+++ b/src/utils/mergeTree.js
@@ -121,6 +121,9 @@ export async function mergeTree({
reduce: async (parent, children) => {
const entries = children.filter(Boolean) // remove undefineds
+ ... | fix(merge): Cannot set property 'oid' of undefined (#<I>) | isomorphic-git_isomorphic-git | train | js |
d3ac182dbc362b0d7f3c108d8d29d9303edeba84 | diff --git a/docs/app/Components/CarbonAd/CarbonAd.js b/docs/app/Components/CarbonAd/CarbonAd.js
index <HASH>..<HASH> 100644
--- a/docs/app/Components/CarbonAd/CarbonAd.js
+++ b/docs/app/Components/CarbonAd/CarbonAd.js
@@ -3,7 +3,7 @@ import React, { Component } from 'react'
import { Button, Header, Icon, Menu, Segmen... | fix(docs): uncomment ad preference [ci skip] | Semantic-Org_Semantic-UI-React | train | js |
0ca13daa1c97480011ff59794d3912344f2c7780 | diff --git a/src/optlang/osqp_interface.py b/src/optlang/osqp_interface.py
index <HASH>..<HASH> 100644
--- a/src/optlang/osqp_interface.py
+++ b/src/optlang/osqp_interface.py
@@ -413,7 +413,7 @@ class Objective(interface.Objective):
def value(self):
if getattr(self, 'problem', None) is None:
... | fix: adding the _objective_offset to the objective value | biosustain_optlang | train | py |
35bf18cf5ac4fdf75eccd6d23873309589beef35 | diff --git a/aiogram/dispatcher/filters/builtin.py b/aiogram/dispatcher/filters/builtin.py
index <HASH>..<HASH> 100644
--- a/aiogram/dispatcher/filters/builtin.py
+++ b/aiogram/dispatcher/filters/builtin.py
@@ -4,7 +4,7 @@ import typing
import warnings
from contextvars import ContextVar
from dataclasses import datac... | fix: builtin command filter args (#<I>) (#<I>)
* fix: builtin command filter args
* fix: use string for command arguments
* fix: text property of command object | aiogram_aiogram | train | py |
acb6c8ca25701c145a71a00bce6738afb2eeef63 | diff --git a/src/webui/src/components/Package/index.js b/src/webui/src/components/Package/index.js
index <HASH>..<HASH> 100644
--- a/src/webui/src/components/Package/index.js
+++ b/src/webui/src/components/Package/index.js
@@ -2,6 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import {Tag} fro... | fix: if author property is not part of the pkg body ui crash | verdaccio_verdaccio | train | js |
392ec88a24685d859958ec0d34789127fd9b0f06 | diff --git a/vagrant/test.py b/vagrant/test.py
index <HASH>..<HASH> 100644
--- a/vagrant/test.py
+++ b/vagrant/test.py
@@ -74,10 +74,8 @@ class VagrantTestCase(TestCase):
def setUpOnce(self):
"""Collect the box states before starting"""
for box_name in self.vagrant_boxes:
- box_state =... | test: fix setUpOnce (#<I>) | todddeluca_python-vagrant | train | py |
27b883f496925a6148a76a7af635d70b9955d173 | diff --git a/src/main/java/net/emaze/dysfunctional/options/Options.java b/src/main/java/net/emaze/dysfunctional/options/Options.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/emaze/dysfunctional/options/Options.java
+++ b/src/main/java/net/emaze/dysfunctional/options/Options.java
@@ -78,7 +78,7 @@ public abst... | fix: array as ellipsis in Options.justs | cybazeitalia_emaze-dysfunctional | train | java |
44c38510af8a2659fd097edefadc8d734896544e | diff --git a/packages/hoc-input/src/formInput.js b/packages/hoc-input/src/formInput.js
index <HASH>..<HASH> 100644
--- a/packages/hoc-input/src/formInput.js
+++ b/packages/hoc-input/src/formInput.js
@@ -162,9 +162,11 @@ const formInput = WrappedComponent => {
);
return (
+ // Although we use onMo... | fix(hoc-input): remove incorrect wai-aria role
affects: @crave/farmblocks-hoc-input
it was making the whole wrapper focusable, requiring 2 tab key presses to navigate through inputs | CraveFood_farmblocks | train | js |
719cc031236f283468204bfeff1f7f324a47a1e7 | diff --git a/_docs/gen.go b/_docs/gen.go
index <HASH>..<HASH> 100644
--- a/_docs/gen.go
+++ b/_docs/gen.go
@@ -151,23 +151,29 @@ func clear() error {
if err != nil {
return err
}
+ if m, _ := regexp.MatchString("~$", path); m {
+ return nil
+ }
// Remove auto-generated html files.
m, err := regexp.M... | docs: Bug fix: directory must be removed by os.RemoveAll | hajimehoshi_ebiten | train | go |
675a6fc026697227d14aa8a10bfc90a9465be9f7 | diff --git a/test/unit/route.spec.js b/test/unit/route.spec.js
index <HASH>..<HASH> 100644
--- a/test/unit/route.spec.js
+++ b/test/unit/route.spec.js
@@ -755,6 +755,18 @@ test.group('Route | Manager', (group) => {
const url = RouteManager.url('UsersController.show', { id: 1 }, 'blog.example.com')
assert.isNu... | refactor(route): add failing test for #<I>
route formats with optional params in front is not working as expected | adonisjs_adonis-framework | train | js |
14d28d74730c92b0ff849c08d5e9a1de89d93178 | diff --git a/docs/dgeni-package/processors/readTypeScriptModules.js b/docs/dgeni-package/processors/readTypeScriptModules.js
index <HASH>..<HASH> 100644
--- a/docs/dgeni-package/processors/readTypeScriptModules.js
+++ b/docs/dgeni-package/processors/readTypeScriptModules.js
@@ -147,15 +147,16 @@ module.exports = functi... | chore(doc-gen): fix id and alias generation for exports and members
This helps to ensure that links to exports are not confused with links
to members, which was causing some missing link issues.
Helps #<I> | angular_angular | train | js |
3ce3d5f8381c154a7ed19f56c478560b87787a0b | diff --git a/lib/inspectors/weinre.js b/lib/inspectors/weinre.js
index <HASH>..<HASH> 100644
--- a/lib/inspectors/weinre.js
+++ b/lib/inspectors/weinre.js
@@ -7,7 +7,7 @@ module.exports = function(req, res, next) {
if (!weinreUrl) {
weinrePath = this.config.WEBUI_PATH + 'weinre.' + this.config.weinreport;
... | feat: use relative path instead of absolute path of weinre & log | avwo_whistle | train | js |
a363e10261c2f1d7182fcaf952c338b7e815658b | diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/bpmn/event/compensate/CompensateEventTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/bpmn/event/compensate/CompensateEventTest.java
index <HASH>..<HASH> 100644
--- a/engine/src/test/java/org/camunda/bpm/engine/test/bpmn/event/compensate/Compensa... | fix(engine): Compensation Event Subprocess inside parallel mi subprocess
- enable failing test case
- fixed with CAM-<I>
related to CAM-<I> | camunda_camunda-bpm-platform | train | java |
3682cf085681469ce5baf46374b062bcb796423a | diff --git a/pyethereum/chainmanager.py b/pyethereum/chainmanager.py
index <HASH>..<HASH> 100644
--- a/pyethereum/chainmanager.py
+++ b/pyethereum/chainmanager.py
@@ -9,6 +9,7 @@ import utils
import rlp
import blocks
import processblock
+from transactions import Transaction
logger = logging.getLogger(__name__)
... | fix: missing import and wrong namespace | ethereum_pyethereum | train | py |
cd0f34da3dd1a326b686eca90b353702debfca6e | diff --git a/test/browser-test-config/base-karma.js b/test/browser-test-config/base-karma.js
index <HASH>..<HASH> 100644
--- a/test/browser-test-config/base-karma.js
+++ b/test/browser-test-config/base-karma.js
@@ -18,7 +18,7 @@ module.exports = function (config) {
],
preprocessors: {
- '**/*.js': ['we... | chore: update karma config files to preprocess | josdejong_mathjs | train | js |
9f918199d2146ef06fb4d2fffc46c7975db8b441 | diff --git a/src/util/Collection.js b/src/util/Collection.js
index <HASH>..<HASH> 100644
--- a/src/util/Collection.js
+++ b/src/util/Collection.js
@@ -365,6 +365,24 @@ class Collection extends Map {
}
/**
+ * Identical to
+ * [Map.forEach()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/... | feat: add Collection#tap (#<I>)
* Add Collection#inspect
* No u
* Rename to tap
* Rename variable
* Do it here too | discordjs_discord.js | train | js |
1c6012de241775867baa18ab77e7a7b9874b7f3e | diff --git a/src/Listener/SendNotificationWhenReplyIsPosted.php b/src/Listener/SendNotificationWhenReplyIsPosted.php
index <HASH>..<HASH> 100755
--- a/src/Listener/SendNotificationWhenReplyIsPosted.php
+++ b/src/Listener/SendNotificationWhenReplyIsPosted.php
@@ -27,12 +27,6 @@ class SendNotificationWhenReplyIsPosted
... | chore: remove debug line that slipped in while rebasing a PR (#<I>) | flarum_subscriptions | train | php |
bbb8c1ff6e3800fd87fb0982de8ddeea1847ff93 | diff --git a/connection/connection.js b/connection/connection.js
index <HASH>..<HASH> 100644
--- a/connection/connection.js
+++ b/connection/connection.js
@@ -603,7 +603,7 @@ function makeConnection(conn, options, callback) {
function normalConnect(conn, family, _options, callback) {
const options = prepareConnec... | refactor(connection): simplify object assignments | mongodb_node-mongodb-native | train | js |
3f444b1629237a6795c30d55f0775f4e75728bf3 | diff --git a/src/websockets/protocol.py b/src/websockets/protocol.py
index <HASH>..<HASH> 100644
--- a/src/websockets/protocol.py
+++ b/src/websockets/protocol.py
@@ -180,11 +180,11 @@ class WebSocketCommonProtocol(asyncio.StreamReaderProtocol):
def __init__(
self,
*,
- ping_interval: floa... | fix: permit None in type annotations
Fix type annotations for four parameters which are documented to accept `None`. | aaugustin_websockets | train | py |
eb243e3f391d194ec8b731a6ce05dbc97bc975a1 | diff --git a/redisson/src/main/java/org/redisson/connection/ClientConnectionsEntry.java b/redisson/src/main/java/org/redisson/connection/ClientConnectionsEntry.java
index <HASH>..<HASH> 100644
--- a/redisson/src/main/java/org/redisson/connection/ClientConnectionsEntry.java
+++ b/redisson/src/main/java/org/redisson/conn... | fix: check RedisConnection status befor RedisConnection object join freeConnections | redisson_redisson | train | java |
0f341ba2f04c80428ce0f991f65abc9b5d86ca48 | diff --git a/gosdc.go b/gosdc.go
index <HASH>..<HASH> 100644
--- a/gosdc.go
+++ b/gosdc.go
@@ -1,5 +1,5 @@
/*
-package gosdc enables Go programs to interact with the Joyent CloudAPI.
+Package gosdc enables Go programs to interact with the Joyent CloudAPI.
The gosdc package is structured as follow: | docs: picky picky | joyent_gosdc | train | go |
e1c0d695feaba044c8a80d430254481854861dec | diff --git a/packages/pob/lib/generators/common/format-lint/updateEslintConfig.js b/packages/pob/lib/generators/common/format-lint/updateEslintConfig.js
index <HASH>..<HASH> 100644
--- a/packages/pob/lib/generators/common/format-lint/updateEslintConfig.js
+++ b/packages/pob/lib/generators/common/format-lint/updateEslin... | fix: alllow "allow-unsafe" in extends in eslint configs | christophehurpeau_pob-lerna | train | js |
6a430d495e3e616304000e21e72deba27eb5303f | diff --git a/client-src/utils/log.js b/client-src/utils/log.js
index <HASH>..<HASH> 100644
--- a/client-src/utils/log.js
+++ b/client-src/utils/log.js
@@ -19,7 +19,7 @@ setLogLevel(defaultLevel);
const log = logger.getLogger(name);
const logEnabledFeatures = (features) => {
- const enabledFeatures = Object.entries... | fix: compatibility with old browsers (#<I>) | webpack_webpack-dev-server | train | js |
b5a389779570cbe51a015a1f3805de93df4e4786 | diff --git a/packages/embark/src/lib/modules/contracts_manager/index.js b/packages/embark/src/lib/modules/contracts_manager/index.js
index <HASH>..<HASH> 100644
--- a/packages/embark/src/lib/modules/contracts_manager/index.js
+++ b/packages/embark/src/lib/modules/contracts_manager/index.js
@@ -458,6 +458,7 @@ class Con... | fix(contracts): fix contracts being instanceOf a contract with libs | embark-framework_embark | train | js |
88e6406e77857f10bc69f451441abc1995cb820f | diff --git a/lib/workers/repository/upgrades.js b/lib/workers/repository/upgrades.js
index <HASH>..<HASH> 100644
--- a/lib/workers/repository/upgrades.js
+++ b/lib/workers/repository/upgrades.js
@@ -128,8 +128,6 @@ function groupByBranch(upgrades) {
.replace('@', '')
.replace('/', '-')
... | fix: dont log full upgrade object (#<I>) | renovatebot_renovate | train | js |
757b52c9561f455b2e683c7181ae1dad7970f0ca | diff --git a/doc/source/conf.py b/doc/source/conf.py
index <HASH>..<HASH> 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -71,7 +71,7 @@ if on_rtd:
def setup(app):
app.connect("autodoc-skip-member", skip)
- sys.path.insert(0, PROJECT_ROOT_DIR)
+ sys.path.append(PROJECT_ROOT_DIR)
els... | docs: more trial and error on rtd [skip ci] | swistakm_pyimgui | train | py |
9ca16d077d00a89d4ef904ae3da730fbfe4984ef | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -30,8 +30,8 @@ sys.path.insert(0, os.path.abspath('..'))
# ones.
extensions = [
'sphinx.ext.autodoc',
- 'sphinx.ext.doctest',
- 'sphinx.ext.githubpages',
+# 'sphinx.ext.doctest',
+# 'sphinx.e... | docs: removed unused plugins | rossengeorgiev_aprs-python | train | py |
33db3a1f47c47ce9ac67abcf9315077db36eb5dd | diff --git a/packages/app-admin/src/contexts/Crud/CrudContext.js b/packages/app-admin/src/contexts/Crud/CrudContext.js
index <HASH>..<HASH> 100644
--- a/packages/app-admin/src/contexts/Crud/CrudContext.js
+++ b/packages/app-admin/src/contexts/Crud/CrudContext.js
@@ -41,7 +41,7 @@ export const CrudProvider = ({ children... | fix: unset "id" from "data" object on update. | Webiny_webiny-js | train | js |
a8537e6386e0906db044d1f00a2b82ec59c13570 | diff --git a/src/components/backdrop/backdrop.js b/src/components/backdrop/backdrop.js
index <HASH>..<HASH> 100644
--- a/src/components/backdrop/backdrop.js
+++ b/src/components/backdrop/backdrop.js
@@ -48,6 +48,11 @@ angular
// so let's wait until $animate is done...
var parent = element.parent()[0];... | fix(backdrop): use fixed position for global backdrops.
Set backdrop `position:fixed` when the parent is BODY to give it a position based off the body viewport.
Closes #<I>. | angular_material | train | js |
3b2a5a9f12e5c76eeae0f1c3d1f698283261617f | diff --git a/webapps/camunda-webapp/webapp/src/main/webapp/app/cockpit/pages/jobRetries.js b/webapps/camunda-webapp/webapp/src/main/webapp/app/cockpit/pages/jobRetries.js
index <HASH>..<HASH> 100644
--- a/webapps/camunda-webapp/webapp/src/main/webapp/app/cockpit/pages/jobRetries.js
+++ b/webapps/camunda-webapp/webapp/s... | fix(jobs): Show activity scope in jobs table | camunda_camunda-bpm-platform | train | js |
224a2971fd3e81378585ae8889dac9e2471ff275 | diff --git a/tests/test_cli.py b/tests/test_cli.py
index <HASH>..<HASH> 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -170,9 +170,11 @@ def test_stake(mocked, login):
assert result.exit_code == 0
-@patch('numerapi.NumerAPI.submit')
-def test_submit(mocked):
- result = CliRunner().invoke(cli.subm... | test: fix cli.submit test | uuazed_numerapi | train | py |
af655e75fa0bce6bcc981481290b9b254d1a60f4 | diff --git a/secretballot/views.py b/secretballot/views.py
index <HASH>..<HASH> 100644
--- a/secretballot/views.py
+++ b/secretballot/views.py
@@ -21,6 +21,7 @@ def vote(request, content_type, object_id, vote, can_vote_test=None,
elif isinstance(content_type, ModelBase):
content_type = ContentType.objects... | fix: split 'app.modelname' is fogotten | jamesturk_django-secretballot | train | py |
f94a0869a6e1b269755ad0b3357f3cb46e1ff580 | diff --git a/packages/portal-data/lib/index.js b/packages/portal-data/lib/index.js
index <HASH>..<HASH> 100644
--- a/packages/portal-data/lib/index.js
+++ b/packages/portal-data/lib/index.js
@@ -6,7 +6,7 @@ const EventEmitter = require('events');
const Util = require('util');
// 3rd party modules
-const CPClient = ... | fix(portal-data): don't integrate cp-client (for now) | yldio_joyent-portal | train | js |
b00f0984888535ad0cf7a8dd75207bd0ab58a68e | diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/standalone/calendar/DurationHelperTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/standalone/calendar/DurationHelperTest.java
index <HASH>..<HASH> 100644
--- a/engine/src/test/java/org/camunda/bpm/engine/test/standalone/calendar/DurationHelperTe... | test(engine): reset time to prevent errors in following tests | camunda_camunda-bpm-platform | train | java |
7cc6d3b57fbaffacc9426e2d26cacac28a2cd0e0 | diff --git a/views/cypress/tests/test.spec.js b/views/cypress/tests/test.spec.js
index <HASH>..<HASH> 100644
--- a/views/cypress/tests/test.spec.js
+++ b/views/cypress/tests/test.spec.js
@@ -83,8 +83,6 @@ describe('Tests', () => {
.addClass(selectors.testClassForm, selectors.treeRenderUrl, selectors.addSub... | fix: move treeRender in commands | oat-sa_extension-tao-test | train | js |
efbbdf543c5016684e7b2a7d23ccc414ea6e8f63 | diff --git a/lib/util/parseHeaders.js b/lib/util/parseHeaders.js
index <HASH>..<HASH> 100644
--- a/lib/util/parseHeaders.js
+++ b/lib/util/parseHeaders.js
@@ -27,7 +27,7 @@ const unescapeHtml = html => String(html)
const removeMarkdownTokens = str => String(str)
.replace(/\[(.*)\]\(.*\)/, '$1') // []()... | chore: remove escape char '\' in front of '!'(#<I>) | vuejs_vuepress | train | js |
797556baf603a30eec48be565e1bba4f048cbc7b | diff --git a/src/postmarker/pytest.py b/src/postmarker/pytest.py
index <HASH>..<HASH> 100644
--- a/src/postmarker/pytest.py
+++ b/src/postmarker/pytest.py
@@ -5,7 +5,7 @@ import pytest
from .core import PostmarkClient, requests
-@pytest.yield_fixture
+@pytest.fixture
def postmark_request():
"""Mocks network ... | chore: Remove deprecated `yield_fixture` | Stranger6667_postmarker | train | py,py |
0226935b8179dd717ac66f3dc63eb95bdbc45ced | diff --git a/lib/watcher.js b/lib/watcher.js
index <HASH>..<HASH> 100644
--- a/lib/watcher.js
+++ b/lib/watcher.js
@@ -32,8 +32,10 @@ var watcher = {
this.options.rpc.expose('refresh', function(paths, cb) {
self.watching = true
+ self.options.socket.send('watching', true)
explorer.explore({pat... | feat(watcher): Notify if watching through sockets | ezseed_watcher | train | js |
3dc160fecce6552a7136d20c7e07cd05e5c75cad | diff --git a/Upstart/Prototype.php b/Upstart/Prototype.php
index <HASH>..<HASH> 100644
--- a/Upstart/Prototype.php
+++ b/Upstart/Prototype.php
@@ -6,6 +6,7 @@ use Closure;
use ReflectionClass;
use Modulus\Support\Extendable;
use Modulus\Framework\Exceptions\CannotExtendClassException;
+use Modulus\Framework\Exceptio... | feat: throw exception if class does not exist | modulusphp_framework | train | php |
7fdef1d6837838bf4f67a25943749cd2da3abbbc | diff --git a/lib/workers/repository/process/deprecated.js b/lib/workers/repository/process/deprecated.js
index <HASH>..<HASH> 100644
--- a/lib/workers/repository/process/deprecated.js
+++ b/lib/workers/repository/process/deprecated.js
@@ -39,7 +39,12 @@ async function raiseDeprecationWarnings(config, packageFiles) {
... | fix: dry run deprecation issues | renovatebot_renovate | train | js |
d06b64d4b9e8203945ad946495ff300d9852b37c | diff --git a/lib/utils/fs/safe-move-file.js b/lib/utils/fs/safe-move-file.js
index <HASH>..<HASH> 100644
--- a/lib/utils/fs/safe-move-file.js
+++ b/lib/utils/fs/safe-move-file.js
@@ -1,6 +1,7 @@
'use strict';
const fsp = require('fs').promises;
+const fse = require('fs-extra');
const crypto = require('crypto');
c... | fix: Properly move directories across filesystems | serverless_serverless | train | js |
f701cffb41a7fdd0c00c8eb35dba7f78c7d25c01 | diff --git a/lib/Dredd.js b/lib/Dredd.js
index <HASH>..<HASH> 100644
--- a/lib/Dredd.js
+++ b/lib/Dredd.js
@@ -12,9 +12,15 @@ const TransactionRunner = require('./TransactionRunner');
const { applyConfiguration } = require('./configuration');
+function prefixError(error, prefix) {
+ error.message = `${prefix}: ${... | refactor: reuse error prefixing | apiaryio_dredd | train | js |
03342be931e0b4ffc415ccae44d8f48fd1e2af90 | diff --git a/packages/cozy-stack-client/src/JobCollection.js b/packages/cozy-stack-client/src/JobCollection.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-stack-client/src/JobCollection.js
+++ b/packages/cozy-stack-client/src/JobCollection.js
@@ -26,6 +26,13 @@ class JobCollection {
return this.stackClient.fet... | docs: Add docstring to JobCollection::create | cozy_cozy-client | train | js |
af2e5e44fd7f07836aaae3e6988516fae161f707 | diff --git a/buttons/link-button/link-button.js b/buttons/link-button/link-button.js
index <HASH>..<HASH> 100644
--- a/buttons/link-button/link-button.js
+++ b/buttons/link-button/link-button.js
@@ -24,7 +24,14 @@ const LinkButton = props => (
LinkButton.displayName = 'LinkButton';
LinkButton.propTypes = {
label: ... | feat(product-types): keep pagination and sorting on sub-views
This enabeles the BackToList and save/cancel actions to redirect back to the list while keeping the original sorting which was applied there. | commercetools_ui-kit | train | js |
a9407a3c053d25dc23bee2d472b8961e5e0c0bb8 | diff --git a/addon/components/mdl-textfield.js b/addon/components/mdl-textfield.js
index <HASH>..<HASH> 100644
--- a/addon/components/mdl-textfield.js
+++ b/addon/components/mdl-textfield.js
@@ -4,7 +4,8 @@ import layout from '../templates/components/mdl-textfield';
const {
isPresent,
- observer
+ observer,
+ ... | feat: set feedback in the afterRender queue | mike-north_ember-material-lite | train | js |
a7c9474db8030c3fc4e488766ec1ce49fc04e448 | diff --git a/packages/site/pages/core/motion.js b/packages/site/pages/core/motion.js
index <HASH>..<HASH> 100644
--- a/packages/site/pages/core/motion.js
+++ b/packages/site/pages/core/motion.js
@@ -689,8 +689,12 @@ export default withServerProps(_ => (
increments.
</P>
<Speeds />
-
- <Secti... | refactor(site): move speed example up to speed vars | pluralsight_design-system | train | js |
37a16d793479bb9f5936a7d1c9c639d3eebc95c3 | diff --git a/manifest.php b/manifest.php
index <HASH>..<HASH> 100755
--- a/manifest.php
+++ b/manifest.php
@@ -43,7 +43,7 @@ return [
'name' => 'taoQtiItem',
'label' => 'QTI item model',
'license' => 'GPL-2.0',
- 'version' => '26.0.1',
+ 'version' => '26.0.0',
'author'... | chore: remove unused changes in version | oat-sa_extension-tao-itemqti | train | php |
f41f9390487388221fd13ca419fe1167c81e3171 | diff --git a/lib/client-stream.js b/lib/client-stream.js
index <HASH>..<HASH> 100644
--- a/lib/client-stream.js
+++ b/lib/client-stream.js
@@ -54,6 +54,7 @@ class StreamHandler extends AsyncResource {
finished(res, { readable: false }, (err) => {
const { callback, res, opaque, trailers } = this
+ thi... | fix: stream release res on finished | mcollina_undici | train | js |
4db9e9b0b679c2c0b6e2cb62fff7868d33409bcb | diff --git a/packages/midway-web/config/config.default.js b/packages/midway-web/config/config.default.js
index <HASH>..<HASH> 100644
--- a/packages/midway-web/config/config.default.js
+++ b/packages/midway-web/config/config.default.js
@@ -33,7 +33,8 @@ module.exports = (appInfo) => {
'**/public/**',
'**/v... | fix: ignore app/extend/* when loader start | midwayjs_midway | train | js |
1a3aa8e7a3a1322f3edd93a575b093429daf9549 | diff --git a/src/utils/gh-auth.js b/src/utils/gh-auth.js
index <HASH>..<HASH> 100644
--- a/src/utils/gh-auth.js
+++ b/src/utils/gh-auth.js
@@ -41,7 +41,7 @@ async function createGithubPAT(opts) {
let response
try {
- response = await octokit.authorization.create({
+ response = await octokit.oauthAuthoriza... | fix(auth): due to api change in @octokit/rest
ref: <URL> | netlify_cli | train | js |
ff246983c0cea66b723502954ea1d9744eb9a451 | diff --git a/src/Support/SelectFields.php b/src/Support/SelectFields.php
index <HASH>..<HASH> 100644
--- a/src/Support/SelectFields.php
+++ b/src/Support/SelectFields.php
@@ -50,7 +50,10 @@ class SelectFields
'fields' => $fieldsAndArguments,
];
- [$this->select, $this->relations] = self::... | chore: phpstan: fix "Cannot use array destructuring on array|Closure."
Clarify that in this invocation, the array is returned (other recursion
calls return the callable) | rebing_graphql-laravel | train | php |
481aab1fae67da6147a922f02bdcc79782435637 | diff --git a/src/env.js b/src/env.js
index <HASH>..<HASH> 100644
--- a/src/env.js
+++ b/src/env.js
@@ -8,8 +8,10 @@ const IS_ELECTRON_RENDERER = IS_ELECTRON && IS_ENV_WITH_DOM
const IS_NODE = typeof require === 'function' && typeof process !== 'undefined' && typeof process.release !== 'undefined' && process.release.na... | feat: env/isTest (#<I>)
Adds check to tell if runtime is part of tests
License: MIT | ipfs_js-ipfs | train | js |
792e6baf5eda9c4fae5be44b1b0ef4e68b400c4c | diff --git a/platform/nativescript/compiler/sfc/parser.js b/platform/nativescript/compiler/sfc/parser.js
index <HASH>..<HASH> 100644
--- a/platform/nativescript/compiler/sfc/parser.js
+++ b/platform/nativescript/compiler/sfc/parser.js
@@ -46,6 +46,10 @@ export function parseComponent(
currentBlock = {
t... | feat(template-compiler): include sfc tag locations | nativescript-vue_nativescript-vue | train | js |
687fa724a0d0cf6f40932e3426cfe32e599733db | diff --git a/src/Leevel/Database/Ddd/Entity.php b/src/Leevel/Database/Ddd/Entity.php
index <HASH>..<HASH> 100644
--- a/src/Leevel/Database/Ddd/Entity.php
+++ b/src/Leevel/Database/Ddd/Entity.php
@@ -686,11 +686,9 @@ abstract class Entity implements IArray, IJson, JsonSerializable, ArrayAccess
/**
* 数据库连接沙盒.
... | refactor(ddd): connect only support string | hunzhiwange_framework | train | php |
23168a6e562b00ec7b47312e2fd9f5b9b49b5024 | diff --git a/satpy/tests/test_scene.py b/satpy/tests/test_scene.py
index <HASH>..<HASH> 100644
--- a/satpy/tests/test_scene.py
+++ b/satpy/tests/test_scene.py
@@ -1745,6 +1745,16 @@ class TestSceneSaving(unittest.TestCase):
class TestSceneConversions(unittest.TestCase):
"""Test Scene conversion to geoviews, xarra... | test: add test for empty scene to xarray dataset | pytroll_satpy | train | py |
a3aa238d0b4241f25f8cf61ae1dd5eb434f9c178 | diff --git a/types.go b/types.go
index <HASH>..<HASH> 100644
--- a/types.go
+++ b/types.go
@@ -2,6 +2,7 @@ package krakenapi
import (
"encoding/json"
+ "reflect"
"strconv"
)
@@ -314,6 +315,14 @@ type TickerResponse struct {
XZECZUSD PairTickerInfo
}
+// GetPairTickerInfo is a helper method that returns g... | feat(TickerResponse): Added helper method to get TickerInfo by pair's name | beldur_kraken-go-api-client | train | go |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.