diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/riscvmodel/model.py b/riscvmodel/model.py index <HASH>..<HASH> 100644 --- a/riscvmodel/model.py +++ b/riscvmodel/model.py @@ -8,7 +8,8 @@ from .program import Program class State(object): def __init__(self, variant: Variant): self.variant = variant - self.intreg = RegisterFile(variant...
Set intregs as defined by baseint
diff --git a/js/poloniex.js b/js/poloniex.js index <HASH>..<HASH> 100644 --- a/js/poloniex.js +++ b/js/poloniex.js @@ -814,6 +814,8 @@ module.exports = class poloniex extends Exchange { const feedback = this.id + ' ' + this.json (response); if (error === 'Invalid order number, or you are not t...
Throw OrderNotFound if order not found in fetchOrderTrades
diff --git a/lxd/instance/drivers/driver_qemu.go b/lxd/instance/drivers/driver_qemu.go index <HASH>..<HASH> 100644 --- a/lxd/instance/drivers/driver_qemu.go +++ b/lxd/instance/drivers/driver_qemu.go @@ -1184,6 +1184,17 @@ func (d *qemu) Start(stateful bool) error { return err } + // Enable extended topology info...
lxd/instances/qemu: Enable topoext on x<I>_<I> with SMT
diff --git a/internal/service/firehose/delivery_stream.go b/internal/service/firehose/delivery_stream.go index <HASH>..<HASH> 100644 --- a/internal/service/firehose/delivery_stream.go +++ b/internal/service/firehose/delivery_stream.go @@ -69,7 +69,6 @@ func dynamicPartitioningConfigurationSchema() *schema.Schema { ...
Update allowed, ForceNew should not be necessary
diff --git a/nptdms/tdms.py b/nptdms/tdms.py index <HASH>..<HASH> 100644 --- a/nptdms/tdms.py +++ b/nptdms/tdms.py @@ -670,6 +670,19 @@ class TdmsObject(object): else: self.data.extend(new_data) + def as_dataframe(self): + """ + Converts the TDMS object to a DataFrame + ...
Added the export to dataframe from within a TdmsObject. Objects like channels (tested on a channel) can now be exported as a pandas dataframe.
diff --git a/lib/cocoapods-chillax-swift.rb b/lib/cocoapods-chillax-swift.rb index <HASH>..<HASH> 100644 --- a/lib/cocoapods-chillax-swift.rb +++ b/lib/cocoapods-chillax-swift.rb @@ -1,3 +1,3 @@ module CocoaPodsChillaxSwift - VERSION = "0.1.0" + VERSION = "0.2.0" end diff --git a/lib/installer.rb b/lib/installer.rb...
Disables GCC optimizations, too.
diff --git a/app/models/unidom/visitor/application_record.rb b/app/models/unidom/visitor/application_record.rb index <HASH>..<HASH> 100644 --- a/app/models/unidom/visitor/application_record.rb +++ b/app/models/unidom/visitor/application_record.rb @@ -1,3 +1,6 @@ +## +# Application record 是模块内所有模型的抽象基类。 + class Unidom:...
1, Improve the Application record for the document.
diff --git a/heartbeat/heartbeat.py b/heartbeat/heartbeat.py index <HASH>..<HASH> 100644 --- a/heartbeat/heartbeat.py +++ b/heartbeat/heartbeat.py @@ -95,13 +95,13 @@ class Heartbeat(object): if challenge.block > (self.file_size - chunk_size): end_slice = ( - challenge.get_positio...
fix for refactored vars and challenge class refactors
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -115,7 +115,7 @@ function parseInput (input, opts, cb) { file.getStream = getStreamStream(item, file) file.length = 0 } else if (typeof item === 'string') { - if (typeof fs.readdir !== '...
fix unhelpful message in browser In the browser, WebTorrent’s `client.seed()` function returns “Uncaught TypeError: fs.stat is not a function” when passing in a file path, because fs.readdir is defined by brfs (I think). Let’s check for fs.stat instead. For <URL>
diff --git a/locale/ko.js b/locale/ko.js index <HASH>..<HASH> 100644 --- a/locale/ko.js +++ b/locale/ko.js @@ -53,22 +53,8 @@ var ko = moment.defineLocale('ko', { y : '일 년', yy : '%d년' }, - dayOfMonthOrdinalParse : /\d{1,2}(일|월|주)/, - ordinal : function (number, period) { - switch (p...
ndo the changes to locale/ko.js its autogenerated
diff --git a/empire/server/releases.go b/empire/server/releases.go index <HASH>..<HASH> 100644 --- a/empire/server/releases.go +++ b/empire/server/releases.go @@ -10,9 +10,11 @@ import ( "github.com/remind101/empire/empire" ) -// newHkRelease converts an empire Release to a heroku Release. -func newHkRelease(r *em...
Alias Release as heroku.Release
diff --git a/lib/rib/shell.rb b/lib/rib/shell.rb index <HASH>..<HASH> 100644 --- a/lib/rib/shell.rb +++ b/lib/rib/shell.rb @@ -46,7 +46,7 @@ class Rib::Shell input = get_input throw(:rib_exit, input) if config[:exit].include?(input) if input.strip == '' - history.pop + eval_input(inpu...
still need to eval the input if it's empty (for multiline), and don't pop history!
diff --git a/kubeshell/client.py b/kubeshell/client.py index <HASH>..<HASH> 100644 --- a/kubeshell/client.py +++ b/kubeshell/client.py @@ -8,6 +8,7 @@ import urllib3 # disable warnings on stdout/stderr from urllib3 connection errors ulogger = logging.getLogger("urllib3") ulogger.setLevel("ERROR") +urllib3.disable_wa...
fixes #<I>: disable InsecureRequestWarning from urllib3 (cherry picked from commit 3f3a<I>dc<I>e<I>b<I>e9ccd3eae<I>d<I>ffbb)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def extras_require(): def main(): setup( name='straitlets', - version='0.2.1', + version='0.2.2', description="Serializable IPython Traitlets", author="Quantopian T...
MAINT: Bump PyPI.
diff --git a/IlluminaUtils/lib/fastqlib.py b/IlluminaUtils/lib/fastqlib.py index <HASH>..<HASH> 100644 --- a/IlluminaUtils/lib/fastqlib.py +++ b/IlluminaUtils/lib/fastqlib.py @@ -163,9 +163,9 @@ class FileOutput(object): def __init__(self, file_path, compressed = False): self.file_path = file_path - ...
distinct variables for compressed input/output
diff --git a/src-test/core/domhelpertest.js b/src-test/core/domhelpertest.js index <HASH>..<HASH> 100644 --- a/src-test/core/domhelpertest.js +++ b/src-test/core/domhelpertest.js @@ -106,3 +106,13 @@ DomHelperTest.prototype.testHasSupportForStyle = function() { this.domHelper_.supportForStyle_ = true; assertTrue(...
Added test for insertNullFontStyle.
diff --git a/apostrophe.js b/apostrophe.js index <HASH>..<HASH> 100644 --- a/apostrophe.js +++ b/apostrophe.js @@ -4513,16 +4513,15 @@ function Apos() { function(callback) { uploadfs.copyOut(originalFile, tempFile, callback); }, - // function(callback)...
Whoops, the actual work of apostrophe:rescale was shut off for a while
diff --git a/sample_test.go b/sample_test.go index <HASH>..<HASH> 100644 --- a/sample_test.go +++ b/sample_test.go @@ -17,7 +17,7 @@ func TestSample(t *testing.T) { for i := 0; i < iters; i++ { s := stream.Sequence( stream.Numbers(0, space-1), - stream.Sample(samples), + stream.SampleWithSeed(samples, int6...
sample_test uses deterministic seeding for reproducibility
diff --git a/salt/pillar/__init__.py b/salt/pillar/__init__.py index <HASH>..<HASH> 100644 --- a/salt/pillar/__init__.py +++ b/salt/pillar/__init__.py @@ -476,10 +476,15 @@ class Pillar(object): log.error(msg) errors.append(msg) else: - log.debug('Specified ...
Add additional reason for pillar env being found
diff --git a/integration-cli/docker_cli_inspect_test.go b/integration-cli/docker_cli_inspect_test.go index <HASH>..<HASH> 100644 --- a/integration-cli/docker_cli_inspect_test.go +++ b/integration-cli/docker_cli_inspect_test.go @@ -328,18 +328,6 @@ func (s *DockerSuite) TestInspectSizeFlagContainer(c *check.C) { c.Ass...
Remove unused "size" query parameter for images Image inspect doesn't have a "size" query parameter. The client sent this (when doing `docker inspect --size`), but was unused in the daemon. This removes the unused parameter, and a test that didn't actually test anything.
diff --git a/Lib/glyphsLib/filters/eraseOpenCorners.py b/Lib/glyphsLib/filters/eraseOpenCorners.py index <HASH>..<HASH> 100644 --- a/Lib/glyphsLib/filters/eraseOpenCorners.py +++ b/Lib/glyphsLib/filters/eraseOpenCorners.py @@ -25,10 +25,8 @@ class EraseOpenCornersPen(BasePen): self.outpen = outpen def _...
Reset pen after use, only draw once
diff --git a/eZ/Publish/Core/Repository/UserService.php b/eZ/Publish/Core/Repository/UserService.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/Repository/UserService.php +++ b/eZ/Publish/Core/Repository/UserService.php @@ -717,7 +717,7 @@ class UserService implements UserServiceInterface $userGroups = ...
Fixed: UserService::loadUserGroupsOfUser should return an array
diff --git a/modulate.js b/modulate.js index <HASH>..<HASH> 100644 --- a/modulate.js +++ b/modulate.js @@ -37,19 +37,11 @@ Modulator.prototype = { var bufLen = Math.ceil(data.length * 8 * this.encoder.samplesPerBit()); var modulatedData = new Float32Array(bufLen); - if (type === undefined) + ...
modulate: remove unused time measurement code This was used for the console.log message, which is now gone. Remove this code, as it's now unused.
diff --git a/py2/h2o_sandbox.py b/py2/h2o_sandbox.py index <HASH>..<HASH> 100755 --- a/py2/h2o_sandbox.py +++ b/py2/h2o_sandbox.py @@ -165,6 +165,7 @@ def check_sandbox_for_errors(LOG_DIR=None, python_test_name='', #[Loaded java.lang.Error from /usr/lib/jvm/java-7-oracle/jre/lib/rt.jar] ...
change test_GLM_covtype.py to single_jvm allow seeing lines with 'Errors" due to schema warnings (in h2o_sandox.py)
diff --git a/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/Preference.java b/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/Preference.java index <HASH>..<HASH> 100644 --- a/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/Preference.java +++ b/rx-preferences/src/main/java/com/f2prate...
Remove outdated null docs.
diff --git a/lib/webcat/driver/safariwatir_driver.rb b/lib/webcat/driver/safariwatir_driver.rb index <HASH>..<HASH> 100644 --- a/lib/webcat/driver/safariwatir_driver.rb +++ b/lib/webcat/driver/safariwatir_driver.rb @@ -43,7 +43,9 @@ class Webcat::Driver::SafariWatir end def find(selector) - browser.send(:s...
Slight improvement to safariwatir driver (still doesn't work though)
diff --git a/lib/flor/migrations/0001_tables.rb b/lib/flor/migrations/0001_tables.rb index <HASH>..<HASH> 100644 --- a/lib/flor/migrations/0001_tables.rb +++ b/lib/flor/migrations/0001_tables.rb @@ -81,7 +81,6 @@ Sequel.migration do String :nid, null: true String :tracer, null: false # 'executor', 'trace'...
revert "store "content" in flor_traces" This reverts commit b7bb0d7df8a<I>db<I>c<I>b<I>f. I forgot that the "trace" concept was not a "trail" at all...
diff --git a/src/azure_devtools/scenario_tests/patches.py b/src/azure_devtools/scenario_tests/patches.py index <HASH>..<HASH> 100644 --- a/src/azure_devtools/scenario_tests/patches.py +++ b/src/azure_devtools/scenario_tests/patches.py @@ -14,6 +14,15 @@ def patch_time_sleep_api(unit_test): _mock_in_unit_test(unit_...
Reinstate patch_long_run_operation_delay
diff --git a/lib/super_resources/url_helpers.rb b/lib/super_resources/url_helpers.rb index <HASH>..<HASH> 100644 --- a/lib/super_resources/url_helpers.rb +++ b/lib/super_resources/url_helpers.rb @@ -81,11 +81,6 @@ module SuperResources def super_url(chain, options={}) polymorphic_url(chain, options) - ...
simplify super_url to only call polymorphic_url
diff --git a/lib/puppet/type/user.rb b/lib/puppet/type/user.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/type/user.rb +++ b/lib/puppet/type/user.rb @@ -423,7 +423,10 @@ module Puppet resource at the same time. For instance, Puppet creates a home directory for a managed user if `ensure => present` a...
(PUP-<I>) Update the managehome property's docs for Windows On Windows, the managehome property manages creation/deletion of the user profile, _not_ the home directory. This commit updates the docs with this information.
diff --git a/cwtools/corewebsite.py b/cwtools/corewebsite.py index <HASH>..<HASH> 100644 --- a/cwtools/corewebsite.py +++ b/cwtools/corewebsite.py @@ -8,7 +8,7 @@ from twisted.python.filepath import FilePath from cwtools import testing, htmltools, jsimp from ecmaster import closurecompiler from lytics.endpoint impor...
cwtools/corewebsite.py: use ConnectionTrackingSite, just like minervasite does.
diff --git a/tasks/responsive_images.js b/tasks/responsive_images.js index <HASH>..<HASH> 100644 --- a/tasks/responsive_images.js +++ b/tasks/responsive_images.js @@ -502,7 +502,8 @@ module.exports = function(grunt) { return processImage(srcPath, dstPath, sizeOptions, tally, callback); }...
Fix recursive function When you have a few thousands files and you run the option task `newFilesOnly`, an error occurs `Maximum call stack size exceeded`. Fix this issue by scheduling the "immediate" execution of callback after I/O events callbacks and before `setTimeout `and `setInterval ` —More info on `setImmediate...
diff --git a/gcloud/datastore/entity.py b/gcloud/datastore/entity.py index <HASH>..<HASH> 100644 --- a/gcloud/datastore/entity.py +++ b/gcloud/datastore/entity.py @@ -213,7 +213,8 @@ class Entity(dict): exist only locally. """ key = self._must_key - entity = key.get() + connec...
Adding back dataset's connection in Entity.reload.
diff --git a/docs/source/conf.py b/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,16 +48,16 @@ master_doc = 'index' # General information about the project. project = u'mist' -copyright = u'2015, Mist.io Inc' +copyright = u'2016, Mist.io Inc' # The vers...
update version and remove ansible dependency
diff --git a/pyxmpp/roster.py b/pyxmpp/roster.py index <HASH>..<HASH> 100644 --- a/pyxmpp/roster.py +++ b/pyxmpp/roster.py @@ -77,7 +77,7 @@ class RosterItem(StanzaPayloadObject): ns=get_node_ns_uri(node) if ns and ns!=ROSTER_NS or node.name!="item": raise ValueError,"XML node is not a ro...
- fixed handling of non-ascii JIDs in roster (thanks to Andrew Diederich)
diff --git a/components/users.js b/components/users.js index <HASH>..<HASH> 100644 --- a/components/users.js +++ b/components/users.js @@ -368,7 +368,7 @@ SteamCommunity.prototype.getUserInventoryContents = function(userID, appID, cont if (err) { if (err.message == "HTTP error 403" && body === null) { //...
Check if instance is logged in before comparing steamids (fixes #<I>)
diff --git a/libraries/mako/mako/request.php b/libraries/mako/mako/request.php index <HASH>..<HASH> 100644 --- a/libraries/mako/mako/request.php +++ b/libraries/mako/mako/request.php @@ -66,6 +66,12 @@ namespace mako protected static $method = 'GET'; /** + * Was the request made using HTTPS? + */ + + protect...
Added Request::isSecure method
diff --git a/src/Functional/Functional.php b/src/Functional/Functional.php index <HASH>..<HASH> 100644 --- a/src/Functional/Functional.php +++ b/src/Functional/Functional.php @@ -654,7 +654,7 @@ function concat(string $separator = ''): Closure * * @template T * @param callable(...mixed): T $callable - * @param ar...
Less-specific about lazy and call arguments type
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -114,7 +114,7 @@ const configureGrunt = function (grunt) { options: { ui: 'bdd', reporter: grunt.option('reporter') || 'spec', - timeout: '30000', +...
Increased Mocha timeout to <I>s no issue - allow for random platform delays in tests
diff --git a/hugolib/menu_test.go b/hugolib/menu_test.go index <HASH>..<HASH> 100644 --- a/hugolib/menu_test.go +++ b/hugolib/menu_test.go @@ -91,7 +91,10 @@ type testMenuState struct { oldBaseUrl interface{} } -func TestPageMenu(t *testing.T) { +// temporarily disabled +// will be enabled once the cast related bu...
Temporarily disable failing menu test
diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php @@ -106,1...
backport more error information from <I> to <I> The commit on master was: server:run command: provide more error information The server:run command didn't provide many information when the executed command exited unexpectedly. Now, the process' exit code is passed through and an error message is displayed.
diff --git a/guice/common/src/main/java/com/peterphi/std/guice/restclient/resteasy/impl/ResteasyClientFactoryImpl.java b/guice/common/src/main/java/com/peterphi/std/guice/restclient/resteasy/impl/ResteasyClientFactoryImpl.java index <HASH>..<HASH> 100644 --- a/guice/common/src/main/java/com/peterphi/std/guice/restclien...
Bugfix: in the event of a CreationException happening after resteasy client initialisation, we could duplicate provider registrations. This change makes sure that we start fresh every time
diff --git a/calendar/tests/privacy_test.php b/calendar/tests/privacy_test.php index <HASH>..<HASH> 100644 --- a/calendar/tests/privacy_test.php +++ b/calendar/tests/privacy_test.php @@ -104,7 +104,7 @@ class core_calendar_privacy_testcase extends provider_testcase { // Add a Calendar Subscription and Group ...
MDL-<I> core_calendar: Fix test_get_contexts_for_userid() test This issue is part of the MDL-<I> Epic.
diff --git a/packages/pob/lib/generators/monorepo/index.js b/packages/pob/lib/generators/monorepo/index.js index <HASH>..<HASH> 100644 --- a/packages/pob/lib/generators/monorepo/index.js +++ b/packages/pob/lib/generators/monorepo/index.js @@ -18,6 +18,12 @@ const getAppTypes = (configs) => { return [...appTypes]; }...
fix: missing dist prettierignore monorepo with lib
diff --git a/lib/writeexcel/workbook.rb b/lib/writeexcel/workbook.rb index <HASH>..<HASH> 100644 --- a/lib/writeexcel/workbook.rb +++ b/lib/writeexcel/workbook.rb @@ -2972,8 +2972,8 @@ class Workbook < BIFFWriter end # Change length field of the first MSODRAWINGGROUP block. Case 2 and 3. - tmp = data.dup...
* bug fix: endless loop when image size > <I> in add_mso_drawing_group_continue(data) this bug was found by Kyle's mail. thanks Kyle.
diff --git a/face/geomajas-face-gwt/client/src/test/java/org/geomajas/gwt/client/map/MapViewTest.java b/face/geomajas-face-gwt/client/src/test/java/org/geomajas/gwt/client/map/MapViewTest.java index <HASH>..<HASH> 100644 --- a/face/geomajas-face-gwt/client/src/test/java/org/geomajas/gwt/client/map/MapViewTest.java +++ ...
GWT-<I>: unit test was wrong
diff --git a/lib/protocol/Connection.js b/lib/protocol/Connection.js index <HASH>..<HASH> 100644 --- a/lib/protocol/Connection.js +++ b/lib/protocol/Connection.js @@ -451,7 +451,7 @@ Connection.prototype.disconnect = function disconnect(cb) { self.enqueue(request.disconnect(), done); } - if (this._queue.empt...
Expose connection.IsIdle (#<I>)
diff --git a/app/models/neighborly/balanced/payment.rb b/app/models/neighborly/balanced/payment.rb index <HASH>..<HASH> 100644 --- a/app/models/neighborly/balanced/payment.rb +++ b/app/models/neighborly/balanced/payment.rb @@ -12,6 +12,10 @@ module Neighborly::Balanced payment_cho...
Expose debit information through a hash on Payment class
diff --git a/cli/django.py b/cli/django.py index <HASH>..<HASH> 100644 --- a/cli/django.py +++ b/cli/django.py @@ -11,18 +11,18 @@ app = typer.Typer() @app.command() def autoconfigure( - repo_url: str, + repo_url: str = typer.Argument(..., help="url of remote git repository of your django project"), doma...
#5 fixes autoconfigure django help strings as defaults are autogenerated
diff --git a/tests/test_decorators.py b/tests/test_decorators.py index <HASH>..<HASH> 100644 --- a/tests/test_decorators.py +++ b/tests/test_decorators.py @@ -401,3 +401,13 @@ def test_cli_with_conflicting_short_options(): assert hug.test.cli(test) == ('Value', 'Value2') assert hug.test.cli(test, abe1='hi', a...
Add test for directives in use with hug clis
diff --git a/apiserver/facades/agent/instancemutater/interface.go b/apiserver/facades/agent/instancemutater/interface.go index <HASH>..<HASH> 100644 --- a/apiserver/facades/agent/instancemutater/interface.go +++ b/apiserver/facades/agent/instancemutater/interface.go @@ -8,7 +8,6 @@ import ( "github.com/juju/charm/v...
Remove unused interface ModelCacheMachine
diff --git a/src/Lib/Parser/SearchParse.php b/src/Lib/Parser/SearchParse.php index <HASH>..<HASH> 100755 --- a/src/Lib/Parser/SearchParse.php +++ b/src/Lib/Parser/SearchParse.php @@ -58,7 +58,7 @@ class SearchParse extends TemplateParse } if (preg_match('~<meta proper...
fix odd utf8 issue with search item descriptions
diff --git a/packages/idyll-document/src/utils/index.js b/packages/idyll-document/src/utils/index.js index <HASH>..<HASH> 100644 --- a/packages/idyll-document/src/utils/index.js +++ b/packages/idyll-document/src/utils/index.js @@ -3,7 +3,7 @@ const entries = require('object.entries'); export const evalExpression = (...
fix regexs for detecting keys that look like callbacks
diff --git a/uw_sws/section.py b/uw_sws/section.py index <HASH>..<HASH> 100644 --- a/uw_sws/section.py +++ b/uw_sws/section.py @@ -282,7 +282,12 @@ def _json_to_section(section_data, section.is_independent_study = False section.class_website_url = section_data["ClassWebsiteUrl"] - section.sln = secti...
set section.sln to 0 if the value is not valid
diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Filesystem/Filesystem.php +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -301,10 +301,15 @@ class Filesystem */ public function syml...
Ensure backend slashes for symlinks on Windows systems Resolves: #<I>
diff --git a/zappa/core.py b/zappa/core.py index <HASH>..<HASH> 100644 --- a/zappa/core.py +++ b/zappa/core.py @@ -397,7 +397,9 @@ class Zappa(object): # Need to manually add setuptools pkg_list.append('setuptools') - pip.main(["install", "--quiet", "--target", venv_site_packages_dir] + pkg_l...
check pip return code So we can stop deployment in case pip fails to lookup libraries.
diff --git a/ipyrad/core/assembly.py b/ipyrad/core/assembly.py index <HASH>..<HASH> 100644 --- a/ipyrad/core/assembly.py +++ b/ipyrad/core/assembly.py @@ -138,7 +138,7 @@ class Assembly(object): nameordered = self.samples.keys() nameordered.sort() return pd.DataFrame([self.samples[i].stats fo...
added a smidge of code to assemble.stats to dropna(axis=1, how='all') to drop all columns (axis=1) where all results are NaN
diff --git a/ipyvolume/_version.py b/ipyvolume/_version.py index <HASH>..<HASH> 100644 --- a/ipyvolume/_version.py +++ b/ipyvolume/_version.py @@ -1,6 +1,6 @@ -__version_tuple__ = (0, 6, 0, 'alpha.7') -__version__ = '0.6.0-alpha.7' +__version_tuple__ = (0, 6, 0, 'alpha.8') +__version__ = '0.6.0-alpha.8' __version_tu...
🔖 py <I>-alpha<I> released
diff --git a/src/Iterator/Model.php b/src/Iterator/Model.php index <HASH>..<HASH> 100755 --- a/src/Iterator/Model.php +++ b/src/Iterator/Model.php @@ -24,7 +24,7 @@ class Model extends \Mwyatt\Core\AbstractIterator implements \Mwyatt\Core\Iterat */ public function getIds() { - return $this->pluck...
fix model iterator plugin to collection
diff --git a/lib/will_paginate/view_helpers.rb b/lib/will_paginate/view_helpers.rb index <HASH>..<HASH> 100644 --- a/lib/will_paginate/view_helpers.rb +++ b/lib/will_paginate/view_helpers.rb @@ -114,7 +114,8 @@ module WillPaginate end model_count = collection.total_pages > 1 ? 5 : collection.size - ...
i<I>n: fix model_name fallback for Rails
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/internal/DefaultTempFolder.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/internal/DefaultTempFolder.java index <HASH>..<HASH> 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/internal/DefaultTempFolder.java +++ b/sonar-plugin-api...
SONAR-<I> fix log level when fail to delete temp directory
diff --git a/src/lib/Item.php b/src/lib/Item.php index <HASH>..<HASH> 100644 --- a/src/lib/Item.php +++ b/src/lib/Item.php @@ -70,6 +70,16 @@ class Item extends NonSequentialIdModel } /** + * Return the time difference between 0 and the end of the duration. + * + * @return \DateInterval + */...
Added getDuration() method to Item model
diff --git a/lib/cave/form/builder.rb b/lib/cave/form/builder.rb index <HASH>..<HASH> 100644 --- a/lib/cave/form/builder.rb +++ b/lib/cave/form/builder.rb @@ -27,12 +27,3 @@ class Cave::Form::Builder < ActionView::Helpers::FormBuilder @template.content_tag 'div', raw, class: "control-group #{name} #{error_class}" ...
Don't monkey-patch form_for
diff --git a/lib/parser.js b/lib/parser.js index <HASH>..<HASH> 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -199,11 +199,11 @@ exports.parse_calendar = function(data, timezone) { var state = expect("BEGIN", "VCALENDAR", parse_component(calendar)); for(var i=0; i<data.length-1; ++i) { - if(state...
Be more tolerant of new lines when parsing. No longer throws errors when empty blank lines are added to the end of a vcalendar string to parse.
diff --git a/services/visual_recognition/v3.js b/services/visual_recognition/v3.js index <HASH>..<HASH> 100644 --- a/services/visual_recognition/v3.js +++ b/services/visual_recognition/v3.js @@ -110,7 +110,8 @@ module.exports = function (RED) { }); }); }); - } // else + + ...
refactor code for codacy...
diff --git a/src/system/modules/metamodels/MetaModelDatabase.php b/src/system/modules/metamodels/MetaModelDatabase.php index <HASH>..<HASH> 100644 --- a/src/system/modules/metamodels/MetaModelDatabase.php +++ b/src/system/modules/metamodels/MetaModelDatabase.php @@ -481,6 +481,7 @@ class MetaModelDatabase extends Contr...
Update panles and sorting for fields.
diff --git a/Templates/default.blade.php b/Templates/default.blade.php index <HASH>..<HASH> 100644 --- a/Templates/default.blade.php +++ b/Templates/default.blade.php @@ -79,18 +79,16 @@ </tbody> </table> <div style="clear:both; position:relative;"> - <div style="position:absol...
Hide notes if no notes Rather than displaying an empty notes box, this hides the notes box completely if there are no notes.
diff --git a/categories/settings.py b/categories/settings.py index <HASH>..<HASH> 100644 --- a/categories/settings.py +++ b/categories/settings.py @@ -5,7 +5,7 @@ from django.db.models import Q DEFAULT_SETTINGS = { 'ALLOW_SLUG_CHANGE': False, - 'CACHE_VIEW_LENGTH': 0, + 'CACHE_VIEW_LENGTH': 600, 'REL...
Updated the default view caching to <I>, which is the django default instead of forcing the views to NEVER cache at all.
diff --git a/apps/staging_log_test.go b/apps/staging_log_test.go index <HASH>..<HASH> 100644 --- a/apps/staging_log_test.go +++ b/apps/staging_log_test.go @@ -20,7 +20,7 @@ var _ = Describe("An application being staged", func() { It("has its staging log streamed during a push", func() { push := Cf("push", AppName,...
Disable check that fails due to known race condition This should be enabled as part of [#<I>]
diff --git a/achilles-cql/src/main/java/info/archinnov/achilles/embedded/CQLEmbeddedServer.java b/achilles-cql/src/main/java/info/archinnov/achilles/embedded/CQLEmbeddedServer.java index <HASH>..<HASH> 100644 --- a/achilles-cql/src/main/java/info/archinnov/achilles/embedded/CQLEmbeddedServer.java +++ b/achilles-cql/src...
Fixes Class cast exception when parsing String as integer
diff --git a/src/utils/Slide/index.js b/src/utils/Slide/index.js index <HASH>..<HASH> 100644 --- a/src/utils/Slide/index.js +++ b/src/utils/Slide/index.js @@ -143,6 +143,9 @@ class Slide extends React.Component<Props, State> { id={id} aria-labelledby={ariaLabelledBy} visible={visible} + ...
FIX: Slide onClick propagation (#<I>)
diff --git a/src/PhantomInstaller/Installer.php b/src/PhantomInstaller/Installer.php index <HASH>..<HASH> 100644 --- a/src/PhantomInstaller/Installer.php +++ b/src/PhantomInstaller/Installer.php @@ -275,7 +275,7 @@ class Installer if ($os !== 'unknown') { copy($targetDir . $sourceName, $targetNa...
use static to access chmod constant to allow override via extending class
diff --git a/packages/tree-view/src/TreeItem.js b/packages/tree-view/src/TreeItem.js index <HASH>..<HASH> 100644 --- a/packages/tree-view/src/TreeItem.js +++ b/packages/tree-view/src/TreeItem.js @@ -10,11 +10,9 @@ const TreeItem = props => { collapsed, defaultCollapsed, expandByDoubleClick, - getKeybo...
refactor: switch internal props to ...otherProps
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -23,6 +23,7 @@ module.exports = function (grunt) { compress: { drop_console: true }, + mangle: false, preserveComments: false }, build: { @@ -39,7 +40,...
The packaging process no longer mangles function names.
diff --git a/input/tangy-photo-capture.js b/input/tangy-photo-capture.js index <HASH>..<HASH> 100644 --- a/input/tangy-photo-capture.js +++ b/input/tangy-photo-capture.js @@ -171,7 +171,7 @@ export class TangyPhotoCapture extends PolymerElement { clear: t('clear') } // Start streaming video - naviga...
preset rear camera for tangy-photo-capture
diff --git a/tabular_predDB/binary_creation/setup.py b/tabular_predDB/binary_creation/setup.py index <HASH>..<HASH> 100644 --- a/tabular_predDB/binary_creation/setup.py +++ b/tabular_predDB/binary_creation/setup.py @@ -17,9 +17,9 @@ includes = [ 'tabular_predDB.LocalEngine', 'tabular_predDB.cython_code.State'...
BUGFIX: uncomment includes, else running fails on import error
diff --git a/rut/src/test/java/io/norberg/rut/RadixTrieTest.java b/rut/src/test/java/io/norberg/rut/RadixTrieTest.java index <HASH>..<HASH> 100644 --- a/rut/src/test/java/io/norberg/rut/RadixTrieTest.java +++ b/rut/src/test/java/io/norberg/rut/RadixTrieTest.java @@ -186,6 +186,17 @@ public class RadixTrieTest { as...
failing test for rdx early path end bug
diff --git a/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol3.java b/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol3.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol3.java +++ b/core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol3.java @@ -137,7 +13...
[JENKINS-<I>] Stop A/B testing JNLP3
diff --git a/views/js/qtiCreator/helper/xincludeRenderer.js b/views/js/qtiCreator/helper/xincludeRenderer.js index <HASH>..<HASH> 100644 --- a/views/js/qtiCreator/helper/xincludeRenderer.js +++ b/views/js/qtiCreator/helper/xincludeRenderer.js @@ -74,7 +74,7 @@ define([ //reload the wiget to rfr...
fix: fix passage css format on Items
diff --git a/lib/cinch/version.rb b/lib/cinch/version.rb index <HASH>..<HASH> 100644 --- a/lib/cinch/version.rb +++ b/lib/cinch/version.rb @@ -1,3 +1,4 @@ module Cinch + # Version of the library VERSION = '2.0.0' end
document Cinch::Version constant
diff --git a/satpy/tests/writer_tests/test_ninjogeotiff.py b/satpy/tests/writer_tests/test_ninjogeotiff.py index <HASH>..<HASH> 100644 --- a/satpy/tests/writer_tests/test_ninjogeotiff.py +++ b/satpy/tests/writer_tests/test_ninjogeotiff.py @@ -904,3 +904,17 @@ def test_create_unknown_tags(test_image_small_arctic_P): ...
Added test to confirm string IDs are accepted. On the side of NinJo there exists an interest to move from numerical IDs to string IDs for the satellite and channel IDs in the ninjogeotiff headers. The ninjogeotiff writer has no objection to this. Confirm this no-objection with a unit test.
diff --git a/test/performance/benchmark_server.js b/test/performance/benchmark_server.js index <HASH>..<HASH> 100644 --- a/test/performance/benchmark_server.js +++ b/test/performance/benchmark_server.js @@ -44,10 +44,10 @@ var serviceProto = grpc.loadPackageDefinition(protoPackage).grpc.testing; /** * Create a buffe...
replace usage of Buffer.from with Buffer.alloc
diff --git a/lib/components/form/settings-selector-panel.js b/lib/components/form/settings-selector-panel.js index <HASH>..<HASH> 100644 --- a/lib/components/form/settings-selector-panel.js +++ b/lib/components/form/settings-selector-panel.js @@ -208,13 +208,13 @@ class SettingsSelectorPanel extends Component { ...
feat(form): Change styling/alignment of mode selection buttons
diff --git a/lib/monitor.js b/lib/monitor.js index <HASH>..<HASH> 100644 --- a/lib/monitor.js +++ b/lib/monitor.js @@ -47,7 +47,7 @@ ReqCounter.prototype.registerEvents = function (server) { server.emit = function () { var args = arguments; if (args[0] !== 'connection' && args[0] !== 'request') {...
Fix stream.write() and server.emit() overrides to call the original methods with the correct this context. Contributed on behalf of Box Inc.
diff --git a/scripts/update-to-master.php b/scripts/update-to-master.php index <HASH>..<HASH> 100644 --- a/scripts/update-to-master.php +++ b/scripts/update-to-master.php @@ -82,8 +82,8 @@ deleteCacheFolder('cache/trl'); $c = file(".gitignore", FILE_IGNORE_NEW_LINES); $c[] = '/build'; $c[] = '/vendor'; -$c[] = 'bowe...
specify gitignore path with / so our sync doesn't use this isgnore in subfolders
diff --git a/lib/active_record/transitions.rb b/lib/active_record/transitions.rb index <HASH>..<HASH> 100644 --- a/lib/active_record/transitions.rb +++ b/lib/active_record/transitions.rb @@ -26,7 +26,7 @@ module ActiveRecord included do include ::Transitions - before_validation :set_initial_state + ...
New records have their state set after initialization Initial state was set using before_validation, which resulted in a nil state for new records. Instead of using the before_validate hook, use the after_initialize hook to make sure the state is properly set.
diff --git a/django_mako_plus/__init__.py b/django_mako_plus/__init__.py index <HASH>..<HASH> 100644 --- a/django_mako_plus/__init__.py +++ b/django_mako_plus/__init__.py @@ -5,5 +5,5 @@ # The version of DMP - used by sdist to publish to PyPI -__version__ = '2.4.7' +__version__ = '2.4.8'
fixed a versioning error again. last one had issues.
diff --git a/ecs-init/docker/docker.go b/ecs-init/docker/docker.go index <HASH>..<HASH> 100644 --- a/ecs-init/docker/docker.go +++ b/ecs-init/docker/docker.go @@ -53,6 +53,10 @@ const ( // maxRetries specifies the maximum number of retries for ping to return // a successful response from the docker socket maxRetr...
Adding CAP_NET_ADMIN for starting agent
diff --git a/losser/losser.py b/losser/losser.py index <HASH>..<HASH> 100644 --- a/losser/losser.py +++ b/losser/losser.py @@ -51,8 +51,16 @@ def _write_csv(f, table_): ``f`` could be an opened file, sys.stdout, or a StringIO. """ - # We assume that each dict in the list has the same keys. fieldname...
when writing to csv, go through all rows keys first to determine headers
diff --git a/pagoda/cooper.py b/pagoda/cooper.py index <HASH>..<HASH> 100644 --- a/pagoda/cooper.py +++ b/pagoda/cooper.py @@ -131,11 +131,8 @@ class Markers: with open(filename, 'rb') as handle: reader = c3d.Reader(handle) - # make sure the c3d file's frame rate matches our world. - ...
Move to newer version of c3d module.
diff --git a/tests/parsers/test_gherkinlint.py b/tests/parsers/test_gherkinlint.py index <HASH>..<HASH> 100644 --- a/tests/parsers/test_gherkinlint.py +++ b/tests/parsers/test_gherkinlint.py @@ -5,18 +5,18 @@ from __future__ import unicode_literals import codecs import os.path -import inlineplz.parsers.gherkinlint ...
fixing typo and making the gherkin-lint python-acceptable alias more consistent (#<I>)
diff --git a/service/http/service.go b/service/http/service.go index <HASH>..<HASH> 100644 --- a/service/http/service.go +++ b/service/http/service.go @@ -9,6 +9,7 @@ import ( "github.com/spiral/roadrunner/service/rpc" "github.com/spiral/roadrunner/util" "golang.org/x/net/http2" + "golang.org/x/net/http2/h2c" "...
Attempt to add h2c handling (http2 w/o ssl)
diff --git a/lib/rbbt/rest/common/users.rb b/lib/rbbt/rest/common/users.rb index <HASH>..<HASH> 100644 --- a/lib/rbbt/rest/common/users.rb +++ b/lib/rbbt/rest/common/users.rb @@ -15,7 +15,7 @@ module Sinatra target_url = request.env["REQUEST_URI"] Log.warn{ "Unauthorized access to #{target_url}" } ...
Fix: redirect -> redirect to(...)
diff --git a/node.js b/node.js index <HASH>..<HASH> 100644 --- a/node.js +++ b/node.js @@ -109,7 +109,7 @@ var server = connect.createServer( ); // bind the server to a port, choose your port: -server.listen(8080); // 80 is the default web port and 443 for TLS +server.listen(80); // 80 is the default web port and 4...
changed default port back to <I>;
diff --git a/src/ox_modules/module-web.js b/src/ox_modules/module-web.js index <HASH>..<HASH> 100644 --- a/src/ox_modules/module-web.js +++ b/src/ox_modules/module-web.js @@ -249,10 +249,11 @@ export default class WebModule extends WebDriverModule { } // maximize browser window try { - ...
CBS-<I> UNKNOWN_ERROR at web.init() using EDGE on browserstack (#<I>)
diff --git a/pylatex/utils.py b/pylatex/utils.py index <HASH>..<HASH> 100644 --- a/pylatex/utils.py +++ b/pylatex/utils.py @@ -186,7 +186,8 @@ def dumps_list(l, *, escape=True, token='%\n', mapper=None, as_content=True): mapper = [mapper] for m in mapper: - strings = map(lambda x: _la...
Change fix for #<I> a bit to work for lists of mappers
diff --git a/public/js/date-range-picker.js b/public/js/date-range-picker.js index <HASH>..<HASH> 100644 --- a/public/js/date-range-picker.js +++ b/public/js/date-range-picker.js @@ -2,7 +2,7 @@ define([ 'comps/moment/min/moment.min', 'plugins/admin/libs/bootstrap-daterangepicker/daterangepicker', 'css!plugins...
refactoring: 解决moment = undefined 通过全局获取
diff --git a/catalog/app/components/JsonEditor/Input.js b/catalog/app/components/JsonEditor/Input.js index <HASH>..<HASH> 100644 --- a/catalog/app/components/JsonEditor/Input.js +++ b/catalog/app/components/JsonEditor/Input.js @@ -73,6 +73,8 @@ function hasBrackets(valueStr) { ) } +const willBeNullInJson = (value...
handle Infinity (#<I>)
diff --git a/lib/engineyard-serverside/configuration.rb b/lib/engineyard-serverside/configuration.rb index <HASH>..<HASH> 100644 --- a/lib/engineyard-serverside/configuration.rb +++ b/lib/engineyard-serverside/configuration.rb @@ -227,11 +227,11 @@ module EY end def precompile_assets? - precompil...
Account for String command line option precompile_assets. This would normally be made a def_boolean_option, but we rely on having a 'not set' setting, nil, which tells us to smartly detect if assets need compilation. Checking for string 'true' solves the issue.
diff --git a/pyinstrument/renderers/speedscope.py b/pyinstrument/renderers/speedscope.py index <HASH>..<HASH> 100644 --- a/pyinstrument/renderers/speedscope.py +++ b/pyinstrument/renderers/speedscope.py @@ -196,7 +196,9 @@ class SpeedscopeRenderer(Renderer): def render(self, session: Session): frame = sel...
SpeedscopeRenderer: make profile title informative This commit modifies the display title of a speedscope profile exported from pyinstrument to include the timestamp of when the profile was generated (which also happens to be argument to `--load-prev` needed to render output in other formats).