diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/src/Two/GoogleProvider.php b/src/Two/GoogleProvider.php
index <HASH>..<HASH> 100644
--- a/src/Two/GoogleProvider.php
+++ b/src/Two/GoogleProvider.php
@@ -77,8 +77,12 @@ class GoogleProvider extends AbstractProvider implements ProviderInterface
protected function mapUserToObject(array $user)
{
... | Added "avatar_original" which returns a full size photo instead of <I>x<I> for Google provider. |
diff --git a/sem/cli.py b/sem/cli.py
index <HASH>..<HASH> 100644
--- a/sem/cli.py
+++ b/sem/cli.py
@@ -282,7 +282,7 @@ def export(results_dir, filename, do_not_try_parsing, parameters):
required=True)
@click.argument('sources',
nargs=-1,
- (type)=click.Path(exists=True,... | Fix Python <I> SyntaxError in cli.py
Python error was `SyntaxError: expression cannot contain assignment, perhaps you meant "=="?`
Not sure from which Python version the language semantics changed such that this error occured. Sure thing this was happening with <I>, this commit addresses that. |
diff --git a/pythonzombie/server/__init__.py b/pythonzombie/server/__init__.py
index <HASH>..<HASH> 100644
--- a/pythonzombie/server/__init__.py
+++ b/pythonzombie/server/__init__.py
@@ -37,7 +37,7 @@ class ZombieProxyServer(object):
print "Starting Zombie.js..."
#
- # Execute the node proxy ... | Closing stdin for the spawned node child process. |
diff --git a/response.go b/response.go
index <HASH>..<HASH> 100644
--- a/response.go
+++ b/response.go
@@ -7,6 +7,13 @@ import (
"strings"
)
+// If Accept header matching fails, fall back to this type, otherwise
+// a "406: Not Acceptable" response is returned.
+// Valid values are restful.MIME_JSON and restful.M... | Allow falling back to a mime type instead of sending a <I> response. |
diff --git a/lib/fastlane/actions/mailgun.rb b/lib/fastlane/actions/mailgun.rb
index <HASH>..<HASH> 100644
--- a/lib/fastlane/actions/mailgun.rb
+++ b/lib/fastlane/actions/mailgun.rb
@@ -103,8 +103,8 @@ module Fastlane
message: options[:message],
app_link: options[:app_link]
}
- ha... | Update mailgun.rb to fix missing values
Fixed bug: HTML template of mailgun doesn't have CI Build link if build has failed.
Fixed bug: CI Build link is pointing to the result of the build, and not the build link. |
diff --git a/browser/http.js b/browser/http.js
index <HASH>..<HASH> 100644
--- a/browser/http.js
+++ b/browser/http.js
@@ -155,16 +155,34 @@ connect.define(String, function(uri) { return connect(request({ uri: uri })) })
exports.connect = connect
function readHead(request) {
+ /**
+ Read the head data for a sing... | Add doc comments for read, readHead, readHeaders |
diff --git a/src/Google/Service/AppState.php b/src/Google/Service/AppState.php
index <HASH>..<HASH> 100644
--- a/src/Google/Service/AppState.php
+++ b/src/Google/Service/AppState.php
@@ -45,6 +45,7 @@ class Google_Service_AppState extends Google_Service
public function __construct(Google_Client $client)
{
pa... | Updated AppState.php
This change has been generated by a script that has detected changes in the
discovery doc of the API.
Check <URL> |
diff --git a/autopep8.py b/autopep8.py
index <HASH>..<HASH> 100755
--- a/autopep8.py
+++ b/autopep8.py
@@ -1783,9 +1783,6 @@ class Container(object):
def __getitem__(self, idx):
return self._items[idx]
- def _get_item(self, index):
- return self._items[index] if 0 <= index < len(self._items) e... | Use get_item that has exists |
diff --git a/redis-cache.php b/redis-cache.php
index <HASH>..<HASH> 100644
--- a/redis-cache.php
+++ b/redis-cache.php
@@ -16,6 +16,8 @@ if ( ! defined( 'ABSPATH' ) ) {
exit;
}
+define( 'REDIS_CACHE_VERSION', '1.5.1' );
+
if ( defined( 'WP_CLI' ) && WP_CLI ) {
require_once dirname( __FILE__ ) . '/includes... | added `WP_REDIS_VERSION` |
diff --git a/cqlengine/tests/columns/test_container_columns.py b/cqlengine/tests/columns/test_container_columns.py
index <HASH>..<HASH> 100644
--- a/cqlengine/tests/columns/test_container_columns.py
+++ b/cqlengine/tests/columns/test_container_columns.py
@@ -67,6 +67,16 @@ class TestSetColumn(BaseCassEngTestCase):
... | test to show blind update of empty set causes CQLEngineException |
diff --git a/pose-detection/demo/src/option_panel.js b/pose-detection/demo/src/option_panel.js
index <HASH>..<HASH> 100644
--- a/pose-detection/demo/src/option_panel.js
+++ b/pose-detection/demo/src/option_panel.js
@@ -135,10 +135,10 @@ function addPoseNetControllers(modelConfigFolder) {
// settings.
function addMove... | [pose-detection]Default to lightning model for MoveNet demo. (#<I>)
PROCESS |
diff --git a/tests/unit/states/test_network.py b/tests/unit/states/test_network.py
index <HASH>..<HASH> 100644
--- a/tests/unit/states/test_network.py
+++ b/tests/unit/states/test_network.py
@@ -2,14 +2,9 @@
:codeauthor: Rahul Handay <rahulha@saltstack.com>
"""
-# Import Python Libs
-
import logging
-# Impor... | Drop Py2 and six on tests/unit/states/test_network.py |
diff --git a/src/analyzer/properties/prefixed.js b/src/analyzer/properties/prefixed.js
index <HASH>..<HASH> 100644
--- a/src/analyzer/properties/prefixed.js
+++ b/src/analyzer/properties/prefixed.js
@@ -1,9 +1,9 @@
const arrayUniq = require('array-uniq')
-const PREFIX_RE = /^-(?:webkit|moz|ms|o)-/
+const PREFIXED_RE... | Cleanup (#<I>)
* Cleans up unused files
* Convert filters to user regex.test(string) instead of String.match(regex)
* Convert one more regex to the new form |
diff --git a/automat/_methodical.py b/automat/_methodical.py
index <HASH>..<HASH> 100644
--- a/automat/_methodical.py
+++ b/automat/_methodical.py
@@ -78,7 +78,7 @@ class MethodicalInput(object):
automaton = attr.ib(repr=False)
method = attr.ib()
symbol = attr.ib(repr=False)
- collectors = attr.ib(def... | Exclude MethodicalInput.collectors from repr |
diff --git a/utxonursery.go b/utxonursery.go
index <HASH>..<HASH> 100644
--- a/utxonursery.go
+++ b/utxonursery.go
@@ -938,7 +938,7 @@ func (u *utxoNursery) createSweepTx(kgtnOutputs []kidOutput,
// sweep.
case lnwallet.HtlcOfferedTimeoutSecondLevel:
weightEstimate.AddWitnessInput(
- lnwallet.OfferedHtlcTi... | utxonursery: use proper weight estimation for second-level spends |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -8,7 +8,15 @@ import {ensureHTMLTemplateElement} from './html-template-element';
import {ensureElementMatches} from './element-matches';
import {ensureClassList} from './class-list';
+let isInitialized = fa... | fix(all): ensure initialization happens only once |
diff --git a/includes/class-github-api.php b/includes/class-github-api.php
index <HASH>..<HASH> 100644
--- a/includes/class-github-api.php
+++ b/includes/class-github-api.php
@@ -138,7 +138,7 @@ class GitHub_Updater_GitHub_API {
preg_match( '/^[ \t\/*#@]*Version\:\s*(.*)$/im', base64_decode( $remote->content ), $mat... | trim line endings from remote_version |
diff --git a/tcpport.js b/tcpport.js
index <HASH>..<HASH> 100644
--- a/tcpport.js
+++ b/tcpport.js
@@ -83,7 +83,8 @@ TcpPort.prototype.write = function (data) {
var buffer = new Buffer(data.length + 6 - 2);
buffer.writeUInt16BE(1, 0);
buffer.writeUInt16BE(0, 2);
- buffer.writeUInt16BE(data.length, 4);... | fix mbap payload length
Even though it's not copied to the payload, data already includes the CRC. This leads to an invalid payload length in the MBAP header. |
diff --git a/src/Symfony/Components/DependencyInjection/Loader/Extension/SymfonyTemplatingExtension.php b/src/Symfony/Components/DependencyInjection/Loader/Extension/SymfonyTemplatingExtension.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Components/DependencyInjection/Loader/Extension/SymfonyTemplatingExtension.ph... | [DependencyInjection] allowed to disabled the helpers in the templating extension |
diff --git a/packages/ream/vue-app/get-before-resolve.js b/packages/ream/vue-app/get-before-resolve.js
index <HASH>..<HASH> 100644
--- a/packages/ream/vue-app/get-before-resolve.js
+++ b/packages/ream/vue-app/get-before-resolve.js
@@ -6,7 +6,7 @@ import { getServerPreloadPath } from 'ream/dist/runtime-utils'
* @param... | Fix beforeResolve (#<I>) |
diff --git a/lib/reference/keywordSets.js b/lib/reference/keywordSets.js
index <HASH>..<HASH> 100644
--- a/lib/reference/keywordSets.js
+++ b/lib/reference/keywordSets.js
@@ -642,6 +642,7 @@ keywordSets.atRules = uniteSets(keywordSets.pageMarginAtRules, [
'font-feature-values',
'import',
'keyframes',
+ 'layer',
... | Fix `at-rule-no-unknown` false positives for `@layer` (#<I>) |
diff --git a/lib/itamae/handler.rb b/lib/itamae/handler.rb
index <HASH>..<HASH> 100644
--- a/lib/itamae/handler.rb
+++ b/lib/itamae/handler.rb
@@ -1,5 +1,4 @@
require 'itamae/handler/base'
-require 'itamae/handler/debug'
module Itamae
module Handler | Do not require handler/debug explicitly. |
diff --git a/plugins/commands/serve/mappers.rb b/plugins/commands/serve/mappers.rb
index <HASH>..<HASH> 100644
--- a/plugins/commands/serve/mappers.rb
+++ b/plugins/commands/serve/mappers.rb
@@ -249,6 +249,10 @@ module VagrantPlugins
end
logger.debug("map of #{value.class} to #{to.nil? ? 'unknown' : t... | Log error and stacktrace on mapping errors |
diff --git a/datumbox-framework-core/src/main/java/com/datumbox/framework/core/machinelearning/modelselection/splitters/ShuffleSplitter.java b/datumbox-framework-core/src/main/java/com/datumbox/framework/core/machinelearning/modelselection/splitters/ShuffleSplitter.java
index <HASH>..<HASH> 100644
--- a/datumbox-framew... | Change return type on ShuffleSplitter. |
diff --git a/src/Admin42/Permission/Rbac/Identity/IdentityRoleProvider.php b/src/Admin42/Permission/Rbac/Identity/IdentityRoleProvider.php
index <HASH>..<HASH> 100644
--- a/src/Admin42/Permission/Rbac/Identity/IdentityRoleProvider.php
+++ b/src/Admin42/Permission/Rbac/Identity/IdentityRoleProvider.php
@@ -9,7 +9,7 @@
... | reverted change - why was this changed anyways? |
diff --git a/src/navigation-plan.js b/src/navigation-plan.js
index <HASH>..<HASH> 100644
--- a/src/navigation-plan.js
+++ b/src/navigation-plan.js
@@ -41,6 +41,8 @@ export function buildNavigationPlan(navigationContext, forceLifecycleMinimum) {
//TODO: should we tell them if the parent had a lifecycle min cha... | feat(navigation-plan): enable configuring the activationStrategy on the route config instead of the view model |
diff --git a/internal/pipeline/pipeline.go b/internal/pipeline/pipeline.go
index <HASH>..<HASH> 100644
--- a/internal/pipeline/pipeline.go
+++ b/internal/pipeline/pipeline.go
@@ -37,10 +37,10 @@ type Piper interface {
// BuildPipeline contains all build-related pipe implementations in order
// nolint:gochecknoglobals... | feat(pipeline): change the pipeline order to support additional template variables in the before pipe (#<I>)
This change allows us to use all the template variables in the named templates in the before hook.
Issue: GH-<I> |
diff --git a/lib/crash_reporter.rb b/lib/crash_reporter.rb
index <HASH>..<HASH> 100644
--- a/lib/crash_reporter.rb
+++ b/lib/crash_reporter.rb
@@ -1,5 +1,6 @@
require 'crash_reporter/version'
require 'crash_reporter/configure'
+require 'crash_reporter/dsl'
module CrashReporter
class << self | include dsl in the main requires |
diff --git a/src/main/java/com/hubspot/jinjava/objects/collections/PyMap.java b/src/main/java/com/hubspot/jinjava/objects/collections/PyMap.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/hubspot/jinjava/objects/collections/PyMap.java
+++ b/src/main/java/com/hubspot/jinjava/objects/collections/PyMap.java
@@ -6... | fixed pymap post rever revert |
diff --git a/lib/dm-core/query.rb b/lib/dm-core/query.rb
index <HASH>..<HASH> 100644
--- a/lib/dm-core/query.rb
+++ b/lib/dm-core/query.rb
@@ -486,10 +486,10 @@ module DataMapper
#
# @api semipublic
def filter_records(records)
- records = records.uniq if unique?
- records = match_records(record... | Updated Query#filter_records to have guard clauses for each method it calls |
diff --git a/test/cli/test_run.py b/test/cli/test_run.py
index <HASH>..<HASH> 100644
--- a/test/cli/test_run.py
+++ b/test/cli/test_run.py
@@ -17,6 +17,7 @@ from nameko.constants import (
from nameko.exceptions import CommandError
from nameko.runners import ServiceRunner
from nameko.standalone.rpc import ClusterRpcP... | use waiter rather than sleeping for runner to come up |
diff --git a/scout/server/links.py b/scout/server/links.py
index <HASH>..<HASH> 100644
--- a/scout/server/links.py
+++ b/scout/server/links.py
@@ -420,7 +420,7 @@ def ensembl_link(variant_obj, build=37):
"""Compose (sv) variant link to ensembl"""
my_end = variant_obj["end"]
- if variant_obj["chromosome"]... | fix missing end_chrom key when creating links |
diff --git a/mod/quiz/format.php b/mod/quiz/format.php
index <HASH>..<HASH> 100644
--- a/mod/quiz/format.php
+++ b/mod/quiz/format.php
@@ -148,6 +148,13 @@ class quiz_default_format {
// Export functions
+ function export_file_extension() {
+ /// return the files extension appropriate for this type
+ /// ... | Changed export part so that export file extension can be changed
by overriding export_file_extension() method |
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index <HASH>..<HASH> 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -19,7 +19,7 @@ puts "[CruiseControl] Rails build"
build_results = {}
# Install required version of bundler.
-bundler_install_cmd = "gem install bundler -v 0.9.3 --no-ri --no-rdoc"
+bundler_install_c... | Have CI use the current version of bundler |
diff --git a/src/plone/app/mosaic/browser/static/js/mosaic.layout.js b/src/plone/app/mosaic/browser/static/js/mosaic.layout.js
index <HASH>..<HASH> 100644
--- a/src/plone/app/mosaic/browser/static/js/mosaic.layout.js
+++ b/src/plone/app/mosaic/browser/static/js/mosaic.layout.js
@@ -1143,11 +1143,11 @@ define([
... | Comment failing plone.notify call, because missing notify framework |
diff --git a/src/test/java/edu/jhu/pacaya/util/JUnitUtils.java b/src/test/java/edu/jhu/pacaya/util/JUnitUtils.java
index <HASH>..<HASH> 100644
--- a/src/test/java/edu/jhu/pacaya/util/JUnitUtils.java
+++ b/src/test/java/edu/jhu/pacaya/util/JUnitUtils.java
@@ -57,4 +57,22 @@ public class JUnitUtils {
}
}
... | Bug fix: NerEvaluator wasn't correctly evaluating conlleval style F1 on chunks |
diff --git a/barcode/ean.py b/barcode/ean.py
index <HASH>..<HASH> 100755
--- a/barcode/ean.py
+++ b/barcode/ean.py
@@ -41,6 +41,9 @@ class EuropeanArticleNumber13(Barcode):
ean = ean[:self.digits]
if not ean.isdigit():
raise IllegalCharacterError('EAN code can only contain numbers.')
+ ... | Adding the same length check and exception as for PZN. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -173,7 +173,7 @@ prototype._flush = function (callback) {
if (missingBytes !== 0) {
var error = new Error('incomplete blob')
error.incomplete = true
- error.missingBytes = this.missingBytes
+ error.missingBy... | Fix missing bytes properties of error objects |
diff --git a/activemodel/test/cases/railtie_test.rb b/activemodel/test/cases/railtie_test.rb
index <HASH>..<HASH> 100644
--- a/activemodel/test/cases/railtie_test.rb
+++ b/activemodel/test/cases/railtie_test.rb
@@ -5,10 +5,10 @@ class RailtieTest < ActiveModel::TestCase
include ActiveSupport::Testing::Isolation
... | Require active_model/railtie directly instead of rails/all
Use Class.new with a block instead of tap to configure it. |
diff --git a/src/imageTools/freehand.js b/src/imageTools/freehand.js
index <HASH>..<HASH> 100755
--- a/src/imageTools/freehand.js
+++ b/src/imageTools/freehand.js
@@ -170,13 +170,12 @@ function mouseMoveCallback (e) {
data.highlight = true;
data.handles[currentHandle].x = config.mouseLocation.handles.start.x;... | Fixed first two points line stuck to old position upon shape modification (#<I>) |
diff --git a/tests/cysqlite.py b/tests/cysqlite.py
index <HASH>..<HASH> 100644
--- a/tests/cysqlite.py
+++ b/tests/cysqlite.py
@@ -114,10 +114,6 @@ class TestCySqliteHelpers(CyDatabaseTestCase):
('DELETE', 'main', 'register', 2)])
def test_properties(self):
- mem_used, mem_high = self.databas... | Remove tests that may fail due to compiler flags. |
diff --git a/astropy_helpers/tests/test_setup_helpers.py b/astropy_helpers/tests/test_setup_helpers.py
index <HASH>..<HASH> 100644
--- a/astropy_helpers/tests/test_setup_helpers.py
+++ b/astropy_helpers/tests/test_setup_helpers.py
@@ -246,7 +246,7 @@ def test_missing_cython_c_files(capsys, pyx_extension_test_package,
... | Added test of --parallel option |
diff --git a/openquake/hazardlib/shakemap/gmfs.py b/openquake/hazardlib/shakemap/gmfs.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/shakemap/gmfs.py
+++ b/openquake/hazardlib/shakemap/gmfs.py
@@ -19,7 +19,7 @@
import math
import logging
import numpy
-from scipy.stats import truncnorm, norm
+from scipy.sta... | Added warning for invalid IMTs in ShakeMaps |
diff --git a/src/Utils/Formatter.php b/src/Utils/Formatter.php
index <HASH>..<HASH> 100644
--- a/src/Utils/Formatter.php
+++ b/src/Utils/Formatter.php
@@ -488,7 +488,7 @@ class Formatter
// Finishing the line.
if ($lineEnded) {
$ret .= $this->options['line_ending']... | Fix uncaught TypeError with CASE Statement
Related to #<I> |
diff --git a/salt/states/boto_lambda.py b/salt/states/boto_lambda.py
index <HASH>..<HASH> 100644
--- a/salt/states/boto_lambda.py
+++ b/salt/states/boto_lambda.py
@@ -508,6 +508,13 @@ def _function_code_present(
)["function"]
update = False
if ZipFile:
+ if '://' in ZipFile: # Looks like a remote... | INFRA-<I> - allow boto_lambda.function_present() to support remote URLs for ZipFile param |
diff --git a/profile.go b/profile.go
index <HASH>..<HASH> 100644
--- a/profile.go
+++ b/profile.go
@@ -21,7 +21,7 @@ type Profile struct {
// GetProfile fetches the recipient's profile from facebook platform
// Non empty UserID has to be specified in order to receive the information
func (m *Messenger) GetProfile(us... | Changed field name from profile_pic to picture
Got an error using profile_pic "(#<I>) Tried accessing nonexisting field (profile_pic) on node type (User)" while picture is working |
diff --git a/storage/io/src/test/java/org/openscience/cdk/io/cml/JmolTest.java b/storage/io/src/test/java/org/openscience/cdk/io/cml/JmolTest.java
index <HASH>..<HASH> 100644
--- a/storage/io/src/test/java/org/openscience/cdk/io/cml/JmolTest.java
+++ b/storage/io/src/test/java/org/openscience/cdk/io/cml/JmolTest.java
@... | Ignore this old test; this convention is not used anymore, AFAIK
Change-Id: I<I>ea<I>a<I>cce<I>f<I>aac1c4e<I>ebabcaa2c |
diff --git a/git/test/test_base.py b/git/test/test_base.py
index <HASH>..<HASH> 100644
--- a/git/test/test_base.py
+++ b/git/test/test_base.py
@@ -5,6 +5,7 @@
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
import os
+import sys
import t... | BF: skip unicode filename test in env not supporting unicode encodings |
diff --git a/buildbot/status/tinderbox.py b/buildbot/status/tinderbox.py
index <HASH>..<HASH> 100644
--- a/buildbot/status/tinderbox.py
+++ b/buildbot/status/tinderbox.py
@@ -172,7 +172,7 @@ class TinderboxMailNotifier(mail.MailNotifier):
text += "%s build: %s\n" % (t, self.columnName)
elif isinst... | axel-tinderbox-fix.patch
Fix by Axel Hecht <l<I><EMAIL>> to a regression in tinderbox |
diff --git a/src/vis/vis.js b/src/vis/vis.js
index <HASH>..<HASH> 100644
--- a/src/vis/vis.js
+++ b/src/vis/vis.js
@@ -554,13 +554,6 @@ var Vis = cdb.core.View.extend({
}
this._setLayerOptions(options);
- if (this.mobile_enabled) {
- if (options.legends === undefined) {
- options.legends = th... | load the mobile overlay after generating the slides |
diff --git a/lib/parser.js b/lib/parser.js
index <HASH>..<HASH> 100644
--- a/lib/parser.js
+++ b/lib/parser.js
@@ -338,6 +338,7 @@ Parser.prototype = {
case 'conditional':
case 'keyframe':
case 'function':
+ case 'media':
case 'for':
switch (type) {
... | Fixed support for * selector within @media block |
diff --git a/src/Rules/Classes/AccessStaticPropertiesRule.php b/src/Rules/Classes/AccessStaticPropertiesRule.php
index <HASH>..<HASH> 100644
--- a/src/Rules/Classes/AccessStaticPropertiesRule.php
+++ b/src/Rules/Classes/AccessStaticPropertiesRule.php
@@ -32,7 +32,11 @@ class AccessStaticPropertiesRule implements \PHPSt... | Fixed checking access to static properties with dynamic name |
diff --git a/src/de/lmu/ifi/dbs/elki/KDDTask.java b/src/de/lmu/ifi/dbs/elki/KDDTask.java
index <HASH>..<HASH> 100644
--- a/src/de/lmu/ifi/dbs/elki/KDDTask.java
+++ b/src/de/lmu/ifi/dbs/elki/KDDTask.java
@@ -110,6 +110,11 @@ public class KDDTask<O extends DatabaseObject> extends AbstractApplication {
* Output handle... | Give access to the result of an Algorithm running within a KDDTask |
diff --git a/lib/pdk.rb b/lib/pdk.rb
index <HASH>..<HASH> 100644
--- a/lib/pdk.rb
+++ b/lib/pdk.rb
@@ -1,12 +1,20 @@
-require 'pdk/analytics'
-require 'pdk/answer_file'
-require 'pdk/config'
-require 'pdk/generate'
require 'pdk/i18n'
require 'pdk/logger'
-require 'pdk/report'
-require 'pdk/validate'
-require 'pdk/ver... | (maint) Convert base requires to autoloads |
diff --git a/lib/twilio-ruby/rest/pricing/countries.rb b/lib/twilio-ruby/rest/pricing/countries.rb
index <HASH>..<HASH> 100644
--- a/lib/twilio-ruby/rest/pricing/countries.rb
+++ b/lib/twilio-ruby/rest/pricing/countries.rb
@@ -1,7 +1,7 @@
module Twilio
module REST
module Pricing
- class Countries < ListRe... | Switch Pricing resources to next-gen lists |
diff --git a/lib/mongo_mapper/query.rb b/lib/mongo_mapper/query.rb
index <HASH>..<HASH> 100644
--- a/lib/mongo_mapper/query.rb
+++ b/lib/mongo_mapper/query.rb
@@ -79,7 +79,11 @@ module MongoMapper
key = normalized_key(key.field)
end
- criteria[key] = normalized_value(key, value)
+ ... | Allow multiple symbol operators on the same field |
diff --git a/media_tree/templatetags/media_tree_thumbnail.py b/media_tree/templatetags/media_tree_thumbnail.py
index <HASH>..<HASH> 100644
--- a/media_tree/templatetags/media_tree_thumbnail.py
+++ b/media_tree/templatetags/media_tree_thumbnail.py
@@ -295,4 +295,3 @@ def thumbnail(parser, token):
return ThumbnailNo... | Update media_tree_thumbnail.py |
diff --git a/spec/deploy_hook_spec.rb b/spec/deploy_hook_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/deploy_hook_spec.rb
+++ b/spec/deploy_hook_spec.rb
@@ -194,7 +194,7 @@ describe "the deploy-hook API" do
it "returns a brief problem description for hook files containing valid Ruby syntax" do
hook_path =... | Fix deploy hook test broken by pull request merge. |
diff --git a/io/eolearn/io/sentinelhub_service.py b/io/eolearn/io/sentinelhub_service.py
index <HASH>..<HASH> 100644
--- a/io/eolearn/io/sentinelhub_service.py
+++ b/io/eolearn/io/sentinelhub_service.py
@@ -96,6 +96,10 @@ class SentinelHubOGCInput(EOTask):
return 1.0
if name == 'time_difference':
... | Bug fix: size_x or size_y can be None when making the very first request. |
diff --git a/lib/sensu/io.rb b/lib/sensu/io.rb
index <HASH>..<HASH> 100644
--- a/lib/sensu/io.rb
+++ b/lib/sensu/io.rb
@@ -68,7 +68,7 @@ module Sensu
if wait_on_group
wait_on_process_group(process.pid)
end
- [output, status.exited? ? status.exitstatus : 2]
+ [output, status.ex... | exited?() can let nil exit statuses through |
diff --git a/pkg/tsdb/loki/loki.go b/pkg/tsdb/loki/loki.go
index <HASH>..<HASH> 100644
--- a/pkg/tsdb/loki/loki.go
+++ b/pkg/tsdb/loki/loki.go
@@ -141,10 +141,12 @@ func (s *Service) QueryData(ctx context.Context, req *backend.QueryDataRequest)
span.SetTag("stop_unixnano", query.End.UnixNano())
defer span.Finish... | loki: alerting: simplified config (#<I>)
* loki: alerting: simplified config
* adjusted config handling |
diff --git a/core/typechecker/src/test/java/org/overture/typechecker/tests/external/ExternalClassesRtTypeCheckTest.java b/core/typechecker/src/test/java/org/overture/typechecker/tests/external/ExternalClassesRtTypeCheckTest.java
index <HASH>..<HASH> 100644
--- a/core/typechecker/src/test/java/org/overture/typechecker/t... | fixing the path for the RT files |
diff --git a/asammdf/mdf.py b/asammdf/mdf.py
index <HASH>..<HASH> 100644
--- a/asammdf/mdf.py
+++ b/asammdf/mdf.py
@@ -2,7 +2,7 @@
""" common MDF file format module """
import csv
-from datetime import datetime
+from datetime import datetime, timezone
import logging
import xml.etree.ElementTree as ET
from collec... | handle mixed local time and utc time |
diff --git a/test/test_list.rb b/test/test_list.rb
index <HASH>..<HASH> 100644
--- a/test/test_list.rb
+++ b/test/test_list.rb
@@ -3,8 +3,17 @@
require "minitest/autorun"
require "dreck"
+# Tests for list results.
class DreckListTest < Minitest::Test
- # Tests for list results.
+ def test_list_bad_count
+ # r... | test: Add test for BadCountError |
diff --git a/lib/tri/table/__init__.py b/lib/tri/table/__init__.py
index <HASH>..<HASH> 100644
--- a/lib/tri/table/__init__.py
+++ b/lib/tri/table/__init__.py
@@ -241,15 +241,12 @@ class Column(RefinableObject):
return bound_column
- EVALUATED_ATTRIBUTES = [
- 'after', 'attr', 'auto_rowspan', 'bu... | Removed EVALUATED_MEMBERS |
diff --git a/packages/openneuro-server/src/graphql/resolvers/dataset-search.js b/packages/openneuro-server/src/graphql/resolvers/dataset-search.js
index <HASH>..<HASH> 100644
--- a/packages/openneuro-server/src/graphql/resolvers/dataset-search.js
+++ b/packages/openneuro-server/src/graphql/resolvers/dataset-search.js
@... | fix(search): Limit the basic search to public datasets |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ def check_setuptools():
check_setuptools()
setup(name='instana',
- version='1.8.1',
+ version='1.8.2',
download_url='https://github.com/instana/python-sensor',
url='https://www.instan... | Bump package version to <I> |
diff --git a/polysquarelinter/lint_spelling_only.py b/polysquarelinter/lint_spelling_only.py
index <HASH>..<HASH> 100644
--- a/polysquarelinter/lint_spelling_only.py
+++ b/polysquarelinter/lint_spelling_only.py
@@ -122,7 +122,7 @@ def main(arguments=None): # suppress(unused-function)
num_errors = 0
for found... | polysquarelinter: Read as binary |
diff --git a/tests/unit/phpDocumentor/Parser/Middleware/EmittingMiddlewareTest.php b/tests/unit/phpDocumentor/Parser/Middleware/EmittingMiddlewareTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/phpDocumentor/Parser/Middleware/EmittingMiddlewareTest.php
+++ b/tests/unit/phpDocumentor/Parser/Middleware/EmittingMidd... | Re-set Dispatcher for EmittingMiddleware test |
diff --git a/molecule/core.py b/molecule/core.py
index <HASH>..<HASH> 100644
--- a/molecule/core.py
+++ b/molecule/core.py
@@ -189,7 +189,7 @@ class Molecule(object):
:return: None
"""
- inventory = ''
+ inventory = '[all]\n'
for instance in self.driver.instances:
... | Added ungrouped hosts under all (#<I>)
This works around an Ansible <I> bug [1].
[1] <URL> |
diff --git a/src/pylast/__init__.py b/src/pylast/__init__.py
index <HASH>..<HASH> 100644
--- a/src/pylast/__init__.py
+++ b/src/pylast/__init__.py
@@ -1798,9 +1798,14 @@ class Artist(_Taggable):
else:
params = None
- return self._extract_cdata_from_request(
- self.ws_prefix + "... | Last.fm now even skips an empty <content/> when no bio |
diff --git a/subconvert/subparser/FrameTime.py b/subconvert/subparser/FrameTime.py
index <HASH>..<HASH> 100644
--- a/subconvert/subparser/FrameTime.py
+++ b/subconvert/subparser/FrameTime.py
@@ -63,11 +63,21 @@ class FrameTime(object):
'miliseconds': self.miliseconds
})
- def getTimeStr(self)... | Added changing FPS to FrameTime interface |
diff --git a/python/ccxt/bitmex.py b/python/ccxt/bitmex.py
index <HASH>..<HASH> 100644
--- a/python/ccxt/bitmex.py
+++ b/python/ccxt/bitmex.py
@@ -245,7 +245,10 @@ class bitmex (Exchange):
# why the hassle? urlencode in python is kinda broken for nested dicts.
# E.g. self.urlencode({"filter": {"open":... | Fix bitmex fetch_orders functions
fix fetch_orders and fetch_closed_orders cause they do not set a filter key by default. |
diff --git a/bbs/task_bbs/convergence.go b/bbs/task_bbs/convergence.go
index <HASH>..<HASH> 100644
--- a/bbs/task_bbs/convergence.go
+++ b/bbs/task_bbs/convergence.go
@@ -29,7 +29,11 @@ type compareAndSwappableTask struct {
NewTask models.Task
}
-func (bbs *TaskBBS) ConvergeTasks(logger lager.Logger, expirePendin... | Make function signature multi-line for readability |
diff --git a/test/e2e/federated-service.go b/test/e2e/federated-service.go
index <HASH>..<HASH> 100644
--- a/test/e2e/federated-service.go
+++ b/test/e2e/federated-service.go
@@ -214,6 +214,11 @@ func waitForFederatedServiceShard(cs *release_1_3.Clientset, namespace string, s
if numSvcs > 0 && service != nil {
// ... | Clear ClusterIP in the local service before comparison. |
diff --git a/haproxy/main.py b/haproxy/main.py
index <HASH>..<HASH> 100644
--- a/haproxy/main.py
+++ b/haproxy/main.py
@@ -157,7 +157,7 @@ def print_commands():
description = eval('dummy_log_file.cmd_{0}.__doc__'.format(cmd))
if description:
description = re.sub(r'\n\s+', ' ', description... | strip() returns a new string
It must be assigned to a variable. |
diff --git a/tests/test_core.py b/tests/test_core.py
index <HASH>..<HASH> 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -123,6 +123,9 @@ class TestResource:
user = User()
assert repr(user) == '<mysite.User: foo>'
+ del User.__str__
+ assert repr(user) == '<mysite.User: [n... | test rebustness of session, resource repr |
diff --git a/lib/createTask.js b/lib/createTask.js
index <HASH>..<HASH> 100644
--- a/lib/createTask.js
+++ b/lib/createTask.js
@@ -78,6 +78,7 @@ var plugins = {
, wrapper : require('./plugins/wrapper')
, log : require('./plugins/logger')
, compress : require('./plugins/compressor')
+ , preprocess : require('./plu... | Added preprocessor support scss for now hot fix |
diff --git a/lib/listen/silencer.rb b/lib/listen/silencer.rb
index <HASH>..<HASH> 100644
--- a/lib/listen/silencer.rb
+++ b/lib/listen/silencer.rb
@@ -34,6 +34,9 @@ module Listen
| \.swpx
| ^4913
+ # Emacs backup/swap files
+ | (?:\.\#.+|\#.+\#)
+
# Sed temporary files - but without act... | Ignore emacs backup/swap files by default. |
diff --git a/lib/jellyfish/swagger.rb b/lib/jellyfish/swagger.rb
index <HASH>..<HASH> 100644
--- a/lib/jellyfish/swagger.rb
+++ b/lib/jellyfish/swagger.rb
@@ -5,9 +5,8 @@ module Jellyfish
class Swagger
include Jellyfish
controller_include Jellyfish::NormalizedPath, Module.new{
- def block_call argumen... | swagger: use dispatch and do not add cors headers by default
remove Access-Control-Allow-Origin by default |
diff --git a/core/sdk/src/main/java/com/mongodb/stitch/core/auth/internal/CoreStitchAuth.java b/core/sdk/src/main/java/com/mongodb/stitch/core/auth/internal/CoreStitchAuth.java
index <HASH>..<HASH> 100644
--- a/core/sdk/src/main/java/com/mongodb/stitch/core/auth/internal/CoreStitchAuth.java
+++ b/core/sdk/src/main/java... | Throw if not logged in for stream request |
diff --git a/src/emailjs-imap-client.js b/src/emailjs-imap-client.js
index <HASH>..<HASH> 100644
--- a/src/emailjs-imap-client.js
+++ b/src/emailjs-imap-client.js
@@ -1095,6 +1095,11 @@
value: sequence
}]
};
+
+ if (options.valueAsString !== undefined) {
+ comman... | Added valueAsString to the fetch command. |
diff --git a/auto_ml/utils.py b/auto_ml/utils.py
index <HASH>..<HASH> 100644
--- a/auto_ml/utils.py
+++ b/auto_ml/utils.py
@@ -15,13 +15,19 @@ import scipy
import xgboost as xgb
-def split_output(X, output_column_name):
+def split_output(X, output_column_name, verbose=False):
y = []
for row in X:
... | adds some logging for our output values just so the user can catch any outliers |
diff --git a/cake/libs/model/datasources/dbo_source.php b/cake/libs/model/datasources/dbo_source.php
index <HASH>..<HASH> 100755
--- a/cake/libs/model/datasources/dbo_source.php
+++ b/cake/libs/model/datasources/dbo_source.php
@@ -515,7 +515,7 @@ class DboSource extends DataSource {
* @return integer Number of rows i... | Removed the unused var. |
diff --git a/lib/qprompt.py b/lib/qprompt.py
index <HASH>..<HASH> 100644
--- a/lib/qprompt.py
+++ b/lib/qprompt.py
@@ -289,10 +289,10 @@ def ask(msg="Enter input", fmt=None, dft=None, vld=None, shw=True, blk=False):
msg += " [%s]" % (dft if type(dft) is str else repr(dft))
vld.append(dft)
if vld:... | Minor update to how blk is handled in ask. |
diff --git a/spec/unit/validation_errors/enumerable_spec.rb b/spec/unit/validation_errors/enumerable_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/validation_errors/enumerable_spec.rb
+++ b/spec/unit/validation_errors/enumerable_spec.rb
@@ -16,7 +16,8 @@ describe DataMapper::Validate::ValidationErrors do
... | [dm-validations] Hash enumeration does not guarantee order of iteration, update spec examples |
diff --git a/openhtf/io/frontend/__init__.py b/openhtf/io/frontend/__init__.py
index <HASH>..<HASH> 100644
--- a/openhtf/io/frontend/__init__.py
+++ b/openhtf/io/frontend/__init__.py
@@ -338,7 +338,7 @@ class WebGuiServer(tornado.web.Application):
] + dash_router.urls + station_router.urls
super(WebGuiServer,... | Fix a small bug that prevents the frontend from running. (#<I>) |
diff --git a/asammdf/mdf.py b/asammdf/mdf.py
index <HASH>..<HASH> 100644
--- a/asammdf/mdf.py
+++ b/asammdf/mdf.py
@@ -3452,7 +3452,7 @@ class MDF(object):
else:
index = msg_map[entry]
- sigs = [(t, None)]
+ ... | fix can extraction for OBD2 muxed signals |
diff --git a/core/packet.go b/core/packet.go
index <HASH>..<HASH> 100644
--- a/core/packet.go
+++ b/core/packet.go
@@ -32,7 +32,7 @@ func (p Packet) DevAddr() (lorawan.DevAddr, error) {
}
// FCnt returns the frame counter of the given packet
-func (p Packet) Fcnt() (uint16, error) {
+func (p Packet) Fcnt() (uint32,... | brocaar/lorawan changed FCnt to uint<I> |
diff --git a/fcrepo-kernel/src/main/java/org/fcrepo/spring/ModeShapeRepositoryFactoryBean.java b/fcrepo-kernel/src/main/java/org/fcrepo/spring/ModeShapeRepositoryFactoryBean.java
index <HASH>..<HASH> 100644
--- a/fcrepo-kernel/src/main/java/org/fcrepo/spring/ModeShapeRepositoryFactoryBean.java
+++ b/fcrepo-kernel/src/m... | make sure to log-out our repository initialization session |
diff --git a/fulfil_client/client.py b/fulfil_client/client.py
index <HASH>..<HASH> 100755
--- a/fulfil_client/client.py
+++ b/fulfil_client/client.py
@@ -96,7 +96,8 @@ class Model(object):
def __getattr__(self, name):
@json_response
def proxy_method(*args, **kwargs):
- context = kwarg... | Update existing context for requests
While this was the behavior on the the get request
it seems to have been forgotten on the context for
geenric method handler. |
diff --git a/choix/utils.py b/choix/utils.py
index <HASH>..<HASH> 100644
--- a/choix/utils.py
+++ b/choix/utils.py
@@ -358,7 +358,7 @@ def compare(items, params, rank=False):
def probabilities(items, params):
- """Compute the comparison outcome probabilities.
+ """Compute the comparison outcome probabilities... | Improved dosctring for `probabilities`.
The docstring of the function `probabilities` was a little bit too
minimalistic. Now it states more clearly that it computes the distribution for
the subset of items passed as argument. |
diff --git a/src/gitgraph.js b/src/gitgraph.js
index <HASH>..<HASH> 100644
--- a/src/gitgraph.js
+++ b/src/gitgraph.js
@@ -78,7 +78,8 @@
break;
default:
this.orientation = "vertical";
- this.template.branch.labelRotation = options.template.branch !== undefined &&
+
+ this.template.branch.l... | Added utility function to check for undefined values in nested object properties. |
diff --git a/Commands/StartCommand.php b/Commands/StartCommand.php
index <HASH>..<HASH> 100644
--- a/Commands/StartCommand.php
+++ b/Commands/StartCommand.php
@@ -32,7 +32,8 @@ class StartCommand extends Command
{
$config = $this->initializeConfig($input, $output);
- $handler = new ProcessManager... | Create ProcessManager from optional factory (#<I>)
* Create ProcessManager from optional factory
* Instantiate user-defined process manager class
* Remove command line option |
diff --git a/wicket-orientdb/src/main/java/ru/ydn/wicket/wicketorientdb/model/ODocumentWrapperModel.java b/wicket-orientdb/src/main/java/ru/ydn/wicket/wicketorientdb/model/ODocumentWrapperModel.java
index <HASH>..<HASH> 100644
--- a/wicket-orientdb/src/main/java/ru/ydn/wicket/wicketorientdb/model/ODocumentWrapperModel.... | Reload() shouldn't cross transation: replace my load() |
diff --git a/Neos.Flow/Classes/Security/Aspect/LoggingAspect.php b/Neos.Flow/Classes/Security/Aspect/LoggingAspect.php
index <HASH>..<HASH> 100644
--- a/Neos.Flow/Classes/Security/Aspect/LoggingAspect.php
+++ b/Neos.Flow/Classes/Security/Aspect/LoggingAspect.php
@@ -15,7 +15,6 @@ namespace Neos\Flow\Security\Aspect;
... | TASK: Use virtual object injection for security logger |
diff --git a/Neos.Flow/Classes/Command/RoutingCommandController.php b/Neos.Flow/Classes/Command/RoutingCommandController.php
index <HASH>..<HASH> 100644
--- a/Neos.Flow/Classes/Command/RoutingCommandController.php
+++ b/Neos.Flow/Classes/Command/RoutingCommandController.php
@@ -143,7 +143,7 @@ class RoutingCommandContr... | BUGFIX: Replace missing getResolvedUriPath |
diff --git a/Kwc/Abstract/Admin.php b/Kwc/Abstract/Admin.php
index <HASH>..<HASH> 100644
--- a/Kwc/Abstract/Admin.php
+++ b/Kwc/Abstract/Admin.php
@@ -67,10 +67,11 @@ class Kwc_Abstract_Admin extends Kwf_Component_Abstract_Admin
$s = array('ignoreVisible'=>true);
foreach ($source->getChildComponents($... | Skip duplicating of unique boxes only for child pages |
diff --git a/public/javascript/pump.js b/public/javascript/pump.js
index <HASH>..<HASH> 100644
--- a/public/javascript/pump.js
+++ b/public/javascript/pump.js
@@ -70,6 +70,12 @@ if (!window.Pump) {
if (Pump.principalUser) {
Pump.principalUser = Pump.User.unique(Pump.principalUser);
Pu... | Initialize nav if user is set by server |
diff --git a/actionpack/lib/action_view/helpers/number_helper.rb b/actionpack/lib/action_view/helpers/number_helper.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_view/helpers/number_helper.rb
+++ b/actionpack/lib/action_view/helpers/number_helper.rb
@@ -100,10 +100,10 @@ module ActionView
# number_... | Cosmetic fix in number_to_currency docs |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.