diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ with open('README.rst') as readme: setup( name = 'datapackage', - version = '0.4.0', + version = '0.4.1', url = 'https://github.com/tryggvib/datapackage', license = 'GPLv3', descript...
Version <I> Bug fix in data retrieval based on different structure of the resources property.
diff --git a/lib/ronin/config.rb b/lib/ronin/config.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/config.rb +++ b/lib/ronin/config.rb @@ -35,10 +35,10 @@ module Ronin CONFIG_PATH = File.expand_path(File.join(PATH,'config.rb')) # Configuration files directory - CONFIG_DIR = File.expand_path(File.join(PAT...
Automatically make the ~/.ronin/config/ directory.
diff --git a/spec/integration/presence_channel_spec.rb b/spec/integration/presence_channel_spec.rb index <HASH>..<HASH> 100644 --- a/spec/integration/presence_channel_spec.rb +++ b/spec/integration/presence_channel_spec.rb @@ -22,7 +22,7 @@ describe 'Integration' do count: 2, last_event: 'push...
get nicer failure message than expected false to be true
diff --git a/core/src/main/java/org/bitcoinj/core/CheckpointManager.java b/core/src/main/java/org/bitcoinj/core/CheckpointManager.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/bitcoinj/core/CheckpointManager.java +++ b/core/src/main/java/org/bitcoinj/core/CheckpointManager.java @@ -142,7 +142,8 @@ publi...
CheckpointManager: Log time of latest checkpoint read.
diff --git a/features/support/env.rb b/features/support/env.rb index <HASH>..<HASH> 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -1,22 +1 @@ require 'aruba/cucumber' - -# -# Add bin/ to our PATH -BIN_DIR = File.expand_path(File.dirname(__FILE__) + '/../../bin') -ENV['PATH'] = "#{BIN_DIR}#{File...
[tools, cucumber] Eliminate <I>% of env.rb? I don't recall why I added this.. but things appear to run ok when I remove it.. so..
diff --git a/rpcserver.go b/rpcserver.go index <HASH>..<HASH> 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -1465,8 +1465,11 @@ func (r *rpcServer) ListChannels(ctx context.Context, channelID := lnwire.NewChanIDFromOutPoint(&chanPoint) var linkActive bool - if _, err := r.server.htlcSwitch.GetLink(channelID)...
rpc: a link is now only active if it is eligible to forward HTLCs In this commit, we further constrain the candidacy for an “active” channel. In addition to being present within the link, it *must* also have the RemoteNextRevocation set. Otherwise, this indicates that we haven’t yet processed a FundingLocked message f...
diff --git a/app/models/part.rb b/app/models/part.rb index <HASH>..<HASH> 100644 --- a/app/models/part.rb +++ b/app/models/part.rb @@ -8,6 +8,8 @@ class Part embedded_in :programme_edition embedded_in :business_support_edition + scope :in_order, order_by(:order, :asc) + field :order, type: Integer f...
Allow parts to be sorted by the order value Use a scope to sort parts by the value of the order attribute.
diff --git a/looptools/__init__.py b/looptools/__init__.py index <HASH>..<HASH> 100644 --- a/looptools/__init__.py +++ b/looptools/__init__.py @@ -1,6 +1,6 @@ from looptools.log import LogOutput -from looptools.timer import Timer, functimer +from looptools.timer import Timer, functimer, ActiveTimer from looptools.cou...
Added timer functions for timer decorations and active timers.
diff --git a/cmsplugin_cascade/link/forms.py b/cmsplugin_cascade/link/forms.py index <HASH>..<HASH> 100644 --- a/cmsplugin_cascade/link/forms.py +++ b/cmsplugin_cascade/link/forms.py @@ -6,6 +6,7 @@ from django.db.models.fields.related import ManyToOneRel from django.forms import fields, Media, ModelChoiceField from ...
In LinkPlugin, mark search result as safe html
diff --git a/web/concrete/src/Editor/LinkAbstractor.php b/web/concrete/src/Editor/LinkAbstractor.php index <HASH>..<HASH> 100644 --- a/web/concrete/src/Editor/LinkAbstractor.php +++ b/web/concrete/src/Editor/LinkAbstractor.php @@ -120,6 +120,18 @@ class LinkAbstractor extends Object $fID = $picture->fid; $fo ...
Allows images that might have something like <img style="width: <I>px; height: <I>px;"...> to leverage the responsive picture elements Former-commit-id: <I>c<I>d<I>d<I>ffd8cbd2d<I>c<I> Former-commit-id: <I>c5f<I>c<I>b<I>b<I>f<I>a5a7
diff --git a/elki-clustering/src/main/java/elki/index/tree/betula/CFNode.java b/elki-clustering/src/main/java/elki/index/tree/betula/CFNode.java index <HASH>..<HASH> 100644 --- a/elki-clustering/src/main/java/elki/index/tree/betula/CFNode.java +++ b/elki-clustering/src/main/java/elki/index/tree/betula/CFNode.java @@ -9...
fix array out of bounds exeption
diff --git a/src/Rememberable.php b/src/Rememberable.php index <HASH>..<HASH> 100644 --- a/src/Rememberable.php +++ b/src/Rememberable.php @@ -30,7 +30,7 @@ trait Rememberable */ public function __call($method, $parameters) { - if (static::rememberable() && in_array($method, ['increment', 'decrem...
Add a check to see if we're allowed to intercept the increment/decrement operations.
diff --git a/src/models/AngelModel.php b/src/models/AngelModel.php index <HASH>..<HASH> 100644 --- a/src/models/AngelModel.php +++ b/src/models/AngelModel.php @@ -76,6 +76,12 @@ abstract class AngelModel extends \Eloquent { $model->assign(); }); + static::creating(function($model) { + if ($model->reorderabl...
Assign order to reorderable models on creation
diff --git a/telemetry/telemetry/test.py b/telemetry/telemetry/test.py index <HASH>..<HASH> 100644 --- a/telemetry/telemetry/test.py +++ b/telemetry/telemetry/test.py @@ -39,6 +39,7 @@ class Test(object): setattr(options, key, value) options.repeat_options = self._CreateRepeatOptions(options) + self.Cu...
Added Web Animations and regular animation blink_perf benchmarks Add benchmark targets for the current animation implementation and the in progress Web Animations implementation using the Animations subset of the blink_perf tests. BUG=<I> Review URL: <URL>
diff --git a/src/Google2FA.php b/src/Google2FA.php index <HASH>..<HASH> 100644 --- a/src/Google2FA.php +++ b/src/Google2FA.php @@ -103,10 +103,7 @@ class Google2FA extends Google2FAPackage return new Bacon(); } - if ( - class_exists('chillerlan\QRCode') || - class_ex...
Refer to the right class for chillerlan's package
diff --git a/ping.go b/ping.go index <HASH>..<HASH> 100644 --- a/ping.go +++ b/ping.go @@ -83,17 +83,18 @@ func NewPinger(addr string) (*Pinger, error) { ipv4 = false } + r := rand.New(rand.NewSource(time.Now().UnixNano())) return &Pinger{ ipaddr: ipaddr, addr: addr, Interval: time.Second, Ti...
Set a random source seed to avoid ID conflicts closes #<I> closes #<I>
diff --git a/tests/automated/buttonText.js b/tests/automated/buttonText.js index <HASH>..<HASH> 100644 --- a/tests/automated/buttonText.js +++ b/tests/automated/buttonText.js @@ -1,4 +1,3 @@ - describe('button text', function() { var settings = {}; @@ -15,6 +14,7 @@ describe('button text', function() { }); ...
Wasting a minute or two trying to whitespace my test consistent to the other tests
diff --git a/test/mysql/employees.js b/test/mysql/employees.js index <HASH>..<HASH> 100644 --- a/test/mysql/employees.js +++ b/test/mysql/employees.js @@ -13,7 +13,13 @@ describe('employees model', function () { var employees = db.extend('employees'); before(function (done) { - db.connect(done); + db.conn...
Updating the employees unit test with a 'CREATE TABLE' statement.
diff --git a/js/data/Model.js b/js/data/Model.js index <HASH>..<HASH> 100644 --- a/js/data/Model.js +++ b/js/data/Model.js @@ -194,6 +194,12 @@ define(["js/data/Entity", "js/core/List", "flow", "underscore"], function (Entit * @param {Function} callback - function(err, model, options) */ fe...
added fallback for Model.fetch if no options are passed to function call
diff --git a/pytablewriter/style/_theme.py b/pytablewriter/style/_theme.py index <HASH>..<HASH> 100644 --- a/pytablewriter/style/_theme.py +++ b/pytablewriter/style/_theme.py @@ -29,13 +29,9 @@ class ColSeparatorStyleFilterFunc(Protocol): ... -Theme = NamedTuple( - "Theme", - [ - ("style_filte...
Refactor a NamedTuple definition
diff --git a/src/view/ThemeManager.js b/src/view/ThemeManager.js index <HASH>..<HASH> 100644 --- a/src/view/ThemeManager.js +++ b/src/view/ThemeManager.js @@ -53,7 +53,7 @@ define(function (require, exports, module) { if(cm) { ThemeView.setDocumentMode(cm); - if(force === false) { + ...
Fixed issue with unnecessary reload of themes when opening a new document
diff --git a/Bundle/BusinessPageBundle/Builder/BusinessPageBuilder.php b/Bundle/BusinessPageBundle/Builder/BusinessPageBuilder.php index <HASH>..<HASH> 100644 --- a/Bundle/BusinessPageBundle/Builder/BusinessPageBuilder.php +++ b/Bundle/BusinessPageBundle/Builder/BusinessPageBuilder.php @@ -66,7 +66,7 @@ class BusinessP...
do not give widgets to the generated BP, if so the BT looses it's widgets
diff --git a/EventListener/ShopSubscriber.php b/EventListener/ShopSubscriber.php index <HASH>..<HASH> 100755 --- a/EventListener/ShopSubscriber.php +++ b/EventListener/ShopSubscriber.php @@ -22,9 +22,6 @@ use WellCommerce\Bundle\CoreBundle\EventListener\AbstractEventSubscriber; */ class ShopSubscriber extends Abstra...
Updated readme, small changes in kernel and RouteProvider (cherry picked from commit <I>e<I>ed<I>a<I>cbc4e<I>d<I>fbeb<I>e6b)
diff --git a/core/codegen-runtime/src/main/java/org/overture/codegen/runtime/Utils.java b/core/codegen-runtime/src/main/java/org/overture/codegen/runtime/Utils.java index <HASH>..<HASH> 100644 --- a/core/codegen-runtime/src/main/java/org/overture/codegen/runtime/Utils.java +++ b/core/codegen-runtime/src/main/java/org/o...
Now cloning of code generated value types is done using a utility function to guards against values being "null" which is possible for optionally typed values
diff --git a/src/com/caverock/androidsvg/SVG.java b/src/com/caverock/androidsvg/SVG.java index <HASH>..<HASH> 100644 --- a/src/com/caverock/androidsvg/SVG.java +++ b/src/com/caverock/androidsvg/SVG.java @@ -316,11 +316,6 @@ public class SVG Canvas canvas = picture.beginRecording(widthInPixels, heightInPixels);...
Removed code that was overriding null alignment/scale parameters in render methods. There needs to be a way to request "don't scale to fill viewport"!
diff --git a/test/fixtures/active_record.rb b/test/fixtures/active_record.rb index <HASH>..<HASH> 100644 --- a/test/fixtures/active_record.rb +++ b/test/fixtures/active_record.rb @@ -288,7 +288,12 @@ class Post < ActiveRecord::Base def destroy_callback if title == "can't destroy me" errors.add(:title, "c...
Handle stopping in callbacks in new rails 5 way
diff --git a/src/valiant.jquery.js b/src/valiant.jquery.js index <HASH>..<HASH> 100644 --- a/src/valiant.jquery.js +++ b/src/valiant.jquery.js @@ -127,7 +127,8 @@ three.js r65 or higher this._scene = new THREE.Scene(); // create ThreeJS camera - this._camera = new THREE.Perspectiv...
Fix for fov correctly being set in defaults or passed opts object fov wasn't correctly being set for some reason on the THREE.PerspectiveCamera until setLens() was called in the mouse wheel event handler. This fix calls setLens directly after PerspectiveCamera creation.
diff --git a/cumulusci/tests/pytest_plugins/pytest_sf_vcr.py b/cumulusci/tests/pytest_plugins/pytest_sf_vcr.py index <HASH>..<HASH> 100644 --- a/cumulusci/tests/pytest_plugins/pytest_sf_vcr.py +++ b/cumulusci/tests/pytest_plugins/pytest_sf_vcr.py @@ -93,7 +93,7 @@ def configure_recording_mode( elif user_requested_...
Fix load tests. Use different sample task. Update cassettes. keep content-type.
diff --git a/demo/extract-img2.py b/demo/extract-img2.py index <HASH>..<HASH> 100644 --- a/demo/extract-img2.py +++ b/demo/extract-img2.py @@ -91,7 +91,7 @@ smasks = [] # stores xrefs of /SMask objects #------------------------------------------------------------------------------ for i in range(1, lenXREF): ...
Update extract-img2.py
diff --git a/src/Transaction/TransactionBuilder.php b/src/Transaction/TransactionBuilder.php index <HASH>..<HASH> 100755 --- a/src/Transaction/TransactionBuilder.php +++ b/src/Transaction/TransactionBuilder.php @@ -223,8 +223,8 @@ class TransactionBuilder implements XdrEncodableInterface public function getFee()...
TransactionBuilder - fee is now calculated correctly for transactions with mutiple options
diff --git a/src/org/opencms/importexport/A_CmsImport.java b/src/org/opencms/importexport/A_CmsImport.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/importexport/A_CmsImport.java +++ b/src/org/opencms/importexport/A_CmsImport.java @@ -1,7 +1,7 @@ /* * File : $Source: /alkacon/cvs/opencms/src/org/opencms/im...
Bugfix in import version 2: Binary files were converted to external pointers
diff --git a/usb1.py b/usb1.py index <HASH>..<HASH> 100644 --- a/usb1.py +++ b/usb1.py @@ -23,7 +23,6 @@ import libusb1 from ctypes import byref, create_string_buffer, c_int, sizeof, POINTER, \ create_unicode_buffer, c_wchar, cast, c_uint16, c_ubyte, string_at, \ c_void_p, cdll -from cStringIO import StringI...
Fix some pylint-detected problems.
diff --git a/rekt/utils.py b/rekt/utils.py index <HASH>..<HASH> 100644 --- a/rekt/utils.py +++ b/rekt/utils.py @@ -44,12 +44,12 @@ def snake_case_to_camel_case(name): return name.replace('_', ' ').title().replace(' ', '') -def load_builtin_config(name, module_name=__name__): +def load_builtin_config(name, modu...
fixing bug in the load builtin config function which would not allow reuse in other packages
diff --git a/src/FieldHandlers/FieldHandlerFactory.php b/src/FieldHandlers/FieldHandlerFactory.php index <HASH>..<HASH> 100644 --- a/src/FieldHandlers/FieldHandlerFactory.php +++ b/src/FieldHandlers/FieldHandlerFactory.php @@ -60,11 +60,11 @@ class FieldHandlerFactory * * @param mixed $table Name or instanc...
Relaxed data value type-hinting for field handler factory API methods (task #<I>)
diff --git a/Kwf/Util/ClearCache.php b/Kwf/Util/ClearCache.php index <HASH>..<HASH> 100644 --- a/Kwf/Util/ClearCache.php +++ b/Kwf/Util/ClearCache.php @@ -296,7 +296,8 @@ class Kwf_Util_ClearCache protected function _clearCache(array $types, $output, $options) { - if (in_array('elastiCache', $types))...
if skip otherServers don't increment elastiCache, as that goes across servers
diff --git a/bin/roundtrip-test.js b/bin/roundtrip-test.js index <HASH>..<HASH> 100755 --- a/bin/roundtrip-test.js +++ b/bin/roundtrip-test.js @@ -530,8 +530,8 @@ var checkIfSignificant = function(offsets, data) { thisResult.wtDiff = formatDiff(oldWt, newWt, offset, 25); // Don't clog the rt-test server db ...
roundtrip-test.js: Truncate diffs to <I> chars instead of <I> * This reduces db bloat from storing test results. * Only a tiny fraction of test results (<I> in <I>K) are looked at. Change-Id: Ia<I>d<I>e<I>b<I>d0d0d<I>ae<I>b<I>a<I>c
diff --git a/bin/runner.js b/bin/runner.js index <HASH>..<HASH> 100755 --- a/bin/runner.js +++ b/bin/runner.js @@ -88,6 +88,15 @@ if (config.browsers) { worker.config = browser; worker.string = browserString; workers[key] = worker; + + var statusPoller = setInterval(function () { + ...
Add polling for run status for a worker
diff --git a/src/test/java/org/webjars/RequireJSTest.java b/src/test/java/org/webjars/RequireJSTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/webjars/RequireJSTest.java +++ b/src/test/java/org/webjars/RequireJSTest.java @@ -62,7 +62,7 @@ public class RequireJSTest { // todo: the angular version ...
RequireJSTest: Bump angular version Not sure what exactly the returned version depends on; in the long run maybe this should not care so much about the minor version, but in the meantime this gets the test to pass again.
diff --git a/includes/DHL_BusinessShipment.php b/includes/DHL_BusinessShipment.php index <HASH>..<HASH> 100644 --- a/includes/DHL_BusinessShipment.php +++ b/includes/DHL_BusinessShipment.php @@ -796,8 +796,13 @@ class DHL_BusinessShipment extends DHL_Version { $data->ShipmentOrder->Shipment->ReturnReceiver = $this-...
Added try-catch for Export-Document-Class creation
diff --git a/test.py b/test.py index <HASH>..<HASH> 100755 --- a/test.py +++ b/test.py @@ -65,7 +65,7 @@ class MemberTest(APITest): states = [ ('RI', 2), ('AL', 7), - ('AZ', 9), + ('AZ', 8), ] for state, count in states:
Updated test function with latest member data so tests return accurate results.
diff --git a/src/call_get.js b/src/call_get.js index <HASH>..<HASH> 100644 --- a/src/call_get.js +++ b/src/call_get.js @@ -43,8 +43,8 @@ function getCompiled(name, compiler, cache) { cache[" size"]++; if (cache[" size"] > 512) { var keys = Object.keys(cache); - for (var i = 0; ...
fix; lower attachment count This fixes the issue discovered in #<I> by lowering the number of interactions a promise has to have before it's cleaned up.
diff --git a/tar_test.go b/tar_test.go index <HASH>..<HASH> 100644 --- a/tar_test.go +++ b/tar_test.go @@ -6,7 +6,7 @@ import ( "path" "testing" - "github.com/mholt/archiver" + "github.com/mholt/archiver/v3" ) func requireRegularFile(t *testing.T, path string) os.FileInfo {
Fix import path in test (#<I>)
diff --git a/src/requirementslib/models/requirements.py b/src/requirementslib/models/requirements.py index <HASH>..<HASH> 100644 --- a/src/requirementslib/models/requirements.py +++ b/src/requirementslib/models/requirements.py @@ -2624,9 +2624,13 @@ class Requirement(object): line_parts.append(self._specif...
Fix line generation from pipfiles
diff --git a/lib/AssetGraph.js b/lib/AssetGraph.js index <HASH>..<HASH> 100644 --- a/lib/AssetGraph.js +++ b/lib/AssetGraph.js @@ -332,11 +332,7 @@ AssetGraph.prototype = { }); }, error.passToFunction(cb, function (resolvedAssetConfigs) { - ...
AssetGraph.resolveAssetConfig: Used _.flatten to simplify a piece of code.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -17,4 +17,15 @@ setup( packages=find_packages(), install_requires=["django >= 1.6", "djangorestframework >= 2.4.3"], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + ...
Added classifiers to setup.py
diff --git a/src/diagrams/class/classRenderer.js b/src/diagrams/class/classRenderer.js index <HASH>..<HASH> 100644 --- a/src/diagrams/class/classRenderer.js +++ b/src/diagrams/class/classRenderer.js @@ -505,9 +505,14 @@ export const draw = function(text, id) { logger.info( 'tjoho' + getGraphId(relation.id1)...
fix(#<I>): render multiple relations
diff --git a/panc/src/main/scripts/panlint.py b/panc/src/main/scripts/panlint.py index <HASH>..<HASH> 100755 --- a/panc/src/main/scripts/panlint.py +++ b/panc/src/main/scripts/panlint.py @@ -238,8 +238,7 @@ def main(): for i in range(start_line, end_line + 1): ignore_lines....
Reuse existing file contents Rather than reopening the file.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('schedule/requirements.txt') as f: required = f.read().splitlines() setup( - name='django-schedule', + name='django-scheduler', version='0.7', description='A calendaring app f...
update setup.py with new name
diff --git a/src/Facade/Auth.php b/src/Facade/Auth.php index <HASH>..<HASH> 100644 --- a/src/Facade/Auth.php +++ b/src/Facade/Auth.php @@ -35,14 +35,16 @@ class Auth extends Facade } /** + * @param bool $refresh + * * @return \Cubex\Auth\IAuthedUser * * @throws \Exception * @throws \RuntimeE...
support refreshing authedUser details (useful when updating user information)
diff --git a/pkg/ipcache/cidr.go b/pkg/ipcache/cidr.go index <HASH>..<HASH> 100644 --- a/pkg/ipcache/cidr.go +++ b/pkg/ipcache/cidr.go @@ -64,6 +64,7 @@ func (ipc *IPCache) AllocateCIDRs( id, isNew, err := ipc.allocate(p, lbls, oldNID) if err != nil { ipc.IdentityAllocator.ReleaseSlice(context.Background(), n...
ipcache: Fix lock leak Commit <I>e<I>ea2a5a9 ("ipcache: Fix race in identity/ipcache release") unintentionally took the lock on the IPCache and failed to release it if the loop returned in the middle. This case is a bit unusual given that allocation fails in this case. Fix it. Found by inspection. Fixes: <I>e<I>ea2a...
diff --git a/lib/parse/amd.js b/lib/parse/amd.js index <HASH>..<HASH> 100644 --- a/lib/parse/amd.js +++ b/lib/parse/amd.js @@ -107,13 +107,10 @@ AMD.prototype.addOptimizedModules = function (filename) { amdetective(this.getFileSource(filename)).forEach(function (obj) { if (!self.isExcluded(obj.name)) { - var d...
filter out require/plugins and excluded
diff --git a/voltron/gdbproxy.py b/voltron/gdbproxy.py index <HASH>..<HASH> 100644 --- a/voltron/gdbproxy.py +++ b/voltron/gdbproxy.py @@ -2,7 +2,10 @@ import asyncore import logging import socket import struct -import cPickle as pickle +try: + import cPickle as pickle +except ImportError: + import pickle f...
Cope with the absense of cPickle
diff --git a/lib/cms/engine.rb b/lib/cms/engine.rb index <HASH>..<HASH> 100644 --- a/lib/cms/engine.rb +++ b/lib/cms/engine.rb @@ -1,5 +1,9 @@ module Cms class Engine < ::Rails::Engine isolate_namespace Cms + + ActionDispatch::Reloader.to_prepare do + require_dependency Cms::Engine.root.join('app/contr...
Add resources controller to ActionDispatch::Reloader
diff --git a/tile_generator/pcf.py b/tile_generator/pcf.py index <HASH>..<HASH> 100755 --- a/tile_generator/pcf.py +++ b/tile_generator/pcf.py @@ -55,6 +55,7 @@ def reboot_cmd(yes_i_am_sure=False): time.sleep(1) print() opsmgr.ssh(['sudo reboot now'], silent=True) + time.sleep(10) # Allow system time to go dow...
Wait for system to go down during reboot
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ except ImportError: from distutils.core import setup setup(name='pynrrd', - version='0.2.2', + version='0.2.3', description='Pure python module for reading and writing nrrd files.', ...
Version bump to <I>.
diff --git a/src/components/calendar/Calendar.js b/src/components/calendar/Calendar.js index <HASH>..<HASH> 100644 --- a/src/components/calendar/Calendar.js +++ b/src/components/calendar/Calendar.js @@ -3065,7 +3065,7 @@ export class Calendar extends Component { if (!this.props.inline) { return ( ...
Fixed #<I> - TabIndex not set on Calendar (#<I>)
diff --git a/src/sap.ui.table/test/sap/ui/table/demokit/sample/OData2/Controller.controller.js b/src/sap.ui.table/test/sap/ui/table/demokit/sample/OData2/Controller.controller.js index <HASH>..<HASH> 100644 --- a/src/sap.ui.table/test/sap/ui/table/demokit/sample/OData2/Controller.controller.js +++ b/src/sap.ui.table/te...
[INTERNAL] sap.ui.table.Table - Demokit sample fix The sap.ui.table.Table does not support wrapping therefore it is not used in the Demokit samples anymore. Change-Id: I3f9d<I>e1ac6c7fec<I>cb<I>c9d<I>d<I>d<I>
diff --git a/gatsby-node.js b/gatsby-node.js index <HASH>..<HASH> 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -93,7 +93,7 @@ exports.onPostBuild = async function ( } const currentIndexState = indexState[indexName]; - setStatus(activity, `query ${i}: executing query`); + setStatus(activity, `qu...
chore: update message to clearly indicate the index of query (#<I>) * chore: update message to clearly indicate the index of query * Update gatsby-node.js
diff --git a/blobstore_client/Gemfile b/blobstore_client/Gemfile index <HASH>..<HASH> 100644 --- a/blobstore_client/Gemfile +++ b/blobstore_client/Gemfile @@ -1,4 +1,4 @@ -source "http://rubygems.org" +source :rubygems gem "httpclient" diff --git a/blobstore_client/lib/blobstore_client.rb b/blobstore_client/lib/bl...
bundler <I> for blobstore client
diff --git a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/HistoricTaskInstanceQueryImpl.java b/modules/activiti-engine/src/main/java/org/activiti/engine/impl/HistoricTaskInstanceQueryImpl.java index <HASH>..<HASH> 100644 --- a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/HistoricTask...
ACT-<I> member field access correction
diff --git a/great_expectations/data_context/types/__init__.py b/great_expectations/data_context/types/__init__.py index <HASH>..<HASH> 100644 --- a/great_expectations/data_context/types/__init__.py +++ b/great_expectations/data_context/types/__init__.py @@ -20,9 +20,9 @@ from .resource_identifiers import ( Valida...
Dup definition most likely due to git merge
diff --git a/html/pfappserver/root/static.alt/src/views/Configuration/_config/role.js b/html/pfappserver/root/static.alt/src/views/Configuration/_config/role.js index <HASH>..<HASH> 100644 --- a/html/pfappserver/root/static.alt/src/views/Configuration/_config/role.js +++ b/html/pfappserver/root/static.alt/src/views/Con...
Rename vlan to inherit_vlan and change type to a toggle
diff --git a/lib/zendesk2/client/mock.rb b/lib/zendesk2/client/mock.rb index <HASH>..<HASH> 100644 --- a/lib/zendesk2/client/mock.rb +++ b/lib/zendesk2/client/mock.rb @@ -5,7 +5,7 @@ class Zendesk2::Client < Cistern::Service attr_accessor :last_request def self.data - @data ||= { + @data ||= Hash....
mock data segmented on url
diff --git a/gcloud/bigquery/client.py b/gcloud/bigquery/client.py index <HASH>..<HASH> 100644 --- a/gcloud/bigquery/client.py +++ b/gcloud/bigquery/client.py @@ -64,9 +64,9 @@ class Client(JSONClient): :rtype: tuple, (list, str) :returns: list of :class:`gcloud.bigquery.dataset.Dataset`, plus a - ...
Reword :returns: for clarity. Addresses: <URL>
diff --git a/vyked/utils/stats.py b/vyked/utils/stats.py index <HASH>..<HASH> 100644 --- a/vyked/utils/stats.py +++ b/vyked/utils/stats.py @@ -95,7 +95,7 @@ class Aggregator: @classmethod def periodic_aggregated_stats_logger(cls): - hostname = socket.gethostname() + hostname = socket.gethostby...
make host-ip appear consistently in log logging `socket.hostname() was making the json inconsistent and raising alarms unreliable. this should fix the situation.
diff --git a/app/decorators/socializer/person_decorator.rb b/app/decorators/socializer/person_decorator.rb index <HASH>..<HASH> 100644 --- a/app/decorators/socializer/person_decorator.rb +++ b/app/decorators/socializer/person_decorator.rb @@ -26,7 +26,7 @@ module Socializer avatar_provider_array = %w( FACEBOOK L...
no need to pass avatar_provider as an argument
diff --git a/src/Objects/Table.php b/src/Objects/Table.php index <HASH>..<HASH> 100644 --- a/src/Objects/Table.php +++ b/src/Objects/Table.php @@ -181,4 +181,21 @@ class Table } + /** + * check if array have a key + * + * @param array $array + * @param mixed $key + * @return bool + */ + public static function exi...
add function to check if object has a key
diff --git a/configyaml/config/dict.py b/configyaml/config/dict.py index <HASH>..<HASH> 100644 --- a/configyaml/config/dict.py +++ b/configyaml/config/dict.py @@ -43,7 +43,7 @@ class DictNode(AbstractNode): for k, v in self._dict_fields.items(): if 'default' in v: default = v['def...
pass context and parent in DictNode default instance
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ class FetchExternal(setuptools.command.install.install): setup(cmdclass={'install': FetchExternal}, name='python_moztelemetry', - version='0.3.7.3', + version='0.3.7.5', author='Robert...
Bump the package version (by 2).
diff --git a/PHPDaemon/WebSocket/Traits/DNode.php b/PHPDaemon/WebSocket/Traits/DNode.php index <HASH>..<HASH> 100755 --- a/PHPDaemon/WebSocket/Traits/DNode.php +++ b/PHPDaemon/WebSocket/Traits/DNode.php @@ -122,6 +122,9 @@ trait DNode { } public function sendPacket($p) { + if (!$this->client) { + return; + } ...
DNode: added method cleanup()
diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/io/CheckpointedInputGate.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/io/CheckpointedInputGate.java index <HASH>..<HASH> 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/i...
[hotfix][doc] Remove invalid comment from CheckpointedInputGate This closes #<I> .
diff --git a/lib/plugins/coffee.js b/lib/plugins/coffee.js index <HASH>..<HASH> 100644 --- a/lib/plugins/coffee.js +++ b/lib/plugins/coffee.js @@ -11,7 +11,7 @@ module.exports = function coffeePlugin(carapace) { // as necessary so that the .coffee is handled correctly by the `coffee` binary. // var...
[fix] coffee plugin should be able to be forced
diff --git a/lib/datalib.php b/lib/datalib.php index <HASH>..<HASH> 100644 --- a/lib/datalib.php +++ b/lib/datalib.php @@ -2019,7 +2019,7 @@ function get_group_teachers($courseid, $groupid) { if (($teacher->authority > 0) and ismember($groupid, $teacher->id)) { // Specific group teachers ...
fixed bug <I>, thanks Ilshat Fattakhov; merged from MOODLE_<I>_STABLE
diff --git a/lib/logger/config-serializer.js b/lib/logger/config-serializer.js index <HASH>..<HASH> 100644 --- a/lib/logger/config-serializer.js +++ b/lib/logger/config-serializer.js @@ -4,6 +4,7 @@ module.exports = configSerializer; function configSerializer(config) { const redactedFields = [ + 'authorization...
fix: add authorization to redacted logger fields
diff --git a/molgenis-omx-dataexplorer/src/main/resources/js/dataexplorer-data.js b/molgenis-omx-dataexplorer/src/main/resources/js/dataexplorer-data.js index <HASH>..<HASH> 100644 --- a/molgenis-omx-dataexplorer/src/main/resources/js/dataexplorer-data.js +++ b/molgenis-omx-dataexplorer/src/main/resources/js/dataexplor...
Region that you query in genome browser is now always highlighted on initialization
diff --git a/lib/view_assets/css_assets.rb b/lib/view_assets/css_assets.rb index <HASH>..<HASH> 100644 --- a/lib/view_assets/css_assets.rb +++ b/lib/view_assets/css_assets.rb @@ -1,15 +1,21 @@ module ViewAssets + # TODO add rspec examples class StyleSheetAssets < AssetsFinder def assets_path - "#{root_pa...
correct the configuration of css assets finder
diff --git a/gnupg/gnupg.py b/gnupg/gnupg.py index <HASH>..<HASH> 100644 --- a/gnupg/gnupg.py +++ b/gnupg/gnupg.py @@ -171,11 +171,6 @@ def _make_binary_stream(s, encoding): rv = StringIO(s) return rv -def _today(): - """Get the current date as a string in the form %Y-%m-%d.""" - now_string = date...
Remove function _today() from gnupg.py.
diff --git a/src/LouisLam/Util.php b/src/LouisLam/Util.php index <HASH>..<HASH> 100644 --- a/src/LouisLam/Util.php +++ b/src/LouisLam/Util.php @@ -22,12 +22,17 @@ class Util if ($containIndex) { return $_SERVER["SCRIPT_NAME"] . "/" . $relativePath; } else { - return str_replace...
handle url if is not index.php
diff --git a/views/js/qtiItem/core/Loader.js b/views/js/qtiItem/core/Loader.js index <HASH>..<HASH> 100755 --- a/views/js/qtiItem/core/Loader.js +++ b/views/js/qtiItem/core/Loader.js @@ -422,26 +422,8 @@ define([ portableElement.typeIdentifier = data.typeIdentifier; portableElement.markup = data.marku...
removed automatic parsing of JSON content in interaction properties
diff --git a/lib/lean_tag/taggable.rb b/lib/lean_tag/taggable.rb index <HASH>..<HASH> 100644 --- a/lib/lean_tag/taggable.rb +++ b/lib/lean_tag/taggable.rb @@ -20,7 +20,7 @@ module LeanTag define_method "add_#{tag_relation.to_s.singularize}!", ->(tag) { _add_tag!(tag, tag_relation) } define_method ...
remove_tag! was never being called
diff --git a/prove.go b/prove.go index <HASH>..<HASH> 100644 --- a/prove.go +++ b/prove.go @@ -60,7 +60,7 @@ func (v *ProofEngine) PromptRemoteName() (err error) { for len(v.Username) == 0 && err == nil { var un string un, err = v.ProveUI.PromptUsername(v.st.GetPrompt(), prevErr) - if err != nil { + if e...
bugfix for keybase/go-client#<I>
diff --git a/lmdb/val.go b/lmdb/val.go index <HASH>..<HASH> 100644 --- a/lmdb/val.go +++ b/lmdb/val.go @@ -40,10 +40,10 @@ func WrapMulti(page []byte, stride int) *Multi { // Vals returns a slice containing the values in m. The returned slice has // length m.Len() and each item has length m.Stride(). func (m *Multi...
clean up Multi.Vals by using Multi.Val internally
diff --git a/lib/mactag/ctags.rb b/lib/mactag/ctags.rb index <HASH>..<HASH> 100644 --- a/lib/mactag/ctags.rb +++ b/lib/mactag/ctags.rb @@ -14,8 +14,19 @@ module Mactag binary.gsub!('{OUTPUT}', @output) binary.gsub!('{INPUT}', @input) - - system "cd #{Rails.root} && #{binary}" + + exec(bi...
Separate this functionality for easier testing.
diff --git a/lib/quality/flay.rb b/lib/quality/flay.rb index <HASH>..<HASH> 100644 --- a/lib/quality/flay.rb +++ b/lib/quality/flay.rb @@ -1,8 +1,9 @@ module Quality module Flay - def quality_flay - private + private + + def quality_flay ratchet_quality_cmd('flay', ...
Fix accidental line location swap of 'private'
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,6 +1,6 @@ const gulp = require('gulp'); const sass = require('gulp-sass'); -var browserSync = require('browser-sync').create(); +const browserSync = require('browser-sync').create(); // Static server gulp....
Uses const to be more consistent
diff --git a/multiqc/modules/mirtrace/mirtrace.py b/multiqc/modules/mirtrace/mirtrace.py index <HASH>..<HASH> 100755 --- a/multiqc/modules/mirtrace/mirtrace.py +++ b/multiqc/modules/mirtrace/mirtrace.py @@ -339,7 +339,7 @@ class MultiqcModule(BaseMultiqcModule): config = { 'id': 'mirtrace_comple...
Add colon in plot title for complexity plot
diff --git a/elytron/src/test/java/org/wildfly/extension/elytron/MappersTestCase.java b/elytron/src/test/java/org/wildfly/extension/elytron/MappersTestCase.java index <HASH>..<HASH> 100644 --- a/elytron/src/test/java/org/wildfly/extension/elytron/MappersTestCase.java +++ b/elytron/src/test/java/org/wildfly/extension/el...
[WFCORE-<I>] Remove invalid test with Principal with 'null' name.
diff --git a/abstract.js b/abstract.js index <HASH>..<HASH> 100644 --- a/abstract.js +++ b/abstract.js @@ -235,7 +235,7 @@ ee(Object.defineProperties(PersistenceDriver.prototype, assign({ onAdd = function (obj) { var observable, value, stamp, objId, sKeys, sValue, data, indexEvent; obj = resolveObject(obj...
Ensure common return type in internal function
diff --git a/lib/pi_charts.rb b/lib/pi_charts.rb index <HASH>..<HASH> 100644 --- a/lib/pi_charts.rb +++ b/lib/pi_charts.rb @@ -1,3 +1,5 @@ +# I guess I could do a loop, jah feel? +# Or any other way I guess. require "pi_charts/version" require "pi_charts/base" require "pi_charts/utils" @@ -7,6 +9,7 @@ require "pi_ch...
Comments, more comments. Need’em.
diff --git a/lib/active_record_shards/model.rb b/lib/active_record_shards/model.rb index <HASH>..<HASH> 100644 --- a/lib/active_record_shards/model.rb +++ b/lib/active_record_shards/model.rb @@ -9,7 +9,7 @@ module ActiveRecordShards def is_sharded? if self == ActiveRecord::Base - true + supp...
AR::Base is only sharded if sharding is supported
diff --git a/spyderlib/plugins/editor.py b/spyderlib/plugins/editor.py index <HASH>..<HASH> 100644 --- a/spyderlib/plugins/editor.py +++ b/spyderlib/plugins/editor.py @@ -472,7 +472,7 @@ class EditorTabWidget(Tabs): finfo = self.data[index] editor = finfo.editor editor.setFocus(...
Editor / fixed Issue <I>: show full path of current script in Editor's dockwidget title
diff --git a/flask_user/tests/test_db_adapters.py b/flask_user/tests/test_db_adapters.py index <HASH>..<HASH> 100644 --- a/flask_user/tests/test_db_adapters.py +++ b/flask_user/tests/test_db_adapters.py @@ -21,6 +21,7 @@ def test_mongoengine_db_adapter(app): # Test add_object user1 = db_adapter.add_object(U...
Added tests for MongoEngineDbAdapter. Increased test coverage.
diff --git a/project/library/CM/Request/Abstract.php b/project/library/CM/Request/Abstract.php index <HASH>..<HASH> 100644 --- a/project/library/CM/Request/Abstract.php +++ b/project/library/CM/Request/Abstract.php @@ -400,14 +400,17 @@ abstract class CM_Request_Abstract { * @param array|null $headers ...
t<I>: Method case insensitive; exception thrown
diff --git a/logback-site/src/site/pages/templates/footer.js b/logback-site/src/site/pages/templates/footer.js index <HASH>..<HASH> 100644 --- a/logback-site/src/site/pages/templates/footer.js +++ b/logback-site/src/site/pages/templates/footer.js @@ -21,7 +21,7 @@ AAT = '@' DOOTT = '.' document.write('<tr>') docume...
- added a link to the article on making contributions.
diff --git a/transmute_core/tests/frameworks/test_aiohttp/__init__.py b/transmute_core/tests/frameworks/test_aiohttp/__init__.py index <HASH>..<HASH> 100644 --- a/transmute_core/tests/frameworks/test_aiohttp/__init__.py +++ b/transmute_core/tests/frameworks/test_aiohttp/__init__.py @@ -1,4 +1,2 @@ import pytest -impor...
minor: fixed python<I> unit tests aiohttp's test files we're still loading during pytest execution. skipif doesn't prevent loading of aiohttp conftest.py files, resulting in SyntaxErrors being raised during collection. Using pytest_ignore_collect and moving import of aiohttp files to inline imports solves the issue.
diff --git a/src/index.test.js b/src/index.test.js index <HASH>..<HASH> 100644 --- a/src/index.test.js +++ b/src/index.test.js @@ -1,9 +1,10 @@ import _ from 'lodash'; -import eventInfoPlugin from './index'; import * as miniPlugins from './plugins'; import * as eventSamples from './eventSamples'; +const eventInf...
style(index.test.js): Fix lint issue with /index (#8)
diff --git a/pmxbot/core.py b/pmxbot/core.py index <HASH>..<HASH> 100644 --- a/pmxbot/core.py +++ b/pmxbot/core.py @@ -251,7 +251,10 @@ class LoggingCommandBot(irc.bot.SingleServerIRCBot): ) executor(howlong, self.background_runner, arguments) for action in _at_registry: - self._schedule_at(connection, *ac...
Log an exception when failing to schedule an action.
diff --git a/tests/test_pdf.py b/tests/test_pdf.py index <HASH>..<HASH> 100644 --- a/tests/test_pdf.py +++ b/tests/test_pdf.py @@ -2,10 +2,11 @@ Testing focused on pikepdf.Pdf """ +import locale import os import shutil import sys -from io import StringIO, BytesIO +from io import BytesIO, StringIO from pathlib i...
tests: fix possible issue when running tests in non-Unicode environment
diff --git a/src/Laracasts/TestDummy/EloquentDatabaseProvider.php b/src/Laracasts/TestDummy/EloquentDatabaseProvider.php index <HASH>..<HASH> 100644 --- a/src/Laracasts/TestDummy/EloquentDatabaseProvider.php +++ b/src/Laracasts/TestDummy/EloquentDatabaseProvider.php @@ -19,7 +19,7 @@ class EloquentDatabaseProvider impl...
Fall back to Laravel 4 friendly force filling
diff --git a/Runnable/EventsGenerator/CallableEventsGenerator.php b/Runnable/EventsGenerator/CallableEventsGenerator.php index <HASH>..<HASH> 100644 --- a/Runnable/EventsGenerator/CallableEventsGenerator.php +++ b/Runnable/EventsGenerator/CallableEventsGenerator.php @@ -6,7 +6,7 @@ class CallableEventsGenerator impleme...
fix(CallableEventsGenerator): return the result of the produce call