diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/Themosis/Route/RouteServiceProvider.php b/src/Themosis/Route/RouteServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Themosis/Route/RouteServiceProvider.php +++ b/src/Themosis/Route/RouteServiceProvider.php @@ -2,21 +2,14 @@ namespace Themosis\Route; -use Illuminate\Events\Dispatcher; -use ...
Themosis route service provider extends the illuminate routing provider.
diff --git a/src/Api/Issues.php b/src/Api/Issues.php index <HASH>..<HASH> 100644 --- a/src/Api/Issues.php +++ b/src/Api/Issues.php @@ -97,7 +97,7 @@ class Issues extends AbstractApi * * @return mixed */ - public function reorder($project_id, $issue_iid, array $params) + public function reorder($...
Added missing scalar type
diff --git a/anyvcs/git.py b/anyvcs/git.py index <HASH>..<HASH> 100644 --- a/anyvcs/git.py +++ b/anyvcs/git.py @@ -146,11 +146,11 @@ class GitRepo(VCSRepo): cmd.append('--no-merges') single = False if revrange is None: - pass + cmd.append('--all') elif isinstance(revrange, tuple): ...
fix bug in GitRepo.log when revrange=None or (None,None)
diff --git a/sacred/initialize.py b/sacred/initialize.py index <HASH>..<HASH> 100755 --- a/sacred/initialize.py +++ b/sacred/initialize.py @@ -240,8 +240,18 @@ def create_scaffolding(experiment, sorted_ingredients): named_configs=experiment.named_configs, config_hooks=experiment.config_hooks, ...
create_scaffolding raise exception when pathes aren't unique
diff --git a/spec/wordpress/api_spec.rb b/spec/wordpress/api_spec.rb index <HASH>..<HASH> 100644 --- a/spec/wordpress/api_spec.rb +++ b/spec/wordpress/api_spec.rb @@ -37,7 +37,9 @@ describe Wordpress::API do it "should raise error with invalid parameter" do expect { - obj = client.send(method...
Improve the argument format in spec.
diff --git a/core/src/elements/ons-fab.js b/core/src/elements/ons-fab.js index <HASH>..<HASH> 100755 --- a/core/src/elements/ons-fab.js +++ b/core/src/elements/ons-fab.js @@ -72,6 +72,13 @@ export default class FabElement extends BaseElement { */ init() { + // The following statements can be executed before...
fix(ons-fab): Execute this.show() and some statements before contentReady.
diff --git a/Pdf/Engine/WkHtmlToPdfEngine.php b/Pdf/Engine/WkHtmlToPdfEngine.php index <HASH>..<HASH> 100644 --- a/Pdf/Engine/WkHtmlToPdfEngine.php +++ b/Pdf/Engine/WkHtmlToPdfEngine.php @@ -26,14 +26,6 @@ class WkHtmlToPdfEngine extends AbstractPdfEngine { * @return string raw pdf data */ public function output(...
move binary setting to _getCommand
diff --git a/widgets/RelTabs.php b/widgets/RelTabs.php index <HASH>..<HASH> 100755 --- a/widgets/RelTabs.php +++ b/widgets/RelTabs.php @@ -58,14 +58,23 @@ class RelTabs extends \dlds\rels\components\Widget { */ protected function renderViews() { - $widget = $this->relViewClass; + if (empty...
RelTabs updated - added warning when no related model exist
diff --git a/pyocd/commands/commands.py b/pyocd/commands/commands.py index <HASH>..<HASH> 100755 --- a/pyocd/commands/commands.py +++ b/pyocd/commands/commands.py @@ -1561,8 +1561,7 @@ class HelpCommand(CommandBase): } HELP_ADDENDUM = """ -All register names are also available as commands that print...
commands: help: fix addendum regarding register name commands.
diff --git a/sprd/manager/ProductManager.js b/sprd/manager/ProductManager.js index <HASH>..<HASH> 100644 --- a/sprd/manager/ProductManager.js +++ b/sprd/manager/ProductManager.js @@ -5,6 +5,8 @@ define(["sprd/manager/IProductManager", "underscore", "flow", "sprd/util/Product var PREVENT_VALIDATION_OPTIONS = { ...
DEV-<I> - First Text to big for small product types
diff --git a/sonar-server/src/main/webapp/javascripts/navigator/filters/rule-filters.js b/sonar-server/src/main/webapp/javascripts/navigator/filters/rule-filters.js index <HASH>..<HASH> 100644 --- a/sonar-server/src/main/webapp/javascripts/navigator/filters/rule-filters.js +++ b/sonar-server/src/main/webapp/javascripts...
SONAR-<I> Little change to support rule language after page reload
diff --git a/test/test-suite.js b/test/test-suite.js index <HASH>..<HASH> 100644 --- a/test/test-suite.js +++ b/test/test-suite.js @@ -1264,15 +1264,22 @@ self { JScrewIt = arg || global.JScrewIt; featureSet = Object.create(null); - EMU_FEATURES.forEach( - function (feature) { f...
Minor fix in test-suite.js
diff --git a/index.es6.js b/index.es6.js index <HASH>..<HASH> 100644 --- a/index.es6.js +++ b/index.es6.js @@ -50,11 +50,11 @@ function shim(iter, root) { value: function () { let result = iter.nextNode(); _pointerBeforeReferenceNode = false; - if (result !== null) { - _referenc...
Positive assertions and correct code are good
diff --git a/library/Garp/Model/Helper.php b/library/Garp/Model/Helper.php index <HASH>..<HASH> 100755 --- a/library/Garp/Model/Helper.php +++ b/library/Garp/Model/Helper.php @@ -11,6 +11,11 @@ */ abstract class Garp_Model_Helper extends Garp_Util_ObserverAbstract { /** + * Configuration + */ + protected $_con...
Added Dateable behavior for to/from dates with themes.
diff --git a/mod/lesson/locallib.php b/mod/lesson/locallib.php index <HASH>..<HASH> 100644 --- a/mod/lesson/locallib.php +++ b/mod/lesson/locallib.php @@ -2756,7 +2756,7 @@ class lesson extends lesson_base { $result->newpageid = $page->nextpageid; } } else { - ...
MDL-<I> lesson: Replace old var reference by self
diff --git a/lib/lotus/utils/escape.rb b/lib/lotus/utils/escape.rb index <HASH>..<HASH> 100644 --- a/lib/lotus/utils/escape.rb +++ b/lib/lotus/utils/escape.rb @@ -528,9 +528,10 @@ module Lotus # @since 0.4.0 # @api private def self.encode(input) - input.to_s.encode(Encoding::UTF_8) + ...
Ensure immutability for encoded strings which failed the conversion Ref #<I>
diff --git a/spec/custom_field_spec.rb b/spec/custom_field_spec.rb index <HASH>..<HASH> 100644 --- a/spec/custom_field_spec.rb +++ b/spec/custom_field_spec.rb @@ -10,7 +10,7 @@ module Trello before do allow(client) .to receive(:get) - .with('customFields/abcdef123456789123456789', {}) + ...
Updated custom field creation test and added deletion test
diff --git a/server.js b/server.js index <HASH>..<HASH> 100644 --- a/server.js +++ b/server.js @@ -59,6 +59,8 @@ module.exports = function (opts, onConnection) { wsServer.close() return emitter } + + emitter.address = server.address.bind(server) return emitter }
expose .address from underlying server
diff --git a/lib/rnes/ppu.rb b/lib/rnes/ppu.rb index <HASH>..<HASH> 100644 --- a/lib/rnes/ppu.rb +++ b/lib/rnes/ppu.rb @@ -82,6 +82,8 @@ module Rnes case address when 0x0002 registers.status + when 0x0004 + read_from_sprite_ram(@sprite_ram_address) when 0x0007 read_fro...
Implement reading OAM data from PPU $<I>
diff --git a/spyderlib/widgets/dicteditorutils.py b/spyderlib/widgets/dicteditorutils.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/dicteditorutils.py +++ b/spyderlib/widgets/dicteditorutils.py @@ -186,7 +186,7 @@ def value_to_display(value, truncate=False, trunc_len=80, minmax=False): return '%s Mod...
Variable Explorer: Fix another freeze when creating DataFrames on PY 2 - This is a regression introduced when trying to fix issue #<I>
diff --git a/abilian/services/audit/service.py b/abilian/services/audit/service.py index <HASH>..<HASH> 100644 --- a/abilian/services/audit/service.py +++ b/abilian/services/audit/service.py @@ -48,6 +48,9 @@ class AuditService(Service): Service.start(self) self.register_classes() + def is_auditable(self, ...
audit: added method to determine if an item is auditable (factorization)
diff --git a/minio/thread_pool.py b/minio/thread_pool.py index <HASH>..<HASH> 100644 --- a/minio/thread_pool.py +++ b/minio/thread_pool.py @@ -45,7 +45,7 @@ class Worker(Thread): """ Continously receive tasks and execute them """ while True: task = self.tasks_queue.get() - if t...
fix formatting as per pep8 in thread_pool.py (#<I>)
diff --git a/src/command/KeyBindingManager.js b/src/command/KeyBindingManager.js index <HASH>..<HASH> 100644 --- a/src/command/KeyBindingManager.js +++ b/src/command/KeyBindingManager.js @@ -469,8 +469,11 @@ define(function (require, exports, module) { */ function handleKey(key) { if (_enabled && _k...
be smarter about key event propagation
diff --git a/diego/lifecycle_test.go b/diego/lifecycle_test.go index <HASH>..<HASH> 100644 --- a/diego/lifecycle_test.go +++ b/diego/lifecycle_test.go @@ -94,4 +94,21 @@ var _ = Describe("Application Lifecycle", func() { describeLifeCycle() }) + + Describe("An existing DEA-based app being migrated to Diego", fun...
Add test for switching DEA app to diego
diff --git a/packages/cli/utils/PluginsContainer.js b/packages/cli/utils/PluginsContainer.js index <HASH>..<HASH> 100644 --- a/packages/cli/utils/PluginsContainer.js +++ b/packages/cli/utils/PluginsContainer.js @@ -35,6 +35,10 @@ module.exports = class PluginsContainer { return Array.from(plugins); } + ...
fix: add missing findByType method
diff --git a/src/entity/Entity.Geometry.js b/src/entity/Entity.Geometry.js index <HASH>..<HASH> 100644 --- a/src/entity/Entity.Geometry.js +++ b/src/entity/Entity.Geometry.js @@ -100,7 +100,7 @@ meta.class("Entity.Geometry", this._updateAnchor(); - if(this.renderer.culling) { + if(this.renderer.culling && this...
Culling is now used only for entities that is on main layer only.
diff --git a/examples/examples.py b/examples/examples.py index <HASH>..<HASH> 100644 --- a/examples/examples.py +++ b/examples/examples.py @@ -11,13 +11,15 @@ from halo.halo import Halo spinner = Halo({'text': 'Such Spin', 'spinner': 'dots'}) - -spinner.start() -time.sleep(2) -spinner.text = 'Much Colors' -spinner...
Example: Now handles KeyboardInterrupts too!
diff --git a/bread/__init__.py b/bread/__init__.py index <HASH>..<HASH> 100644 --- a/bread/__init__.py +++ b/bread/__init__.py @@ -1,5 +1,5 @@ __title__ = 'bread' -__version__ = '2.0.0' +__version__ = '2.1.0' __author__ = 'Alex Rasmussen' __license__ = 'MIT' __copyright__ = 'Copyright 2015 Alex Rasmussen' diff --gi...
Bumping version to <I>
diff --git a/lib/dml/tests/dml_test.php b/lib/dml/tests/dml_test.php index <HASH>..<HASH> 100644 --- a/lib/dml/tests/dml_test.php +++ b/lib/dml/tests/dml_test.php @@ -4176,6 +4176,7 @@ class dml_testcase extends database_driver_testcase { $t->allow_commit(); $j++; } + ...
MDL-<I> add missing rs close Thanks Eloy!
diff --git a/framework/i18n/I18N.php b/framework/i18n/I18N.php index <HASH>..<HASH> 100644 --- a/framework/i18n/I18N.php +++ b/framework/i18n/I18N.php @@ -31,18 +31,18 @@ class I18N extends Component * category patterns, and the array values are the corresponding [[MessageSource]] objects or the configurations ...
Cosmetic changes in DocBlocks (#<I>) [skip ci]
diff --git a/tensorflow_probability/python/experimental/distribute/sharded.py b/tensorflow_probability/python/experimental/distribute/sharded.py index <HASH>..<HASH> 100644 --- a/tensorflow_probability/python/experimental/distribute/sharded.py +++ b/tensorflow_probability/python/experimental/distribute/sharded.py @@ -1...
Plumb-through the default event bijector in tfp_dist.Sharded. PiperOrigin-RevId: <I>
diff --git a/MRS/analysis.py b/MRS/analysis.py index <HASH>..<HASH> 100644 --- a/MRS/analysis.py +++ b/MRS/analysis.py @@ -135,7 +135,7 @@ def coil_combine(data, w_idx=[1,2,3], coil_dim=2, sampling_rate=5000.): bounds = [(None,None), (0,None), (0,None), - (-np.pi/2, np.pi...
Not good to enforce positivity for the coil-combination. That kinda makes sense, actually.
diff --git a/Slim/Http/Util.php b/Slim/Http/Util.php index <HASH>..<HASH> 100644 --- a/Slim/Http/Util.php +++ b/Slim/Http/Util.php @@ -174,6 +174,32 @@ class Util } /** + * Serialize Response cookies into raw HTTP header + * @param \Slim\Http\Headers $headers The Response headers + * @param \S...
Add method to Slim\Http\Util to serialize cookies into headers
diff --git a/spotify/sync/sync.py b/spotify/sync/sync.py index <HASH>..<HASH> 100644 --- a/spotify/sync/sync.py +++ b/spotify/sync/sync.py @@ -20,7 +20,7 @@ class SyncExecution(threading.Thread): self.running = True self.in_queue.put(coro) - while True: + while self.running: ...
run_coro execution loop depends on sync execution state
diff --git a/lib/namespace.rb b/lib/namespace.rb index <HASH>..<HASH> 100644 --- a/lib/namespace.rb +++ b/lib/namespace.rb @@ -64,6 +64,14 @@ module Atomy nil end + def top_down(&blk) + yield @name + @using.each do |u| + Atomy::Namespace.get(u).top_down(&blk) + end + nil + ...
add Namespace#top_down, which recursively yields the names of the namespaces it uses (depth-first)
diff --git a/lib/knapsack_pro/tracker.rb b/lib/knapsack_pro/tracker.rb index <HASH>..<HASH> 100644 --- a/lib/knapsack_pro/tracker.rb +++ b/lib/knapsack_pro/tracker.rb @@ -90,11 +90,7 @@ module KnapsackPro end def now_without_mock_time - if defined?(Timecop) - Time.now_without_mock_time - el...
Use Process.clock_gettime to measure track execution time
diff --git a/Loader/ComboLoader.php b/Loader/ComboLoader.php index <HASH>..<HASH> 100644 --- a/Loader/ComboLoader.php +++ b/Loader/ComboLoader.php @@ -221,7 +221,7 @@ class ComboLoader implements Loader private function sanitizeFilenames(array $files, $version) { $filesWithoutVersion = array_map(func...
EZEE-<I>: Supplement for #<I> (#<I>)
diff --git a/pyqode/cobol/widgets/code_edit.py b/pyqode/cobol/widgets/code_edit.py index <HASH>..<HASH> 100644 --- a/pyqode/cobol/widgets/code_edit.py +++ b/pyqode/cobol/widgets/code_edit.py @@ -5,7 +5,7 @@ import mimetypes import os import sys from pyqode.core import api, panels, modes -from pyqode.core.backend imp...
Use NotRunning instead of NotConnected
diff --git a/JSAT/test/jsat/math/optimization/BFGSTest.java b/JSAT/test/jsat/math/optimization/BFGSTest.java index <HASH>..<HASH> 100644 --- a/JSAT/test/jsat/math/optimization/BFGSTest.java +++ b/JSAT/test/jsat/math/optimization/BFGSTest.java @@ -52,7 +52,7 @@ public class BFGSTest Random rand = new Random(); ...
Make same change as already in LBFGS test so that initial guess should lead us to the global minimum instead of the local one
diff --git a/jquery.peity.js b/jquery.peity.js index <HASH>..<HASH> 100644 --- a/jquery.peity.js +++ b/jquery.peity.js @@ -78,7 +78,7 @@ return this.$svg .empty() - .data('peity', this) + .data('_peity', this) .attr({ height: height, width: width
Fix reference to the Peity chart object from its <svg>.
diff --git a/src/de/mrapp/android/validation/AbstractValidateableView.java b/src/de/mrapp/android/validation/AbstractValidateableView.java index <HASH>..<HASH> 100644 --- a/src/de/mrapp/android/validation/AbstractValidateableView.java +++ b/src/de/mrapp/android/validation/AbstractValidateableView.java @@ -733,6 +733,11...
Added a method, which allows to remove all validators from a view.
diff --git a/actionpack/lib/action_view/template.rb b/actionpack/lib/action_view/template.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_view/template.rb +++ b/actionpack/lib/action_view/template.rb @@ -18,7 +18,7 @@ module ActionView attr_reader :source, :identifier, :handler, :virtual_path, :format...
Use a constant proc to generate ActionView::Template finalizers. For some strange reason, finalizers created via ActionView::Template.finalizer_for cause Template instances to leak on MRI.
diff --git a/pyfolio/utils.py b/pyfolio/utils.py index <HASH>..<HASH> 100644 --- a/pyfolio/utils.py +++ b/pyfolio/utils.py @@ -224,7 +224,7 @@ def load_portfolio_risk_factors(filepath_prefix=None, start=None, end=None): filepath = filepath_prefix # Is cache recent enough? - if pd.to_datetime(getmtime...
BUG Make dt comparison tz aware.
diff --git a/resources/lang/id-ID/cachet.php b/resources/lang/id-ID/cachet.php index <HASH>..<HASH> 100644 --- a/resources/lang/id-ID/cachet.php +++ b/resources/lang/id-ID/cachet.php @@ -33,6 +33,7 @@ return [ 'scheduled' => 'Jadwal Pemeliharaan', 'scheduled_at' => ', dijadwalkan pada :timestamp', ...
New translations cachet.php (Indonesian)
diff --git a/tests/test_buku.py b/tests/test_buku.py index <HASH>..<HASH> 100644 --- a/tests/test_buku.py +++ b/tests/test_buku.py @@ -3,6 +3,7 @@ from itertools import product from unittest import mock from urllib.parse import urlparse import json +import logging import os import signal import sys @@ -726,7 +727...
chg: dev: only inform about popen for now
diff --git a/src/System.php b/src/System.php index <HASH>..<HASH> 100644 --- a/src/System.php +++ b/src/System.php @@ -107,7 +107,7 @@ class System require_once('include/utils/layout_utils.php'); $GLOBALS['mod_strings'] = return_module_language($currentLanguage, 'Administration'); $repair = n...
Removed useless call in quick repair + solved the bug with the api cache not cleared
diff --git a/actionpack/lib/action_view/helpers/cache_helper.rb b/actionpack/lib/action_view/helpers/cache_helper.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_view/helpers/cache_helper.rb +++ b/actionpack/lib/action_view/helpers/cache_helper.rb @@ -51,7 +51,9 @@ module ActionView # This dance i...
Fragment caching needs to operate on the pure output, not the safebuffer.
diff --git a/src/main/java/com/coveros/selenified/Selenified.java b/src/main/java/com/coveros/selenified/Selenified.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/coveros/selenified/Selenified.java +++ b/src/main/java/com/coveros/selenified/Selenified.java @@ -566,11 +566,7 @@ public class Selenified { ...
Fixing issue with Selenified properties
diff --git a/lib/typhoid/queued_request.rb b/lib/typhoid/queued_request.rb index <HASH>..<HASH> 100644 --- a/lib/typhoid/queued_request.rb +++ b/lib/typhoid/queued_request.rb @@ -8,11 +8,11 @@ module Typhoid self.request = Request.new(req.request_uri, req.options) self.klass = req.klass self.target...
don't use self unless necessary
diff --git a/paxtools-console/src/main/java/org/biopax/paxtools/PaxtoolsMain.java b/paxtools-console/src/main/java/org/biopax/paxtools/PaxtoolsMain.java index <HASH>..<HASH> 100644 --- a/paxtools-console/src/main/java/org/biopax/paxtools/PaxtoolsMain.java +++ b/paxtools-console/src/main/java/org/biopax/paxtools/Paxtool...
Fix: the lats optional parameter in the toGSEA command was in fact a must have.
diff --git a/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java b/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java index <HASH>..<HASH> 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnectio...
Shutdown listenerExecutor to prevent the Thread from leaking listenerExecutor needs to get shutdown once it is no longer required. SMACK-<I>
diff --git a/src/widgets/SidebarMenu.php b/src/widgets/SidebarMenu.php index <HASH>..<HASH> 100644 --- a/src/widgets/SidebarMenu.php +++ b/src/widgets/SidebarMenu.php @@ -19,7 +19,7 @@ class SidebarMenu extends \hiqdev\yii2\menus\widgets\Menu /** * {@inheritdoc} */ - public $linkTemplate = '<a href=...
added link options attribute to sidebar menu (#9) * added link options attribute to sidebar menu * minor
diff --git a/src/main/java/se/bjurr/gitchangelog/api/GitChangelogApiConstants.java b/src/main/java/se/bjurr/gitchangelog/api/GitChangelogApiConstants.java index <HASH>..<HASH> 100644 --- a/src/main/java/se/bjurr/gitchangelog/api/GitChangelogApiConstants.java +++ b/src/main/java/se/bjurr/gitchangelog/api/GitChangelogApi...
fix: not removing issue from message by default
diff --git a/lib/ArangoDBClient/ConnectionOptions.php b/lib/ArangoDBClient/ConnectionOptions.php index <HASH>..<HASH> 100644 --- a/lib/ArangoDBClient/ConnectionOptions.php +++ b/lib/ArangoDBClient/ConnectionOptions.php @@ -375,6 +375,7 @@ class ConnectionOptions implements \ArrayAccess if (isset($this->_va...
Fixed issue when multiple calls to validate method triggers "must not specify both host and endpoint" exception
diff --git a/src/server/worker/master.go b/src/server/worker/master.go index <HASH>..<HASH> 100644 --- a/src/server/worker/master.go +++ b/src/server/worker/master.go @@ -868,12 +868,17 @@ func (a *APIServer) receiveSpout(ctx context.Context, logger *taggedLogger) (ret retErr = err } }() + hasFile ...
don't make empty commits when spouting
diff --git a/cheetah_lint/flake.py b/cheetah_lint/flake.py index <HASH>..<HASH> 100644 --- a/cheetah_lint/flake.py +++ b/cheetah_lint/flake.py @@ -323,10 +323,18 @@ def check_indentation(cheetah_by_line_no): return tuple(errors) +def check_empty(cheetah_by_line_no): + if not ''.join(cheetah_by_line_no).stri...
Make the trivial template an error. Resolves Yelp/yelp_cheetah#<I>
diff --git a/test/parser_test.rb b/test/parser_test.rb index <HASH>..<HASH> 100644 --- a/test/parser_test.rb +++ b/test/parser_test.rb @@ -85,6 +85,15 @@ module Haml end end + test "case with indented whens should allow else" do + begin + parse "- foo = 1\n-case foo\n -when 1\n A\n -el...
Add test for case with indented when clauses Case statements where the subsequent when clauses are indented and which have a trailing else cause a Haml::SyntaxError. Add test to expose this.
diff --git a/spec/simple_matchers.rb b/spec/simple_matchers.rb index <HASH>..<HASH> 100644 --- a/spec/simple_matchers.rb +++ b/spec/simple_matchers.rb @@ -26,3 +26,19 @@ def include_hash(hash) given.merge(hash) == given end end + +def memory_usage + GC.start # Garbage collect + `ps -o rss= -p #{$$}`.strip.to...
Added simple matcher (currently unused) for observing memory leaks
diff --git a/src/Symfony/Component/Workflow/Tests/RegistryTest.php b/src/Symfony/Component/Workflow/Tests/RegistryTest.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Workflow/Tests/RegistryTest.php +++ b/src/Symfony/Component/Workflow/Tests/RegistryTest.php @@ -35,7 +35,13 @@ class RegistryTest extends Tes...
[Workflow] Avoid risky tests
diff --git a/json2html/jsonconv.py b/json2html/jsonconv.py index <HASH>..<HASH> 100644 --- a/json2html/jsonconv.py +++ b/json2html/jsonconv.py @@ -118,7 +118,7 @@ class JSON: for k,v in ordered_json.iteritems(): convertedOutput = convertedOutput + '<tr>' - convertedOutput = convertedOutput + '<th>'+ str(k) +...
fix of issue #<I> prevents UnicodeEncodeError when a json-key contains non-ascii characters
diff --git a/src/libs/Cron.php b/src/libs/Cron.php index <HASH>..<HASH> 100644 --- a/src/libs/Cron.php +++ b/src/libs/Cron.php @@ -73,7 +73,10 @@ class Cron ob_start(); - $controllerObj = new $controller( $app ); + $controllerObj = new $controller; + + i...
use new way to inject app into controllers
diff --git a/lib/harvest/time_entry.rb b/lib/harvest/time_entry.rb index <HASH>..<HASH> 100644 --- a/lib/harvest/time_entry.rb +++ b/lib/harvest/time_entry.rb @@ -17,6 +17,7 @@ module Harvest element :created_at, Time element :updated_at, Time element :user_id, Integer + element :of_user, Integer ...
Added of_user element to time_entry and added it to the to_xml function
diff --git a/src/Window.js b/src/Window.js index <HASH>..<HASH> 100644 --- a/src/Window.js +++ b/src/Window.js @@ -1438,5 +1438,6 @@ global.onexit = () => { } AudioContext.Destroy(); + nativeWindow.destroyThreadPool(); }; // global.setImmediate = undefined; // need this for the TLS implementation
Call native window destroy thread pool on exit
diff --git a/share/examples/plugins/templates/hooks.py b/share/examples/plugins/templates/hooks.py index <HASH>..<HASH> 100755 --- a/share/examples/plugins/templates/hooks.py +++ b/share/examples/plugins/templates/hooks.py @@ -43,10 +43,10 @@ def post_init(setup_config): # Example 2: initiate observer execution st...
fix(plugin template): fix imports those were accidently introduced by a automatic find-replace for gtkmvc
diff --git a/src/main/java/hex/deeplearning/DeepLearning.java b/src/main/java/hex/deeplearning/DeepLearning.java index <HASH>..<HASH> 100644 --- a/src/main/java/hex/deeplearning/DeepLearning.java +++ b/src/main/java/hex/deeplearning/DeepLearning.java @@ -248,6 +248,7 @@ public class DeepLearning extends Job.ValidatedJo...
Allow change in whether to shuffle training data after checkpoint restart.
diff --git a/eZ/Bundle/EzPublishDebugBundle/Collector/PersistenceCacheCollector.php b/eZ/Bundle/EzPublishDebugBundle/Collector/PersistenceCacheCollector.php index <HASH>..<HASH> 100644 --- a/eZ/Bundle/EzPublishDebugBundle/Collector/PersistenceCacheCollector.php +++ b/eZ/Bundle/EzPublishDebugBundle/Collector/Persistence...
fixed annotation typo y the persistence cache collector file (#<I>)
diff --git a/alchemyjsonschema/dictify.py b/alchemyjsonschema/dictify.py index <HASH>..<HASH> 100644 --- a/alchemyjsonschema/dictify.py +++ b/alchemyjsonschema/dictify.py @@ -125,12 +125,12 @@ def normalize(ob, schema, convert=normalize_of, getter=dict.get, registry=normal convert = partial(convert, registry=regis...
fix bug on relatipnship list like property
diff --git a/spec/unit/type/file/mode_spec.rb b/spec/unit/type/file/mode_spec.rb index <HASH>..<HASH> 100755 --- a/spec/unit/type/file/mode_spec.rb +++ b/spec/unit/type/file/mode_spec.rb @@ -192,4 +192,29 @@ describe Puppet::Type.type(:file).attrclass(:mode) do (stat.mode & 0777).to_s(8).should == "644" end...
(PUP-<I>) Add example to test for +X mode changes in file types. Adding an example to test applying mode +X to files. For files, a mode change of +X changes the requested executable bit only if there is already an executable bit set in the permissions.
diff --git a/src/Rememberable.php b/src/Rememberable.php index <HASH>..<HASH> 100644 --- a/src/Rememberable.php +++ b/src/Rememberable.php @@ -11,7 +11,11 @@ trait Rememberable protected static function bootRememberable() { if (static::rememberable()) { - static::saving(function (Model $mo...
Make rememberable cache flushes trigger on deletes too
diff --git a/test/spec/ol/color.test.js b/test/spec/ol/color.test.js index <HASH>..<HASH> 100644 --- a/test/spec/ol/color.test.js +++ b/test/spec/ol/color.test.js @@ -120,10 +120,6 @@ describe('ol.color', function() { [0, 0, 255, 0.4711]); }); - it.skip('caches parsed values', function() { - /...
Remove unneeded and already skipped test
diff --git a/twitter_ads/campaign.py b/twitter_ads/campaign.py index <HASH>..<HASH> 100644 --- a/twitter_ads/campaign.py +++ b/twitter_ads/campaign.py @@ -177,6 +177,7 @@ resource_property(LineItem, 'bid_unit') resource_property(LineItem, 'automatically_select_bid', transform=TRANSFORM.BOOL) resource_property(LineIte...
Add bid_type property to LineItem (#<I>)
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -1,7 +1,7 @@ var nthCheck = require("./"), assert = require("assert"); -var invalid = ["-", "asdf", "2n+-0", "2+0", "- 1n", "-1 n"]; +var invalid = ["-", "- 1n", "-1 n", "2+0", "2n+-0", "an+b", "asdf", "b", "expr", "odd|ev...
reordered, added invalid tests
diff --git a/TYPO3.Neos.NodeTypes/Migrations/Code/Version20130911165500.php b/TYPO3.Neos.NodeTypes/Migrations/Code/Version20130911165500.php index <HASH>..<HASH> 100644 --- a/TYPO3.Neos.NodeTypes/Migrations/Code/Version20130911165500.php +++ b/TYPO3.Neos.NodeTypes/Migrations/Code/Version20130911165500.php @@ -59,5 +59,...
[TASK] CGL Cleanup This change is purely cosmetic and fixes CGL issues. Change-Id: I<I>dac<I>cd<I>f9cd1c<I>e<I>a<I>e<I>d2fc0c Releases: master, <I> Reviewed-on: <URL>
diff --git a/cdpybio/bedtools.py b/cdpybio/bedtools.py index <HASH>..<HASH> 100644 --- a/cdpybio/bedtools.py +++ b/cdpybio/bedtools.py @@ -1,3 +1,4 @@ +import copy import pandas as pd import pybedtools as pbt @@ -46,6 +47,7 @@ def beds_to_boolean(beds, ref=None, beds_sorted=False, ref_sorted=False, that ov...
Update Make deepcopy of input bed file list to avoid changing values.
diff --git a/pelix/http/basic.py b/pelix/http/basic.py index <HASH>..<HASH> 100644 --- a/pelix/http/basic.py +++ b/pelix/http/basic.py @@ -636,7 +636,7 @@ class HttpService(object): self._logger = logging.getLogger(self._logger_name) if self._logger_level is None: - self._logg...
The default level of HTTP logging is now INFO INFO level allows to print component records and errors, but hides the requests records
diff --git a/builtin/logical/database/path_config_connection.go b/builtin/logical/database/path_config_connection.go index <HASH>..<HASH> 100644 --- a/builtin/logical/database/path_config_connection.go +++ b/builtin/logical/database/path_config_connection.go @@ -8,6 +8,7 @@ import ( "strings" "github.com/fatih/st...
Fix issue deleting DB connections on Secondaries (#<I>)
diff --git a/lib/actions/DashDeploy.js b/lib/actions/DashDeploy.js index <HASH>..<HASH> 100644 --- a/lib/actions/DashDeploy.js +++ b/lib/actions/DashDeploy.js @@ -113,7 +113,6 @@ module.exports = function(SPlugin, serverlessPath) { // Flow return BbPromise.try(function() { - SCli.asciiGreeting(...
DashDeploy: don't show ASCII if not in correct folder
diff --git a/phy/io/mock/artificial.py b/phy/io/mock/artificial.py index <HASH>..<HASH> 100644 --- a/phy/io/mock/artificial.py +++ b/phy/io/mock/artificial.py @@ -48,6 +48,10 @@ def artificial_spike_times(n_spikes, max_isi=50): return np.cumsum(nr.randint(low=0, high=max_isi, size=n_spikes)) +def artificial_co...
Added artificial correlograms.
diff --git a/visidata/threads.py b/visidata/threads.py index <HASH>..<HASH> 100644 --- a/visidata/threads.py +++ b/visidata/threads.py @@ -380,6 +380,7 @@ def codestr(code): return code.co_name ThreadsSheet.addCommand('^C', 'cancel-thread', 'cancelThread(cursorRow)', 'abort thread at current row') +ThreadsSheet...
[threads] disable add-row on ThreadsSheet #<I>
diff --git a/pyemu/utils/helpers.py b/pyemu/utils/helpers.py index <HASH>..<HASH> 100644 --- a/pyemu/utils/helpers.py +++ b/pyemu/utils/helpers.py @@ -64,7 +64,7 @@ def start_slaves(slave_dir,exe_rel_path,pst_rel_path,num_slaves=None,slave_root= new_slave_dir = os.path.join(slave_root,"slave_{0}".format(i)) ...
bug fix in start_slaves
diff --git a/app/helpers/menu.rb b/app/helpers/menu.rb index <HASH>..<HASH> 100644 --- a/app/helpers/menu.rb +++ b/app/helpers/menu.rb @@ -22,8 +22,8 @@ module Menu end end def render_menu(level) - @menu_items ||=create_menu - render_navigation(:items=>@menu_items, :expand_all=>true, :level => level) +...
Added code to fix a menu highlighting issue
diff --git a/app/templates/src/main/java/package/aop/logging/_LoggingAspect.java b/app/templates/src/main/java/package/aop/logging/_LoggingAspect.java index <HASH>..<HASH> 100644 --- a/app/templates/src/main/java/package/aop/logging/_LoggingAspect.java +++ b/app/templates/src/main/java/package/aop/logging/_LoggingAspec...
Correct logging aspect number of params in msg Correct logging aspect number of params in msg
diff --git a/forms/FieldList.php b/forms/FieldList.php index <HASH>..<HASH> 100644 --- a/forms/FieldList.php +++ b/forms/FieldList.php @@ -550,7 +550,12 @@ class FieldList extends ArrayList { public function makeFieldReadonly($field) { $fieldName = ($field instanceof FormField) ? $field->getName() : $field; $sr...
Have a clear error message Because it's really annoying not knowing which field causes the error
diff --git a/core-bundle/src/Resources/contao/classes/Versions.php b/core-bundle/src/Resources/contao/classes/Versions.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/classes/Versions.php +++ b/core-bundle/src/Resources/contao/classes/Versions.php @@ -630,7 +630,7 @@ class Versions extends \Contr...
[Core] Do not show version entries of deleted files (see #<I>).
diff --git a/integration/v7/isolated/curl_command_test.go b/integration/v7/isolated/curl_command_test.go index <HASH>..<HASH> 100644 --- a/integration/v7/isolated/curl_command_test.go +++ b/integration/v7/isolated/curl_command_test.go @@ -473,7 +473,13 @@ var _ = Describe("curl command", func() { Expect(session)...
curl json output changes requires more complex output validation This change corrisponds to the same change done in <I>a<I>ba<I>e2bbe<I>d<I>c<I>cefa<I>abaaf.
diff --git a/source/rafcon/statemachine/library_manager.py b/source/rafcon/statemachine/library_manager.py index <HASH>..<HASH> 100644 --- a/source/rafcon/statemachine/library_manager.py +++ b/source/rafcon/statemachine/library_manager.py @@ -85,6 +85,8 @@ class LibraryManager(Observable): @staticmethod def...
Allow library paths to be wrapped in quotations marks
diff --git a/clients/unshaded/src/test/java/tachyon/client/file/options/InStreamOptionsTest.java b/clients/unshaded/src/test/java/tachyon/client/file/options/InStreamOptionsTest.java index <HASH>..<HASH> 100644 --- a/clients/unshaded/src/test/java/tachyon/client/file/options/InStreamOptionsTest.java +++ b/clients/unsha...
restore conf in instream test.
diff --git a/contrib/go/src/python/pants/contrib/go/subsystems/go_distribution.py b/contrib/go/src/python/pants/contrib/go/subsystems/go_distribution.py index <HASH>..<HASH> 100644 --- a/contrib/go/src/python/pants/contrib/go/subsystems/go_distribution.py +++ b/contrib/go/src/python/pants/contrib/go/subsystems/go_distr...
Bump the default Go distribution to <I>. This picks up a security related fix. Release announcement here: <URL>
diff --git a/commands/topics_info.js b/commands/topics_info.js index <HASH>..<HASH> 100644 --- a/commands/topics_info.js +++ b/commands/topics_info.js @@ -38,7 +38,7 @@ function topicInfo (topic) { }, { name: 'Replication Factor', - values: [`${topic.replication_factor} (recommend > 1)`] + va...
remove replication factor recommendation (#<I>)
diff --git a/nion/swift/model/DocumentModel.py b/nion/swift/model/DocumentModel.py index <HASH>..<HASH> 100644 --- a/nion/swift/model/DocumentModel.py +++ b/nion/swift/model/DocumentModel.py @@ -1095,6 +1095,10 @@ class DocumentModel(Observable.Observable, ReferenceCounting.ReferenceCounted, P def close(self): ...
Fix deadlock when closing computation queue at exit.
diff --git a/owslib/iso.py b/owslib/iso.py index <HASH>..<HASH> 100644 --- a/owslib/iso.py +++ b/owslib/iso.py @@ -541,7 +541,7 @@ class SV_ServiceIdentification(object): self.version = None self.fees = None self.bbox = None - self.couplingtype + self.couplin...
Added missing initializations (thanks Matej Krejci)
diff --git a/src/Plugin.php b/src/Plugin.php index <HASH>..<HASH> 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -72,6 +72,11 @@ class Plugin extends AbstractPlugin $requestId = uniqid(); $this->logger->debug('[' . $requestId . ']Found url: ' . $url); + if (count($parsedUrl) == 1 && isse...
Corrected URL when only a hostname is found
diff --git a/src/Handler.php b/src/Handler.php index <HASH>..<HASH> 100644 --- a/src/Handler.php +++ b/src/Handler.php @@ -7,6 +7,6 @@ interface Handler public function read($id); public function write($id, $data); public function destroy($id); - public function gc(); + public function gc($maxlifet...
for compatibility with phps built-in interface
diff --git a/lib/queue/worker.js b/lib/queue/worker.js index <HASH>..<HASH> 100644 --- a/lib/queue/worker.js +++ b/lib/queue/worker.js @@ -175,6 +175,8 @@ Worker.prototype.getJob = function(fn){ // BLPOP indicates we have a new inactive job to process client.blpop('q:' + self.type + ':jobs', 0, function(err) { ...
Fix race condition with blpop/zpop flow & shutdown
diff --git a/python/setup.py b/python/setup.py index <HASH>..<HASH> 100644 --- a/python/setup.py +++ b/python/setup.py @@ -35,7 +35,7 @@ if platform == 'darwin': setup( name = 'cm_api', - version = '10.0.0', # Compatible with API v10 (CM 5.4) + version = '11.0.0', # Compatible with API v11 (CM 5.5) pac...
Bump API version to <I> for CM <I>
diff --git a/bigtable-dataflow-parent/bigtable-beam-import/src/main/java/com/google/cloud/bigtable/beam/sequencefiles/ImportJob.java b/bigtable-dataflow-parent/bigtable-beam-import/src/main/java/com/google/cloud/bigtable/beam/sequencefiles/ImportJob.java index <HASH>..<HASH> 100644 --- a/bigtable-dataflow-parent/bigtab...
Mention "HBase" SequenceFile in ImportJob (#<I>)
diff --git a/taggit_selectize/widgets.py b/taggit_selectize/widgets.py index <HASH>..<HASH> 100644 --- a/taggit_selectize/widgets.py +++ b/taggit_selectize/widgets.py @@ -12,7 +12,7 @@ except ImportError: class TagSelectize(forms.TextInput): - def render(self, name, value, attrs=None): + def render(self, nam...
Add support for Django <I> Django <I> removed support for Widget.render() methods without the renderer argument.
diff --git a/lib/version.go b/lib/version.go index <HASH>..<HASH> 100644 --- a/lib/version.go +++ b/lib/version.go @@ -16,5 +16,5 @@ package docker2aci import "github.com/appc/spec/schema" -var Version = "0.12.2+git" +var Version = "0.12.3" var AppcVersion = schema.AppContainerVersion
version: bump to <I>
diff --git a/lib/flapjack/gateways/pagerduty.rb b/lib/flapjack/gateways/pagerduty.rb index <HASH>..<HASH> 100644 --- a/lib/flapjack/gateways/pagerduty.rb +++ b/lib/flapjack/gateways/pagerduty.rb @@ -216,7 +216,7 @@ module Flapjack http = EM::HttpRequest.new(url).get(options) begin response ...
be more specific with json parsing rescue
diff --git a/src/org/zaproxy/zap/view/ScanPanel2.java b/src/org/zaproxy/zap/view/ScanPanel2.java index <HASH>..<HASH> 100644 --- a/src/org/zaproxy/zap/view/ScanPanel2.java +++ b/src/org/zaproxy/zap/view/ScanPanel2.java @@ -545,6 +545,8 @@ public abstract class ScanPanel2<GS extends GenericScanner2, SC extends ScanCont ...
Disable 'clean completed scans' button when resetting the scanner panel Change the method ScanPanel2.reset() to disable clearScansButton, otherwise it would be kept enabled even if there were no scans present in the panel (for example, after creating a new session).