diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/Illuminate/Support/Str.php b/src/Illuminate/Support/Str.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Support/Str.php +++ b/src/Illuminate/Support/Str.php @@ -123,7 +123,7 @@ class Str { { if (mb_strlen($value) <= $limit) return $value; - return mb_substr($value, 0, $limit, 'UTF-8').$end...
Update Str.php Added rtrim() to remove whitespace between the truncated string and the $end string which is appended.
diff --git a/src/main/java/org/jenkinsci/plugins/pipeline/maven/WithMavenStepExecution.java b/src/main/java/org/jenkinsci/plugins/pipeline/maven/WithMavenStepExecution.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jenkinsci/plugins/pipeline/maven/WithMavenStepExecution.java +++ b/src/main/java/org/jenkinsci/...
Don't check if computer is online.
diff --git a/spyderlib/plugins/__init__.py b/spyderlib/plugins/__init__.py index <HASH>..<HASH> 100644 --- a/spyderlib/plugins/__init__.py +++ b/spyderlib/plugins/__init__.py @@ -32,7 +32,7 @@ from spyderlib.qt.QtGui import (QDockWidget, QWidget, QShortcut, QCursor, # Local imports from spyderlib.utils.qthelpers imp...
Add a method to get the current color scheme to SpyderPluginMixin
diff --git a/test/unit/index.js b/test/unit/index.js index <HASH>..<HASH> 100644 --- a/test/unit/index.js +++ b/test/unit/index.js @@ -14,6 +14,12 @@ describe('StorageService', function() { expect(record).to.be.an.instanceof(RecordService); expect(record.getType()).to.equal('Cat'); }); + it('should create...
test(StorageService): case new record with id
diff --git a/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/VariantAnnotationCommandExecutor.java b/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/VariantAnnotationCommandExecutor.java index <HASH>..<HASH> 100644 --- a/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/VariantAnnotationCommandExecut...
feature/vacache: minor bug fixed at VarianAnnotationCommandExecutor
diff --git a/holoviews/plotting/mpl/renderer.py b/holoviews/plotting/mpl/renderer.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/mpl/renderer.py +++ b/holoviews/plotting/mpl/renderer.py @@ -5,12 +5,13 @@ from tempfile import NamedTemporaryFile from ...core import HoloMap, AdjointLayout -from ...core.optio...
Fixed missing imports required by MPLPlotRenderer
diff --git a/src/Printer.php b/src/Printer.php index <HASH>..<HASH> 100644 --- a/src/Printer.php +++ b/src/Printer.php @@ -52,7 +52,7 @@ class Printer extends \PHPUnit_TextUI_ResultPrinter } /** - * @param string $progress Result of the Test Case => . F S I + * @param string $progress Result of the ...
Added display case for Risky Tests
diff --git a/lib/gcloud/datastore/errors.rb b/lib/gcloud/datastore/errors.rb index <HASH>..<HASH> 100644 --- a/lib/gcloud/datastore/errors.rb +++ b/lib/gcloud/datastore/errors.rb @@ -32,27 +32,6 @@ module Gcloud end ## - # # ApiError - # - # Raised when an API call is not successful. - class Api...
Remove Datastore ApiError This error is no longer needed since the GRPC errors are handled differently.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -73,6 +73,7 @@ var startPlayback = function(pos) { player.playedQueue.push(player.queue[0]); + player.playbackPosition = null; player.playbackStart = null; player.queue[0] = null; ...
set playbackPosition and playbackStart to null at song end
diff --git a/lib/flowlink_data/objectbase.rb b/lib/flowlink_data/objectbase.rb index <HASH>..<HASH> 100644 --- a/lib/flowlink_data/objectbase.rb +++ b/lib/flowlink_data/objectbase.rb @@ -40,7 +40,7 @@ module Flowlink Hash[f_methods.map { |f| [f.method_name.to_s, send(*f.to_a)] }] end - alias_method to_...
alias_method -> alias. alias_method wasn't working
diff --git a/java/src/com/google/template/soy/AbstractSoyCompiler.java b/java/src/com/google/template/soy/AbstractSoyCompiler.java index <HASH>..<HASH> 100644 --- a/java/src/com/google/template/soy/AbstractSoyCompiler.java +++ b/java/src/com/google/template/soy/AbstractSoyCompiler.java @@ -15,7 +15,6 @@ */ package c...
Add the ability to read in CssMetadata protos from []. When they are passed in (the build wiring doesn't exist yet), it takes over what cssRegistry is supposed to do, but otherwise does the same thing functionally. Verifying css() calls is next GITHUB_BREAKING_CHANGES=n/a ------------- Created by MOE: <URL>
diff --git a/lib/cql/version.rb b/lib/cql/version.rb index <HASH>..<HASH> 100644 --- a/lib/cql/version.rb +++ b/lib/cql/version.rb @@ -1,3 +1,3 @@ module CQL - VERSION = '1.3.0' + VERSION = '1.4.0' end
Version bump. Increased the gem version to <I> in preparation for the upcoming release.
diff --git a/suds/cache.py b/suds/cache.py index <HASH>..<HASH> 100644 --- a/suds/cache.py +++ b/suds/cache.py @@ -167,16 +167,6 @@ class FileCache(Cache): log.debug(id, exc_info=1) return data - def setlocation(self, location): - """ - Set the cached file location (folder)....
remove FileCache.setlocation() This method was never used inside suds and if used externally would have caused the cache to use a specific folder but without making sure that the data already stored in it has been prepared for the correct suds version, as done when passing a location parameter to the FileCache constru...
diff --git a/Kwf/Acl.php b/Kwf/Acl.php index <HASH>..<HASH> 100644 --- a/Kwf/Acl.php +++ b/Kwf/Acl.php @@ -291,6 +291,8 @@ class Kwf_Acl extends Zend_Acl */ public function loadKwcResources() { + if (!Kwf_Registry::get('db')) return; //if we don't have a db configured yet skip kwc resources. requ...
if we don't have a db configured yet skip kwc resources required to be able to build assets without db
diff --git a/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java b/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java @@ -373,6 +373,18...
* add new method to update the gravity of the drawer programatically * FIX #<I>
diff --git a/aioworkers/cli.py b/aioworkers/cli.py index <HASH>..<HASH> 100644 --- a/aioworkers/cli.py +++ b/aioworkers/cli.py @@ -66,6 +66,7 @@ def main(*config_files, args=None, config_dirs=(), context.config.search_dirs.extend(config_dirs) plugins = plugin.search_plugins() + plugins.extend(plugin.sear...
Force search plugins from cli.main param
diff --git a/lib/protocol/READ_WRITE_MULTIPLE_REGISTERS.js b/lib/protocol/READ_WRITE_MULTIPLE_REGISTERS.js index <HASH>..<HASH> 100644 --- a/lib/protocol/READ_WRITE_MULTIPLE_REGISTERS.js +++ b/lib/protocol/READ_WRITE_MULTIPLE_REGISTERS.js @@ -1,7 +1,7 @@ var Helpers = require("../Helpers"); var Buff = require("../...
fixes function code for read-write-multiple-registers :(
diff --git a/web/concrete/core/controllers/single_pages/dashboard/system/backup_restore/backup.php b/web/concrete/core/controllers/single_pages/dashboard/system/backup_restore/backup.php index <HASH>..<HASH> 100644 --- a/web/concrete/core/controllers/single_pages/dashboard/system/backup_restore/backup.php +++ b/web/con...
Let's simplify the code a bit Those lines didn't found a way from my head to my hands... ;) Former-commit-id: 6d5aa<I>b<I>af<I>ea<I>cede8e9fc5e
diff --git a/system/Debug/Exceptions.php b/system/Debug/Exceptions.php index <HASH>..<HASH> 100644 --- a/system/Debug/Exceptions.php +++ b/system/Debug/Exceptions.php @@ -461,7 +461,7 @@ class Exceptions $source = array_splice($source, $start, $lines, true); // Used to format the line number in the source - $f...
[ci skip] Fix line numbering in Debug/Exceptions
diff --git a/lib/commands/external.js b/lib/commands/external.js index <HASH>..<HASH> 100644 --- a/lib/commands/external.js +++ b/lib/commands/external.js @@ -39,7 +39,7 @@ class ExternalCommand { const commandToBeRun = `${packageManager} ${options.join(' ')}`; process.cliLogger.error(`The command mov...
chore: Minor code refactor adhering to ES6 semantics (#<I>) * chore: use object destructuring * chore: remove unwanted explicit boolean check * chore: use object destructuring assignment * chore: minor refactor * chore: revert * chore: revert * chore: minor tweak * chore: revert
diff --git a/visidata/editor.py b/visidata/editor.py index <HASH>..<HASH> 100644 --- a/visidata/editor.py +++ b/visidata/editor.py @@ -18,7 +18,7 @@ class SuspendCurses: curses.doupdate() -@visidata.VisiData.api +@visidata.VisiData.global_api def launchEditor(vd, *args): editor = os.environ.get('EDIT...
[editor-] launchEditor is part of global_api
diff --git a/spec/ooor_spec.rb b/spec/ooor_spec.rb index <HASH>..<HASH> 100644 --- a/spec/ooor_spec.rb +++ b/spec/ooor_spec.rb @@ -112,7 +112,7 @@ describe Ooor do end it "should load required models on the fly" do - SaleOrder.find(1).shop_id.should be_kind_of(SaleShop) + ProductProduct.fi...
test fix: no more sale shop model since Odoo <I>
diff --git a/src/Pho/Compiler/Inspector.php b/src/Pho/Compiler/Inspector.php index <HASH>..<HASH> 100644 --- a/src/Pho/Compiler/Inspector.php +++ b/src/Pho/Compiler/Inspector.php @@ -41,34 +41,14 @@ class Inspector /** * Documents all available objects and their methods. + * + * @todo incomplete ...
documentor will be handled by an ext lib. but the arch changes are good to merge
diff --git a/rails/init.rb b/rails/init.rb index <HASH>..<HASH> 100644 --- a/rails/init.rb +++ b/rails/init.rb @@ -1,5 +1,9 @@ -# to_prepare is called before each request in development mode and the first request in production # See http://groups.google.com/group/mongomapper/browse_thread/thread/68f62e8eda43b43a/4841d...
Add more notes for rails/init.rb
diff --git a/tests/supervisors/test_statreload.py b/tests/supervisors/test_statreload.py index <HASH>..<HASH> 100644 --- a/tests/supervisors/test_statreload.py +++ b/tests/supervisors/test_statreload.py @@ -1,6 +1,6 @@ import os import signal -import sys +import time from pathlib import Path import pytest @@ -26,...
More resiliant reload test (#<I>)
diff --git a/server/sonar-main/src/test/java/org/sonar/application/cluster/HazelcastClusterTest.java b/server/sonar-main/src/test/java/org/sonar/application/cluster/HazelcastClusterTest.java index <HASH>..<HASH> 100644 --- a/server/sonar-main/src/test/java/org/sonar/application/cluster/HazelcastClusterTest.java +++ b/s...
Make HazelcastClusterTest more robust.
diff --git a/irclib.py b/irclib.py index <HASH>..<HASH> 100644 --- a/irclib.py +++ b/irclib.py @@ -1358,7 +1358,7 @@ def parse_nick_modes(mode_string): Example: - >>> irclib.parse_nick_modes(\"+ab-c\") + >>> parse_nick_modes(\"+ab-c\") [['+', 'a', None], ['+', 'b', None], ['-', 'c', None]] """ ...
Updated doctests to run
diff --git a/application/tests/_ci_phpunit_test/CIPHPUnitTest.php b/application/tests/_ci_phpunit_test/CIPHPUnitTest.php index <HASH>..<HASH> 100644 --- a/application/tests/_ci_phpunit_test/CIPHPUnitTest.php +++ b/application/tests/_ci_phpunit_test/CIPHPUnitTest.php @@ -57,7 +57,13 @@ class CIPHPUnitTest require_on...
Fix bug that "ob_end_clean(): failed to delete buffer" error occurs when you use @runInSeparateProcess
diff --git a/lib/splitters/s3StreamSplitter.js b/lib/splitters/s3StreamSplitter.js index <HASH>..<HASH> 100644 --- a/lib/splitters/s3StreamSplitter.js +++ b/lib/splitters/s3StreamSplitter.js @@ -35,7 +35,7 @@ class s3StreamSplitter extends StreamSplitter { if (error) { return this._ctx.parent.emit('erro...
switch upload trace log level to debug
diff --git a/lib/Core/Site/QueryType/CriteriaBuilder.php b/lib/Core/Site/QueryType/CriteriaBuilder.php index <HASH>..<HASH> 100644 --- a/lib/Core/Site/QueryType/CriteriaBuilder.php +++ b/lib/Core/Site/QueryType/CriteriaBuilder.php @@ -167,14 +167,18 @@ final class CriteriaBuilder private function buildLogicalNot(C...
Extract method to get rid of else block
diff --git a/manifest.php b/manifest.php index <HASH>..<HASH> 100644 --- a/manifest.php +++ b/manifest.php @@ -32,7 +32,7 @@ return array( 'label' => 'Delivery core extension', 'description' => 'TAO delivery extension manges the administration of the tests', 'license' => 'GPL-2.0', - 'version' => '8.5...
Bump to version <I>
diff --git a/lib/http-api.js b/lib/http-api.js index <HASH>..<HASH> 100644 --- a/lib/http-api.js +++ b/lib/http-api.js @@ -117,13 +117,17 @@ module.exports.MatrixHttpApi.prototype = { clearTimeout(xhr.timeout_timer); if (!xhr.responseText) { - ...
Pass the http status out with the error so upper level can can see what went wrong.
diff --git a/tango/test_context.py b/tango/test_context.py index <HASH>..<HASH> 100644 --- a/tango/test_context.py +++ b/tango/test_context.py @@ -94,7 +94,7 @@ class DeviceTestContext(object): nodb = "dbase=no" command = "{0} {1} -ORBendPoint giop:tcp:{2}:{3} -file={4}" - connect_timeout = 1. + conne...
Increase timeouts for unit-testing
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -2627,6 +2627,17 @@ function authenticate_user_login($username, $password) { } } } + + /// Log in to a second system if necessary + if (!empt...
Added hooks for new SSO capability (Single-Sign-On or Second-Sign-On)
diff --git a/tftp_test.go b/tftp_test.go index <HASH>..<HASH> 100644 --- a/tftp_test.go +++ b/tftp_test.go @@ -202,9 +202,6 @@ func testSendReceive(t *testing.T, client *Client, length int64) { if err != nil { t.Fatalf("requesting write %s: %v", filename, err) } - if ot, ok := writeTransfer.(OutgoingTransfer); o...
cleanup: SetSize does not work on client side
diff --git a/views/v3/partials/sidebar.blade.php b/views/v3/partials/sidebar.blade.php index <HASH>..<HASH> 100644 --- a/views/v3/partials/sidebar.blade.php +++ b/views/v3/partials/sidebar.blade.php @@ -1,9 +1,11 @@ @if(isset($id) && $id) @php do_action('Municipio/sidebar/beforeSidebar', $id); @endphp + @secti...
Add before / after section to all sidebars
diff --git a/protocols/raft/src/main/java/io/atomix/protocols/raft/roles/LeaderAppender.java b/protocols/raft/src/main/java/io/atomix/protocols/raft/roles/LeaderAppender.java index <HASH>..<HASH> 100644 --- a/protocols/raft/src/main/java/io/atomix/protocols/raft/roles/LeaderAppender.java +++ b/protocols/raft/src/main/j...
Wait minimum number of AppendRequest failures before detecting network partition to account for single request timeouts that are longer than the election timeout.
diff --git a/server/const.go b/server/const.go index <HASH>..<HASH> 100644 --- a/server/const.go +++ b/server/const.go @@ -41,7 +41,7 @@ var ( const ( // VERSION is the current version for the server. - VERSION = "2.9.0-RC.6" + VERSION = "2.9.0-RC.7" // PROTO is the currently supported protocol. // 0 was the...
Bump to <I>-RC<I>
diff --git a/bundles/BlockManagerBundle/EventListener/LayoutResolverListener.php b/bundles/BlockManagerBundle/EventListener/LayoutResolverListener.php index <HASH>..<HASH> 100644 --- a/bundles/BlockManagerBundle/EventListener/LayoutResolverListener.php +++ b/bundles/BlockManagerBundle/EventListener/LayoutResolverListen...
Make sure layout resolver listener runs last
diff --git a/builder/vmware/common/driver_config.go b/builder/vmware/common/driver_config.go index <HASH>..<HASH> 100644 --- a/builder/vmware/common/driver_config.go +++ b/builder/vmware/common/driver_config.go @@ -2,6 +2,7 @@ package common import ( "fmt" + "os" "github.com/mitchellh/packer/packer" )
builder/vmware: fix compilation issues
diff --git a/lfs/credentials.go b/lfs/credentials.go index <HASH>..<HASH> 100644 --- a/lfs/credentials.go +++ b/lfs/credentials.go @@ -105,6 +105,9 @@ func getCredURLForAPI(req *http.Request) (*url.URL, error) { func fillCredentials(u *url.URL) (Creds, error) { path := strings.TrimPrefix(u.Path, "/") creds := Cred...
Include the username in the creds call if present This is needed to disambiguate cases where a user has multiple usernames on the same host. Without this the first item will be silently used which might be wrong & cause a loop of incorrect password prompts (& possibly a lockout on the server)
diff --git a/broqer/hub.py b/broqer/hub.py index <HASH>..<HASH> 100644 --- a/broqer/hub.py +++ b/broqer/hub.py @@ -108,7 +108,7 @@ True import asyncio from collections import OrderedDict from types import MappingProxyType -from typing import Any, Optional +from typing import Any, Optional, Dict # noqa: F401 from...
add .meta to every Topic
diff --git a/src/Illuminate/Database/Connection.php b/src/Illuminate/Database/Connection.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Database/Connection.php +++ b/src/Illuminate/Database/Connection.php @@ -658,7 +658,11 @@ class Connection implements ConnectionInterface { { $message = $e->getPrevious()->g...
retry on 'Lost connection' also
diff --git a/tests/changelog.py b/tests/changelog.py index <HASH>..<HASH> 100644 --- a/tests/changelog.py +++ b/tests/changelog.py @@ -108,6 +108,16 @@ class releases(Spec): assert isinstance(entries[0], issue) eq_(entries[0].number, None) + def unreleased_items_go_in_unreleased_release(self): + ...
Test for 'unreleased' entry
diff --git a/gcloud/datastore/test_key.py b/gcloud/datastore/test_key.py index <HASH>..<HASH> 100644 --- a/gcloud/datastore/test_key.py +++ b/gcloud/datastore/test_key.py @@ -19,8 +19,7 @@ class TestKey(unittest2.TestCase): pb.partition_id.namespace = namespace for elem in path: added...
<I>% branch coverage for gcloud.datastore.test_key. Don't worry about path elem w/o kind.
diff --git a/dask_ml/model_selection/utils.py b/dask_ml/model_selection/utils.py index <HASH>..<HASH> 100644 --- a/dask_ml/model_selection/utils.py +++ b/dask_ml/model_selection/utils.py @@ -4,6 +4,7 @@ from distutils.version import LooseVersion import dask import dask.array as da +import dask.dataframe as dd impo...
update indexable() to just yield dask dataframes (issue #<I>) (#<I>) * update indexable() to just yield dask dataframes, as mentioned in issue #<I>
diff --git a/elasticsearch_dsl/filter.py b/elasticsearch_dsl/filter.py index <HASH>..<HASH> 100644 --- a/elasticsearch_dsl/filter.py +++ b/elasticsearch_dsl/filter.py @@ -80,12 +80,9 @@ class Bool(BoolMixin, Filter): if self.should and other.should: selfshould, othershould = self.should[:]...
Cleaner code for filter __and__
diff --git a/src/AbstractContainer.php b/src/AbstractContainer.php index <HASH>..<HASH> 100644 --- a/src/AbstractContainer.php +++ b/src/AbstractContainer.php @@ -456,6 +456,8 @@ abstract class AbstractContainer implements ContainerInterface "Missing required parameter \"$name\" when instantiat...
Added resolving `Closure` dependency
diff --git a/broqer/op/_operator.py b/broqer/op/_operator.py index <HASH>..<HASH> 100644 --- a/broqer/op/_operator.py +++ b/broqer/op/_operator.py @@ -1,3 +1,5 @@ +from abc import ABCMeta, abstractmethod + from broqer import Publisher, Subscriber, SubscriptionDisposable @@ -23,6 +25,10 @@ class Operator(Publisher,...
make get() of Operator and MultiOperator an abstractmethod to prevent wrong usage
diff --git a/src/adapters/pouch.idb.js b/src/adapters/pouch.idb.js index <HASH>..<HASH> 100644 --- a/src/adapters/pouch.idb.js +++ b/src/adapters/pouch.idb.js @@ -354,6 +354,11 @@ var IdbPouch = function(opts, callback) { }); }); } else { + if (doc._attachments){ + f...
Test and fix for removing doc with attachments (via @chendricks)
diff --git a/lib/runner.js b/lib/runner.js index <HASH>..<HASH> 100644 --- a/lib/runner.js +++ b/lib/runner.js @@ -169,14 +169,14 @@ Object.assign(Runner.prototype, { this.builder.emit( 'query-response', postProcessedResponse, - Object.assign({ __knexUid: this.connection.__knexUi...
Make sure query-response and query-error events contain _knexTxId (#<I>)
diff --git a/tests/integration/test_model.py b/tests/integration/test_model.py index <HASH>..<HASH> 100644 --- a/tests/integration/test_model.py +++ b/tests/integration/test_model.py @@ -298,7 +298,7 @@ async def test_add_manual_machine_ssh(event_loop): 'name': test_name, 'source': { ...
use bionic instead of xenial on the added container Fixes #<I>
diff --git a/lib/parser_block.js b/lib/parser_block.js index <HASH>..<HASH> 100644 --- a/lib/parser_block.js +++ b/lib/parser_block.js @@ -109,17 +109,13 @@ ParserBlock.prototype.parse = function (src, options, env) { if (!src) { return ''; } - if (src.indexOf('\r') >= 0) { - src = src.replace(/\r/, ''); - ...
Extended spaces & line breaks normalization
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -387,6 +387,7 @@ function ApostropheSchemas(options, callback) { var results = []; return async.eachSeries(data, function(datum, callback) { var result = {}; + result.id = self._apos.sanitizeId(datum.id) ...
schema properties now have a globally unique id field
diff --git a/src/Mouf/Composer/ComposerService.php b/src/Mouf/Composer/ComposerService.php index <HASH>..<HASH> 100644 --- a/src/Mouf/Composer/ComposerService.php +++ b/src/Mouf/Composer/ComposerService.php @@ -530,6 +530,15 @@ class ComposerService { $moufUiFileWriter = new MoufUIFileWritter($composer); $moufUiF...
Adding method to fetch Composer's config in Composer service.
diff --git a/lib/extract.js b/lib/extract.js index <HASH>..<HASH> 100644 --- a/lib/extract.js +++ b/lib/extract.js @@ -31,16 +31,9 @@ module.exports = function (archive, dest, optionspath, options) { // When a stdout is emitted, parse each line and search for a pattern. When // the pattern is found, extract t...
removed unsupported method check, give error on valid archives created on same host using same binary, seems like a bug to me
diff --git a/lnwallet/channel.go b/lnwallet/channel.go index <HASH>..<HASH> 100644 --- a/lnwallet/channel.go +++ b/lnwallet/channel.go @@ -589,9 +589,6 @@ func createCommitTx(fundingOutput *wire.TxIn, selfKey, theirKey *btcec.PublicKey commitTx := wire.NewMsgTx() commitTx.Version = 2 commitTx.AddTxIn(fundingOutpu...
lnwallet: commit tx should have final sequence num
diff --git a/sirmordred/_version.py b/sirmordred/_version.py index <HASH>..<HASH> 100644 --- a/sirmordred/_version.py +++ b/sirmordred/_version.py @@ -1,2 +1,2 @@ # Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.1.31" +__version__ = "0.1.32"
[release] Update version number to <I>
diff --git a/src/lokijs.js b/src/lokijs.js index <HASH>..<HASH> 100644 --- a/src/lokijs.js +++ b/src/lokijs.js @@ -1472,12 +1472,13 @@ * @memberof LokiFsAdapter */ LokiFsAdapter.prototype.saveDatabase = function saveDatabase(dbname, dbstring, callback) { + var self = this; var tmpdbname = d...
Fixed 'this' scoping in saveDatabase
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -85,7 +85,9 @@ export default function prepareAxios(pageResponse, axiosInstance = null) { return targetAxios.request(newConfig); } else { // return an empty promise instead of making the call...
leave a way to tell if a promise is an empty promise, just in case
diff --git a/contrib/sacrebleu/sacrebleu.py b/contrib/sacrebleu/sacrebleu.py index <HASH>..<HASH> 100755 --- a/contrib/sacrebleu/sacrebleu.py +++ b/contrib/sacrebleu/sacrebleu.py @@ -165,7 +165,7 @@ from collections import Counter, namedtuple from itertools import zip_longest from typing import List, Iterable, Tuple ...
small bugfix (#<I>)
diff --git a/src/cloudant/design_document.py b/src/cloudant/design_document.py index <HASH>..<HASH> 100644 --- a/src/cloudant/design_document.py +++ b/src/cloudant/design_document.py @@ -19,11 +19,12 @@ class DesignDocument(Document): """ def __init__(self, cloudant_database, document_id=None): super...
Fix view manipulation in DesignDocument - Initialize views sub dict
diff --git a/lib/rb-inotify/notifier.rb b/lib/rb-inotify/notifier.rb index <HASH>..<HASH> 100644 --- a/lib/rb-inotify/notifier.rb +++ b/lib/rb-inotify/notifier.rb @@ -270,11 +270,11 @@ module INotify events = [] cookies = {} - while ev = Event.consume(data, self) - events << ev - next...
Rename conflict variable with the following block This commit removes below interpreter warning. * warning: shadowing outer local variable
diff --git a/benchexec/tools/witness2test.py b/benchexec/tools/witness2test.py index <HASH>..<HASH> 100644 --- a/benchexec/tools/witness2test.py +++ b/benchexec/tools/witness2test.py @@ -30,7 +30,7 @@ class Tool(benchexec.tools.template.BaseTool): (https://github.com/diffblue/cprover-sv-comp/pull/14). """ -...
witness2test uses pycparser Although test-gen.sh would take care of downloading it, the container-based set up requires preparation beforehand.
diff --git a/slave/buildslave/bot.py b/slave/buildslave/bot.py index <HASH>..<HASH> 100644 --- a/slave/buildslave/bot.py +++ b/slave/buildslave/bot.py @@ -526,6 +526,7 @@ class BuildSlave(service.MultiService): if not self.bf.perspective: log.msg("No active connection, shutting down NOW") ...
don't assume that reactor.stop doesn't return (it does)
diff --git a/lib/caruby/csv/csvio.rb b/lib/caruby/csv/csvio.rb index <HASH>..<HASH> 100644 --- a/lib/caruby/csv/csvio.rb +++ b/lib/caruby/csv/csvio.rb @@ -1,6 +1,3 @@ -require 'rubygems' -gem 'fastercsv' - require 'fileutils' require 'faster_csv' require 'caruby/util/options'
Don't need gem requires with bundle.
diff --git a/classes/Pods.php b/classes/Pods.php index <HASH>..<HASH> 100644 --- a/classes/Pods.php +++ b/classes/Pods.php @@ -3739,10 +3739,13 @@ class Pods implements Iterator { $field['name'] = trim( $name ); } - $to_merge = pods_v( $field['name'], $all_fields ); + $to_merge = $this->pod_data->get_fie...
Support field aliases in form() and view()
diff --git a/app/services/action_trigger_factory.rb b/app/services/action_trigger_factory.rb index <HASH>..<HASH> 100644 --- a/app/services/action_trigger_factory.rb +++ b/app/services/action_trigger_factory.rb @@ -238,9 +238,10 @@ class ActionTriggerFactory path_messages << c.message(text: "Hi, #{app.name} ...
Update action_trigger_factory.rb skip route support if there is an email
diff --git a/src/Jaspersoft/Service/ReportService.php b/src/Jaspersoft/Service/ReportService.php index <HASH>..<HASH> 100644 --- a/src/Jaspersoft/Service/ReportService.php +++ b/src/Jaspersoft/Service/ReportService.php @@ -89,7 +89,12 @@ class ReportService extends JRSService */ public function getInputContr...
Fix for the case of no parameters.
diff --git a/ucms_site/src/Access.php b/ucms_site/src/Access.php index <HASH>..<HASH> 100644 --- a/ucms_site/src/Access.php +++ b/ucms_site/src/Access.php @@ -53,24 +53,29 @@ final class Access const OP_DELETE = 'delete'; /** + * Request new site permission + */ + const PERM_SITE_REQUEST = 'site ...
site: renamed permissions
diff --git a/builtin/providers/aws/resource_aws_db_subnet_group.go b/builtin/providers/aws/resource_aws_db_subnet_group.go index <HASH>..<HASH> 100644 --- a/builtin/providers/aws/resource_aws_db_subnet_group.go +++ b/builtin/providers/aws/resource_aws_db_subnet_group.go @@ -165,8 +165,9 @@ func resourceAwsDbSubnetGroup...
Add the description as a part of the update request
diff --git a/lib/vcoworkflows/vcosession.rb b/lib/vcoworkflows/vcosession.rb index <HASH>..<HASH> 100644 --- a/lib/vcoworkflows/vcosession.rb +++ b/lib/vcoworkflows/vcosession.rb @@ -7,6 +7,9 @@ require 'rest_client' module VcoWorkflows # VcoSession class VcoSession + + attr_reader :rest_resource + # Ini...
Added accessor to aid unit testing
diff --git a/src/hamster/db.py b/src/hamster/db.py index <HASH>..<HASH> 100644 --- a/src/hamster/db.py +++ b/src/hamster/db.py @@ -479,6 +479,8 @@ class Storage(storage.Storage): WHERE fact_id = ?""" self.execute(tag_update, (new_fact_id, fact["id"])) #clone tags ...
split and no-hands trophies
diff --git a/pydivert/__init__.py b/pydivert/__init__.py index <HASH>..<HASH> 100644 --- a/pydivert/__init__.py +++ b/pydivert/__init__.py @@ -20,7 +20,7 @@ from .packet import Packet from .windivert import WinDivert __author__ = 'fabio' -__version__ = '2.0.7' +__version__ = '2.0.8' if _sys.version_info < (3, 4)...
Something goes wrong on PKG-INFO when encoding is set to UTF-8
diff --git a/test/ReadabilityTest.php b/test/ReadabilityTest.php index <HASH>..<HASH> 100644 --- a/test/ReadabilityTest.php +++ b/test/ReadabilityTest.php @@ -115,6 +115,6 @@ class ReadabilityTest extends \PHPUnit_Framework_TestCase $parser = new Readability(new Configuration()); $this->expectExceptio...
Fix "unable to parse" test case
diff --git a/db/doc.go b/db/doc.go index <HASH>..<HASH> 100644 --- a/db/doc.go +++ b/db/doc.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -// Package db defines common Data Broker types, and it the parent package -// containing Data Bro...
Editorial changes to docs.go
diff --git a/test/map/NearCachedMapStressTest.js b/test/map/NearCachedMapStressTest.js index <HASH>..<HASH> 100644 --- a/test/map/NearCachedMapStressTest.js +++ b/test/map/NearCachedMapStressTest.js @@ -57,7 +57,7 @@ describe('NearCachedMapStress', function () { } it('stress test with put, get and remove', ...
increases timeout for near cache stress test
diff --git a/modules/social_features/social_group/src/Controller/SocialGroupController.php b/modules/social_features/social_group/src/Controller/SocialGroupController.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_group/src/Controller/SocialGroupController.php +++ b/modules/social_features/social_...
SHN-<I> by jochemvn: Simplify function
diff --git a/immutable-history/src/Controller/ChangeLogListController.php b/immutable-history/src/Controller/ChangeLogListController.php index <HASH>..<HASH> 100644 --- a/immutable-history/src/Controller/ChangeLogListController.php +++ b/immutable-history/src/Controller/ChangeLogListController.php @@ -71,7 +71,8 @@ cla...
work on immutable history proof of concept by cleaning up code
diff --git a/fake-timers.js b/fake-timers.js index <HASH>..<HASH> 100644 --- a/fake-timers.js +++ b/fake-timers.js @@ -105,7 +105,6 @@ module.exports = function every(obj, fn) { var pass = true; try { - /* eslint-disable-next-line local-rules/no-prototype-methods */ obj.forEach(function() { ...
Remove misleading comment This repository doesn't use the `no-prototype-methods` rule that is managed with `local-rules` plugin, so the comments make no sense. ESLint should really throw an error here...
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 @@ -213,6 +213,21 @@ function renderVariables (str, vars) { let rxmatch; let result = str.substring(0, str.length); + + // Special case for handling integer/boo...
fix: Using a template with exactly one variable keeps its type
diff --git a/pymatgen/electronic_structure/tests/test_plotter.py b/pymatgen/electronic_structure/tests/test_plotter.py index <HASH>..<HASH> 100644 --- a/pymatgen/electronic_structure/tests/test_plotter.py +++ b/pymatgen/electronic_structure/tests/test_plotter.py @@ -190,8 +190,13 @@ class BoltztrapPlotterTest(unittest....
Comment out tests with an angry message at the person who coded the BzTPlotter.
diff --git a/src/javascript/xhr/XMLHttpRequest.js b/src/javascript/xhr/XMLHttpRequest.js index <HASH>..<HASH> 100644 --- a/src/javascript/xhr/XMLHttpRequest.js +++ b/src/javascript/xhr/XMLHttpRequest.js @@ -913,6 +913,7 @@ define("moxie/xhr/XMLHttpRequest", [ _p('responseText', _xhr.responseText); _p('r...
XHR: Populate response headers in native mode as well.
diff --git a/docs/src/vendor/doc-components/editor/editor.js b/docs/src/vendor/doc-components/editor/editor.js index <HASH>..<HASH> 100644 --- a/docs/src/vendor/doc-components/editor/editor.js +++ b/docs/src/vendor/doc-components/editor/editor.js @@ -1,5 +1,6 @@ import React from 'react'; import PropTypes from 'prop-...
Debounce updates to the example code block
diff --git a/salt/modules/zfs.py b/salt/modules/zfs.py index <HASH>..<HASH> 100644 --- a/salt/modules/zfs.py +++ b/salt/modules/zfs.py @@ -39,20 +39,22 @@ def _available_commands(): if not zfs_path: return False - _return = {} + ret = {} # Note that we append '|| :' as a unix hack to force re...
Log 'zfs help' output at debug This suppresses the output from this command unless the minion is running in debug mode.
diff --git a/lib/sass/environment.rb b/lib/sass/environment.rb index <HASH>..<HASH> 100644 --- a/lib/sass/environment.rb +++ b/lib/sass/environment.rb @@ -68,7 +68,7 @@ module Sass # Pop a stack frame from the mixin/include stack. def pop_frame - stack.pop if stack.last[:prepared] + stack.pop if s...
[Sass] Don't raise odd errors about #[] for stack overflows.
diff --git a/src/ol-ext/format.js b/src/ol-ext/format.js index <HASH>..<HASH> 100644 --- a/src/ol-ext/format.js +++ b/src/ol-ext/format.js @@ -1,7 +1,9 @@ import BaseGeoJSON from 'ol/format/geojson' import TopoJSON from 'ol/format/topojson' import { isEmpty } from '../util/minilo' +import { EPSG_4326 } from './const...
custom geojson fmt: replace projection after circle to polygon conversion
diff --git a/src/main/java/com/axibase/tsd/driver/jdbc/DriverConstants.java b/src/main/java/com/axibase/tsd/driver/jdbc/DriverConstants.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/axibase/tsd/driver/jdbc/DriverConstants.java +++ b/src/main/java/com/axibase/tsd/driver/jdbc/DriverConstants.java @@ -38,7 +38,...
set expandTags value to false by default
diff --git a/svtyper/singlesample.py b/svtyper/singlesample.py index <HASH>..<HASH> 100644 --- a/svtyper/singlesample.py +++ b/svtyper/singlesample.py @@ -711,6 +711,7 @@ def genotype_parallel(src_vcf, out_vcf, sample, z, split_slop, min_aligned, sum_ # 1st pass through input vcf -- collect all the relevant breakp...
+ add message on how many breakpoints we're going to process
diff --git a/lib/rack/www.rb b/lib/rack/www.rb index <HASH>..<HASH> 100644 --- a/lib/rack/www.rb +++ b/lib/rack/www.rb @@ -15,12 +15,8 @@ module Rack host = URI(req.host).to_s if (already_www?(host) && @www == true) || (!already_www?(host) && @www == false) [status, headers, body] - elsif !a...
Removed duplicated code, refactored a bit
diff --git a/lib/OpenLayers/Layer/Vector.js b/lib/OpenLayers/Layer/Vector.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers/Layer/Vector.js +++ b/lib/OpenLayers/Layer/Vector.js @@ -271,6 +271,10 @@ OpenLayers.Layer.Vector = OpenLayers.Class(OpenLayers.Layer, { if (!dragging) { this.renderer.ro...
"svg flicker at end of pan". Gecko-based browsers might not reflow svg if only style properties of dom elements are changed. Fixed by setting the scrollLeft property. r=pgiraud,tschaub (closes #<I>) git-svn-id: <URL>
diff --git a/src/js/chosen.js b/src/js/chosen.js index <HASH>..<HASH> 100644 --- a/src/js/chosen.js +++ b/src/js/chosen.js @@ -1113,12 +1113,18 @@ MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md }; Chosen.prototype.results_reset = function() { + var oldValue = this...
* add deselected param to change event for chosen single select control.
diff --git a/internal/states/statefile/version4.go b/internal/states/statefile/version4.go index <HASH>..<HASH> 100644 --- a/internal/states/statefile/version4.go +++ b/internal/states/statefile/version4.go @@ -539,7 +539,7 @@ type instanceObjectStateV4 struct { SchemaVersion uint64 `json:"schema...
fix typo in struct tag (#<I>) typo found by [`revive`](<URL>)
diff --git a/Builder/FormContractor.php b/Builder/FormContractor.php index <HASH>..<HASH> 100644 --- a/Builder/FormContractor.php +++ b/Builder/FormContractor.php @@ -104,6 +104,7 @@ class FormContractor implements FormContractorInterface 'Sonata\AdminBundle\Form\Type\ModelType', 'sonata_type_...
Fixed FormContractor for new ModelListType
diff --git a/lib/dotenv.rb b/lib/dotenv.rb index <HASH>..<HASH> 100644 --- a/lib/dotenv.rb +++ b/lib/dotenv.rb @@ -16,8 +16,7 @@ module Dotenv with(*filenames) { |f| Environment.new(f).apply! if File.exist?(f) } end -protected - + # Internal: Helper to expand list of filenames. def self.with(*filenames, &...
Use comment instead of "protected" to denote internal method
diff --git a/pysat/__init__.py b/pysat/__init__.py index <HASH>..<HASH> 100644 --- a/pysat/__init__.py +++ b/pysat/__init__.py @@ -2,6 +2,7 @@ from __future__ import print_function from __future__ import absolute_import import os +import pysatCDF # get home directory home_dir = os.path.expanduser('~')
Testing build of pysatCDF on travis
diff --git a/pandas/tests/frame/test_alter_axes.py b/pandas/tests/frame/test_alter_axes.py index <HASH>..<HASH> 100644 --- a/pandas/tests/frame/test_alter_axes.py +++ b/pandas/tests/frame/test_alter_axes.py @@ -234,9 +234,16 @@ class TestDataFrameAlterAxes: # need to adapt first drop for case that both keys ...
TST: Don't use 'is' on strings to avoid SyntaxWarning (#<I>)
diff --git a/lib/pagelib.php b/lib/pagelib.php index <HASH>..<HASH> 100644 --- a/lib/pagelib.php +++ b/lib/pagelib.php @@ -49,9 +49,15 @@ function page_create_object($type, $id = NULL) { */ function page_map_class($type, $classname = NULL) { - static $mappings = array( - MOODLE_PAGE_COURSE => 'page_cours...
A small change for the static initialization in page_map_class, and more debug added just before init is done.
diff --git a/lib/zookeeper/common.rb b/lib/zookeeper/common.rb index <HASH>..<HASH> 100644 --- a/lib/zookeeper/common.rb +++ b/lib/zookeeper/common.rb @@ -37,7 +37,7 @@ protected def get_watcher(req_id) @req_mutex.synchronize { - req_id != ZKRB_GLOBAL_CB_REQ ? @watcher_reqs.delete(req_id) : @watcher_re...
improve logic in ternary to read more sanely
diff --git a/docs_src/assets/js/src/application.js b/docs_src/assets/js/src/application.js index <HASH>..<HASH> 100644 --- a/docs_src/assets/js/src/application.js +++ b/docs_src/assets/js/src/application.js @@ -134,7 +134,9 @@ htmlBridge .data('placement', 'top') .attr('title', 'Copy to clipboa...
Add text to copy object to resovle error