diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/packages/veritone-widgets/src/widgets/EngineOutputExport/EngineCategoryConfigList.js b/packages/veritone-widgets/src/widgets/EngineOutputExport/EngineCategoryConfigList.js index <HASH>..<HASH> 100644 --- a/packages/veritone-widgets/src/widgets/EngineOutputExport/EngineCategoryConfigList.js +++ b/packages/v...
todId is required because the if the user toggles the includeMedia to true then we need to provide a tdoId.
diff --git a/src/server/pfs/server/api_server.go b/src/server/pfs/server/api_server.go index <HASH>..<HASH> 100644 --- a/src/server/pfs/server/api_server.go +++ b/src/server/pfs/server/api_server.go @@ -352,8 +352,14 @@ func putFileLogHelper(request *pfs.PutFileRequest, err error, duration time.Dura func (a *apiServ...
Use fresh putFileRequest for logging Otherwise there's some contention around this object
diff --git a/cobald/composite/factory.py b/cobald/composite/factory.py index <HASH>..<HASH> 100644 --- a/cobald/composite/factory.py +++ b/cobald/composite/factory.py @@ -54,7 +54,7 @@ class FactoryPool(CompositePool): except ZeroDivisionError: return 1. - def __init__(self, *children: Pool, ...
type hint for FactoryPool marks factory as taking no parameters
diff --git a/vingd/__init__.py b/vingd/__init__.py index <HASH>..<HASH> 100644 --- a/vingd/__init__.py +++ b/vingd/__init__.py @@ -1,7 +1,7 @@ """Vingd API interface client.""" __title__ = 'vingd-api-python' -__version__ = '0.1.3' +__version__ = '0.1.4' __author__ = 'Radomir Stevanovic' __author_email__ = 'radomi...
bumped to <I>
diff --git a/lib/qunited/server.rb b/lib/qunited/server.rb index <HASH>..<HASH> 100644 --- a/lib/qunited/server.rb +++ b/lib/qunited/server.rb @@ -105,8 +105,9 @@ module QUnited end end - # Compile the CoffeeScript file with the given filename to JavaScript. Returns the full - # path of the compiled...
Fail server tests on CoffeeScript compile failure
diff --git a/core/Tracker/GoalManager.php b/core/Tracker/GoalManager.php index <HASH>..<HASH> 100644 --- a/core/Tracker/GoalManager.php +++ b/core/Tracker/GoalManager.php @@ -10,6 +10,7 @@ namespace Piwik\Tracker; use Exception; use Piwik\Common; +use Piwik\Container\StaticContainer; use Piwik\Date; use Piwik\Piw...
Prevent tracking failures when invalid goal patterns are defined (#<I>) * Log warning instead of throwing an exception * add try/catch
diff --git a/src/ExtendedMySql.php b/src/ExtendedMySql.php index <HASH>..<HASH> 100644 --- a/src/ExtendedMySql.php +++ b/src/ExtendedMySql.php @@ -3,6 +3,28 @@ namespace Codeception\Lib\Driver; -class ExtendedMySql extends MySql{ +class ExtendedMySql extends MySql +{ -} \ No newline at end of file + public ...
added the insertOrUpdate method to the ExtendedMySql class
diff --git a/src/logger.js b/src/logger.js index <HASH>..<HASH> 100644 --- a/src/logger.js +++ b/src/logger.js @@ -4,7 +4,7 @@ import { format as fmt } from 'util'; import chalkModule from 'chalk'; const chalk = new chalkModule.constructor({ - enabled: process.stderr.isTTY, + enabled: process.stderr && process.st...
Don't assume `process.stderr` is an object It's typically not set in Browserify.
diff --git a/common/common.go b/common/common.go index <HASH>..<HASH> 100644 --- a/common/common.go +++ b/common/common.go @@ -39,7 +39,7 @@ const ( OverlayPreparedFilename = "overlay-prepared" PrivateUsersPreparedFilename = "private-users-prepared" - MetadataServicePort = 2375 + MetadataServicePort = ...
common: change the port number The previous port number was registered and reserved. Use a random high port number in the non-dynamic range.
diff --git a/scripts/build_pyinstaller.py b/scripts/build_pyinstaller.py index <HASH>..<HASH> 100644 --- a/scripts/build_pyinstaller.py +++ b/scripts/build_pyinstaller.py @@ -130,10 +130,10 @@ def generate_static_css(): os.chdir(server_dir) compass_process = subprocess.Popen(['compass', 'compile']) compa...
ensures compass compile succeeds
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py index <HASH>..<HASH> 100644 --- a/command/bdist_dumb.py +++ b/command/bdist_dumb.py @@ -71,12 +71,11 @@ class bdist_dumb (Command): self.run_command ('build') - install = self.reinitialize_command('install') + install = self.reinitial...
Ensure sub-commands of "install" are reinitialized too. Run "install" the right way, by calling 'run_command()'.
diff --git a/DotNotationPointers.js b/DotNotationPointers.js index <HASH>..<HASH> 100644 --- a/DotNotationPointers.js +++ b/DotNotationPointers.js @@ -83,11 +83,17 @@ Object.defineProperty(DotNotationPointer.prototype, 'val', { } } }, set: function(value) { - if(this.propertyInfo.obj =...
remove a property from the object if it's new value is set to 'undefined'
diff --git a/ansible_runner/runner.py b/ansible_runner/runner.py index <HASH>..<HASH> 100644 --- a/ansible_runner/runner.py +++ b/ansible_runner/runner.py @@ -178,7 +178,11 @@ class Runner(object): # option expecting should have already been written in ansible_runner.runner_config env_file_hos...
Write fully populated envfile to pass to podman Without this, manually reproducing the container's environment is really difficult.
diff --git a/src/main/java/groovy/lang/NumberRange.java b/src/main/java/groovy/lang/NumberRange.java index <HASH>..<HASH> 100644 --- a/src/main/java/groovy/lang/NumberRange.java +++ b/src/main/java/groovy/lang/NumberRange.java @@ -644,7 +644,7 @@ public class NumberRange extends AbstractList<Comparable> implements Rang...
GROOVY-<I>: Fixed NumberRange.get not throwing at certain conditions With ranges like 0G<..<1G, the get method would erroneously return 1G instead of throwing an exception. This commit fixes that by directly incrementing the current value in the iterator instead of next() call.
diff --git a/salt/modules/network.py b/salt/modules/network.py index <HASH>..<HASH> 100644 --- a/salt/modules/network.py +++ b/salt/modules/network.py @@ -2106,7 +2106,7 @@ def fqdns(): results = pool.map(_lookup_fqdn, addresses) pool.close() pool.join() - except Exception as exc: + exc...
Fix pylint issue
diff --git a/lib/virtus/value_object.rb b/lib/virtus/value_object.rb index <HASH>..<HASH> 100644 --- a/lib/virtus/value_object.rb +++ b/lib/virtus/value_object.rb @@ -35,6 +35,7 @@ module Virtus include ::Virtus include InstanceMethods extend ClassMethods + private :attributes= ...
Disallow mutation of ValueObjects via #attributes= * Increases consistency as mutations on value objects should be created via #with(mutations).
diff --git a/lib/endpoints/class-wp-rest-users-controller.php b/lib/endpoints/class-wp-rest-users-controller.php index <HASH>..<HASH> 100755 --- a/lib/endpoints/class-wp-rest-users-controller.php +++ b/lib/endpoints/class-wp-rest-users-controller.php @@ -121,7 +121,7 @@ class WP_REST_Users_Controller extends WP_REST_Co...
Only add asterisks to the user query if there is a query present
diff --git a/amino/algebra.py b/amino/algebra.py index <HASH>..<HASH> 100644 --- a/amino/algebra.py +++ b/amino/algebra.py @@ -3,6 +3,7 @@ from typing import GenericMeta, Any from types import SimpleNamespace from amino import List, Lists +from amino.util.string import ToStr class AlgebraMeta(GenericMeta): @@ ...
convenience base class `Algebra` inheriting `ToStr`
diff --git a/lib/assets/Css.js b/lib/assets/Css.js index <HASH>..<HASH> 100644 --- a/lib/assets/Css.js +++ b/lib/assets/Css.js @@ -69,10 +69,9 @@ extendWithGettersAndSetters(Css.prototype, { // CSSOM gets the @charset declaration mixed up with the first selector: try { this._p...
asset.Css: Error details are no longer thrown away on caught css parse errors
diff --git a/terms/settings.py b/terms/settings.py index <HASH>..<HASH> 100644 --- a/terms/settings.py +++ b/terms/settings.py @@ -34,15 +34,13 @@ if hasattr(settings, 'TERMS_ADDITIONAL_IGNORED_TAGS'): TERMS_IGNORED_TAGS.extend(settings.TERMS_ADDITIONAL_IGNORED_TAGS) -TERMS_IGNORED_CLASSES = set( - getattr(...
Defines TERMS_IGNORED_CLASSES as a list instead of a set.
diff --git a/zipline/utils/date_utils.py b/zipline/utils/date_utils.py index <HASH>..<HASH> 100644 --- a/zipline/utils/date_utils.py +++ b/zipline/utils/date_utils.py @@ -44,10 +44,10 @@ def EPOCH(utc_datetime): delta = utc_datetime - UNIX_EPOCH seconds = delta.total_seconds() ms = seconds * 1000 - re...
encoding epoch as an int, rather than float.
diff --git a/lib/json_api_client/query/builder.rb b/lib/json_api_client/query/builder.rb index <HASH>..<HASH> 100644 --- a/lib/json_api_client/query/builder.rb +++ b/lib/json_api_client/query/builder.rb @@ -81,8 +81,8 @@ module JsonApiClient end end when Array - table.m...
fix handling of array definitions of related included links
diff --git a/lib/swag_dev/project/tools/yardoc/watcher/_bootstrap.rb b/lib/swag_dev/project/tools/yardoc/watcher/_bootstrap.rb index <HASH>..<HASH> 100644 --- a/lib/swag_dev/project/tools/yardoc/watcher/_bootstrap.rb +++ b/lib/swag_dev/project/tools/yardoc/watcher/_bootstrap.rb @@ -8,8 +8,7 @@ require 'listen/record/sy...
yardoc/watcher/_bootstrap (tools) disable rubocop
diff --git a/mode/r/r.js b/mode/r/r.js index <HASH>..<HASH> 100644 --- a/mode/r/r.js +++ b/mode/r/r.js @@ -19,7 +19,7 @@ CodeMirror.defineMode("r", function(config) { for (var i = 0; i < words.length; ++i) res[words[i]] = true; return res; } - var commonAtoms = ["NULL", "NA", "Inf", "NaN", "NA_integer_", ...
[r mode] Highlight TRUE/FALSE as atoms
diff --git a/plenum/server/pool_req_handler.py b/plenum/server/pool_req_handler.py index <HASH>..<HASH> 100644 --- a/plenum/server/pool_req_handler.py +++ b/plenum/server/pool_req_handler.py @@ -25,7 +25,7 @@ class PoolRequestHandler(RequestHandler): self.state = state self.domainState = domainState ...
add config=None argument to validate method to make sub and super signatures match
diff --git a/discord/client.py b/discord/client.py index <HASH>..<HASH> 100644 --- a/discord/client.py +++ b/discord/client.py @@ -308,8 +308,9 @@ class ConnectionState(object): if server is not None: user_id = data['user']['id'] member = utils.find(lambda m: m.id == user_id, server.m...
Check if member is in list for GUILD_MEMBER_REMOVE.
diff --git a/testarator.go b/testarator.go index <HASH>..<HASH> 100644 --- a/testarator.go +++ b/testarator.go @@ -77,7 +77,11 @@ func (s *Setup) SpinUp() error { return nil } - opt := &aetest.Options{AppID: "unittest", StronglyConsistentDatastore: true} + opt := &aetest.Options{ + AppID: "unittest", + Strongl...
Set SuppressDevAppServerLog option in aetest The latest appengine supports an option to suppress annoying logs in tests. This patch enables it. <URL>
diff --git a/agent/config/runtime_test.go b/agent/config/runtime_test.go index <HASH>..<HASH> 100644 --- a/agent/config/runtime_test.go +++ b/agent/config/runtime_test.go @@ -8,6 +8,7 @@ import ( "errors" "flag" "fmt" + "github.com/armon/go-metrics/prometheus" "io/ioutil" "net" "os" @@ -7103,9 +7104,11 @@ f...
update runtime_test to handle PrometheusOpts expiry field change
diff --git a/lib/Ogone/AbstractResponse.php b/lib/Ogone/AbstractResponse.php index <HASH>..<HASH> 100644 --- a/lib/Ogone/AbstractResponse.php +++ b/lib/Ogone/AbstractResponse.php @@ -93,4 +93,13 @@ abstract class AbstractResponse implements Response { return $this->parameters[$key]; } + + /** + *...
toArray method vanished from the PaymentResponse
diff --git a/psphere/managedobjects.py b/psphere/managedobjects.py index <HASH>..<HASH> 100644 --- a/psphere/managedobjects.py +++ b/psphere/managedobjects.py @@ -360,6 +360,30 @@ class ManagedEntity(ExtensibleManagedObject): def __init__(self, mo_ref, server): super(ManagedEntity, self).__init__(mo_ref, ...
Provide a find and find_one method for ManagedEntity's.
diff --git a/src/df.js b/src/df.js index <HASH>..<HASH> 100644 --- a/src/df.js +++ b/src/df.js @@ -1,3 +1,4 @@ +import * as LogManager from 'aurelia-logging'; import {I18N} from './i18n'; export class DfValueConverter { @@ -17,7 +18,8 @@ export class DfValueConverter { if (dfOrOptions && (typeof dfOrOptions.fo...
fix(logger): use LogManager instead console uses the aurelia-logging service instead of direct usage of console.warn
diff --git a/ReText/window.py b/ReText/window.py index <HASH>..<HASH> 100644 --- a/ReText/window.py +++ b/ReText/window.py @@ -111,7 +111,7 @@ class ReTextWindow(QMainWindow): self.actionChangeFont = self.act(self.tr('Change default font'), trig=self.changeFont) self.actionSearch = self.act(self.tr('Find text'), ...
Fix triggering boolean actions in PySide
diff --git a/src/Codeception/Command/Run.php b/src/Codeception/Command/Run.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Command/Run.php +++ b/src/Codeception/Command/Run.php @@ -398,9 +398,15 @@ class Run extends Command $tokens = explode(' ', $request); foreach ($tokens as $token) { ...
Fixed uninitialized string offset (#<I>)
diff --git a/core/server/api/canary/utils/serializers/output/products.js b/core/server/api/canary/utils/serializers/output/products.js index <HASH>..<HASH> 100644 --- a/core/server/api/canary/utils/serializers/output/products.js +++ b/core/server/api/canary/utils/serializers/output/products.js @@ -73,6 +73,7 @@ functio...
Added active flag to products API (#<I>) refs <URL> as active or archived
diff --git a/resources/views/previewLinkPopup.blade.php b/resources/views/previewLinkPopup.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/previewLinkPopup.blade.php +++ b/resources/views/previewLinkPopup.blade.php @@ -1,6 +1,7 @@ <div id="MailPreviewDriverBox" style=" position:absolute; - top:0; +...
fix: make setTimeoutInSeconds works In previous version, variable $timeoutInSeconds wasn't scaped by double braces, so blade puts it like a string. Now, it is fixed, and as a plus, added a X button to close manually
diff --git a/lib/bibliothecary/parsers/npm.rb b/lib/bibliothecary/parsers/npm.rb index <HASH>..<HASH> 100644 --- a/lib/bibliothecary/parsers/npm.rb +++ b/lib/bibliothecary/parsers/npm.rb @@ -25,7 +25,7 @@ module Bibliothecary }, match_filename("npm-ls.json") => { kind: 'lockfile', - ...
Also rename method to be more consistent.
diff --git a/tests/Kernel/Http/StreamResponseTest.php b/tests/Kernel/Http/StreamResponseTest.php index <HASH>..<HASH> 100644 --- a/tests/Kernel/Http/StreamResponseTest.php +++ b/tests/Kernel/Http/StreamResponseTest.php @@ -1,12 +1,20 @@ <?php +/* + * This file is part of the overtrue/wechat. + * + * (c) overtrue <i@...
Apply fixes from StyleCI (#<I>) [ci skip] [skip ci]
diff --git a/cleanse.js b/cleanse.js index <HASH>..<HASH> 100644 --- a/cleanse.js +++ b/cleanse.js @@ -60,8 +60,10 @@ function cleanseHtml(str, options){ str = str.replace(/<head\b[^<]*(?:(?!<\/head>)<[^<]*)*<\/head>/gi,' '); //removes head section entirely if(options.style) str = str.replace(/<...
fixed mid attribute '>' usage by completely clearing out attributes first before removing the tag
diff --git a/errors.js b/errors.js index <HASH>..<HASH> 100644 --- a/errors.js +++ b/errors.js @@ -462,6 +462,7 @@ module.exports.classify = function classify(err) { case 'tchannel-thrift-handler.parse-error.head-failed': case 'tchannel.checksum': case 'tchannel.duplicate-header-key': + ...
errors: move null key to bad request
diff --git a/tests/test.js b/tests/test.js index <HASH>..<HASH> 100644 --- a/tests/test.js +++ b/tests/test.js @@ -55,6 +55,12 @@ describe('lessWatchCompilerUtils Module API', function(){ lessWatchCompilerUtils.config.sourceMap = true; assert.equal("lessc --source-map test testFolder/test.css"...
test: Add test for minified flag
diff --git a/estnltk/storage/postgres/where_clause.py b/estnltk/storage/postgres/where_clause.py index <HASH>..<HASH> 100644 --- a/estnltk/storage/postgres/where_clause.py +++ b/estnltk/storage/postgres/where_clause.py @@ -23,13 +23,16 @@ class WhereClause(Composed): else: super().__init__([]) +...
added property WhereClause.required_layers
diff --git a/Doctrine/Mapper/MetaInformationFactory.php b/Doctrine/Mapper/MetaInformationFactory.php index <HASH>..<HASH> 100644 --- a/Doctrine/Mapper/MetaInformationFactory.php +++ b/Doctrine/Mapper/MetaInformationFactory.php @@ -55,7 +55,7 @@ class MetaInformationFactory } if (!$this->annotationRe...
do not throw exception if a entity has no document annotation
diff --git a/rrecur.js b/rrecur.js index <HASH>..<HASH> 100644 --- a/rrecur.js +++ b/rrecur.js @@ -118,6 +118,11 @@ } if ('UNTIL' === k || 'DTSTART' === k) { + if ('number' === typeof v) { + v = new Date(v).toISOString(); + } else if ('object' === typeof v) { + v = v.toIS...
fix #2 convert date object and integer timestamp to iso string for until and dtstart
diff --git a/h5p.classes.php b/h5p.classes.php index <HASH>..<HASH> 100644 --- a/h5p.classes.php +++ b/h5p.classes.php @@ -1864,7 +1864,7 @@ class H5PCore { 'js/h5p-utils.js', ); - public static $defaultContentWhitelist = 'json png jpg jpeg gif bmp tif tiff svg eot ttf woff woff2 otf webm mp4 ogg mp3 wav txt...
Add m4a extension to content files whitelist
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ from setuptools import setup setup( name="tyoi.OAuth2", - version="0.1.0", + version="0.2.0", author="Ryan Horn", author_email="ryan.horn.web@gmail.com", description=("Implements the...
Updated setup.py with new version and packages
diff --git a/lib/conceptql/rdbms/postgres.rb b/lib/conceptql/rdbms/postgres.rb index <HASH>..<HASH> 100644 --- a/lib/conceptql/rdbms/postgres.rb +++ b/lib/conceptql/rdbms/postgres.rb @@ -32,6 +32,10 @@ module ConceptQL def explain_temp_tables? ENV["CONCEPTQL_PG_EXPLAIN_TEMP_TABLES"] == "true" end...
Introduce RDBMS#preferred_formatter sql_format doesn't format our commented PostgreSQL SQL very nicely, so we'll use pg_format when we're formatting PostgreSQL-oriented SQL This is a quick hack to allow an RDBMS to list a preferred formatter and I'd really like to refactor this some day
diff --git a/benchexec/tablegenerator/__init__.py b/benchexec/tablegenerator/__init__.py index <HASH>..<HASH> 100755 --- a/benchexec/tablegenerator/__init__.py +++ b/benchexec/tablegenerator/__init__.py @@ -1159,11 +1159,8 @@ def basename_without_ending(file): name = name[:-4] return name -def main(args...
Refactoring: extract method in table-generator
diff --git a/course/jumpto.php b/course/jumpto.php index <HASH>..<HASH> 100644 --- a/course/jumpto.php +++ b/course/jumpto.php @@ -10,6 +10,10 @@ $jump = optional_param('jump', '', PARAM_RAW); + if (!confirm_sesskey()) { + print_error('confirmsesskeybad'); + } + if (strpos($jump, $CFG->wwwroo...
validate local redirection actions in jumpto.php SC#<I>
diff --git a/notario/decorators.py b/notario/decorators.py index <HASH>..<HASH> 100644 --- a/notario/decorators.py +++ b/notario/decorators.py @@ -58,7 +58,8 @@ def not_empty(_object): @instance_of() def decorated(value): - assert value, "is empty" + name = getattr(value, '__na...
is_empty has a better failure message
diff --git a/tests/job/validation_test.py b/tests/job/validation_test.py index <HASH>..<HASH> 100644 --- a/tests/job/validation_test.py +++ b/tests/job/validation_test.py @@ -262,7 +262,7 @@ class ClassicalHazardFormTestCase(unittest.TestCase): 'Number of logic tree samples must be >= 0', ...
tests/job/validation_test: Updated expected error message string in reference to a `poes` param error.
diff --git a/src/Data/ListController.js b/src/Data/ListController.js index <HASH>..<HASH> 100644 --- a/src/Data/ListController.js +++ b/src/Data/ListController.js @@ -1,14 +1,24 @@ "use strict"; +let route; + class ListController { - constructor(app, Module, $routeParams) { + constructor(app, Module, $rou...
empty model needs setup; add create method
diff --git a/api/config.go b/api/config.go index <HASH>..<HASH> 100644 --- a/api/config.go +++ b/api/config.go @@ -3,6 +3,7 @@ package api import ( "flag" "net" + "net/http" "net/http/httputil" "net/url" @@ -58,4 +59,11 @@ func ConfigProcess() { log.Fatal(4, "API Cannot parse fallback-graphite-addr: %s", ...
fix duplicate access control headers leading to browser blocking requests we can now successfully use MT directly from browser, with dynamic proxying!
diff --git a/core/src/main/java/hudson/tasks/MailSender.java b/core/src/main/java/hudson/tasks/MailSender.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/tasks/MailSender.java +++ b/core/src/main/java/hudson/tasks/MailSender.java @@ -312,7 +312,12 @@ public class MailSender { rcp.a...
[FIXED HUDSON-<I>] Send build status email to valid addresses rather than aborting for one invalid address git-svn-id: <URL>
diff --git a/python/mxboard/event_file_writer.py b/python/mxboard/event_file_writer.py index <HASH>..<HASH> 100644 --- a/python/mxboard/event_file_writer.py +++ b/python/mxboard/event_file_writer.py @@ -32,6 +32,8 @@ import six from .proto import event_pb2 from .record_writer import RecordWriter +logging.basicConfi...
Fix logging problem in py<I>
diff --git a/protocols/primary-backup/src/main/java/io/atomix/protocols/backup/proxy/PrimaryBackupProxy.java b/protocols/primary-backup/src/main/java/io/atomix/protocols/backup/proxy/PrimaryBackupProxy.java index <HASH>..<HASH> 100644 --- a/protocols/primary-backup/src/main/java/io/atomix/protocols/backup/proxy/Primary...
Ensure PrimaryBackupProxy.close future is properly completed.
diff --git a/robjects/tests.py b/robjects/tests.py index <HASH>..<HASH> 100644 --- a/robjects/tests.py +++ b/robjects/tests.py @@ -2,6 +2,8 @@ import unittest import redis from robjects.base import BaseObject +from robjects.objects import JsonObject, HashObject + r = redis.Redis() r.flushdb() @@ -65,5 +67,23 @@...
add tests for JsonObject and HashObject
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -135,7 +135,7 @@ HtmlWebpackPugPlugin.prototype.injectAssetsIntoSlim = function (file, styles, sc */ HtmlWebpackPugPlugin.prototype.injectAssets = function (file, head, body, assets) { var self = this; - var bodyRegExp ...
Fix adding link tag to head when word 'body' is present in content
diff --git a/crypto/secp256k1/secp256.go b/crypto/secp256k1/secp256.go index <HASH>..<HASH> 100644 --- a/crypto/secp256k1/secp256.go +++ b/crypto/secp256k1/secp256.go @@ -20,11 +20,11 @@ package secp256k1 /* #cgo CFLAGS: -I./libsecp256k1 -#cgo darwin CFLAGS: -I/usr/local/include +#cgo darwin CFLAGS: -I/usr/local/in...
crypto/secp<I>k1: add C compiler flags for pkgsrc pkgsrc is a cross-platform package manager that also supports OS X.
diff --git a/java/client/test/org/openqa/selenium/RenderedWebElementTest.java b/java/client/test/org/openqa/selenium/RenderedWebElementTest.java index <HASH>..<HASH> 100644 --- a/java/client/test/org/openqa/selenium/RenderedWebElementTest.java +++ b/java/client/test/org/openqa/selenium/RenderedWebElementTest.java @@ -1...
JasonLeyba: @Ignoring test that fails for all configs. r<I>
diff --git a/lxd-agent/exec.go b/lxd-agent/exec.go index <HASH>..<HASH> 100644 --- a/lxd-agent/exec.go +++ b/lxd-agent/exec.go @@ -235,7 +235,7 @@ func (s *execWs) Do(op *operations.Operation) error { stderr = ttys[2] } - controlExit := make(chan bool) + controlExit := make(chan bool, 1) attachedChildIsBorn :=...
lxd-agent/exec: Add buffered channel to prevent deadlock on cmd exit
diff --git a/hanlp/components/sts/transformer_sts.py b/hanlp/components/sts/transformer_sts.py index <HASH>..<HASH> 100644 --- a/hanlp/components/sts/transformer_sts.py +++ b/hanlp/components/sts/transformer_sts.py @@ -161,7 +161,10 @@ class TransformerSemanticTextualSimilarity(TorchComponent): # noinspection PyMe...
Avoid re-downloading Electra model
diff --git a/src/gitgraph.js b/src/gitgraph.js index <HASH>..<HASH> 100644 --- a/src/gitgraph.js +++ b/src/gitgraph.js @@ -538,11 +538,19 @@ // Add start point if (this.parentBranch) { - this.startPoint = { - x: this.parentBranch.offsetX - this.parent.commitOffsetX + this.template.commit.spacing...
Branch from the latest point instead of parent commit when parent commit is the head of parent branch
diff --git a/timepiece/forms.py b/timepiece/forms.py index <HASH>..<HASH> 100644 --- a/timepiece/forms.py +++ b/timepiece/forms.py @@ -77,12 +77,12 @@ class EditPersonForm(auth_forms.UserChangeForm): label=_(u'Repeat Password'), widget=forms.PasswordInput(render_value=False)) - class Meta: - ...
refs #<I> - Removed extra password field from Edit Person form
diff --git a/resources/config/default.php b/resources/config/default.php index <HASH>..<HASH> 100644 --- a/resources/config/default.php +++ b/resources/config/default.php @@ -58,7 +58,8 @@ return function (CM_Config_Node $config) { ); $config->CM_Http_Response_View_Abstract->exceptionsToCatch = array( - ...
Log "nonexistent" and "invalid param" in view responses
diff --git a/tools/upload_website.js b/tools/upload_website.js index <HASH>..<HASH> 100755 --- a/tools/upload_website.js +++ b/tools/upload_website.js @@ -1,4 +1,6 @@ #!/usr/bin/env node -const run = require('./run'); -// pip install aws -run.sh(`aws s3 sync website/ s3://propelml.org --follow-symlinks --delete`); +co...
tools: make upload_website work on windows
diff --git a/addon/components/flexberry-layers-attributes-panel.js b/addon/components/flexberry-layers-attributes-panel.js index <HASH>..<HASH> 100644 --- a/addon/components/flexberry-layers-attributes-panel.js +++ b/addon/components/flexberry-layers-attributes-panel.js @@ -667,7 +667,7 @@ export default Ember.Componen...
Remove 'circle' from available draw tools for polygon layer.
diff --git a/pandas/core/series.py b/pandas/core/series.py index <HASH>..<HASH> 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -166,6 +166,8 @@ class Series(base.IndexOpsMixin, generic.NDFrame): Data type for the output Series. If not specified, this will be inferred from `data`. ...
added names, fastpath parameters explanation to pandas.Series (#<I>)
diff --git a/test/index.js b/test/index.js index <HASH>..<HASH> 100644 --- a/test/index.js +++ b/test/index.js @@ -92,8 +92,20 @@ infos.inbox[1] = infos.tasks[0] infos.inbox[2] = infos.tasks[1] infos.inbox[3] = infos.tasks[1] +console.log(infos) + +assert(infos.inbox[0] === infos.tasks[0]) +assert(infos.inbox[1] ==...
add asserts for infos and result4
diff --git a/src/event.js b/src/event.js index <HASH>..<HASH> 100644 --- a/src/event.js +++ b/src/event.js @@ -133,7 +133,7 @@ jQuery.event = { var namespaces = type.split("."); type = namespaces.shift(); var all = !namespaces.length, - namespace = new RegExp("(^|\\.)" + namespaces.slice().sort()...
Re-adding zeros removed from slice calls in last commit.
diff --git a/salt/engines/stalekey.py b/salt/engines/stalekey.py index <HASH>..<HASH> 100644 --- a/salt/engines/stalekey.py +++ b/salt/engines/stalekey.py @@ -51,7 +51,7 @@ def _get_keys(): def start(interval=3600, expire=604800): ck = salt.utils.minions.CkMinions(__opts__) - presence_file = '{0}/minions/pre...
Create presence.p directly in cachedir salt-key was stacktracing when finding the presence.p file in /var/cache/salt/master/minions
diff --git a/pydsl/Grammar/Checker.py b/pydsl/Grammar/Checker.py index <HASH>..<HASH> 100644 --- a/pydsl/Grammar/Checker.py +++ b/pydsl/Grammar/Checker.py @@ -65,16 +65,12 @@ class BNFChecker(Checker): def __init__(self, bnf, parser = "auto"): Checker.__init__(self) parser = bnf.options.get("pars...
default parser is recursivedescent
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -17,6 +17,7 @@ Dir[File.join(File.dirname(__FILE__), "support/shared_examples/**/*.rb")].each d end RSpec.configure do |config| + config.color = true config.order = "random" ...
Updated RSpec spec helper to enable color output. - This used to be a global setting that is now configured at the project level. - Provides improved transparency for the project.
diff --git a/spec/api-browser-window-spec.js b/spec/api-browser-window-spec.js index <HASH>..<HASH> 100644 --- a/spec/api-browser-window-spec.js +++ b/spec/api-browser-window-spec.js @@ -1973,12 +1973,12 @@ describe('BrowserWindow module', function () { it('should keep window hidden if already in hidden state', ...
:art: Use leave-full-screen event instead of setTimeout()
diff --git a/lib/qunited/qunit_test_result.rb b/lib/qunited/qunit_test_result.rb index <HASH>..<HASH> 100644 --- a/lib/qunited/qunit_test_result.rb +++ b/lib/qunited/qunit_test_result.rb @@ -74,14 +74,21 @@ module QUnited def self.clean_up_result(test_result) test_result = symbolize_keys(test_result) ...
Refactor QUnitTestResult.symbolize_keys to change keys in nested hashes & arrays
diff --git a/assess_constraints.py b/assess_constraints.py index <HASH>..<HASH> 100755 --- a/assess_constraints.py +++ b/assess_constraints.py @@ -155,8 +155,7 @@ def assess_instance_type_constraints(client): """Assess deployment with instance-type constraints.""" provider = client.env.config.get('type') ...
Made testing a provider with no instance-types a no-op for assess_instance_type_constraints rather than an error.
diff --git a/cmd/main.js b/cmd/main.js index <HASH>..<HASH> 100755 --- a/cmd/main.js +++ b/cmd/main.js @@ -17,14 +17,15 @@ var req = require('lazreq')({ Installer: '../lib/installer.js', inquirer: 'inquirer', path: 'path', - pipelines: '../lib/pipelines.js' + pipelines: '../lib/pipelines.js', + ...
Fix errors introduced during the lazy-loading rewrite.
diff --git a/src/models/BusinessHourGenerator.js b/src/models/BusinessHourGenerator.js index <HASH>..<HASH> 100644 --- a/src/models/BusinessHourGenerator.js +++ b/src/models/BusinessHourGenerator.js @@ -8,7 +8,7 @@ var BUSINESS_HOUR_EVENT_DEFAULTS = { }; -var BusinessHourGenerator = Class.extend({ +var BusinessHou...
make BusinessHourGenerator public
diff --git a/Classes/Application/FLOW3Distribution.php b/Classes/Application/FLOW3Distribution.php index <HASH>..<HASH> 100644 --- a/Classes/Application/FLOW3Distribution.php +++ b/Classes/Application/FLOW3Distribution.php @@ -123,7 +123,7 @@ class FLOW3Distribution extends \TYPO3\Deploy\Domain\Model\Application { ...
[+BUGFIX] Fix inclusion of empty Cache/ directory
diff --git a/tests/QueryBuilderTest.php b/tests/QueryBuilderTest.php index <HASH>..<HASH> 100644 --- a/tests/QueryBuilderTest.php +++ b/tests/QueryBuilderTest.php @@ -361,12 +361,12 @@ class QueryBuilderTest extends \PHPUnit_Extensions_Database_TestCase $this->queryBuilder->select(['value']); - $this->assertEqu...
FIX: unittest for uid as primary key & order values
diff --git a/src/Exscript/protocols/drivers/junos_erx.py b/src/Exscript/protocols/drivers/junos_erx.py index <HASH>..<HASH> 100644 --- a/src/Exscript/protocols/drivers/junos_erx.py +++ b/src/Exscript/protocols/drivers/junos_erx.py @@ -37,7 +37,7 @@ class JunOSERXDriver(Driver): def init_terminal(self, conn): ...
exscript: Fixed bug: Set terminal width to highest value possible for ERX driver.
diff --git a/lib/api/utils.js b/lib/api/utils.js index <HASH>..<HASH> 100644 --- a/lib/api/utils.js +++ b/lib/api/utils.js @@ -262,7 +262,8 @@ var load = exports.load = function(html, options) { }; var html = exports.html = function(dom) { - if (dom !== undefined) { + if (dom) { + dom = (type(dom) === 'string'...
$.html(selector) now works to select outer html
diff --git a/lib/Models/getAncestors.js b/lib/Models/getAncestors.js index <HASH>..<HASH> 100644 --- a/lib/Models/getAncestors.js +++ b/lib/Models/getAncestors.js @@ -10,10 +10,13 @@ var defined = require('terriajs-cesium/Source/Core/defined'); * @return {CatalogMember[]} The members' ancestors in its parent tree, st...
replace recursive getAncestors with loop
diff --git a/src/spec/integration/links/export_release_spec.rb b/src/spec/integration/links/export_release_spec.rb index <HASH>..<HASH> 100644 --- a/src/spec/integration/links/export_release_spec.rb +++ b/src/spec/integration/links/export_release_spec.rb @@ -101,7 +101,6 @@ describe 'exporting release with templates th...
Update integration tests to match new export-release behavior
diff --git a/lib/table_setter/command.rb b/lib/table_setter/command.rb index <HASH>..<HASH> 100644 --- a/lib/table_setter/command.rb +++ b/lib/table_setter/command.rb @@ -24,7 +24,7 @@ options: def initialize @prefix = "" parse_options - @prefix = "/#{@prefix}/".gsub(/^\/\//, "") + @prefix ...
prefix for rack works now as well
diff --git a/lib/devise-authy/controllers/helpers.rb b/lib/devise-authy/controllers/helpers.rb index <HASH>..<HASH> 100644 --- a/lib/devise-authy/controllers/helpers.rb +++ b/lib/devise-authy/controllers/helpers.rb @@ -11,7 +11,8 @@ module DeviseAuthy def remember_device cookies.signed[:remember_device]...
add exires to cookie remember_device, otherwise, cookie is expired when the browser session ends
diff --git a/src/commons/org/codehaus/groovy/grails/commons/spring/DefaultBeanConfiguration.java b/src/commons/org/codehaus/groovy/grails/commons/spring/DefaultBeanConfiguration.java index <HASH>..<HASH> 100644 --- a/src/commons/org/codehaus/groovy/grails/commons/spring/DefaultBeanConfiguration.java +++ b/src/commons/o...
Fix for some deprecation warnings which appeared after upgrade to Spring <I>. git-svn-id: <URL>
diff --git a/lib/bot.js b/lib/bot.js index <HASH>..<HASH> 100644 --- a/lib/bot.js +++ b/lib/bot.js @@ -108,14 +108,22 @@ Bot.prototype = { continueParams = { continue: '' }; let titles, pageids = params.pageids; if ( params.titles ) { - if ( params.titles.length === 0 ) { delete params.titles; } - else { ...
Work on linting issues.
diff --git a/lib/ohm.rb b/lib/ohm.rb index <HASH>..<HASH> 100644 --- a/lib/ohm.rb +++ b/lib/ohm.rb @@ -105,9 +105,10 @@ module Ohm self << model end - def sort(options = {}) + def sort(_options = {}) return [] unless key.exists + options = _options.dup options[:sta...
Avoid overriding the passed options.
diff --git a/test/dhis2_test.rb b/test/dhis2_test.rb index <HASH>..<HASH> 100644 --- a/test/dhis2_test.rb +++ b/test/dhis2_test.rb @@ -14,8 +14,19 @@ class Dhis2Test < Minitest::Test assert_equal 50, org_units.size end + def test_get_org_units_all_fields + org_units = Dhis2.org_units(fields: [":all"], pag...
Add a test requesting all fields
diff --git a/lib/blazing/cli/create.rb b/lib/blazing/cli/create.rb index <HASH>..<HASH> 100644 --- a/lib/blazing/cli/create.rb +++ b/lib/blazing/cli/create.rb @@ -7,7 +7,7 @@ module Blazing include Thor::Actions argument :repository - argument :remote + argument :target def self.sourc...
remote has been renamed to target
diff --git a/src/RoundingMode.php b/src/RoundingMode.php index <HASH>..<HASH> 100644 --- a/src/RoundingMode.php +++ b/src/RoundingMode.php @@ -17,6 +17,8 @@ final class RoundingMode { /** * Private constructor. This class is not instantiable. + * + * @codeCoverageIgnore */ private functio...
Ignore code coverage on private constructor for non-instantiable class
diff --git a/pushtx/broadcaster.go b/pushtx/broadcaster.go index <HASH>..<HASH> 100644 --- a/pushtx/broadcaster.go +++ b/pushtx/broadcaster.go @@ -137,7 +137,7 @@ func (b *Broadcaster) broadcastHandler(sub *blockntfns.Subscription) { // new goroutine to exectue a rebroadcast. case <-rebroadcastSem: default: - ...
pushtx: demote existing rebroadcast log to trace It would log on every block, which during initial sync would fill the logs.
diff --git a/molgenis-data/src/main/java/org/molgenis/data/util/UniqueId.java b/molgenis-data/src/main/java/org/molgenis/data/util/UniqueId.java index <HASH>..<HASH> 100644 --- a/molgenis-data/src/main/java/org/molgenis/data/util/UniqueId.java +++ b/molgenis-data/src/main/java/org/molgenis/data/util/UniqueId.java @@ -2...
Fix squid:S<I> ThreadLocal memory leak in UniqueId (#<I>)
diff --git a/src/main/org/codehaus/groovy/reflection/CachedClass.java b/src/main/org/codehaus/groovy/reflection/CachedClass.java index <HASH>..<HASH> 100644 --- a/src/main/org/codehaus/groovy/reflection/CachedClass.java +++ b/src/main/org/codehaus/groovy/reflection/CachedClass.java @@ -281,16 +281,14 @@ public class Ca...
remove unneeded synchronization. It is a racy single-check, but ok in this case
diff --git a/test/test_peerassets.py b/test/test_peerassets.py index <HASH>..<HASH> 100644 --- a/test/test_peerassets.py +++ b/test/test_peerassets.py @@ -24,7 +24,6 @@ def test_find_deck(prov): 'network': 'peercoin-testnet', 'number_of_decimals': 2, ...
test_peerassets::deck does no handle testnet boolean anymore
diff --git a/vendor/k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go b/vendor/k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go index <HASH>..<HASH> 100644 --- a/vendor/k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go +++ b/vendor/k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go @@ -6...
UPSTREAM: <I>: scheduler should not log an error when no fit
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -123,6 +123,12 @@ function writeAndRunCodeBlocks(codeBlocks) { } }); }); + }) + .then(function(codeBlocks) { + return removeOldDir(dir) + .then(function() {; + return codeBlocks + });...
fix: remove old directory from running markdown This was forgotten in a previous change.
diff --git a/doctr/__main__.py b/doctr/__main__.py index <HASH>..<HASH> 100644 --- a/doctr/__main__.py +++ b/doctr/__main__.py @@ -13,7 +13,7 @@ which you should insert into your .travis.yml. Then, on Travis, for the build where you build your docs, add - - doctr deploy . --built-docs path/to/built/html/ + -...
Render code in docs properly
diff --git a/settings.js b/settings.js index <HASH>..<HASH> 100644 --- a/settings.js +++ b/settings.js @@ -29,6 +29,8 @@ var fs = require('fs'); var path = require('path'); var extend = require('xtend'); +var chalk = require('chalk'); + var utilities = require('./lib/utilities.js'); var settings = { @@ -192,6 +1...
Add warning when migrating .spark to .particle
diff --git a/cwltool/docker.py b/cwltool/docker.py index <HASH>..<HASH> 100644 --- a/cwltool/docker.py +++ b/cwltool/docker.py @@ -229,6 +229,8 @@ class DockerCommandLineJob(ContainerCommandLineJob): if host_outdir_tgt: # shortcut, just copy to the output directory # which...
Ensure subdirectory exists for staging (#<I>)