diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/lib/util/console-logger.js b/lib/util/console-logger.js index <HASH>..<HASH> 100644 --- a/lib/util/console-logger.js +++ b/lib/util/console-logger.js @@ -34,6 +34,7 @@ const hookConsoleLogging = (methodName, logCategory) => { */ exports.attach = () => { hookConsoleLogging('log', 'info'); + hookConso...
fix (logging) console.info method is not being forwarded to Backendless.Logging
diff --git a/src/Graviton/RestBundle/Model/DocumentModel.php b/src/Graviton/RestBundle/Model/DocumentModel.php index <HASH>..<HASH> 100644 --- a/src/Graviton/RestBundle/Model/DocumentModel.php +++ b/src/Graviton/RestBundle/Model/DocumentModel.php @@ -333,7 +333,7 @@ class DocumentModel extends SchemaModel implements Mo...
EVO-<I> Text search is more precise using strict string search.
diff --git a/scripts/postinstall.js b/scripts/postinstall.js index <HASH>..<HASH> 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -27,12 +27,12 @@ function setupAutocomplete() { const tabtabCliPath = path.join(tabtabPath, 'src', 'cli.js'); try { - execSync(`node ${tabtabCliPath} ins...
Updated postinstall.js to make it also work with spaces in path
diff --git a/test/test_api_dsc_cloudant.py b/test/test_api_dsc_cloudant.py index <HASH>..<HASH> 100644 --- a/test/test_api_dsc_cloudant.py +++ b/test/test_api_dsc_cloudant.py @@ -88,6 +88,7 @@ class TestDscCloudant(testUtils.AbstractTest): createdConnector = self.appClient.dsc.create( name="test...
[patch] fixed dsc tests
diff --git a/tests/rackspace/requests/monitoring/check_tests.rb b/tests/rackspace/requests/monitoring/check_tests.rb index <HASH>..<HASH> 100644 --- a/tests/rackspace/requests/monitoring/check_tests.rb +++ b/tests/rackspace/requests/monitoring/check_tests.rb @@ -1,4 +1,4 @@ -Shindo.tests('Fog::Rackspace::Monitoring | c...
Completed: get_check tests now working
diff --git a/src/Typeahead.react.js b/src/Typeahead.react.js index <HASH>..<HASH> 100644 --- a/src/Typeahead.react.js +++ b/src/Typeahead.react.js @@ -132,7 +132,7 @@ class Typeahead extends React.Component { text, }; - const menu = renderMenu ? + const menu = typeof renderMenu === 'function' ? ...
Check that `renderMenu` is a function
diff --git a/coverage_reporter/reports/annotate.py b/coverage_reporter/reports/annotate.py index <HASH>..<HASH> 100644 --- a/coverage_reporter/reports/annotate.py +++ b/coverage_reporter/reports/annotate.py @@ -1,12 +1,23 @@ import os +import shutil def add_options(parser): parser.add_option('--annotate-dir', ...
Remove existing annotated files on creation of new ones.
diff --git a/docusaurus/docusaurus.config.js b/docusaurus/docusaurus.config.js index <HASH>..<HASH> 100644 --- a/docusaurus/docusaurus.config.js +++ b/docusaurus/docusaurus.config.js @@ -70,7 +70,7 @@ module.exports = { }, theme: { - // customCss: require.resolve('./src/theme/ReactLiveScope...
feat(dinosaurdocs): add custom sass
diff --git a/salt/modules/mysql.py b/salt/modules/mysql.py index <HASH>..<HASH> 100644 --- a/salt/modules/mysql.py +++ b/salt/modules/mysql.py @@ -978,7 +978,10 @@ def user_grants(user, ret = [] results = cur.fetchall() for grant in results: - ret.append(grant[0].split(' IDENTIFIED BY')[0]) + ...
salt.states.mysql_grants: When grant_option=True, then this state is never succeed as 'WITH GRANT OPTION' is cut off while checking for user grants. But actual grants are set properly. Fixed.
diff --git a/MAPKIT/mapkit/__init__.py b/MAPKIT/mapkit/__init__.py index <HASH>..<HASH> 100644 --- a/MAPKIT/mapkit/__init__.py +++ b/MAPKIT/mapkit/__init__.py @@ -10,4 +10,7 @@ from sqlalchemy.ext.declarative import declarative_base -Base = declarative_base() \ No newline at end of file +Base = declarative_base() ...
Final changes before <I> release.
diff --git a/static/seriously.js b/static/seriously.js index <HASH>..<HASH> 100755 --- a/static/seriously.js +++ b/static/seriously.js @@ -15,7 +15,7 @@ function genChar() { if(!code) return; $('#code').val($('#code').val() + cp437.encode(parseInt(code))); - updateByteCount(); + updateUtils...
update stuff when inserting a character
diff --git a/openquake/calculators/classical.py b/openquake/calculators/classical.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/classical.py +++ b/openquake/calculators/classical.py @@ -310,7 +310,8 @@ class ClassicalCalculator(base.HazardCalculator): self.datastore['csm_info'] = self.csm_info...
Fixed num_cores in classical [skip CI] Former-commit-id: b<I>f5a<I>acd3ff0a4e<I>bac<I>b<I>bce9bb
diff --git a/lib/transforms/inlineAngularJsTemplates.js b/lib/transforms/inlineAngularJsTemplates.js index <HASH>..<HASH> 100644 --- a/lib/transforms/inlineAngularJsTemplates.js +++ b/lib/transforms/inlineAngularJsTemplates.js @@ -26,6 +26,7 @@ module.exports = function (queryObj) { relationToInlin...
inlineAngularJsTemplate: Remove the existing JavaScriptAngularJsTemplate relations. Prevents the templates from getting cloned.
diff --git a/lib/active_enum/extensions.rb b/lib/active_enum/extensions.rb index <HASH>..<HASH> 100644 --- a/lib/active_enum/extensions.rb +++ b/lib/active_enum/extensions.rb @@ -125,14 +125,15 @@ module ActiveEnum # user.sex?(:male) # def define_active_enum_question_method(attribute) - de...
Remove define_method usage which is slower
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup( name='upcloud-api', - version='0.4.4', + version='0.4.5', description='UpCloud API Client', author='Elias Nygren', maintainer='Mika Lackman',
version: update to <I>
diff --git a/test/tc_multiarray.rb b/test/tc_multiarray.rb index <HASH>..<HASH> 100644 --- a/test/tc_multiarray.rb +++ b/test/tc_multiarray.rb @@ -85,5 +85,13 @@ class TC_MultiArray < Test::Unit::TestCase end end + def test_at_assign + for t in @@types + m = Hornetseye::MultiArray.new t, 3, 2 + ...
Added a test for multi-dimensional assignments
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,10 +1,7 @@ module.exports = function (inputArray, singleCb, finalCb) { -var len = inputArray.length; -var lenTarget = 0; - -for (i = 0; i < len; i++) { +for (let i = 0, len = inputArray.length, lenTarget = 0; i < len; i++)...
Update variable handling Moved all variables into the for loop declaration. Changed to let, instead of var.
diff --git a/src/test/java/com/adobe/epubcheck/cli/CheckerIT.java b/src/test/java/com/adobe/epubcheck/cli/CheckerIT.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/adobe/epubcheck/cli/CheckerIT.java +++ b/src/test/java/com/adobe/epubcheck/cli/CheckerIT.java @@ -21,7 +21,7 @@ public class CheckerIT { tr...
test: fix CheckerIT test after renaming the minimal packaged EPUB 3
diff --git a/lib/trestle/controller/location.rb b/lib/trestle/controller/location.rb index <HASH>..<HASH> 100644 --- a/lib/trestle/controller/location.rb +++ b/lib/trestle/controller/location.rb @@ -4,11 +4,15 @@ module Trestle extend ActiveSupport::Concern included do - after_action :set_trestle...
Do not set X-Trestle-Location header when Location header is set
diff --git a/ariba/sequence_metadata.py b/ariba/sequence_metadata.py index <HASH>..<HASH> 100644 --- a/ariba/sequence_metadata.py +++ b/ariba/sequence_metadata.py @@ -27,7 +27,7 @@ class SequenceMetadata: def __eq__(self, other): - return type(other) is type(self) and self.name == other.name and self.seq...
Typo in variable name in __eq__
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,8 @@ local_file = lambda *f: \ open(os.path.join(os.path.dirname(__file__), *f)).read() -tests_require = ['nose', 'mock'] +install_requires = ['mock', 'six'] +tests_require = ['nose'] if __name__ == '__...
Added 'six' to install requirements in setup.py
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -392,7 +392,7 @@ module.exports = function ( grunt ) { ] ); grunt.registerTask( 'lint', [ 'jshint', 'jscs', 'csslint', 'banana' ] ); - grunt.registerTask( 'test', [ 'pre-test', 'git-build', 'lint', 'karma...
build: Run lint before build in grunt-test Saves about 1-2 minutes in terms of feedback during development. Change-Id: Ia<I>f<I>de<I>c4af6e<I>bffe<I>f<I>c<I>e<I>e<I>
diff --git a/lib/dash/mpd_processor.js b/lib/dash/mpd_processor.js index <HASH>..<HASH> 100644 --- a/lib/dash/mpd_processor.js +++ b/lib/dash/mpd_processor.js @@ -1064,6 +1064,7 @@ shaka.dash.MpdProcessor.prototype.makeSegmentIndexSourceViaSegmentTemplate_ = } shaka.asserts.unreachable(); + return null; };
Silence a warning about missing return Some versions of the compiler do not seem to recognize this as unreachable, so add a return to satisfy the compiler and silence the warning. Change-Id: I<I>d<I>be<I>b6c4f<I>e<I>cb4c<I>
diff --git a/structr-ui/src/main/java/org/structr/web/servlet/HtmlServlet.java b/structr-ui/src/main/java/org/structr/web/servlet/HtmlServlet.java index <HASH>..<HASH> 100644 --- a/structr-ui/src/main/java/org/structr/web/servlet/HtmlServlet.java +++ b/structr-ui/src/main/java/org/structr/web/servlet/HtmlServlet.java @...
Always return if <I> to avoid exceptions about already committed response.
diff --git a/gems/stomp/lib/torquebox-stomp.rb b/gems/stomp/lib/torquebox-stomp.rb index <HASH>..<HASH> 100644 --- a/gems/stomp/lib/torquebox-stomp.rb +++ b/gems/stomp/lib/torquebox-stomp.rb @@ -17,6 +17,11 @@ require 'torquebox/stomp/jms_stomplet' require 'torquebox/stomp/message' -require 'torquebox/stomp/ext/sto...
Ensure torquebox-stomp doesn't prevent rake tasks from working (TORQUE-<I>)
diff --git a/src/REST/keywords.py b/src/REST/keywords.py index <HASH>..<HASH> 100644 --- a/src/REST/keywords.py +++ b/src/REST/keywords.py @@ -1029,7 +1029,7 @@ class Keywords(object): """ if isinstance(what, (STRING_TYPES)): if what == "": - message = "\nThe instance JSON ...
Slightly improve `Output` and `Output Schema` headings
diff --git a/actor-system.js b/actor-system.js index <HASH>..<HASH> 100644 --- a/actor-system.js +++ b/actor-system.js @@ -457,6 +457,9 @@ class ActorSystem { // Use 'getName' getter, if present. if (_.isFunction(Behaviour.getName)) return Behaviour.getName(); + // Take 'actorName' field, if present. + ...
(saymon) object-concurrency-fix: Switched TypeScript actors from getName() method to actorName property.
diff --git a/sqlbrite/src/main/java/com/squareup/sqlbrite/BackpressureBufferLastOperator.java b/sqlbrite/src/main/java/com/squareup/sqlbrite/BackpressureBufferLastOperator.java index <HASH>..<HASH> 100644 --- a/sqlbrite/src/main/java/com/squareup/sqlbrite/BackpressureBufferLastOperator.java +++ b/sqlbrite/src/main/java...
Remove unnecessary volatile keyword being used in BackpressureBufferLastOperator class.
diff --git a/tests/integration/test_package.py b/tests/integration/test_package.py index <HASH>..<HASH> 100644 --- a/tests/integration/test_package.py +++ b/tests/integration/test_package.py @@ -52,7 +52,7 @@ def _get_random_package_name(): reason='Extended packaging tests only run on py3.') @pyte...
Pin pandas installed by tests to <I> <I> is the latest version that supports both Python <I> and <I>.
diff --git a/geomdl/construct.py b/geomdl/construct.py index <HASH>..<HASH> 100644 --- a/geomdl/construct.py +++ b/geomdl/construct.py @@ -20,7 +20,7 @@ def construct_surface(*args, **kwargs): :rtype: NURBS.Surface """ # Get keyword arguments - degree_v = kwargs.get('degree_v', 2) + degree_v = kwar...
Rename keyword argument for surface and volume constructors
diff --git a/state/tracker_test.go b/state/tracker_test.go index <HASH>..<HASH> 100644 --- a/state/tracker_test.go +++ b/state/tracker_test.go @@ -357,3 +357,31 @@ func TestSTIsOn(t *testing.T) { } m.CheckNothingWritten(t) } + +func TestSTAssociate(t *testing.T) { + l, m := logging.NewMock() + l.SetLogLevel(loggin...
Test nick <-> channel association.
diff --git a/NavigationReactNative/sample/web/Motion.js b/NavigationReactNative/sample/web/Motion.js index <HASH>..<HASH> 100644 --- a/NavigationReactNative/sample/web/Motion.js +++ b/NavigationReactNative/sample/web/Motion.js @@ -28,7 +28,7 @@ class Motion extends React.Component { .map(item => { ...
Reset rest if target changed The left items were instantly removed because rest was set to true
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -82,7 +82,9 @@ describe('pathCompleteExtname', function () { // --- - it('should retrieve simple file extensions', function () { + it('should retrieve file extensions with two dots', function () { + assert.equal(pathCo...
Added tests for file extensions with two dots
diff --git a/salt/modules/defaults.py b/salt/modules/defaults.py index <HASH>..<HASH> 100644 --- a/salt/modules/defaults.py +++ b/salt/modules/defaults.py @@ -118,7 +118,7 @@ def get(key, default=''): defaults = _load(pillar_name, defaults_path) - value = __salt__['pillar.get']("%s:%s" % (pillar_name, key),...
Using .format to build the pillar key as requested
diff --git a/src/Response.php b/src/Response.php index <HASH>..<HASH> 100644 --- a/src/Response.php +++ b/src/Response.php @@ -45,7 +45,7 @@ class Response * * @var int */ - public $status = HttpResponse::HTTP_OK; + public $status; /** * If should enable zlib compression when approp...
Update Response $status does not have a default value, but has as fallback if unset on output()
diff --git a/Library/ArgInfoDefinition.php b/Library/ArgInfoDefinition.php index <HASH>..<HASH> 100644 --- a/Library/ArgInfoDefinition.php +++ b/Library/ArgInfoDefinition.php @@ -1,7 +1,5 @@ <?php -declare(strict_types=1); - /** * This file is part of the Zephir. * @@ -11,11 +9,10 @@ declare(strict_types=1); ...
#<I> - Minor code refactor
diff --git a/src/Arrays/Iterator.php b/src/Arrays/Iterator.php index <HASH>..<HASH> 100644 --- a/src/Arrays/Iterator.php +++ b/src/Arrays/Iterator.php @@ -80,8 +80,8 @@ class Iterator extends RecursiveArrayIterator */ public function getChildren() { - if ($this->hasChildren()) return $this->current(); - + if (...
The getChildren method should really return another iterator.
diff --git a/scripts/get-latest-platform-tests.js b/scripts/get-latest-platform-tests.js index <HASH>..<HASH> 100644 --- a/scripts/get-latest-platform-tests.js +++ b/scripts/get-latest-platform-tests.js @@ -1,5 +1,9 @@ "use strict"; +if (process.env.NO_UPDATE) { + process.exit(0); +} + const path = require("path")...
Provide an env variable to disable update of test script
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -35,11 +35,11 @@ describe('when only headers was sent', function () { before(function (done) { server = http.createServer(function (request, res) { + res.writeHead(200, {'content-type':'text/plain'}); + res.write('waite...
Fixed tests on <I> and iojs
diff --git a/agent/config/builder.go b/agent/config/builder.go index <HASH>..<HASH> 100644 --- a/agent/config/builder.go +++ b/agent/config/builder.go @@ -387,7 +387,7 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { return RuntimeConfig{}, fmt.Errorf("No %s address found", addrtyp) } if len(adver...
Adds more info about how to fix the private IP error. Closes #<I>
diff --git a/classes/Flatfile/Core.php b/classes/Flatfile/Core.php index <HASH>..<HASH> 100644 --- a/classes/Flatfile/Core.php +++ b/classes/Flatfile/Core.php @@ -325,19 +325,20 @@ class Flatfile_Core { // Match on property, terms and other stuffs // TODO + // Natural sort ordering + natsort($this->_files); +...
Enable sorting for a sinlge entry also
diff --git a/spec/lock_jar/maven_spec.rb b/spec/lock_jar/maven_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lock_jar/maven_spec.rb +++ b/spec/lock_jar/maven_spec.rb @@ -4,6 +4,11 @@ require 'lib/lock_jar/maven' require 'naether' describe LockJar::Maven do + before do + # Bootstrap Naether + Naether::Bootst...
ensure naether is bootstrapped for the tests
diff --git a/lib/ts_routes/version.rb b/lib/ts_routes/version.rb index <HASH>..<HASH> 100644 --- a/lib/ts_routes/version.rb +++ b/lib/ts_routes/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module TsRoutes - VERSION = "1.0.2" + VERSION = "1.0.3" end
Bump up version to <I>
diff --git a/sprd/util/ProductUtil.js b/sprd/util/ProductUtil.js index <HASH>..<HASH> 100644 --- a/sprd/util/ProductUtil.js +++ b/sprd/util/ProductUtil.js @@ -18,7 +18,13 @@ define(["underscore", "sprd/util/ArrayUtil", "js/core/List", "sprd/model/Product }, getPossiblePrintTypesForDesignOnProduct: f...
fixed exception, if view doesn't have a print area
diff --git a/dev/idangerous.swiper.js b/dev/idangerous.swiper.js index <HASH>..<HASH> 100644 --- a/dev/idangerous.swiper.js +++ b/dev/idangerous.swiper.js @@ -1107,7 +1107,8 @@ var Swiper = function (selector, params) { if(!isTouchEvent) { // Added check for input element since we are ge...
Firefox can't handle event.srcElement, added fallback to event.target
diff --git a/pandas/tests/io/test_parquet.py b/pandas/tests/io/test_parquet.py index <HASH>..<HASH> 100644 --- a/pandas/tests/io/test_parquet.py +++ b/pandas/tests/io/test_parquet.py @@ -671,6 +671,17 @@ class TestParquetPyArrow(Base): df = pd.DataFrame({"a": pd.date_range("2017-01-01", freq="1n", periods=10)}...
TST: ensure read_parquet filter argument is correctly passed though (pyarrow engine) (#<I>)
diff --git a/commons/src/main/java/com/stratio/streaming/commons/kafka/service/TopicService.java b/commons/src/main/java/com/stratio/streaming/commons/kafka/service/TopicService.java index <HASH>..<HASH> 100644 --- a/commons/src/main/java/com/stratio/streaming/commons/kafka/service/TopicService.java +++ b/commons/src/m...
added new nethods to IStratioStreamingApi trait: withServerConfig, init, and close.
diff --git a/lib/media-stream.js b/lib/media-stream.js index <HASH>..<HASH> 100644 --- a/lib/media-stream.js +++ b/lib/media-stream.js @@ -14,6 +14,8 @@ function MediaStream (media, opts) { if (!(self instanceof MediaStream)) return new MediaStream(media, opts) stream.Writable.call(self, opts) + if (!MediaSour...
detect browsers that lack MediaSource support
diff --git a/lxd/db/instances.go b/lxd/db/instances.go index <HASH>..<HASH> 100644 --- a/lxd/db/instances.go +++ b/lxd/db/instances.go @@ -98,7 +98,7 @@ type Instance struct { ExpiryDate time.Time } -// InstanceFilter can be used to filter results yielded by InstanceList. +// InstanceFilter specifies potential q...
lxd/db/instances: use Filter as parameter for delete
diff --git a/inc/class-filters.php b/inc/class-filters.php index <HASH>..<HASH> 100644 --- a/inc/class-filters.php +++ b/inc/class-filters.php @@ -81,6 +81,9 @@ class CareLib_Filters { // Default excerpt more. add_filter( 'excerpt_more', array( $this, 'excerpt_more' ), 5 ); + // Add an itemprop of "image" to W...
Filter attachment image to include an image item prop This could maybe go in attributes.php but since it’s filtering a default WP function it probably should go here… I think?
diff --git a/torchvision/models/inception.py b/torchvision/models/inception.py index <HASH>..<HASH> 100644 --- a/torchvision/models/inception.py +++ b/torchvision/models/inception.py @@ -70,10 +70,10 @@ class Inception3(nn.Module): def forward(self, x): if self.transform_input: - x = x.clone(...
Fix inception v3 input transform for trace & onnx (#<I>) * Fix inception v3 input transform for trace & onnx * Input transform are in-place updates, which produce issues for tracing and exporting to onnx. * nit
diff --git a/dev/tools/build-docs.js b/dev/tools/build-docs.js index <HASH>..<HASH> 100644 --- a/dev/tools/build-docs.js +++ b/dev/tools/build-docs.js @@ -93,7 +93,7 @@ var apiClasses2 = [ {tag:"objectid", path:"./node_modules/bson/lib/bson/objectid.js"}, {tag:"binary", path:"./node_modules/bson/lib/bson/bina...
Fixed docs generator to include Code
diff --git a/py/selenium/webdriver/remote/remote_connection.py b/py/selenium/webdriver/remote/remote_connection.py index <HASH>..<HASH> 100644 --- a/py/selenium/webdriver/remote/remote_connection.py +++ b/py/selenium/webdriver/remote/remote_connection.py @@ -424,11 +424,11 @@ class RemoteConnection(object): ...
if remote end returns a <I> level response status code, for python3 we need to decode the string so it doesn't fail later on when creating the exception to raise Fixes Issue #<I>
diff --git a/src/js/core/icon.js b/src/js/core/icon.js index <HASH>..<HASH> 100644 --- a/src/js/core/icon.js +++ b/src/js/core/icon.js @@ -48,7 +48,9 @@ const Icon = { props: ['icon'], - data: {include: []}, + data: { + include: ['focusable'] + }, isIcon: true, diff --git a/src/js/core...
fix(icon): make SVG icons non-focusable in IE
diff --git a/indra/tools/model_checker.py b/indra/tools/model_checker.py index <HASH>..<HASH> 100644 --- a/indra/tools/model_checker.py +++ b/indra/tools/model_checker.py @@ -400,7 +400,7 @@ def _find_sources_with_paths(im, target, sources, polarity): yield path for predecessor, sign in _get_signe...
Paths should contain strings, not nodes
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='django-tinycontent', version=tinycontent.__version__, description="A Django app for managing re-usable blocks of tiny content.", - long_description=open('README.md').read(), + lon...
Oops - switched to RST file
diff --git a/lib/functions.js b/lib/functions.js index <HASH>..<HASH> 100644 --- a/lib/functions.js +++ b/lib/functions.js @@ -25,7 +25,7 @@ internals.pick = function () { internals.include = function (o) { if (!o || !(o instanceof Object)) throw new Error('Pick must have params (arguments)'); - return _.merg...
[hotfix] change include function to don't permanently change _joi object
diff --git a/src/jobTree/test/batchSystems/abstractBatchSystemTest.py b/src/jobTree/test/batchSystems/abstractBatchSystemTest.py index <HASH>..<HASH> 100644 --- a/src/jobTree/test/batchSystems/abstractBatchSystemTest.py +++ b/src/jobTree/test/batchSystems/abstractBatchSystemTest.py @@ -158,6 +158,8 @@ class hidden: ...
Added batchSystem.shutdown to teardown() method which neatly joins all threads at the culmination of each test. Changed naming convention in mesos: shutDown() -> shutdown()
diff --git a/models/rpc.go b/models/rpc.go index <HASH>..<HASH> 100644 --- a/models/rpc.go +++ b/models/rpc.go @@ -71,6 +71,10 @@ func SetupServer(lobbyId uint, info ServerRecord, lobbyType LobbyType, league st } func VerifyInfo(info ServerRecord) error { + if config.Constants.ServerMockUp { + return nil + } + r...
Don't call Pauling if ServerMockUp is true.
diff --git a/lib/stack_master/commands/apply.rb b/lib/stack_master/commands/apply.rb index <HASH>..<HASH> 100644 --- a/lib/stack_master/commands/apply.rb +++ b/lib/stack_master/commands/apply.rb @@ -6,8 +6,8 @@ module StackMaster def initialize(config, region, stack_name) @config = config - @re...
Ensure we replace underscores with hyphens
diff --git a/list.go b/list.go index <HASH>..<HASH> 100644 --- a/list.go +++ b/list.go @@ -85,6 +85,19 @@ func (l *List) GetCurrentItem() int { return l.currentItem } +// RemoveItem removes the item with the given index (starting at 0) from the +// list. Does nothing if the index is out of range. +func (l *List) R...
Added RemoveItem() function to List. Resolves #<I>
diff --git a/commons/src/main/java/org/axway/grapes/commons/datamodel/ArtifactQuery.java b/commons/src/main/java/org/axway/grapes/commons/datamodel/ArtifactQuery.java index <HASH>..<HASH> 100644 --- a/commons/src/main/java/org/axway/grapes/commons/datamodel/ArtifactQuery.java +++ b/commons/src/main/java/org/axway/grape...
ECDDEV-<I> Updating the model class
diff --git a/builtin/providers/aws/import_aws_elb_test.go b/builtin/providers/aws/import_aws_elb_test.go index <HASH>..<HASH> 100644 --- a/builtin/providers/aws/import_aws_elb_test.go +++ b/builtin/providers/aws/import_aws_elb_test.go @@ -7,7 +7,7 @@ import ( ) func TestAccAWSELB_importBasic(t *testing.T) { - resou...
provider/aws: Fix typo in ELB import test (#<I>)
diff --git a/src/main/java/org/browsermob/core/har/HarLog.java b/src/main/java/org/browsermob/core/har/HarLog.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/browsermob/core/har/HarLog.java +++ b/src/main/java/org/browsermob/core/har/HarLog.java @@ -7,7 +7,7 @@ import java.util.concurrent.CopyOnWriteArrayList;...
Fixes issue #<I>: the version of the HAR spec we're using is indeed <I> :)
diff --git a/src/Testing/FactoryBuilder.php b/src/Testing/FactoryBuilder.php index <HASH>..<HASH> 100644 --- a/src/Testing/FactoryBuilder.php +++ b/src/Testing/FactoryBuilder.php @@ -140,7 +140,7 @@ class FactoryBuilder protected function makeInstance(array $attributes = []) { if (!isset($this->defin...
Include class name inside factory not found error (#<I>) Mimics Laravel's original way of doing it and helps find what needs to be implemented.
diff --git a/src/transports/websocket.js b/src/transports/websocket.js index <HASH>..<HASH> 100644 --- a/src/transports/websocket.js +++ b/src/transports/websocket.js @@ -28,6 +28,8 @@ module.exports = class Connection extends EventEmitter { this.debugOut('writeLine() socket=' + (this.socket ? 'yes' : 'no') + ...
Fire write callback in websocket when not connect
diff --git a/src/Models/UserModel.php b/src/Models/UserModel.php index <HASH>..<HASH> 100644 --- a/src/Models/UserModel.php +++ b/src/Models/UserModel.php @@ -375,12 +375,4 @@ class UserModel extends AbstractModel return $this->client->put(self::$endpoint . '/' . $userId . '/status', $requestOptions); } ...
Get users statuses by Id does not exist. Waiting for upstream fix : mattermost.atlassian.net/browse/PLT-<I>
diff --git a/code/CMSMenu.php b/code/CMSMenu.php index <HASH>..<HASH> 100644 --- a/code/CMSMenu.php +++ b/code/CMSMenu.php @@ -431,7 +431,7 @@ class CMSMenu extends Object implements IteratorAggregate, i18nEntityProvider $ownerModule = ClassLoader::instance()->getManifest()->getOwnerModule($cmsClass); ...
Update usage of getOwnerModule()
diff --git a/src/Api/Tree/Get.php b/src/Api/Tree/Get.php index <HASH>..<HASH> 100644 --- a/src/Api/Tree/Get.php +++ b/src/Api/Tree/Get.php @@ -184,7 +184,8 @@ class Get } /* root customer */ - if (is_null($rootCustId)) { + $isLiveMode = !$this->hlpCfg->getApiAuthenticationEnabledDevMod...
MOBI-<I> - DCP API: force authorization in production mode
diff --git a/lib/collectionspace/client/version.rb b/lib/collectionspace/client/version.rb index <HASH>..<HASH> 100644 --- a/lib/collectionspace/client/version.rb +++ b/lib/collectionspace/client/version.rb @@ -2,6 +2,6 @@ module CollectionSpace class Client - VERSION = '0.13.4' + VERSION = '0.14.0' end ...
Bump collectionspace-client to <I>
diff --git a/holoviews/core/ndmapping.py b/holoviews/core/ndmapping.py index <HASH>..<HASH> 100644 --- a/holoviews/core/ndmapping.py +++ b/holoviews/core/ndmapping.py @@ -2,7 +2,7 @@ Supplies MultiDimensionalMapping and NdMapping which are multi-dimensional map types. The former class only allows indexing whereas the...
Fixed bug in initializing NdMapping types with initial ordering
diff --git a/salt/states/pkgrepo.py b/salt/states/pkgrepo.py index <HASH>..<HASH> 100644 --- a/salt/states/pkgrepo.py +++ b/salt/states/pkgrepo.py @@ -343,7 +343,7 @@ def managed(name, ppa=None, **kwargs): if disabled is not None \ else salt.utils.is_true(enabled) - elif __grains__['os_fa...
Enable opkg as pkgrepo handler on Poky
diff --git a/src/util/uniques.js b/src/util/uniques.js index <HASH>..<HASH> 100644 --- a/src/util/uniques.js +++ b/src/util/uniques.js @@ -11,7 +11,7 @@ d3plus.util.uniques = function( data , value ) { , nest = d3.nest() .key(function(d) { - if (typeof value === "string") { + if (d && ...
fixed bug with util.uniques when trying to get a value from undefined
diff --git a/src/main/java/nl/hsac/fitnesse/fixture/slim/HttpTest.java b/src/main/java/nl/hsac/fitnesse/fixture/slim/HttpTest.java index <HASH>..<HASH> 100644 --- a/src/main/java/nl/hsac/fitnesse/fixture/slim/HttpTest.java +++ b/src/main/java/nl/hsac/fitnesse/fixture/slim/HttpTest.java @@ -105,7 +105,7 @@ public class ...
Fix comment, this class is not always for XML
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -2975,6 +2975,9 @@ function delete_user($user) { // now do a final accesslib cleanup - removes all role assingments in user context and context itself delete_context(CONTEXT_USER, ...
MDL-<I> - Remove linked tags when deleting users. (merge from <I>)
diff --git a/src/main/java/org/softee/management/samples/MessageProcesingApplication.java b/src/main/java/org/softee/management/samples/MessageProcesingApplication.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/softee/management/samples/MessageProcesingApplication.java +++ b/src/main/java/org/softee/managemen...
Made the code marginally more Java SE 5 kosher
diff --git a/src/main/java/com/googlecode/lanterna/gui2/dialogs/TextInputDialog.java b/src/main/java/com/googlecode/lanterna/gui2/dialogs/TextInputDialog.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/googlecode/lanterna/gui2/dialogs/TextInputDialog.java +++ b/src/main/java/com/googlecode/lanterna/gui2/dialog...
Add a bit more space even if there's no description
diff --git a/Lib/SmsHandler/PsWinComPost.php b/Lib/SmsHandler/PsWinComPost.php index <HASH>..<HASH> 100644 --- a/Lib/SmsHandler/PsWinComPost.php +++ b/Lib/SmsHandler/PsWinComPost.php @@ -74,6 +74,11 @@ EOMSG; // Make it one. if (!is_array($receivers)) $receivers = array($receivers); + + ...
Make the popst method a bit more character-safe. (It was crap, now tested with norwegian æøå and handling their default latin1)
diff --git a/lib/rory/request_parameter_logger.rb b/lib/rory/request_parameter_logger.rb index <HASH>..<HASH> 100644 --- a/lib/rory/request_parameter_logger.rb +++ b/lib/rory/request_parameter_logger.rb @@ -3,7 +3,7 @@ require_relative 'parameter_filter' module Rory class RequestParameterLogger - def initializ...
Removes some default fields to filter on
diff --git a/lib/action_cable/channel/base.rb b/lib/action_cable/channel/base.rb index <HASH>..<HASH> 100644 --- a/lib/action_cable/channel/base.rb +++ b/lib/action_cable/channel/base.rb @@ -76,7 +76,7 @@ module ActionCable # class ChatChannel < ApplicationCable::Channel # def subscribed # @r...
Rename Subscription#reject! to Subscription#reject as there's only one version of the method
diff --git a/selector.go b/selector.go index <HASH>..<HASH> 100644 --- a/selector.go +++ b/selector.go @@ -466,10 +466,13 @@ func siblingSelector(s1, s2 Selector, adjacent bool) Selector { } if adjacent { - if n.PrevSibling == nil { - return false + for n = n.PrevSibling; n != nil; n = n.PrevSibling { + ...
fix: adjacent sibling selector should ignore text node and comment node
diff --git a/src/Structure/Structure.php b/src/Structure/Structure.php index <HASH>..<HASH> 100644 --- a/src/Structure/Structure.php +++ b/src/Structure/Structure.php @@ -117,7 +117,7 @@ abstract class Structure { public static function ArrayS($format = null, $data = null, $countStrict = true, $null = false) { ...
Corrected unwanted "= null"
diff --git a/local_settings/settings.py b/local_settings/settings.py index <HASH>..<HASH> 100644 --- a/local_settings/settings.py +++ b/local_settings/settings.py @@ -60,11 +60,9 @@ class Settings(dict): """ def __init__(self, *args, **kwargs): + # Call our update() instead of super().__init__() so t...
Simplify Settings constructor It was doing a bunch of redundant stuff.
diff --git a/doc/mongo_extensions.py b/doc/mongo_extensions.py index <HASH>..<HASH> 100644 --- a/doc/mongo_extensions.py +++ b/doc/mongo_extensions.py @@ -29,7 +29,7 @@ class mongoref(nodes.reference): def visit_mongodoc_node(self, node): - self.visit_admonition(node, "seealso") + self.visit_admonition(node)...
Fix error when building docs.
diff --git a/optoanalysis/setup.py b/optoanalysis/setup.py index <HASH>..<HASH> 100644 --- a/optoanalysis/setup.py +++ b/optoanalysis/setup.py @@ -15,7 +15,7 @@ with open(os.path.join(mypackage_root_dir, 'optoanalysis/VERSION')) as version_f version = version_file.read().strip() extensions = [Extension( - na...
added working solution, had to change name in extension so that it builds the shared object file and puts it in the root package directory when installed
diff --git a/jquery.popupoverlay.js b/jquery.popupoverlay.js index <HASH>..<HASH> 100644 --- a/jquery.popupoverlay.js +++ b/jquery.popupoverlay.js @@ -513,9 +513,13 @@ } } - // Re-enable scrolling of background layer + // Re-enabl...
Properly support nested "scrolllock=true" popups
diff --git a/lib/active_hash/base.rb b/lib/active_hash/base.rb index <HASH>..<HASH> 100644 --- a/lib/active_hash/base.rb +++ b/lib/active_hash/base.rb @@ -302,7 +302,7 @@ module ActiveHash end def define_getter_method(field, default_value) - unless has_instance_method?(field) + unless inst...
silence warning that happens because has_instance_method? bug somehow has_insance_method? returned false after define_method was called leading to duplicate method definitions and warnings instead of fixing this mystery bug I'm just removing the obsolte method
diff --git a/src/Clarify/Search.php b/src/Clarify/Search.php index <HASH>..<HASH> 100644 --- a/src/Clarify/Search.php +++ b/src/Clarify/Search.php @@ -26,11 +26,11 @@ class Search extends Client $request->getQuery()->set($key, $value); } - $response = $this->process($request); + $t...
making sure the data is being captured to be reused
diff --git a/watchman/main.py b/watchman/main.py index <HASH>..<HASH> 100644 --- a/watchman/main.py +++ b/watchman/main.py @@ -15,13 +15,11 @@ def check(): child_dirs = _get_subdirectories(current_working_directory) for child in child_dirs: try: - change_dir = '%s/%s' % (current_working_di...
Remove change dir commands and now it sends directly.
diff --git a/lib/GameLoader.js b/lib/GameLoader.js index <HASH>..<HASH> 100644 --- a/lib/GameLoader.js +++ b/lib/GameLoader.js @@ -890,12 +890,17 @@ GameLoader.prototype.buildWaitRoomConf = function(directory, gameName, level) { waitRoomSettingsFile = directory + 'waitroom/waitroom.settings.js'; if (!fs.exi...
allowing no waitroom in levels: will cause an error for now if trying to move to a level. need further work
diff --git a/packages/webpack-cli/lib/webpack-cli.js b/packages/webpack-cli/lib/webpack-cli.js index <HASH>..<HASH> 100644 --- a/packages/webpack-cli/lib/webpack-cli.js +++ b/packages/webpack-cli/lib/webpack-cli.js @@ -1337,7 +1337,7 @@ class WebpackCLI { } else { const { interpret } = this.utils;...
fix: comment on config resolution priority (#<I>)
diff --git a/angr/state_plugins/symbolic_memory.py b/angr/state_plugins/symbolic_memory.py index <HASH>..<HASH> 100644 --- a/angr/state_plugins/symbolic_memory.py +++ b/angr/state_plugins/symbolic_memory.py @@ -981,8 +981,8 @@ class SimSymbolicMemory(SimMemory): #pylint:disable=abstract-method # CGC binari...
make _special_memory_filler state aware
diff --git a/anom/transaction.py b/anom/transaction.py index <HASH>..<HASH> 100644 --- a/anom/transaction.py +++ b/anom/transaction.py @@ -89,9 +89,8 @@ def transactional(*, adapter=None, retries=3, propagation=Transaction.Propagatio retries(int, optional): The number of times to retry the transaction i...
doc: fix docstring for @transactional
diff --git a/scoop/launch/__init__.py b/scoop/launch/__init__.py index <HASH>..<HASH> 100644 --- a/scoop/launch/__init__.py +++ b/scoop/launch/__init__.py @@ -84,8 +84,9 @@ class Host(object): # TODO: do we really want to set PYTHONPATH='' if not defined?? c.extend(["export", "PYTHONPATH={0}:$...
* Fixed a bug when starting in could mode on heterogeneous systems.
diff --git a/holoviews/core/spaces.py b/holoviews/core/spaces.py index <HASH>..<HASH> 100644 --- a/holoviews/core/spaces.py +++ b/holoviews/core/spaces.py @@ -14,6 +14,7 @@ from .layout import Layout, AdjointLayout, NdLayout from .ndmapping import UniformNdMapping, NdMapping, item_check from .overlay import Overlay, ...
Added validation of objects supplied in DynamicMap streams list
diff --git a/lib/Less/Node/Url.php b/lib/Less/Node/Url.php index <HASH>..<HASH> 100755 --- a/lib/Less/Node/Url.php +++ b/lib/Less/Node/Url.php @@ -22,6 +22,16 @@ class Url { $val = $this->value->compile($ctx); + // Add the base path if the URL is relative + if( is_string($val->value) && !preg_match('/^(?:[a...
When adding a path onto an unquoted url, escape characters that require it
diff --git a/goon.go b/goon.go index <HASH>..<HASH> 100644 --- a/goon.go +++ b/goon.go @@ -107,9 +107,7 @@ func (g *Goon) extractKeys(src interface{}, putRequest bool) ([]*datastore.Key, // is incomplete. func (g *Goon) Key(src interface{}) *datastore.Key { if k, err := g.KeyError(src); err == nil { - if !k.Incom...
Incomplete keys aren't errors
diff --git a/src/Illuminate/Mail/Mailable.php b/src/Illuminate/Mail/Mailable.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Mail/Mailable.php +++ b/src/Illuminate/Mail/Mailable.php @@ -289,7 +289,7 @@ class Mailable implements MailableContract */ public function from($address, $name = null) { - ...
Add missing return statement (#<I>)
diff --git a/eZ/Publish/Core/Repository/RoleService.php b/eZ/Publish/Core/Repository/RoleService.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/Repository/RoleService.php +++ b/eZ/Publish/Core/Repository/RoleService.php @@ -783,13 +783,14 @@ class RoleService implements RoleServiceInterface protected functi...
Additional fix to role service implementation due to new role structs
diff --git a/lib/openscap/xccdf/session.rb b/lib/openscap/xccdf/session.rb index <HASH>..<HASH> 100644 --- a/lib/openscap/xccdf/session.rb +++ b/lib/openscap/xccdf/session.rb @@ -9,11 +9,8 @@ # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. # -require 'ffi' - module OpenSCAP module Xccdf - extend FFI:...
OpenSCAP::Xccdf doesn't need to extend FFI::Library