diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/lib/api.js b/src/lib/api.js index <HASH>..<HASH> 100644 --- a/src/lib/api.js +++ b/src/lib/api.js @@ -10,7 +10,7 @@ function api (opbeat, queuedCommands) { if (queuedCommands) { for (var i = 0; i < queuedCommands.length; i++) { var cmd = queuedCommands[i] - this.push(cmd) + thi...
Fix 'Cannot read property 'apply' of undefined' introduced in daaae<I>
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ var defaultBase = 1 -var defaultRatio = 'goldenSection' +var defaultRatio = 1.618 var ratioNames = { minorSecond: 1.067, majorSecond: 1.125, @@ -36,6 +36,9 @@ module.exports = function modularscale (option...
Patch guards against passing bad ratio string.
diff --git a/lib/ib/project.rb b/lib/ib/project.rb index <HASH>..<HASH> 100644 --- a/lib/ib/project.rb +++ b/lib/ib/project.rb @@ -103,7 +103,7 @@ class IB::Project # Add all other resources, ignoring files in existing asset catalogs Dir.glob(File.join(dir, "**/*.{#{RESOURCE_EXTENSIONS.join(",")}}")) ...
Fixes issue with subfolders in resources folder not being recognized in the resulting xcode project Closes #<I>
diff --git a/MQ2/mq2.py b/MQ2/mq2.py index <HASH>..<HASH> 100644 --- a/MQ2/mq2.py +++ b/MQ2/mq2.py @@ -234,7 +234,7 @@ def _append_count_to_matrix(qtl_matrixfile, lod_threshold): while cnt < len(matrix): row = list(matrix[cnt]) nr_qtl = 0 - for cel in row[4:]: + for cel in row[3:]: ...
Fix adding the QTL count at the end of the matrix file
diff --git a/ryu/controller/ofp_handler.py b/ryu/controller/ofp_handler.py index <HASH>..<HASH> 100644 --- a/ryu/controller/ofp_handler.py +++ b/ryu/controller/ofp_handler.py @@ -280,7 +280,10 @@ class OFPHandler(ryu.base.app_manager.RyuApp): hex(msg.type), hex(msg.code), utils.binary_str(msg.data), ...
Log OFPErrorMsg.data as ascii when type is OFPET_HELLO_FAILED OFPErrorMsg.data usually contains the offending OpenFlow message, but is an ASCII text string if its type is OFPET_HELLO_FAILED.
diff --git a/yabt/builders/proto.py b/yabt/builders/proto.py index <HASH>..<HASH> 100644 --- a/yabt/builders/proto.py +++ b/yabt/builders/proto.py @@ -143,6 +143,8 @@ def proto_builder(build_context, target): process_generated(src_base + '.pb.h', AT.gen_h) if target.props.gen_go or target.props.ge...
Generate grpc go artifacts (#<I>)
diff --git a/tests.py b/tests.py index <HASH>..<HASH> 100644 --- a/tests.py +++ b/tests.py @@ -26,11 +26,13 @@ from jsonschema import ( def make_case(schema, data, valid): if valid: def test_case(self): - validate(data, schema, cls=self.validator_class) + kwargs = getattr(self, "val...
OK this works. Non-ideal, but works.
diff --git a/src/Menu/Provider/GroupMenuProvider.php b/src/Menu/Provider/GroupMenuProvider.php index <HASH>..<HASH> 100644 --- a/src/Menu/Provider/GroupMenuProvider.php +++ b/src/Menu/Provider/GroupMenuProvider.php @@ -179,7 +179,7 @@ class GroupMenuProvider implements MenuProviderInterface 'admin' => ...
Prevent passing a null label to createItem This method requires a string
diff --git a/src/Auth/TinyAuthorize.php b/src/Auth/TinyAuthorize.php index <HASH>..<HASH> 100644 --- a/src/Auth/TinyAuthorize.php +++ b/src/Auth/TinyAuthorize.php @@ -63,6 +63,7 @@ class TinyAuthorize extends BaseAuthorize { 'cache' => AUTH_CACHE, 'cacheKey' => 'tiny_auth_acl', 'autoClearCache' => false, // us...
aclPath configuration to be possible to use acl.ini from different path
diff --git a/tests/db_routers_unittest.py b/tests/db_routers_unittest.py index <HASH>..<HASH> 100644 --- a/tests/db_routers_unittest.py +++ b/tests/db_routers_unittest.py @@ -113,7 +113,7 @@ class OQRouterTestCase(unittest.TestCase): For each model in the 'uiapi' schema, test for proper db routing for...
Added test to verify InputSet is routed as expected.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( description = 'parser combinator.', long_description = 'A univeral Python parser combinator library inspirted by Parsec library of Haskell.', author = 'He Tao', - author_email = 'sighingno...
Fix a error about the author_email in setup.py.
diff --git a/src/Serverfireteam/Blog/BlogServiceProvider.php b/src/Serverfireteam/Blog/BlogServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Serverfireteam/Blog/BlogServiceProvider.php +++ b/src/Serverfireteam/Blog/BlogServiceProvider.php @@ -15,7 +15,7 @@ class BlogServiceProvider extends ServiceProvider ...
Fixing include -> include_once
diff --git a/salt/utils/timed_subprocess.py b/salt/utils/timed_subprocess.py index <HASH>..<HASH> 100644 --- a/salt/utils/timed_subprocess.py +++ b/salt/utils/timed_subprocess.py @@ -27,7 +27,7 @@ class TimedProc(object): elif self.stdin is not None: # Translate a newline submitted as '\n' on the ...
Encode stdin to subproc calls for Py3 compat We need a bytes-like object for stdin for a subprocess in python3
diff --git a/spec/poole_spec.rb b/spec/poole_spec.rb index <HASH>..<HASH> 100644 --- a/spec/poole_spec.rb +++ b/spec/poole_spec.rb @@ -10,11 +10,13 @@ module MrPoole context 'no jekyll directory' do before :all do # make a directory to work in + @olddir = Dir.pwd() @dir = Dir.mktmpd...
Fix to stupid bug in spec. I wasn't changing out of the directory in the old context before I removed it, so pwd was failing in the new context.
diff --git a/html.py b/html.py index <HASH>..<HASH> 100644 --- a/html.py +++ b/html.py @@ -447,7 +447,7 @@ ckeditor_available = LocalProxy(is_html_text_editor_installed) def get_html_text_editor(name, id=None, content='', textual_content=None, width='300px', height='200px', enabled=True, fi...
global: fixes for javascript and translations
diff --git a/fireplace/card.py b/fireplace/card.py index <HASH>..<HASH> 100644 --- a/fireplace/card.py +++ b/fireplace/card.py @@ -33,7 +33,6 @@ class BaseCard(Entity): has_deathrattle = boolean_property("has_deathrattle") atk = int_property("atk") max_health = int_property("max_health") - cost = int_property("co...
Implement `cost_mod` script for card definitions
diff --git a/spec/support/setup.rb b/spec/support/setup.rb index <HASH>..<HASH> 100644 --- a/spec/support/setup.rb +++ b/spec/support/setup.rb @@ -1,5 +1,6 @@ RSpec.configure do |config| config.before :suite do `docker build --tag nibtest:latest .` + `cd spec/dummy && docker-compose build` end end
Build dummy docker images before spec run
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='appdaemontestframework', - version='2.6.0', + version='2.6.1', description='Clean, human-readable tests for Appdaemon', long_description='See: http...
Release <I>: Add support for kwargs in 'turned_off' (by snjoetw) + Fix bug when turning on/off via service
diff --git a/source/application/transforms/react/index.js b/source/application/transforms/react/index.js index <HASH>..<HASH> 100644 --- a/source/application/transforms/react/index.js +++ b/source/application/transforms/react/index.js @@ -10,12 +10,16 @@ export default function createReactCodeFactory(application) { ...
Big speed improvement of dependencies Only prepare and compile each dependency once per pattern.
diff --git a/lib/agent.js b/lib/agent.js index <HASH>..<HASH> 100644 --- a/lib/agent.js +++ b/lib/agent.js @@ -75,7 +75,7 @@ module.exports = function(uaString) { } // Patch ua.family with the normalised name - ua.family = agentlist[ua.family.toLowerCase()] || ua.family; + ua.family = agentlist[ua.family.toLowerC...
UA family must always be lowercase
diff --git a/mixins/observe.js b/mixins/observe.js index <HASH>..<HASH> 100644 --- a/mixins/observe.js +++ b/mixins/observe.js @@ -36,6 +36,11 @@ function makeGetter(fnc, key) { var value = fnc(el); + /* do not set value if we are extracting and no value has been set in DOM + * element + */ + if(!v...
Do not set value on model if we are 'extracting' and no value is gotten from DOM.
diff --git a/tests/lax_scipy_test.py b/tests/lax_scipy_test.py index <HASH>..<HASH> 100644 --- a/tests/lax_scipy_test.py +++ b/tests/lax_scipy_test.py @@ -137,8 +137,9 @@ class LaxBackedScipyTests(jtu.JaxTestCase): if test_autodiff: jtu.check_grads(lax_op, args, order=1, - atol=jtu.if...
Adjust test tolerances for TPU. (#<I>) Ideally this is temporary, as the tolerances are getting high.
diff --git a/Guard.php b/Guard.php index <HASH>..<HASH> 100755 --- a/Guard.php +++ b/Guard.php @@ -17,6 +17,13 @@ class Guard { protected $user; /** + * Indicates if the user was authenticated via a recaller cookie. + * + * @var bool + */ + protected $viaRemember = false; + + /** * The user provider implem...
Added new 'Auth::viaRemember method to determine if user was authed via 'remember me' cookie.
diff --git a/bibliopixel/animation/animation.py b/bibliopixel/animation/animation.py index <HASH>..<HASH> 100644 --- a/bibliopixel/animation/animation.py +++ b/bibliopixel/animation/animation.py @@ -52,7 +52,7 @@ class Animation(object): @color_list.setter def color_list(self, cl): - self.layout.colo...
Fix animation to use the layout's color_list property * Otherwise we don't get the cool conversions from the Layout.color_list setter.
diff --git a/views/js/qtiCommonRenderer/renderers/ModalFeedback.js b/views/js/qtiCommonRenderer/renderers/ModalFeedback.js index <HASH>..<HASH> 100755 --- a/views/js/qtiCommonRenderer/renderers/ModalFeedback.js +++ b/views/js/qtiCommonRenderer/renderers/ModalFeedback.js @@ -12,6 +12,7 @@ define([ qtiClass : 'm...
fixed modal min height issue on delivery
diff --git a/app/assets/javascripts/peoplefinder.js b/app/assets/javascripts/peoplefinder.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/peoplefinder.js +++ b/app/assets/javascripts/peoplefinder.js @@ -26,4 +26,4 @@ $(function() { $(this).closest('.role-summary').hide(); $(this).closest('.membe...
Add trailing semicolon to js file
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='python_cowbull_game', - version='2.0.1', + version='2.0.2', description='Python cowbull game object', url='https://github.com/dsandersAzure/pyth...
Refactor guesses_allowed; rename to guesses.
diff --git a/src/BaseRepositoryEloquent.php b/src/BaseRepositoryEloquent.php index <HASH>..<HASH> 100644 --- a/src/BaseRepositoryEloquent.php +++ b/src/BaseRepositoryEloquent.php @@ -85,6 +85,22 @@ abstract class BaseRepositoryEloquent implements RepositoryInterface { $query = $this->query ?: $this->model...
Add feature of selective attributes in eagerloading
diff --git a/languagetool-dev/src/main/java/org/languagetool/dev/diff/LightRuleMatchParser.java b/languagetool-dev/src/main/java/org/languagetool/dev/diff/LightRuleMatchParser.java index <HASH>..<HASH> 100644 --- a/languagetool-dev/src/main/java/org/languagetool/dev/diff/LightRuleMatchParser.java +++ b/languagetool-dev...
avoid collapsing consecutive spaces
diff --git a/src/Storage/Field/Type/RepeaterType.php b/src/Storage/Field/Type/RepeaterType.php index <HASH>..<HASH> 100644 --- a/src/Storage/Field/Type/RepeaterType.php +++ b/src/Storage/Field/Type/RepeaterType.php @@ -83,7 +83,7 @@ class RepeaterType extends FieldTypeBase { $key = $this->mapping['fieldna...
Fix for Notice and subsequent warning related to repeater fields Notice: Undefined index: fields in C:\MAMP\htdocs\nuffieldtrust.org.uk\vendor\bolt\bolt\src\Storage\Field\Type\RepeaterType.php on line <I>
diff --git a/src/playbacks/hls/hls.js b/src/playbacks/hls/hls.js index <HASH>..<HASH> 100644 --- a/src/playbacks/hls/hls.js +++ b/src/playbacks/hls/hls.js @@ -30,9 +30,9 @@ class HLS extends UIPlugin { this.setupVisibility() this.highDefinition = false this.autoPlay = options.autoPlay - this.settings ...
hls playback: fix default settings on initialization
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -38,7 +38,7 @@ function tunnelProxy(server, proxy) { process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '0'; server.on('connect', function(req, reqSocket, head) {//ws, wss, https proxy - var tunnelUrl = req....
refactor: Priority handling req.url
diff --git a/src/axelitus/Base/String.php b/src/axelitus/Base/String.php index <HASH>..<HASH> 100644 --- a/src/axelitus/Base/String.php +++ b/src/axelitus/Base/String.php @@ -779,7 +779,7 @@ class String extends PrimitiveString $string = ''; for ($i = 0; $i < $length; $i++) { - $string .=...
Changed the calls to mt_rand to the random functions of the primitives.
diff --git a/Source/garnish.js b/Source/garnish.js index <HASH>..<HASH> 100644 --- a/Source/garnish.js +++ b/Source/garnish.js @@ -278,8 +278,21 @@ Garnish = $.extend(Garnish, { */ scrollContainerToElement: function(container, elem) { - var $container = $(container), - $elem = $(elem); + if (typeof elem === ...
Make it possible to just pass the element into scrollContainerToElement()
diff --git a/web/vhost.go b/web/vhost.go index <HASH>..<HASH> 100644 --- a/web/vhost.go +++ b/web/vhost.go @@ -154,7 +154,7 @@ func (h *VHostHandler) Handle(useTLS bool, w http.ResponseWriter, r *http.Reques // Set up the X-Forwarded-Proto header so that downstream servers know // the request originated as HTTPS. ...
set X-Forwarded-Proto https Header in vhost.go
diff --git a/examples/index.php b/examples/index.php index <HASH>..<HASH> 100644 --- a/examples/index.php +++ b/examples/index.php @@ -160,17 +160,21 @@ if($_SERVER['REQUEST_METHOD'] === 'POST') { <script> var reg = localStorage.getItem('u2fregistration'); +var auth = document.getElementById('startAuthenticate'); ...
try to cleanup from broken keyhandles in storage
diff --git a/ocrd_models/ocrd_models/ocrd_page.py b/ocrd_models/ocrd_models/ocrd_page.py index <HASH>..<HASH> 100644 --- a/ocrd_models/ocrd_models/ocrd_page.py +++ b/ocrd_models/ocrd_models/ocrd_page.py @@ -5,6 +5,7 @@ from io import StringIO __all__ = [ 'parse', + 'parseEtree', 'parseString', "A...
ocrd_page: export parseEtree as well
diff --git a/core/src/main/java/io/undertow/server/DirectByteBufferDeallocator.java b/core/src/main/java/io/undertow/server/DirectByteBufferDeallocator.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/io/undertow/server/DirectByteBufferDeallocator.java +++ b/core/src/main/java/io/undertow/server/DirectByteBuff...
Fix issue with byte buffer dealocator
diff --git a/state/machine.go b/state/machine.go index <HASH>..<HASH> 100644 --- a/state/machine.go +++ b/state/machine.go @@ -906,7 +906,7 @@ func (original *Machine) advanceLifecycle(life Life, force, dyingAllowContainers } if canDie && !dyingAllowContainers { - if err := m.evaulateContainersAdvanceLifec...
Don't return if err is nil, causes destroy container to fail.
diff --git a/lib/yap/shell/execution/shell_command_execution.rb b/lib/yap/shell/execution/shell_command_execution.rb index <HASH>..<HASH> 100644 --- a/lib/yap/shell/execution/shell_command_execution.rb +++ b/lib/yap/shell/execution/shell_command_execution.rb @@ -20,14 +20,11 @@ module Yap::Shell::Execution end ...
Revert forking for shell functions, but keep closing non-standard stdin/out/err. E.g. the following work where upcase is a shell function: ls | upcase | sort
diff --git a/generate.go b/generate.go index <HASH>..<HASH> 100644 --- a/generate.go +++ b/generate.go @@ -19,6 +19,7 @@ //go:generate glow generate -out=./v4.5-compatibility/gl/ -api=gl -version=4.5 -profile=compatibility -xml=../glow/xml/ -tmpl=../glow/tmpl/ //go:generate glow generate -out=./v4.6-compatibility/gl/...
generate gles <I> (#<I>) iOS devices only support gles <I>
diff --git a/tests/risk/writers_test.py b/tests/risk/writers_test.py index <HASH>..<HASH> 100644 --- a/tests/risk/writers_test.py +++ b/tests/risk/writers_test.py @@ -36,8 +36,7 @@ class Point(object): @property def wkt(self): - # dummy implementation, just for testing. - return str(self.x) + ...
Updated .wkt test implementation
diff --git a/invenio_records_rest/query.py b/invenio_records_rest/query.py index <HASH>..<HASH> 100644 --- a/invenio_records_rest/query.py +++ b/invenio_records_rest/query.py @@ -44,7 +44,7 @@ def default_search_factory(self, search, query_parser=None): exc_info=True) raise InvalidQueryRESTError()...
query: fix facets and sort for prefixed indices
diff --git a/scope.js b/scope.js index <HASH>..<HASH> 100644 --- a/scope.js +++ b/scope.js @@ -91,7 +91,8 @@ function authorize(action, restrictions, user) { Scope.prototype.headers = function(res, list) { if (list == null) list = []; - else if (!Array.isArray(list)) list = [list]; + else if (typeof list == "strin...
scope.headers allows an object to get the list of keys
diff --git a/dom-selection.js b/dom-selection.js index <HASH>..<HASH> 100644 --- a/dom-selection.js +++ b/dom-selection.js @@ -241,6 +241,28 @@ return range.collapsed; } + /** + * Force the Selection to include entire/expanded Words. + * @see http://stackoverflow.com/questions/7380190/select-whole-word-with-g...
add forceInclude func: snaps to entire word
diff --git a/reporter/kafka/kafka.go b/reporter/kafka/kafka.go index <HASH>..<HASH> 100644 --- a/reporter/kafka/kafka.go +++ b/reporter/kafka/kafka.go @@ -51,7 +51,9 @@ func Logger(logger *log.Logger) ReporterOption { } } -// Producer sets the producer used to produce to Kafka. +// Producer sets the producer used ...
docs(reporter/kafka): adds more information about tweaking the producer. (#<I>)
diff --git a/engine-rest/engine-rest/src/test/java/org/camunda/bpm/engine/rest/ProcessDefinitionRestServiceInteractionTest.java b/engine-rest/engine-rest/src/test/java/org/camunda/bpm/engine/rest/ProcessDefinitionRestServiceInteractionTest.java index <HASH>..<HASH> 100644 --- a/engine-rest/engine-rest/src/test/java/org...
test(engine-rest): start a process instance on post with an empty body related to #CAM-<I>
diff --git a/lib/renderer/web-view/web-view.js b/lib/renderer/web-view/web-view.js index <HASH>..<HASH> 100644 --- a/lib/renderer/web-view/web-view.js +++ b/lib/renderer/web-view/web-view.js @@ -131,7 +131,7 @@ class WebViewImpl { } onElementResize () { - const resizeEvent = new Event('resize', { bubbles: tr...
fix: do not bubble up resize event from webview (#<I>)
diff --git a/influxql/ast.go b/influxql/ast.go index <HASH>..<HASH> 100644 --- a/influxql/ast.go +++ b/influxql/ast.go @@ -4117,6 +4117,8 @@ func EvalType(expr Expr, sources Sources, typmap TypeMapper) DataType { return Float case *IntegerLiteral: return Integer + case *UnsignedLiteral: + return Unsigned cas...
Update eval type for unsigned
diff --git a/src/lib/async-command.js b/src/lib/async-command.js index <HASH>..<HASH> 100644 --- a/src/lib/async-command.js +++ b/src/lib/async-command.js @@ -1,5 +1,6 @@ -/* eslint-disable unicorn/no-process-exit */ +/* eslint-disable unicorn/no-process-exit */ +/* eslint-disable promise/prefer-await-to-then */ ...
chore: fix async await missing
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -652,7 +652,7 @@ module Rails root = File.exist?("#{root_path}/#{flag}") ? root_path : default raise "Could not find root path for #...
I guess we have to return a pathname object. o_O
diff --git a/huawei_lte_api/api/User.py b/huawei_lte_api/api/User.py index <HASH>..<HASH> 100644 --- a/huawei_lte_api/api/User.py +++ b/huawei_lte_api/api/User.py @@ -10,7 +10,8 @@ from huawei_lte_api.exceptions import ResponseErrorException, \ LoginErrorUsernamePasswordOverrunException, \ LoginErrorUsernameP...
Add support for modems, without user login
diff --git a/cursor.js b/cursor.js index <HASH>..<HASH> 100644 --- a/cursor.js +++ b/cursor.js @@ -575,6 +575,12 @@ var nextFunction = function(self, callback) { // Topology was destroyed, so don't try to wait for it to reconnect return callback(new MongoError('Topology was destroyed')); } + + ...
fix(cursor): avoid waiting for reconnect if reconnect disabled
diff --git a/src/components/treemenu/treemenu.js b/src/components/treemenu/treemenu.js index <HASH>..<HASH> 100644 --- a/src/components/treemenu/treemenu.js +++ b/src/components/treemenu/treemenu.js @@ -1109,6 +1109,8 @@ var TreeMenu = Component.extend({ if(!useDataFiltered) { var pointer = "_default"; ...
Add diagnostic message for the common case, this should help #<I>
diff --git a/get-supported-locale.js b/get-supported-locale.js index <HASH>..<HASH> 100644 --- a/get-supported-locale.js +++ b/get-supported-locale.js @@ -1,14 +1,14 @@ -const supportedLocales = ['en', 'de']; +const supportedLanguages = ['en', 'de']; // This function is reponsible of passing the fallback language "e...
refactor(locale): rename variables and functions to be consistent with the difference between language vs locale
diff --git a/library/CM/RenderAdapter/Layout.php b/library/CM/RenderAdapter/Layout.php index <HASH>..<HASH> 100644 --- a/library/CM/RenderAdapter/Layout.php +++ b/library/CM/RenderAdapter/Layout.php @@ -15,10 +15,10 @@ class CM_RenderAdapter_Layout extends CM_RenderAdapter_Abstract { } /** - * @param CM...
Do not pass site to layout->fetch, but use render's one
diff --git a/commands/request.go b/commands/request.go index <HASH>..<HASH> 100644 --- a/commands/request.go +++ b/commands/request.go @@ -62,7 +62,9 @@ type Request interface { Options() optMap SetOption(name string, val interface{}) Arguments() []interface{} + SetArguments([]interface{}) Files() File + SetFil...
commands: Added SetArguments/SetFiles to Request
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -161,8 +161,7 @@ class Test::Unit::TestCase update = options.delete(:update) || false ruby_version = options.delete(:ruby_version) || (JRUBY_JARS_VERSION.to_s[0..0] == '9' ...
* Turn on multi-dex for older JRuby versions also.
diff --git a/result.go b/result.go index <HASH>..<HASH> 100644 --- a/result.go +++ b/result.go @@ -48,6 +48,7 @@ type ( Value() interface{} SetDetails(ErrorDetails) Details() ErrorDetails + String() string } // ResultErrorFields holds the fields for each ResultError implementation.
Add String() to ResultError interface
diff --git a/lib/unidom/visitor/version.rb b/lib/unidom/visitor/version.rb index <HASH>..<HASH> 100644 --- a/lib/unidom/visitor/version.rb +++ b/lib/unidom/visitor/version.rb @@ -1,5 +1,5 @@ module Unidom module Visitor - VERSION = '1.9'.freeze + VERSION = '1.10'.freeze end end
1, Migrate the version from <I> to <I>.
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -16,6 +16,7 @@ export type DotModel = { uvCoordinates: number[], normalCoordinates: number[], numVerticesPerFace: number, + numCoordinatesPerVertex: number, }; function parseIndices(streamReader: ...
Fix the exported `dotModel` flow type
diff --git a/core/src/main/java/com/digitalpebble/storm/crawler/persistence/StdOutStatusUpdater.java b/core/src/main/java/com/digitalpebble/storm/crawler/persistence/StdOutStatusUpdater.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/digitalpebble/storm/crawler/persistence/StdOutStatusUpdater.java +++ b/c...
StdOutStatusUpdater does not need collector
diff --git a/src/Module.php b/src/Module.php index <HASH>..<HASH> 100644 --- a/src/Module.php +++ b/src/Module.php @@ -447,9 +447,12 @@ class Module { } else { - if (!$deleteAll && $object === $slug . '.php') { + if (!$deleteAll) { - contin...
The module path was added to the getModulesInfo method
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,7 @@ from distutils.core import setup +version = '1.0.2' + # If sphinx is installed, enable the command try: from sphinx.setup_command import BuildDoc @@ -14,8 +16,6 @@ except ImportError: cmdclass = {} ...
Make sphinx building actually work
diff --git a/charmhelpers/core/host_factory/ubuntu.py b/charmhelpers/core/host_factory/ubuntu.py index <HASH>..<HASH> 100644 --- a/charmhelpers/core/host_factory/ubuntu.py +++ b/charmhelpers/core/host_factory/ubuntu.py @@ -28,6 +28,7 @@ UBUNTU_RELEASES = ( 'focal', 'groovy', 'hirsute', + 'impish', )
Add impish to the list of Ubuntu releases.
diff --git a/lib/ronin/engine/class_methods.rb b/lib/ronin/engine/class_methods.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/engine/class_methods.rb +++ b/lib/ronin/engine/class_methods.rb @@ -45,7 +45,7 @@ module Ronin # @since 0.4.0 # def load_all(options={}) - return custom_query(option...
Add any extra options into the query returned by Engine::ClassMethods#custom_query.
diff --git a/src/tinymce.js b/src/tinymce.js index <HASH>..<HASH> 100644 --- a/src/tinymce.js +++ b/src/tinymce.js @@ -7,8 +7,8 @@ angular.module('ui.tinymce', []) uiTinymceConfig = uiTinymceConfig || {}; var generatedIds = 0; return { + priority: 10, require: 'ngModel', - priority: 1, ...
adding priority for ngmodel re-rendering's sake Remove old priority to give users more control over priority order
diff --git a/lib/io.js b/lib/io.js index <HASH>..<HASH> 100644 --- a/lib/io.js +++ b/lib/io.js @@ -52,6 +52,7 @@ function RajaServer(opts) { io.to('*').to(msg.url).emit('message', msg); }); socket.on('join', function(msg) { + if (msg.mtime) socket.joinArgs = msg.mtime; socket.join(msg.room, function(err...
Will pass some option mtime to backlog adapter
diff --git a/controllers/components/uploader.php b/controllers/components/uploader.php index <HASH>..<HASH> 100644 --- a/controllers/components/uploader.php +++ b/controllers/components/uploader.php @@ -964,16 +964,14 @@ class UploaderComponent extends Object { foreach ($mimes as $mimeExt => $mimeType) { if ((...
Uploaded file associated with incorrect mimetype group.
diff --git a/Classes/TypoScript/Condition/CoreVersionCondition.php b/Classes/TypoScript/Condition/CoreVersionCondition.php index <HASH>..<HASH> 100644 --- a/Classes/TypoScript/Condition/CoreVersionCondition.php +++ b/Classes/TypoScript/Condition/CoreVersionCondition.php @@ -62,7 +62,8 @@ class CoreVersionCondition exte...
[BUGFIX] Ensure condition matching assigns correct matches
diff --git a/giddy/directional.py b/giddy/directional.py index <HASH>..<HASH> 100644 --- a/giddy/directional.py +++ b/giddy/directional.py @@ -387,6 +387,7 @@ class Rose(object): except ImportError: warnings.warn('This method relies on importing `splot` in future', Depre...
add `use_splot = False` to run old `.plot()` method
diff --git a/src/Http/Controllers/AdminController.php b/src/Http/Controllers/AdminController.php index <HASH>..<HASH> 100644 --- a/src/Http/Controllers/AdminController.php +++ b/src/Http/Controllers/AdminController.php @@ -83,6 +83,7 @@ class AdminController extends BaseAdminController $data['parent_id'] = $da...
Menulinks::forgetCache
diff --git a/tests/guinea-pigs/pytest/xfail_test.py b/tests/guinea-pigs/pytest/xfail_test.py index <HASH>..<HASH> 100644 --- a/tests/guinea-pigs/pytest/xfail_test.py +++ b/tests/guinea-pigs/pytest/xfail_test.py @@ -1,7 +1,7 @@ import pytest -@pytest.mark.xfail("True", reason="xfail reason") +@pytest.mark.xfail("Tr...
fix xfail in tests
diff --git a/src/Base/AbstractController.php b/src/Base/AbstractController.php index <HASH>..<HASH> 100644 --- a/src/Base/AbstractController.php +++ b/src/Base/AbstractController.php @@ -155,13 +155,25 @@ abstract class AbstractController implements ControllerInterface } $this->myActionName = $actio...
Refactor action method invocation in AbstractController class
diff --git a/src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php +++ b/src/Symfony/Framework/...
Fixed bad examples in doctrine:generate:entities help output.
diff --git a/src/org/parboiled/MatcherContext.java b/src/org/parboiled/MatcherContext.java index <HASH>..<HASH> 100644 --- a/src/org/parboiled/MatcherContext.java +++ b/src/org/parboiled/MatcherContext.java @@ -21,11 +21,10 @@ import org.parboiled.common.ImmutableList; import org.parboiled.common.Preconditions; impor...
Enabled writing access to list of parse error returned by Context.getParseErrors()
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -45,7 +45,7 @@ module.exports = function(grunt) { tasks: ['jshint:theme', 'concat:js', 'uglify:js', 'assets_version'] }, less: { - files: 'less/*.less', + files: 'less/**/*....
WATCH ALL THE LESS FILES!
diff --git a/lib/avocado/example.rb b/lib/avocado/example.rb index <HASH>..<HASH> 100644 --- a/lib/avocado/example.rb +++ b/lib/avocado/example.rb @@ -16,8 +16,9 @@ module Avocado protected def resource_name_from_url(path, method) - Rails.application.routes.recognize_path(path, method: method)[:con...
RSpec will be able to parse the name even if the controller name doesn't have a slash (for non-namespaced APIs)
diff --git a/Demo_Img_Viewer.py b/Demo_Img_Viewer.py index <HASH>..<HASH> 100644 --- a/Demo_Img_Viewer.py +++ b/Demo_Img_Viewer.py @@ -71,7 +71,7 @@ file_num_display_elem = sg.Text('File 1 of {}'.format(num_files), size=(15,1)) col = [[filename_display_elem], [image_elem]] -col_files = [[sg.Listbox(values...
changed select_submits to change_submits
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 @@ -14,7 +14,7 @@ const request = require("request"); // 1. Go to https://github.com/w3c/web-platform-tests/tree/mas...
Update to include the latest web platform tests Includes <URL>
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 @@ -93,7 +93,7 @@ module Minitest def assert_tick(actual_duration, clock) first = clock.tick second = clock.tick - assert_equal second, first + actual_duration +...
Ensure clock tick spec matcher zeros out microseconds
diff --git a/config/sub/TwigViewsConfig.php b/config/sub/TwigViewsConfig.php index <HASH>..<HASH> 100644 --- a/config/sub/TwigViewsConfig.php +++ b/config/sub/TwigViewsConfig.php @@ -3,14 +3,14 @@ namespace config\sub; use Valkyrja\Config\Sub\TwigViewsConfig as ValkyrjaTwigViewsConfig; -use Valkyrja\Application; +u...
Fixing twig override in views config.
diff --git a/caravel/views.py b/caravel/views.py index <HASH>..<HASH> 100755 --- a/caravel/views.py +++ b/caravel/views.py @@ -27,6 +27,7 @@ from flask_appbuilder.models.sqla.filters import BaseFilter from sqlalchemy import create_engine from werkzeug.routing import BaseConverter +from werkzeug.datastructures impor...
add ImmutableMultiDict back to views.py (#<I>)
diff --git a/user.go b/user.go index <HASH>..<HASH> 100644 --- a/user.go +++ b/user.go @@ -1,7 +1,5 @@ package discordgo -import "fmt" - // A User stores all data for an individual Discord user. type User struct { ID string `json:"id"` @@ -17,10 +15,10 @@ type User struct { // String returns a uniq...
STOP USING PRINTF PLS
diff --git a/pygubu/builder.py b/pygubu/builder.py index <HASH>..<HASH> 100644 --- a/pygubu/builder.py +++ b/pygubu/builder.py @@ -61,7 +61,7 @@ class BuilderObject: def __init__(self, builder, wdescr): self.builder = builder - self.objetid = wdescr['id'] + self.objectid = wdescr['id'] ...
Fix typo causing bug on menuitems.
diff --git a/src/main/java/org/jfrog/hudson/pipeline/common/executors/GradleExecutor.java b/src/main/java/org/jfrog/hudson/pipeline/common/executors/GradleExecutor.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jfrog/hudson/pipeline/common/executors/GradleExecutor.java +++ b/src/main/java/org/jfrog/hudson/pip...
Bugfix - NPE in Gradle jobs when deployer is empty (#<I>)
diff --git a/server/src/main/java/org/jboss/as/server/operations/DumpServicesHandler.java b/server/src/main/java/org/jboss/as/server/operations/DumpServicesHandler.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/org/jboss/as/server/operations/DumpServicesHandler.java +++ b/server/src/main/java/org/jboss/as/...
DumpServicesHandler doesn't need the controller lock was: 4f4b<I>f7cd<I>e<I>af<I>b6f<I>a<I>bd
diff --git a/test/associated-model.js b/test/associated-model.js index <HASH>..<HASH> 100644 --- a/test/associated-model.js +++ b/test/associated-model.js @@ -1150,7 +1150,9 @@ $(document).ready(function () { { type:Backbone.One, key:'type', - ...
Update a test case to use both map and function for `relatedModel`
diff --git a/Connection.php b/Connection.php index <HASH>..<HASH> 100755 --- a/Connection.php +++ b/Connection.php @@ -504,7 +504,7 @@ class Connection implements ConnectionInterface } $this->recordsHaveBeenModified( - $change = ($this->getPdo()->exec($query) === false ? false...
[<I>] Unnecessary ternary expression (#<I>)
diff --git a/lib/util/data-server.js b/lib/util/data-server.js index <HASH>..<HASH> 100644 --- a/lib/util/data-server.js +++ b/lib/util/data-server.js @@ -154,30 +154,16 @@ function getFrames(curReqId, lastFrameId) { } var result = []; var count = 16; - var len = frames.length; - var i, frame; - if (!lastFr...
fix: loss frames when open for first time
diff --git a/djsupervisor/config.py b/djsupervisor/config.py index <HASH>..<HASH> 100644 --- a/djsupervisor/config.py +++ b/djsupervisor/config.py @@ -274,6 +274,7 @@ def rerender_options(options): """ args = [] for name,value in options.iteritems(): + name = name.replace("_","-") if valu...
Fix rerender_options to turn "project_dir" into "--project-dir"
diff --git a/framework/core/js/admin/Gulpfile.js b/framework/core/js/admin/Gulpfile.js index <HASH>..<HASH> 100644 --- a/framework/core/js/admin/Gulpfile.js +++ b/framework/core/js/admin/Gulpfile.js @@ -29,6 +29,5 @@ gulp({ '../lib/**/*.js' ] }, - externalHelpers: true, outputFile: 'dist/app.js' });...
External helpers are included by default now
diff --git a/lib/fitgem/body_measurements.rb b/lib/fitgem/body_measurements.rb index <HASH>..<HASH> 100644 --- a/lib/fitgem/body_measurements.rb +++ b/lib/fitgem/body_measurements.rb @@ -1,7 +1,7 @@ module Fitgem class Client # ========================================== - # Body Measurements Update Met...
These aren't actually update methods, they're retrieval methods.
diff --git a/mri_meta_extract/dicom_import.py b/mri_meta_extract/dicom_import.py index <HASH>..<HASH> 100644 --- a/mri_meta_extract/dicom_import.py +++ b/mri_meta_extract/dicom_import.py @@ -29,7 +29,7 @@ conn = None # FUNCTIONS - DICOM ########################################################################## -def...
fix files_pattern for dicom (same fix was previously done for nifti)
diff --git a/lib/browser/index.js b/lib/browser/index.js index <HASH>..<HASH> 100644 --- a/lib/browser/index.js +++ b/lib/browser/index.js @@ -105,6 +105,7 @@ exports.browserAugmentation = function(dom) { for (var i in element.style) { if (!styleIgnore[i]) { var use = ...
Removed a sys call
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -257,7 +257,7 @@ module.exports = function(Sequelize) { var tableName = defineOptions.freezeTableName ? modelName : (Utils.pluralize(modelName1) + Utils.pluralize(defineOptions.camelThrough ? Utils.upperc...
Bug fix - refactor skipFields option code
diff --git a/loompy/loompy.py b/loompy/loompy.py index <HASH>..<HASH> 100644 --- a/loompy/loompy.py +++ b/loompy/loompy.py @@ -417,7 +417,7 @@ class LoomConnection: # Add the columns layerwise for key in self.layer.keys(): self.layer[key].resize(n_cols, axis=1) - self.layer[key][:, self.shape[1]:n_cols] = s...
bug in layer-handling during add_columns
diff --git a/materializecssform/templatetags/materializecss.py b/materializecssform/templatetags/materializecss.py index <HASH>..<HASH> 100644 --- a/materializecssform/templatetags/materializecss.py +++ b/materializecssform/templatetags/materializecss.py @@ -34,7 +34,7 @@ def render(element, markup_classes): if el...
Replace Context to dict for Django <I> compatibility
diff --git a/slack-api-client/src/test/java/util/sample_json_generation/JsonDataRecorder.java b/slack-api-client/src/test/java/util/sample_json_generation/JsonDataRecorder.java index <HASH>..<HASH> 100644 --- a/slack-api-client/src/test/java/util/sample_json_generation/JsonDataRecorder.java +++ b/slack-api-client/src/t...
Fix a bug in the sample JSON generator
diff --git a/src/js/TextFields/TextField.js b/src/js/TextFields/TextField.js index <HASH>..<HASH> 100644 --- a/src/js/TextFields/TextField.js +++ b/src/js/TextFields/TextField.js @@ -53,7 +53,6 @@ export default class TextField extends Component { static defaultProps = { type: 'text', - defaultValue: '', ...
Removed defaultValue from text field for react-<I> happiness