diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/Nucleus/Binder/Bounding.php b/src/Nucleus/Binder/Bounding.php index <HASH>..<HASH> 100644 --- a/src/Nucleus/Binder/Bounding.php +++ b/src/Nucleus/Binder/Bounding.php @@ -1,17 +1,17 @@ <?php -namespace Nucleus\Binder\Bound; +namespace Nucleus\Binder; /** * @Annotation - * + * * @Target({"PROP...
[b] wrong namespace for the Bounding class
diff --git a/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java b/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java index <HASH>..<HASH> 100644 --- a/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java +++ b/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java @@ -146,7 +146,7 ...
Issue <I> - Forced Browse footer status label still uses spanner icon Changed to use the hammer icon.
diff --git a/www/src/Lib/_struct.py b/www/src/Lib/_struct.py index <HASH>..<HASH> 100644 --- a/www/src/Lib/_struct.py +++ b/www/src/Lib/_struct.py @@ -439,6 +439,23 @@ def _clearcache(): "Clear the internal cache." # No cache in this implementation +class Struct: + + def __init__(self, fmt): + ...
Fixes issue #<I> : "struct" module is missing the "Struct" class
diff --git a/tests/unit/test_handler.py b/tests/unit/test_handler.py index <HASH>..<HASH> 100644 --- a/tests/unit/test_handler.py +++ b/tests/unit/test_handler.py @@ -190,4 +190,4 @@ def test_invalid_client_certs(): incorrect arguments specifying client cert/key verification""" with pytest.raises(ValueError):...
changing keyfile to valid file for test
diff --git a/app/xmpp/msg-processors/room-info.js b/app/xmpp/msg-processors/room-info.js index <HASH>..<HASH> 100644 --- a/app/xmpp/msg-processors/room-info.js +++ b/app/xmpp/msg-processors/room-info.js @@ -45,6 +45,10 @@ module.exports = MessageProcessor.extend({ }); query.c('feature', { + ...
Improved XMPP room info
diff --git a/framework/db/ar/CActiveRecord.php b/framework/db/ar/CActiveRecord.php index <HASH>..<HASH> 100644 --- a/framework/db/ar/CActiveRecord.php +++ b/framework/db/ar/CActiveRecord.php @@ -66,6 +66,8 @@ abstract class CActiveRecord extends CModel /** * Constructor. * @param string $scenario scenario name....
Note about overriding "CActiveRecord::__construct()" has been added.
diff --git a/python/herald/transports/xmpp/utils.py b/python/herald/transports/xmpp/utils.py index <HASH>..<HASH> 100644 --- a/python/herald/transports/xmpp/utils.py +++ b/python/herald/transports/xmpp/utils.py @@ -137,7 +137,7 @@ class RoomCreator(object): self.__lock = threading.Lock() def create_room...
Support for forced room JID in XMPP RoomCreator
diff --git a/vel/rl/commands/record_movie_command.py b/vel/rl/commands/record_movie_command.py index <HASH>..<HASH> 100644 --- a/vel/rl/commands/record_movie_command.py +++ b/vel/rl/commands/record_movie_command.py @@ -76,7 +76,7 @@ class RecordMovieCommand: video = cv2.VideoWriter(takename, fourcc, self.fps, ...
Fixing colorspace in movie recording code.
diff --git a/web/concrete/elements/custom_style.php b/web/concrete/elements/custom_style.php index <HASH>..<HASH> 100644 --- a/web/concrete/elements/custom_style.php +++ b/web/concrete/elements/custom_style.php @@ -82,9 +82,8 @@ $alignmentOptions = array( ); -$customClassesSelect = array( - '' => t('None') -); ...
Convert custom block class selection into a select2 tag selection field to support custom and multiple classes. Former-commit-id: <I>d<I>e<I>debf<I>aad0fff8bc<I>e<I>
diff --git a/lib/datagrid/drivers/array.rb b/lib/datagrid/drivers/array.rb index <HASH>..<HASH> 100644 --- a/lib/datagrid/drivers/array.rb +++ b/lib/datagrid/drivers/array.rb @@ -3,7 +3,7 @@ module Datagrid class Array < AbstractDriver #:nodoc: def self.match?(scope) - !Datagrid::Drivers::ActiveRec...
Ability to use enumerator as array driver
diff --git a/addict/__init__.py b/addict/__init__.py index <HASH>..<HASH> 100644 --- a/addict/__init__.py +++ b/addict/__init__.py @@ -2,7 +2,7 @@ from .addict import Dict __title__ = 'addict' -__version__ = '1.0.0' +__version__ = '1.1.0' __author__ = 'Mats Julian Olsen' __license__ = 'MIT' __copyright__ = 'Cop...
<I> Added __add__ and bugfix to __init__.
diff --git a/src/Assets/js/wasabi.js b/src/Assets/js/wasabi.js index <HASH>..<HASH> 100644 --- a/src/Assets/js/wasabi.js +++ b/src/Assets/js/wasabi.js @@ -67,6 +67,20 @@ var WS = (function() { return this.modules[name]; } console.debug('module "' + name + " is not registered."); + }, + + cr...
add createView and createViews helper methods to initialize a single or multiple backbone views for the given element(s)
diff --git a/client/api/story.js b/client/api/story.js index <HASH>..<HASH> 100644 --- a/client/api/story.js +++ b/client/api/story.js @@ -39,14 +39,14 @@ Story.prototype.setHash = function(name, hash) { return this; }; -Story.prototype.getData = function(name) { +Story.prototype.getData = (name) => { cons...
chore(story) lint
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -7,6 +7,9 @@ function furkotTrip() { var form, stops; function plan(data) { + if (!form) { + form = createForm(); + } stops.value = JSON.stringify(data); return form.submit(); } @@ -16,13 +19,19...
fix form submission on Firefox Firefox does not submit forms unless they are added to document body
diff --git a/lib/moped/node.rb b/lib/moped/node.rb index <HASH>..<HASH> 100644 --- a/lib/moped/node.rb +++ b/lib/moped/node.rb @@ -502,7 +502,7 @@ module Moped instrument_start = (logger = Moped.logger) && logger.debug? && Time.new yield ensure - log_operations(logger, operations, Time.new - ins...
Log even if end of file reached.
diff --git a/config/webpack/build.webpack.config.js b/config/webpack/build.webpack.config.js index <HASH>..<HASH> 100644 --- a/config/webpack/build.webpack.config.js +++ b/config/webpack/build.webpack.config.js @@ -37,10 +37,11 @@ const SaveStats = function () { * @name SaveMetadata */ const SaveMetadata = functio...
Waiting until done to write metadata file
diff --git a/client/state/login/reducer.js b/client/state/login/reducer.js index <HASH>..<HASH> 100644 --- a/client/state/login/reducer.js +++ b/client/state/login/reducer.js @@ -253,17 +253,17 @@ export const socialAccountLink = createReducer( ); export default combineReducers( { + isFormDisabled, isRequesting, ...
Login: Order exports in reducer alphabetically
diff --git a/src/main/java/org/asteriskjava/manager/action/OriginateAction.java b/src/main/java/org/asteriskjava/manager/action/OriginateAction.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/asteriskjava/manager/action/OriginateAction.java +++ b/src/main/java/org/asteriskjava/manager/action/OriginateAction.ja...
Fixed callingPres property (Boolean -> Integer) and its documentation
diff --git a/bin/whistle.js b/bin/whistle.js index <HASH>..<HASH> 100755 --- a/bin/whistle.js +++ b/bin/whistle.js @@ -1,6 +1,6 @@ #! /usr/bin/env node -var program = require('../../starting'); +var program = require('starting'); var path = require('path'); var os = require('os'); var config = require('../lib/con...
refactor: show plugins debug info
diff --git a/hvac/api/secrets_engines/aws.py b/hvac/api/secrets_engines/aws.py index <HASH>..<HASH> 100644 --- a/hvac/api/secrets_engines/aws.py +++ b/hvac/api/secrets_engines/aws.py @@ -326,8 +326,8 @@ class Aws(VaultApiBase): name=name, ) - response = self._adapter.post( + respon...
Change AWS `generate_credentials` request method to GET (#<I>) * Change AWS `generate_credentials` request method to GET * Update aws.py
diff --git a/lib/docker-json-client.js b/lib/docker-json-client.js index <HASH>..<HASH> 100644 --- a/lib/docker-json-client.js +++ b/lib/docker-json-client.js @@ -199,7 +199,7 @@ DockerJsonClient.prototype.parse = function parse(req, callback) { res.on('data', function onData(chunk) { if (conten...
encode content as utf-8 for content-md5 checking Somewhat inferred from <URL>
diff --git a/Form/Type/DateRangeType.php b/Form/Type/DateRangeType.php index <HASH>..<HASH> 100644 --- a/Form/Type/DateRangeType.php +++ b/Form/Type/DateRangeType.php @@ -20,6 +20,9 @@ class DateRangeType extends AbstractType { unset($options['years']); + $options['from']['required'] =...
Pass the required to from & to
diff --git a/common/compiler/solidity.go b/common/compiler/solidity.go index <HASH>..<HASH> 100644 --- a/common/compiler/solidity.go +++ b/common/compiler/solidity.go @@ -48,6 +48,7 @@ func (s *Solidity) makeArgs() []string { p := []string{ "--combined-json", "bin,bin-runtime,srcmap,srcmap-runtime,abi,userdoc,devd...
common/compiler: support relative import paths (#<I>)
diff --git a/test/fog/xml/connection_test.rb b/test/fog/xml/connection_test.rb index <HASH>..<HASH> 100644 --- a/test/fog/xml/connection_test.rb +++ b/test/fog/xml/connection_test.rb @@ -2,7 +2,7 @@ require "minitest/autorun" require "fog" # Note this is going to be part of fog-xml eventually -class TestFogXMLConne...
Rename testing class to fit filename `TestFogXMLConnection` didn't really match with the file name of `test/fog/xml/connection_test.rb` due to the namespacing and placement of "Test"
diff --git a/test/load_brocfile_test.js b/test/load_brocfile_test.js index <HASH>..<HASH> 100644 --- a/test/load_brocfile_test.js +++ b/test/load_brocfile_test.js @@ -51,7 +51,7 @@ describe('loadBrocfile', function() { }); context('with invalid Brocfile.ts', function() { - this.slow(2000); + this.slow(800...
Increase TS load timeout to avoid appveyor timeout (#<I>)
diff --git a/library/src/com/nostra13/universalimageloader/core/DisplayImageOptions.java b/library/src/com/nostra13/universalimageloader/core/DisplayImageOptions.java index <HASH>..<HASH> 100644 --- a/library/src/com/nostra13/universalimageloader/core/DisplayImageOptions.java +++ b/library/src/com/nostra13/universalima...
Issue #<I> - cloneFrom does not clone pre/postprocessor
diff --git a/addon/components/ui-dropdown.js b/addon/components/ui-dropdown.js index <HASH>..<HASH> 100644 --- a/addon/components/ui-dropdown.js +++ b/addon/components/ui-dropdown.js @@ -44,7 +44,7 @@ export default Ember.Select.extend(Base, DataAttributes, { // Without this, Dropdown Items will not be clickable i...
Switch to using get rather than accessing properties directly
diff --git a/actor-apps/app-web/src/app/index.js b/actor-apps/app-web/src/app/index.js index <HASH>..<HASH> 100644 --- a/actor-apps/app-web/src/app/index.js +++ b/actor-apps/app-web/src/app/index.js @@ -35,7 +35,11 @@ const initReact = () => { crosstab.broadcast(ActorInitEvent, {}); } - window.messenge...
feat(web): detect local version and set proper endpoint
diff --git a/src/Unirest/Request.php b/src/Unirest/Request.php index <HASH>..<HASH> 100755 --- a/src/Unirest/Request.php +++ b/src/Unirest/Request.php @@ -399,6 +399,9 @@ class Request if ($method === Method::POST) { curl_setopt(self::$handle, CURLOPT_POST, true); } else { + if ($method ===...
feat(HEAD): CURLOPT_NOBODY option for HEAD requests * When using HEAD requests set the appropriate curl header to not wait for a response body. See <URL>
diff --git a/zappa/handler.py b/zappa/handler.py index <HASH>..<HASH> 100644 --- a/zappa/handler.py +++ b/zappa/handler.py @@ -258,7 +258,7 @@ class LambdaHandler(object): Support S3, SNS, DynamoDB and kinesis events """ if 's3' in record: - return record['s3']['configurationId'] +...
* set the funk name to <project-name>:<event_function> * changed the get_function_for_aws_event to returen the function part of the record['s3']['configurationId']
diff --git a/tasks/utils.js b/tasks/utils.js index <HASH>..<HASH> 100644 --- a/tasks/utils.js +++ b/tasks/utils.js @@ -39,7 +39,7 @@ module.exports.getRevision = function(cb) { }; module.exports.getConfigFor = function(prop) { - return deployConfig[prop] && deployConfig[prop][env()]; + return deployConfig[prop] &...
allow environment agnostic config
diff --git a/lojix/wam/src/main/com/thesett/aima/logic/fol/wam/compiler/WAMInstruction.java b/lojix/wam/src/main/com/thesett/aima/logic/fol/wam/compiler/WAMInstruction.java index <HASH>..<HASH> 100644 --- a/lojix/wam/src/main/com/thesett/aima/logic/fol/wam/compiler/WAMInstruction.java +++ b/lojix/wam/src/main/com/these...
Added access to the pretty version of instruction mnemonics.
diff --git a/hooks/after_prepare_android.js b/hooks/after_prepare_android.js index <HASH>..<HASH> 100644 --- a/hooks/after_prepare_android.js +++ b/hooks/after_prepare_android.js @@ -54,7 +54,7 @@ if (platformDir) { } if (!fs.existsSync(manifestFile)) { - throw new Error("! Can't find the AndroidManifest.xml...
refactor(hooks): better error message
diff --git a/config.js b/config.js index <HASH>..<HASH> 100644 --- a/config.js +++ b/config.js @@ -38,5 +38,10 @@ config.get = function(name, type) { logger.logerror(err.name + ': ' + err.message); } } - return results; + // Pass arrays by value to prevent config being modified accident...
Pass config results by value to prevent them from being overwritten
diff --git a/lib/sinja/version.rb b/lib/sinja/version.rb index <HASH>..<HASH> 100644 --- a/lib/sinja/version.rb +++ b/lib/sinja/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Sinja - VERSION = '1.2.0.pre1' + VERSION = '1.2.0.pre2' end
Bump to <I>.pre2
diff --git a/lxd/device/nic_routed.go b/lxd/device/nic_routed.go index <HASH>..<HASH> 100644 --- a/lxd/device/nic_routed.go +++ b/lxd/device/nic_routed.go @@ -23,8 +23,14 @@ type nicRouted struct { deviceCommon } -func (d *nicRouted) CanHotPlug() (bool, []string) { - return false, []string{"limits.ingress", "limit...
lxd/device/nic/routed: Splits CanHotPlug function into new CanHotPlug and UpdatableFields functions
diff --git a/lib/OpenLayers/Feature/WFS.js b/lib/OpenLayers/Feature/WFS.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers/Feature/WFS.js +++ b/lib/OpenLayers/Feature/WFS.js @@ -24,6 +24,13 @@ OpenLayers.Feature.WFS.prototype = this.layer.addMarker(this.marker); } }, + + destroy: ...
on destroy() of a WFS feature, remove its marker git-svn-id: <URL>
diff --git a/redis/__init__.py b/redis/__init__.py index <HASH>..<HASH> 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -37,7 +37,7 @@ def int_or_str(value): return value -__version__ = "4.0.1" +__version__ = "4.0.2" VERSION = tuple(map(int_or_str, __version__.split('.'))) diff --git a/redis...
Better removal of hiredis warning (#<I>)
diff --git a/lib/active_record/connection_adapters/ovirt_postgresql_adapter.rb b/lib/active_record/connection_adapters/ovirt_postgresql_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/active_record/connection_adapters/ovirt_postgresql_adapter.rb +++ b/lib/active_record/connection_adapters/ovirt_postgresql_adapter.rb @...
Pass in a connection when initializing pg adapter On ActiveRecord <I>+ the `ConnectionAdapters::PostgreSQLAdapter#initialize` expects to be passed in a valid postgres connection, where previous versions expected this to be `nil`.
diff --git a/src/components/input.js b/src/components/input.js index <HASH>..<HASH> 100644 --- a/src/components/input.js +++ b/src/components/input.js @@ -65,22 +65,27 @@ export default class Input extends React.Component { */ validate() { + /* istanbul ignore next */ return this.refs.unboundInput.vali...
Add Ignore Code Coverage, Public Function In Input (#<I>) Add Ignore code coverage to public functions in Input component because those functions are just returning the results from UnboundInput's public functions so testing those will only be testing the results of functions which are already been tested.
diff --git a/lib/rally_api/version.rb b/lib/rally_api/version.rb index <HASH>..<HASH> 100644 --- a/lib/rally_api/version.rb +++ b/lib/rally_api/version.rb @@ -4,5 +4,5 @@ #of the applicable Subscription Agreement between your company and #Rally Software Development Corp. module RallyAPI - VERSION = "0.9.2" + VERSI...
Rev to <I> change to add params to url for update method
diff --git a/etc/reset.py b/etc/reset.py index <HASH>..<HASH> 100755 --- a/etc/reset.py +++ b/etc/reset.py @@ -118,10 +118,10 @@ def find_in_json(j, f): def print_status(status): print("===> {}".format(status)) -def run(cmd, *args, raise_on_error=True, stdin=None, capture_output=False): +def run(cmd, *args, rai...
Set a timeout and automatically confirm when deleting pachyderm resources
diff --git a/presto-hive/src/main/java/com/facebook/presto/hive/HiveWriteUtils.java b/presto-hive/src/main/java/com/facebook/presto/hive/HiveWriteUtils.java index <HASH>..<HASH> 100644 --- a/presto-hive/src/main/java/com/facebook/presto/hive/HiveWriteUtils.java +++ b/presto-hive/src/main/java/com/facebook/presto/hive/H...
get raw filesystem should consider CachingFileSystem
diff --git a/pyradigm/base.py b/pyradigm/base.py index <HASH>..<HASH> 100644 --- a/pyradigm/base.py +++ b/pyradigm/base.py @@ -15,6 +15,11 @@ from warnings import warn import numpy as np +class PyradigmException(Exception): + """Custom exception to highlight pyradigm-specific issues.""" + pass + + def is_it...
pyradigm's custom exception
diff --git a/Lib/AssetConfig.php b/Lib/AssetConfig.php index <HASH>..<HASH> 100644 --- a/Lib/AssetConfig.php +++ b/Lib/AssetConfig.php @@ -47,7 +47,7 @@ class AssetConfig { public $constantMap = array( 'APP/' => APP, 'WEBROOT/' => WWW_ROOT, - 'ROOT/' => ROOT + 'ROOT' => ROOT ); const FILTERS = 'filters'...
Remove trailing / from ROOT The constant doesn't contain a / neither should the replacement. Refs #<I>
diff --git a/opentracing-api/src/main/java/io/opentracing/Tracer.java b/opentracing-api/src/main/java/io/opentracing/Tracer.java index <HASH>..<HASH> 100644 --- a/opentracing-api/src/main/java/io/opentracing/Tracer.java +++ b/opentracing-api/src/main/java/io/opentracing/Tracer.java @@ -68,7 +68,7 @@ public interface Tr...
Fix Javadoc withChildOf -> asChildOf (#<I>)
diff --git a/galpy/util/bovy_plot.py b/galpy/util/bovy_plot.py index <HASH>..<HASH> 100644 --- a/galpy/util/bovy_plot.py +++ b/galpy/util/bovy_plot.py @@ -1162,11 +1162,15 @@ def scatterplot(x,y,*args,**kwargs): if kwargs.has_key('onedhistxweights'): onedhistxweights= kwargs['onedhistxweights'] k...
better handling of weights in scatterplot
diff --git a/src/consumer/runner.js b/src/consumer/runner.js index <HASH>..<HASH> 100644 --- a/src/consumer/runner.js +++ b/src/consumer/runner.js @@ -1,6 +1,8 @@ const createRetry = require('../retry') const { KafkaJSError } = require('../errors') +const isTestMode = process.env.NODE_ENV === 'test' + const isReba...
Don't wait for consumers to shutdown when running in test mode
diff --git a/tests/settings.py b/tests/settings.py index <HASH>..<HASH> 100755 --- a/tests/settings.py +++ b/tests/settings.py @@ -17,6 +17,8 @@ DATABASES = { SECRET_KEY = 'fn)t*+$)ugeyip6-#txyy$5wf2ervc0d2n#h)qb)y5@ly$t*@w' INSTALLED_APPS = ( + 'django.contrib.staticfiles', + # rest framework 'res...
Added django.contrib.staticfiles in tests.settings
diff --git a/src/DataApi/Sections/InteractionsSection.php b/src/DataApi/Sections/InteractionsSection.php index <HASH>..<HASH> 100644 --- a/src/DataApi/Sections/InteractionsSection.php +++ b/src/DataApi/Sections/InteractionsSection.php @@ -38,15 +38,16 @@ class InteractionsSection extends Section * @param string $ite...
fix missing attributes in method insertInteraction in interaction section
diff --git a/test/basic_test.js b/test/basic_test.js index <HASH>..<HASH> 100644 --- a/test/basic_test.js +++ b/test/basic_test.js @@ -6,6 +6,7 @@ var expect = require('expect.js'); var utils = require('./utils'); var loader = require('../index.js'); +/* global describe, it */ describe('svg-jsx-loader', function()...
ESLint warns about undefined globals in tests
diff --git a/src/Resources/Environment.php b/src/Resources/Environment.php index <HASH>..<HASH> 100644 --- a/src/Resources/Environment.php +++ b/src/Resources/Environment.php @@ -83,6 +83,7 @@ class Environment extends BaseSystemResource $result['platform']['install_path'] = base_path() . DIRECTORY_SEP...
DP-<I> Test datasource connection upon service creation - add app_debug to environment endpoint
diff --git a/sgp4/ext.py b/sgp4/ext.py index <HASH>..<HASH> 100644 --- a/sgp4/ext.py +++ b/sgp4/ext.py @@ -470,13 +470,11 @@ def rv2coe(r, v, mu): * --------------------------------------------------------------------------- */ """ -def jday( - year, mon, day, hr, minute, sec, - ): +def jday(year, m...
Replace floor() with native // in jday()
diff --git a/Kwf/Assets/Modernizr/Dependency.php b/Kwf/Assets/Modernizr/Dependency.php index <HASH>..<HASH> 100644 --- a/Kwf/Assets/Modernizr/Dependency.php +++ b/Kwf/Assets/Modernizr/Dependency.php @@ -80,6 +80,9 @@ class Kwf_Assets_Modernizr_Dependency extends Kwf_Assets_Dependency_Abstract $ret = file_get_c...
Modernizr Dependency: remove comments containing selected tests For every test the following was added in the build: /*! { "name": "CSS Media Queries", "caniuse": "css-mediaqueries", "property": "mediaqueries", "tags": ["css"], "builderAliases": ["css_mediaqueries"] } !*/ this regexp removes it
diff --git a/test/createLogicMiddleware-latest.spec.js b/test/createLogicMiddleware-latest.spec.js index <HASH>..<HASH> 100644 --- a/test/createLogicMiddleware-latest.spec.js +++ b/test/createLogicMiddleware-latest.spec.js @@ -345,7 +345,7 @@ describe('createLogicMiddleware-latest', () => { ...action, ...
add delay to test to ensure messages have fired consistently
diff --git a/openquake/engine/tests/performance_monitor_test.py b/openquake/engine/tests/performance_monitor_test.py index <HASH>..<HASH> 100644 --- a/openquake/engine/tests/performance_monitor_test.py +++ b/openquake/engine/tests/performance_monitor_test.py @@ -23,15 +23,6 @@ class TestCase(unittest.TestCase): ...
Removed test on the PerformanceMonitor that should not be here Former-commit-id: <I>f<I>b<I>c<I>c<I>f<I>df<I>f0aa8d<I>eedc
diff --git a/src/Web.php b/src/Web.php index <HASH>..<HASH> 100644 --- a/src/Web.php +++ b/src/Web.php @@ -46,7 +46,6 @@ class Web implements MiddlewareInterface * services and filters */ const ROUTE_NAMES = 'namedRoutes'; - const RENDER_ENGINE = 'renderer'; const CS_RF_FILTER = 'csrf'; co...
use ViewEngineInterface as name for renderer.
diff --git a/src/Aggregation/Bucketing/DateRangeAggregation.php b/src/Aggregation/Bucketing/DateRangeAggregation.php index <HASH>..<HASH> 100644 --- a/src/Aggregation/Bucketing/DateRangeAggregation.php +++ b/src/Aggregation/Bucketing/DateRangeAggregation.php @@ -51,7 +51,8 @@ class DateRangeAggregation extends Abstract...
fixes #<I> - added support for date range keys (#<I>) (cherry picked from commit <I>ac9)
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/migration_test.rb +++ b/activerecord/test/cases/migration_test.rb @@ -587,7 +587,6 @@ class MigrationTest < ActiveRecord::TestCase if current_adapter?(:Mysql2...
Remove needless `drop_table :test_limits` A `:test_limits` table has not been created.
diff --git a/code/model/SiteTreeFolderExtension.php b/code/model/SiteTreeFolderExtension.php index <HASH>..<HASH> 100644 --- a/code/model/SiteTreeFolderExtension.php +++ b/code/model/SiteTreeFolderExtension.php @@ -19,14 +19,14 @@ class SiteTreeFolderExtension extends DataExtension { } foreach($classes as $clas...
BUG: Replaced extendedSQL with DataList as per ticket <I>
diff --git a/core/src/main/java/fr/putnami/pwt/core/widget/client/OutputStaticText.java b/core/src/main/java/fr/putnami/pwt/core/widget/client/OutputStaticText.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/fr/putnami/pwt/core/widget/client/OutputStaticText.java +++ b/core/src/main/java/fr/putnami/pwt/core/w...
[core][feature] Add OutputStaticText Constructor acceptiong String
diff --git a/src/plugins/cache/operations/command.spec.js b/src/plugins/cache/operations/command.spec.js index <HASH>..<HASH> 100644 --- a/src/plugins/cache/operations/command.spec.js +++ b/src/plugins/cache/operations/command.spec.js @@ -18,26 +18,6 @@ const config = [ }, invalidates: ['user'], invalida...
refactor(command) Remove unnecessary spec setup
diff --git a/lib/Stripe/ApiRequestor.php b/lib/Stripe/ApiRequestor.php index <HASH>..<HASH> 100644 --- a/lib/Stripe/ApiRequestor.php +++ b/lib/Stripe/ApiRequestor.php @@ -348,7 +348,7 @@ class Stripe_ApiRequestor return true; } - if (strpos(PHP_VERSION, 'hiphop') !== false) { + if (strpos(PHP_VERSIO...
Update ApiRequestor for newer hhvm Current versions of HHVM don't include 'hiphop' in the PHP_VERSION string; they are using hhvm. Update the SSL Cert check to ignore those versions as well, or your application will return an 'unable to connect to stripe' error.
diff --git a/spec/http_helper.rb b/spec/http_helper.rb index <HASH>..<HASH> 100644 --- a/spec/http_helper.rb +++ b/spec/http_helper.rb @@ -16,15 +16,15 @@ def define_helper(name) } end -%w[ - delete - get - head - options - patch - post - put - trace +[ + "delete", + "get", + "head", + "options", + "...
Fix linter warning in spec/http_helper.rb
diff --git a/stdlib/sql.go b/stdlib/sql.go index <HASH>..<HASH> 100644 --- a/stdlib/sql.go +++ b/stdlib/sql.go @@ -136,7 +136,7 @@ func (c *Conn) Query(query string, argsV []driver.Value) (driver.Rows, error) { rowCount := 0 columnsChan := make(chan []string) errChan := make(chan error) - rowChan := make(chan []d...
Use buffered chan for stdlib.Rows Improved performance slightly
diff --git a/spec/caching_policy_spec.rb b/spec/caching_policy_spec.rb index <HASH>..<HASH> 100644 --- a/spec/caching_policy_spec.rb +++ b/spec/caching_policy_spec.rb @@ -96,3 +96,18 @@ describe "Storing and retrieving policies" do expect(policy.policies.max_age).to eq(300) end end + +describe "Handling situat...
This also goes with #<I>
diff --git a/generator/lib/builder/om/PHP5ObjectBuilder.php b/generator/lib/builder/om/PHP5ObjectBuilder.php index <HASH>..<HASH> 100644 --- a/generator/lib/builder/om/PHP5ObjectBuilder.php +++ b/generator/lib/builder/om/PHP5ObjectBuilder.php @@ -136,7 +136,7 @@ class PHP5ObjectBuilder extends ObjectBuilder } catc...
[<I>][<I>] Fixed infinite loop when reverse engineering date fields in postgresql and in PHP<I> (closes #<I>)
diff --git a/pymatgen/analysis/chemenv/connectivity/structure_connectivity.py b/pymatgen/analysis/chemenv/connectivity/structure_connectivity.py index <HASH>..<HASH> 100644 --- a/pymatgen/analysis/chemenv/connectivity/structure_connectivity.py +++ b/pymatgen/analysis/chemenv/connectivity/structure_connectivity.py @@ -1...
Fix for networkx versions >= 2.
diff --git a/treetime/treeanc.py b/treetime/treeanc.py index <HASH>..<HASH> 100644 --- a/treetime/treeanc.py +++ b/treetime/treeanc.py @@ -66,6 +66,13 @@ class TreeAnc(object): def gtr(self): return self._gtr + @gtr.setter + def gtr(self, value): + if not isinstance(value, GTR): + ...
Added setter for GTR, which takes only GTR type instance
diff --git a/src/test/java/org/syphr/prom/PropertiesManagerTest.java b/src/test/java/org/syphr/prom/PropertiesManagerTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/syphr/prom/PropertiesManagerTest.java +++ b/src/test/java/org/syphr/prom/PropertiesManagerTest.java @@ -230,6 +230,14 @@ public class Propert...
added a test for proper caching of calls to getManagedProperty (each call that provides the same key must get the same object back)
diff --git a/indra/sources/indra_db_rest/api.py b/indra/sources/indra_db_rest/api.py index <HASH>..<HASH> 100644 --- a/indra/sources/indra_db_rest/api.py +++ b/indra/sources/indra_db_rest/api.py @@ -271,14 +271,17 @@ def get_statement_queries(stmts, **params): """ def pick_ns(ag): + # If the Agent ha...
Use name-based lookup by default
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -29,6 +29,7 @@ module.exports = { }, prepare: function(context) { var d = context.gitDeploy; + this.log("preparing git in " + d.worktreePath, { verbose: true }); return git.prepareTree(d....
Add verbose log message pointing to sibling git dir Adds a log message showing the location of the directory where the actual git prepare is running (but only if `--verbose` is passed). Might be useful for other users encountering git errors and not being able to reproduce/fix because they are not aware of the "sib...
diff --git a/lib/textlint.js b/lib/textlint.js index <HASH>..<HASH> 100644 --- a/lib/textlint.js +++ b/lib/textlint.js @@ -174,7 +174,7 @@ api.lintFile = function (filePath) { api.pushReport = function (ruleId, txtNode, error) { debug("api.pushReport %s", error); messages.push(objectAssign({ - id: rul...
chore(textlint): reaname "id" to "ruleId"
diff --git a/Src/java/cql-to-elm/src/main/java/org/cqframework/cql/cql2elm/Cql2ElmVisitor.java b/Src/java/cql-to-elm/src/main/java/org/cqframework/cql/cql2elm/Cql2ElmVisitor.java index <HASH>..<HASH> 100755 --- a/Src/java/cql-to-elm/src/main/java/org/cqframework/cql/cql2elm/Cql2ElmVisitor.java +++ b/Src/java/cql-to-elm...
#<I>: Fixed retrieve incorrectly inserting a list promotion for a direct-code reference in some cases.
diff --git a/db/seeds.rb b/db/seeds.rb index <HASH>..<HASH> 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -16,7 +16,7 @@ end # Global parameters used in configuration snippets parameters = [ - { :name => 'chef_handler_foreman_url', :value => SmartProxy.chef_proxies.first.try(:url) || Setting.foreman_url }, + { :n...
fixes #<I> - don't use deprecated proxy scope
diff --git a/kernel/private/classes/ezpcontentpublishingprocess.php b/kernel/private/classes/ezpcontentpublishingprocess.php index <HASH>..<HASH> 100644 --- a/kernel/private/classes/ezpcontentpublishingprocess.php +++ b/kernel/private/classes/ezpcontentpublishingprocess.php @@ -259,6 +259,15 @@ class ezpContentPublishi...
Fix EZP-<I>: async publishing should generate static cache Static cache tasks weren't processed after publishing. Asynchronous handling doesn't require that static cache generation is left to the cronjob, since it will happen after content has been published. It will however slow publishing down, since publishing pr...
diff --git a/lib/UnsupportedFeatureWarning.js b/lib/UnsupportedFeatureWarning.js index <HASH>..<HASH> 100644 --- a/lib/UnsupportedFeatureWarning.js +++ b/lib/UnsupportedFeatureWarning.js @@ -2,14 +2,19 @@ MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ -function Unsup...
refactor(ES6): upgrade UnsupportedFeatureWarning to ES6 (#<I>)
diff --git a/docker/transport/basehttpadapter.py b/docker/transport/basehttpadapter.py index <HASH>..<HASH> 100644 --- a/docker/transport/basehttpadapter.py +++ b/docker/transport/basehttpadapter.py @@ -3,4 +3,6 @@ import requests.adapters class BaseHTTPAdapter(requests.adapters.HTTPAdapter): def close(self): -...
Fix BaseHTTPAdapter for the SSL case
diff --git a/api/auth.go b/api/auth.go index <HASH>..<HASH> 100644 --- a/api/auth.go +++ b/api/auth.go @@ -328,6 +328,7 @@ func AddUserToTeam(w http.ResponseWriter, r *http.Request, t *auth.Token) error if err != nil { return err } + rec.Log(u.Email, "add-user-to-team", "team="+team, "user="+email) return add...
api: record user action in the AddUserToTeam handler Related to #<I>.
diff --git a/hiddenlayer/graph.py b/hiddenlayer/graph.py index <HASH>..<HASH> 100644 --- a/hiddenlayer/graph.py +++ b/hiddenlayer/graph.py @@ -142,7 +142,9 @@ def build_graph(model=None, args=None, input_names=None, elif framework == "tensorflow": from .tf_builder import import_graph, FRAMEWORK_TRANSFORMS...
Raise exception when we fail to detect the model's framework
diff --git a/tests/utils/test_utils.py b/tests/utils/test_utils.py index <HASH>..<HASH> 100644 --- a/tests/utils/test_utils.py +++ b/tests/utils/test_utils.py @@ -71,7 +71,9 @@ class TestUtils(unittest.TestCase): def test_evaluate_condition(self): if not is_backend_enabled("onnxruntime"): ret...
Fix the nightly/CI build error.
diff --git a/lib/squib/conf.rb b/lib/squib/conf.rb index <HASH>..<HASH> 100644 --- a/lib/squib/conf.rb +++ b/lib/squib/conf.rb @@ -1,6 +1,7 @@ -require 'squib' require 'forwardable' +require 'squib' require 'squib/args/typographer' +require 'yaml' module Squib # @api private diff --git a/lib/squib/layout_parser...
Require yaml just in case
diff --git a/lib/pincers/support/http_client.rb b/lib/pincers/support/http_client.rb index <HASH>..<HASH> 100644 --- a/lib/pincers/support/http_client.rb +++ b/lib/pincers/support/http_client.rb @@ -26,11 +26,11 @@ module Pincers::Support attr_reader :proxy_addr, :proxy_port, :cookies def initialize(_option...
refactor(http_client): makes http_client more resilent to nil options
diff --git a/httpd/response_logger.go b/httpd/response_logger.go index <HASH>..<HASH> 100644 --- a/httpd/response_logger.go +++ b/httpd/response_logger.go @@ -82,6 +82,7 @@ func buildLogLine(l *responseLogger, r *http.Request, start time.Time) string { detect(referer, "-"), detect(userAgent, "-"), r.Header.Get...
add time taken to the http server logs
diff --git a/core/server/worker/src/main/java/alluxio/worker/block/evictor/LRFUEvictor.java b/core/server/worker/src/main/java/alluxio/worker/block/evictor/LRFUEvictor.java index <HASH>..<HASH> 100644 --- a/core/server/worker/src/main/java/alluxio/worker/block/evictor/LRFUEvictor.java +++ b/core/server/worker/src/main/...
Fix comment style LRUEvictor.java
diff --git a/tests/system-logger.js b/tests/system-logger.js index <HASH>..<HASH> 100644 --- a/tests/system-logger.js +++ b/tests/system-logger.js @@ -11,8 +11,8 @@ const DELAYTOCHECKTESTLOGFILE = 1000; const TESTLOGFILE = './tests/testArea/test.log'; describe('logging Tests', function() { - before(() => { - fs.un...
test(syste-logger): Change the cleanup after the test
diff --git a/lib/onebox/engine.rb b/lib/onebox/engine.rb index <HASH>..<HASH> 100644 --- a/lib/onebox/engine.rb +++ b/lib/onebox/engine.rb @@ -97,6 +97,7 @@ require_relative "engine/sound_cloud_onebox" require_relative "engine/spotify_onebox" require_relative "engine/stack_exchange_onebox" require_relative "engine/t...
require twitter onebox in engine.rb #<I>
diff --git a/src/Carbon/Lang/fa.php b/src/Carbon/Lang/fa.php index <HASH>..<HASH> 100644 --- a/src/Carbon/Lang/fa.php +++ b/src/Carbon/Lang/fa.php @@ -24,6 +24,6 @@ return array( 'second' => ':count ثانیه', 'ago' => ':time پیش', 'from_now' => ':time بعد', - 'after' => ':time پیش از', - ...
Update fa.php Farsi translations of 'after' and 'before' switched to correct the meanings.
diff --git a/pymc3/tests/test_examples.py b/pymc3/tests/test_examples.py index <HASH>..<HASH> 100644 --- a/pymc3/tests/test_examples.py +++ b/pymc3/tests/test_examples.py @@ -15,9 +15,9 @@ def check_example(example_name): example.run("short") -def test_examples0(): - for t in itertools.islice(get_exampl...
Removed first set of example tests to check on speedup
diff --git a/src/openaccess_epub/opf/opf.py b/src/openaccess_epub/opf/opf.py index <HASH>..<HASH> 100644 --- a/src/openaccess_epub/opf/opf.py +++ b/src/openaccess_epub/opf/opf.py @@ -80,10 +80,10 @@ class OPF(object): instance with the title argument, or calling set_title() at any time before writing ...
fixing error caused by reordering of resets
diff --git a/lib/editor/htmlarea.php b/lib/editor/htmlarea.php index <HASH>..<HASH> 100644 --- a/lib/editor/htmlarea.php +++ b/lib/editor/htmlarea.php @@ -2324,8 +2324,9 @@ HTMLArea.getHTML = function(root, outputRoot, editor) { break; // skip comments, for now. } - return HTMLArea.formathtml(ht...
HTMLArea.formathtml still not working correctly I've comment it out.
diff --git a/src/Layout.php b/src/Layout.php index <HASH>..<HASH> 100644 --- a/src/Layout.php +++ b/src/Layout.php @@ -161,7 +161,7 @@ class Layout $app = \Slim\Slim::getInstance(); $app->response()->status($status); - $app->header('Content-Type', 'application/json'); + $app->response()->header('Content-Type'...
BUG: Didn't call response() for the header.
diff --git a/src/widgets/droppable/droppable.js b/src/widgets/droppable/droppable.js index <HASH>..<HASH> 100644 --- a/src/widgets/droppable/droppable.js +++ b/src/widgets/droppable/droppable.js @@ -75,9 +75,11 @@ } - _isPointHovering ( pointXY ) { + _isPointHovering ( pointXY, event ) { - return...
Droppable: fixed usage when scrolled
diff --git a/transport/http/src/main/java/org/kaazing/gateway/transport/http/bridge/filter/HttpPersistenceFilter.java b/transport/http/src/main/java/org/kaazing/gateway/transport/http/bridge/filter/HttpPersistenceFilter.java index <HASH>..<HASH> 100644 --- a/transport/http/src/main/java/org/kaazing/gateway/transport/ht...
Adding a log message when a session is closed due to Connection: close header in HTTP request
diff --git a/bmds/bmds3/recommender/checks.py b/bmds/bmds3/recommender/checks.py index <HASH>..<HASH> 100644 --- a/bmds/bmds3/recommender/checks.py +++ b/bmds/bmds3/recommender/checks.py @@ -331,7 +331,7 @@ class NoDegreesOfFreedom(Check): if dataset.dtype in constants.DICHOTOMOUS_DTYPES: value = ...
use correct degree of freedom for continuous checks
diff --git a/pmdarima/arima/_context.py b/pmdarima/arima/_context.py index <HASH>..<HASH> 100644 --- a/pmdarima/arima/_context.py +++ b/pmdarima/arima/_context.py @@ -37,7 +37,7 @@ class AbstractContext(ABC): def __init__(self, **kwargs): # remove None valued entries, # since __getattr__ returns ...
resolve lint issues related to Context Manager changes
diff --git a/tasks/gss_pull.js b/tasks/gss_pull.js index <HASH>..<HASH> 100644 --- a/tasks/gss_pull.js +++ b/tasks/gss_pull.js @@ -61,9 +61,12 @@ module.exports = function(grunt) { var fetch_each_sheet = function(sheet, key) { var promise = new Promise.Promise(); - var sheet_id = shee...
A bit more flexinibility in getting the right sheet id.
diff --git a/src/Common/Model/Base.php b/src/Common/Model/Base.php index <HASH>..<HASH> 100644 --- a/src/Common/Model/Base.php +++ b/src/Common/Model/Base.php @@ -2087,7 +2087,8 @@ abstract class Base protected function describeFieldsPrepareLabel($sLabel) { $aPatterns = [ - '/\bid\b/i' => ...
Added `URL` to the `describeFieldsPrepareLabel`method
diff --git a/lib/que/locker.rb b/lib/que/locker.rb index <HASH>..<HASH> 100644 --- a/lib/que/locker.rb +++ b/lib/que/locker.rb @@ -170,8 +170,7 @@ module Que ) sort_keys.each do |sort_key| - # TODO: Add a proper assertion helper. - raise unless @locks.add?(sort_key.fetch(:id)) + m...
Use Que.assert to ensure that jobs aren't locked multiple times.
diff --git a/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/impl/transport/tcp/TcpTransportFactory.java b/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/impl/transport/tcp/TcpTransportFactory.java index <HASH>..<HASH> 100644 --- a/client/hotrod-client/src/main/java/org/infinispan/clien...
ISPN-<I> - RemoteCacheManager failure in multi-threaded environment with maxActive=Integer.MAX_VALUE