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 @@ -18,7 +18,7 @@ setup( license='BSD License', description='A simple python wrapper around National Rail Enquires LDBS SOAP Webservice', long_description=README, - #url='https://github.com/robert-b-clarke/djang...
add link from setup to github
diff --git a/src/main/java/org/springframework/hateoas/PagedResources.java b/src/main/java/org/springframework/hateoas/PagedResources.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/springframework/hateoas/PagedResources.java +++ b/src/main/java/org/springframework/hateoas/PagedResources.java @@ -168,10 +168,6...
#<I> - Removed obsolete annotations from PagedResources. Removed JsonAutoDetect annotations from PagedResources as the reference to Visibility was causing compile errors in case one of the 2 Jackson variants was not on the classpath (which by design will usually be the case). Generally, the annotations weren't require...
diff --git a/spec/unit/active_attr/typecasting_spec.rb b/spec/unit/active_attr/typecasting_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/active_attr/typecasting_spec.rb +++ b/spec/unit/active_attr/typecasting_spec.rb @@ -123,12 +123,12 @@ module ActiveAttr end context "from Float::INFINITY" do...
No Float::INFINITY or FLOAT::NAN in <I>x, use computations resulting in those values for #5
diff --git a/actionpack/lib/action_dispatch/http/url.rb b/actionpack/lib/action_dispatch/http/url.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/http/url.rb +++ b/actionpack/lib/action_dispatch/http/url.rb @@ -64,7 +64,7 @@ module ActionDispatch end def host_or_subdomain_and_dom...
Clean up subdomain code a bit.
diff --git a/src/PhpFileFinder.php b/src/PhpFileFinder.php index <HASH>..<HASH> 100644 --- a/src/PhpFileFinder.php +++ b/src/PhpFileFinder.php @@ -22,7 +22,7 @@ class PhpFileFinder ), '/^.+\.php$/i', \RecursiveRegexIterator::GET_MATCH ); foreach ($regexIterator as $fileName) { - ...
Fix bug where immutable collection was treated like mutable
diff --git a/Grido/Components/Filters/Filter.php b/Grido/Components/Filters/Filter.php index <HASH>..<HASH> 100755 --- a/Grido/Components/Filters/Filter.php +++ b/Grido/Components/Filters/Filter.php @@ -153,7 +153,12 @@ abstract class Filter extends \Grido\Components\Base public function getColumns() { ...
Filters: Use db's column from column component when not set and column component with the same name exists
diff --git a/ddmrp_adjustment/models/stock_warehouse_orderpoint.py b/ddmrp_adjustment/models/stock_warehouse_orderpoint.py index <HASH>..<HASH> 100644 --- a/ddmrp_adjustment/models/stock_warehouse_orderpoint.py +++ b/ddmrp_adjustment/models/stock_warehouse_orderpoint.py @@ -38,7 +38,7 @@ class StockWarehouseOrderpoint(...
[<I>][FIX] ADU *must* only be computed by the cron job (we do *not* want real-time ADU).
diff --git a/tests/Generator/GeneratorTest.php b/tests/Generator/GeneratorTest.php index <HASH>..<HASH> 100755 --- a/tests/Generator/GeneratorTest.php +++ b/tests/Generator/GeneratorTest.php @@ -650,7 +650,7 @@ class GeneratorTest extends TestCase { $instance = self::getBingGeneratorInstance(); - ...
issue #<I> - fix unit test based on php version
diff --git a/app/controllers/storytime/posts_controller.rb b/app/controllers/storytime/posts_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/storytime/posts_controller.rb +++ b/app/controllers/storytime/posts_controller.rb @@ -41,8 +41,8 @@ module Storytime @comments = @post.comments.order("cre...
custom post type show by slug
diff --git a/exp/sdb/integration_test/tests.go b/exp/sdb/integration_test/tests.go index <HASH>..<HASH> 100644 --- a/exp/sdb/integration_test/tests.go +++ b/exp/sdb/integration_test/tests.go @@ -338,10 +338,6 @@ func (t *ItemsTest) BatchPutThenGet() { ) } -func (t *ItemsTest) BatchPutThenBatchGet() { - ExpectEq("T...
There's no such thing as batch get.
diff --git a/structr-core/src/main/java/org/structr/module/JarConfigurationProvider.java b/structr-core/src/main/java/org/structr/module/JarConfigurationProvider.java index <HASH>..<HASH> 100644 --- a/structr-core/src/main/java/org/structr/module/JarConfigurationProvider.java +++ b/structr-core/src/main/java/org/struct...
Adds logging with level FINEST to get information about classes with unmet dependencies in modules.
diff --git a/lib/Boris/ReadlineClient.php b/lib/Boris/ReadlineClient.php index <HASH>..<HASH> 100644 --- a/lib/Boris/ReadlineClient.php +++ b/lib/Boris/ReadlineClient.php @@ -7,6 +7,9 @@ */ class Boris_ReadlineClient { private $_socket; + private $_prompt; + private $_historyFile; + private $_clear = false; ...
Clear buffer on ctrl-c... this seems to have a nasty side-effect on the ctrl-d handling though
diff --git a/ring.go b/ring.go index <HASH>..<HASH> 100644 --- a/ring.go +++ b/ring.go @@ -203,7 +203,7 @@ func (ring *Ring) heartbeat() { for _, shard := range ring.shards { err := shard.Client.Ping().Err() - if shard.Vote(err == nil) { + if shard.Vote(err == nil || err == errPoolTimeout) { log.Print...
ring: ignore pool timeout when pinging shards.
diff --git a/category/selectors/index.js b/category/selectors/index.js index <HASH>..<HASH> 100644 --- a/category/selectors/index.js +++ b/category/selectors/index.js @@ -124,3 +124,8 @@ export const getCurrentCategories = createSelector( return null; } ); + +export const getCategoryProductCount = createSelect...
Added getCategoryProductCount selector
diff --git a/player_js.go b/player_js.go index <HASH>..<HASH> 100644 --- a/player_js.go +++ b/player_js.go @@ -123,8 +123,16 @@ func (p *player) Write(data []byte) (int, error) { buf := p.context.Call("createBuffer", p.channelNum, sizeInSamples, p.sampleRate) l, r := toLR(p.tmp[:p.bufferSize]) - buf.Call("copyToC...
js: Bug fix: copyToChannel is not defined on Safari
diff --git a/plenum/__init__.py b/plenum/__init__.py index <HASH>..<HASH> 100644 --- a/plenum/__init__.py +++ b/plenum/__init__.py @@ -5,6 +5,11 @@ plenum package from __future__ import absolute_import, division, print_function import sys +import plenum if sys.version_info < (3, 5, 0): raise ImportError("Py...
Hotfix: Deps (#<I>)
diff --git a/tests/fixtures/issues/issue-470.php b/tests/fixtures/issues/issue-470.php index <HASH>..<HASH> 100644 --- a/tests/fixtures/issues/issue-470.php +++ b/tests/fixtures/issues/issue-470.php @@ -133,7 +133,7 @@ return [ 'Device_Name' => '2320 classic', 'Device_Maker' => 'Nokia', ...
#<I>: change pointing method inside test
diff --git a/spec/controllers/static_controller_spec.rb b/spec/controllers/static_controller_spec.rb index <HASH>..<HASH> 100644 --- a/spec/controllers/static_controller_spec.rb +++ b/spec/controllers/static_controller_spec.rb @@ -9,7 +9,7 @@ describe StaticController do response.should render_template "layouts/...
Test for an XHR request, not for a javascript format
diff --git a/lib/textbringer/controller.rb b/lib/textbringer/controller.rb index <HASH>..<HASH> 100644 --- a/lib/textbringer/controller.rb +++ b/lib/textbringer/controller.rb @@ -59,7 +59,8 @@ module Textbringer end end rescue => e - Window.echo_area.show(e.to_s.chomp) ...
Log messages are saved in *Messsages*.
diff --git a/src/jquery.sidebar.js b/src/jquery.sidebar.js index <HASH>..<HASH> 100644 --- a/src/jquery.sidebar.js +++ b/src/jquery.sidebar.js @@ -22,6 +22,7 @@ * $(".my-sidebar").trigger("sidebar:open"); * $(".my-sidebar").trigger("sidebar:close"); * $(".my-sidebar").trigger("sidebar:toggle"); + ...
Improved a documentation comment according to a manual change in README.md
diff --git a/mbdata/replication.py b/mbdata/replication.py index <HASH>..<HASH> 100644 --- a/mbdata/replication.py +++ b/mbdata/replication.py @@ -249,7 +249,7 @@ def load_tar(filename, db, config, ignored_schemas, ignored_tables): continue print(" - Loading {} to {}".format(name, fulltable)) ...
Fix commit in mbslave import
diff --git a/bugzoo/bug.py b/bugzoo/bug.py index <HASH>..<HASH> 100644 --- a/bugzoo/bug.py +++ b/bugzoo/bug.py @@ -218,6 +218,7 @@ class Bug(object): if self.__program: return "{}:{}:{}".format(self.__dataset.name, self.__program, self.__name) return "{}:{}".format(self.__dataset.name, se...
added 'uid' property to Bug
diff --git a/lib/linters/attribute_quotes.js b/lib/linters/attribute_quotes.js index <HASH>..<HASH> 100644 --- a/lib/linters/attribute_quotes.js +++ b/lib/linters/attribute_quotes.js @@ -22,7 +22,7 @@ module.exports = { results.push({ column: column, - ...
Fix line reporting in attributeQuotes. Closes #<I>
diff --git a/test/karma.config.js b/test/karma.config.js index <HASH>..<HASH> 100644 --- a/test/karma.config.js +++ b/test/karma.config.js @@ -5,8 +5,7 @@ delete webpackConfig.entry module.exports = function (config) { config.set({ browsers: ['PhantomJS'], - singleRun: false, - autoWatch: process.env.TRA...
chore(unit test) edit single run property
diff --git a/js/bigone.js b/js/bigone.js index <HASH>..<HASH> 100644 --- a/js/bigone.js +++ b/js/bigone.js @@ -44,7 +44,7 @@ module.exports = class bigone extends Exchange { '1w': 'week1', '1M': 'month1', }, - 'hostname': 'big.one', // set to 'b1.run' for China ...
bigone minor edits / comments
diff --git a/lib/specinfra/version.rb b/lib/specinfra/version.rb index <HASH>..<HASH> 100644 --- a/lib/specinfra/version.rb +++ b/lib/specinfra/version.rb @@ -1,3 +1,3 @@ module Specinfra - VERSION = "2.34.3" + VERSION = "2.34.4" end
Bump up version [skip ci]
diff --git a/newrelic_api/servers.py b/newrelic_api/servers.py index <HASH>..<HASH> 100644 --- a/newrelic_api/servers.py +++ b/newrelic_api/servers.py @@ -54,7 +54,9 @@ class Servers(Resource): } """ - label_param = ';'.join(['{}:{}'.format(label, value) for label, value in filter_labels....
Fix code if `filter_labels` is `None`
diff --git a/javascript/firefox-driver/js/modals.js b/javascript/firefox-driver/js/modals.js index <HASH>..<HASH> 100644 --- a/javascript/firefox-driver/js/modals.js +++ b/javascript/firefox-driver/js/modals.js @@ -159,12 +159,12 @@ fxdriver.modals.signalOpenModal = function(parent, text) { if (driver && driver.resp...
DanielWagnerHall: Only dismiss alert if the current command is still pending. Yeah, there's still a bit of a race condition here, because of the timer that the response is actually sent in, but it's much *less* of a race condition :) r<I>
diff --git a/globus_cli/parsing/shared_options.py b/globus_cli/parsing/shared_options.py index <HASH>..<HASH> 100644 --- a/globus_cli/parsing/shared_options.py +++ b/globus_cli/parsing/shared_options.py @@ -175,12 +175,14 @@ def endpoint_create_and_update_params(*args, **kwargs): # Managed Endpoint options ...
Make default for --managed "None", not "False" With `--managed/--no-managed` split into two separate flag arguments, the default becomes `False` (this is a click behavior, makes sense for typical is_flag=True options). Explicitly tune the default back to "None" so that all of the behaviors based on this option remain ...
diff --git a/src/input.js b/src/input.js index <HASH>..<HASH> 100644 --- a/src/input.js +++ b/src/input.js @@ -60,9 +60,6 @@ const createInputCaret = (element, ctx) => { const format = (val) => { let value = val.replace(/<|>|`|"|&/g, '?') .replace(/\r\n|\r|\n/g,'<br/>'); - if (/firefox/i.test(...
fix(firefox): do not convert space characters to nbsp
diff --git a/lib/tml_rails/version.rb b/lib/tml_rails/version.rb index <HASH>..<HASH> 100644 --- a/lib/tml_rails/version.rb +++ b/lib/tml_rails/version.rb @@ -30,5 +30,5 @@ #++ module TmlRails - VERSION = '5.7.2' + VERSION = '5.7.3' end
Updated version to <I>
diff --git a/packages/graphql-language-service-server/src/startServer.js b/packages/graphql-language-service-server/src/startServer.js index <HASH>..<HASH> 100644 --- a/packages/graphql-language-service-server/src/startServer.js +++ b/packages/graphql-language-service-server/src/startServer.js @@ -37,6 +37,8 @@ export ...
prevent socket from hanging when the connection ends
diff --git a/app/components/validated-input-component.js b/app/components/validated-input-component.js index <HASH>..<HASH> 100644 --- a/app/components/validated-input-component.js +++ b/app/components/validated-input-component.js @@ -12,8 +12,14 @@ App.ValidatedInputComponent = Ember.TextField.extend({ this.set('...
Issue #<I> - credit card cvv and number validations and formatting Conflicts: app/components/validated-input-component.js
diff --git a/gothic/gothic.go b/gothic/gothic.go index <HASH>..<HASH> 100644 --- a/gothic/gothic.go +++ b/gothic/gothic.go @@ -247,8 +247,8 @@ func getProviderName(req *http.Request) (string, error) { } // try to get it from the go-context's value of "provider" key - if p := req.Context().Value("provider"); p !=...
string conversion in p,ok style to prevent panic if value of returned provder is not string
diff --git a/framework/core/js/lib/component.js b/framework/core/js/lib/component.js index <HASH>..<HASH> 100644 --- a/framework/core/js/lib/component.js +++ b/framework/core/js/lib/component.js @@ -18,6 +18,14 @@ export default class Component { return selector ? $(this.element()).find(selector) : $(this.element(...
Automatically hook up onload/config functions So that every component's DOM can be config'd by extensions
diff --git a/documentation/src/state/routing.js b/documentation/src/state/routing.js index <HASH>..<HASH> 100644 --- a/documentation/src/state/routing.js +++ b/documentation/src/state/routing.js @@ -1,5 +1,12 @@ export const LOCATION_CHANGE = 'LOCATION_CHANGE'; +/** + * This is a simple plug-in replacement for react...
Updated documentaiton for the routing reducer
diff --git a/version.php b/version.php index <HASH>..<HASH> 100644 --- a/version.php +++ b/version.php @@ -30,10 +30,10 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2011110200.02; // YYYYMMDD = weekly release date of this DEV branch +$version = 2011111500.00; // YYYYMMDD ...
Moodle release <I>beta
diff --git a/dwave/cloud/utils.py b/dwave/cloud/utils.py index <HASH>..<HASH> 100644 --- a/dwave/cloud/utils.py +++ b/dwave/cloud/utils.py @@ -475,7 +475,9 @@ class cached: """@cached backed by an on-disk sqlite3-based cache.""" from dwave.cloud.config import get_cache_dir directory = kwargs....
Use pickle v4 for @cached.ondisk serialization, for compatibility (#<I>)
diff --git a/Job/XingMessage.php b/Job/XingMessage.php index <HASH>..<HASH> 100755 --- a/Job/XingMessage.php +++ b/Job/XingMessage.php @@ -32,6 +32,11 @@ class XingMessage implements JobActionInterface throw new \Exception('No message found for an operation with ID: '.$operationId); } + $...
CE-<I> Added CTA processing
diff --git a/lib/ecm/cms/version.rb b/lib/ecm/cms/version.rb index <HASH>..<HASH> 100644 --- a/lib/ecm/cms/version.rb +++ b/lib/ecm/cms/version.rb @@ -1,5 +1,5 @@ module Ecm module Cms - VERSION = "1.0.0" + VERSION = "1.0.1" end end
Bumped version to <I>
diff --git a/services/hh/service.go b/services/hh/service.go index <HASH>..<HASH> 100644 --- a/services/hh/service.go +++ b/services/hh/service.go @@ -70,7 +70,6 @@ func (s *Service) Close() error { if s.closing != nil { close(s.closing) - s.closing = nil } return nil }
Fix data race when close hinted handoff service
diff --git a/codec-http/src/main/java/io/netty/handler/codec/http/AbstractMemoryHttpData.java b/codec-http/src/main/java/io/netty/handler/codec/http/AbstractMemoryHttpData.java index <HASH>..<HASH> 100644 --- a/codec-http/src/main/java/io/netty/handler/codec/http/AbstractMemoryHttpData.java +++ b/codec-http/src/main/ja...
Move force() after multiple writes, not at every steps
diff --git a/jax/numpy/lax_numpy.py b/jax/numpy/lax_numpy.py index <HASH>..<HASH> 100644 --- a/jax/numpy/lax_numpy.py +++ b/jax/numpy/lax_numpy.py @@ -1761,8 +1761,7 @@ isneginf = _wraps(np.isneginf)(lambda x: _isposneginf(-inf, x)) @_wraps(np.isnan) def isnan(x): _check_arraylike("isnan", x) - return lax.bitwise...
Switch implementation of jnp.isnan(x) to x != x.
diff --git a/lib/jsdom/level2/style.js b/lib/jsdom/level2/style.js index <HASH>..<HASH> 100644 --- a/lib/jsdom/level2/style.js +++ b/lib/jsdom/level2/style.js @@ -62,7 +62,7 @@ module.exports = core => { StyleSheetList.prototype.__proto__ = Array.prototype; StyleSheetList.prototype.item = function item(i) { - ...
Make StyleSheetList.prototype.item correctly return null when appropriate Per spec, "If there is no indexth object in the collection, then the method must return null."
diff --git a/Classes/Flowpack/SimpleSearch/Domain/Service/SqLiteIndex.php b/Classes/Flowpack/SimpleSearch/Domain/Service/SqLiteIndex.php index <HASH>..<HASH> 100644 --- a/Classes/Flowpack/SimpleSearch/Domain/Service/SqLiteIndex.php +++ b/Classes/Flowpack/SimpleSearch/Domain/Service/SqLiteIndex.php @@ -39,6 +39,7 @@ cla...
BUGFIX: storageFolder is set again The storage folder was not set since the las commit. This is fixed now.
diff --git a/tests/HTMLPurifier/AttrTransform/NameSyncTest.php b/tests/HTMLPurifier/AttrTransform/NameSyncTest.php index <HASH>..<HASH> 100644 --- a/tests/HTMLPurifier/AttrTransform/NameSyncTest.php +++ b/tests/HTMLPurifier/AttrTransform/NameSyncTest.php @@ -8,7 +8,7 @@ class HTMLPurifier_AttrTransform_NameSyncTest ext...
Fix bad configuration call in NameSyncTest.php.
diff --git a/pandas/tests/io/test_html.py b/pandas/tests/io/test_html.py index <HASH>..<HASH> 100644 --- a/pandas/tests/io/test_html.py +++ b/pandas/tests/io/test_html.py @@ -123,7 +123,7 @@ class TestReadHtml: @tm.network def test_banklist_url_positional_match(self): - url = "http://www.fdic.gov/ban...
CI/TST: use https to avoid ResourceWarning in html tests (#<I>)
diff --git a/spec/stream.spec.js b/spec/stream.spec.js index <HASH>..<HASH> 100644 --- a/spec/stream.spec.js +++ b/spec/stream.spec.js @@ -97,7 +97,7 @@ describe("Streaming Queries", function() { }); - it.skip("should return the initial result", function() { + it("should return the initial result", function() ...
skipping streaming tests on ie9
diff --git a/javascript/firefox-driver/js/syntheticMouse.js b/javascript/firefox-driver/js/syntheticMouse.js index <HASH>..<HASH> 100644 --- a/javascript/firefox-driver/js/syntheticMouse.js +++ b/javascript/firefox-driver/js/syntheticMouse.js @@ -312,7 +312,7 @@ SyntheticMouse.prototype.click = function(target) { ...
firefox: fix log message to say we click on parent element first
diff --git a/src/edeposit/amqp/calibre/calibre.py b/src/edeposit/amqp/calibre/calibre.py index <HASH>..<HASH> 100755 --- a/src/edeposit/amqp/calibre/calibre.py +++ b/src/edeposit/amqp/calibre/calibre.py @@ -51,7 +51,7 @@ def convert(input_format, output_format, b64_data): Returns: ConversionResponse: na...
Removed test output, added comment.
diff --git a/rapidoid-commons/src/main/java/org/rapidoid/config/RapidoidInitializer.java b/rapidoid-commons/src/main/java/org/rapidoid/config/RapidoidInitializer.java index <HASH>..<HASH> 100644 --- a/rapidoid-commons/src/main/java/org/rapidoid/config/RapidoidInitializer.java +++ b/rapidoid-commons/src/main/java/org/ra...
Fixed synchronization bug in the initializer.
diff --git a/cloud_blobstore/gs.py b/cloud_blobstore/gs.py index <HASH>..<HASH> 100644 --- a/cloud_blobstore/gs.py +++ b/cloud_blobstore/gs.py @@ -3,6 +3,7 @@ import binascii import datetime import typing +from google.api_core.exceptions import NotFound from google.cloud.exceptions import NotFound from google.clo...
Bypass get_blob convenience wrapper See <URL>) race conditions and 2) unnecessary API calls. This just attempts to download the blob directly without two requests, and returns BlobNotFoundError if the download fails.
diff --git a/src/react/get-children.js b/src/react/get-children.js index <HASH>..<HASH> 100644 --- a/src/react/get-children.js +++ b/src/react/get-children.js @@ -1,9 +1,13 @@ import React from 'react'; +function isChildSwiperSlide(child) { + return child.type && child.type.displayName.includes('SwiperSlide'); +} +...
feat(react): Allow SwiperSlide children as long as displayName includes SwiperSlide (#<I>) Refactor getChildren to return all child components whose names contains SwiperSlide to allow for custom components in Swiper that do not have a displayName of SwiperSlide. Adds helper function isChildSwiperSlide(child) to chec...
diff --git a/tests/MarkupAssertionsTraitTest.php b/tests/MarkupAssertionsTraitTest.php index <HASH>..<HASH> 100644 --- a/tests/MarkupAssertionsTraitTest.php +++ b/tests/MarkupAssertionsTraitTest.php @@ -105,6 +105,15 @@ class MarkupAssertionsTraitTest extends TestCase ); } + public function testAsser...
Add another selector test to see if #<I> impacts that as well (it doesn't)
diff --git a/mobly/test_runner.py b/mobly/test_runner.py index <HASH>..<HASH> 100644 --- a/mobly/test_runner.py +++ b/mobly/test_runner.py @@ -35,7 +35,7 @@ from mobly import signals from mobly import utils -def main(): +def main(argv=None): """Execute the test class in a test module. This is the defau...
Allow passing argv to main directly. (#<I>) * Allow passing argv to main directly.
diff --git a/src/main/java/org/junit/runners/model/InitializationError.java b/src/main/java/org/junit/runners/model/InitializationError.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/junit/runners/model/InitializationError.java +++ b/src/main/java/org/junit/runners/model/InitializationError.java @@ -36,4 +36,...
Give InitializationError a useful message. JUnit itself does not use the message, but having a useful message makes debugging runners easier.
diff --git a/console/commands/migrate.php b/console/commands/migrate.php index <HASH>..<HASH> 100644 --- a/console/commands/migrate.php +++ b/console/commands/migrate.php @@ -277,11 +277,10 @@ $console $file = $input->getArgument('file'); $console->loadFramework(); $db...
added db:dump task
diff --git a/src/Canvas.js b/src/Canvas.js index <HASH>..<HASH> 100644 --- a/src/Canvas.js +++ b/src/Canvas.js @@ -549,8 +549,8 @@ Canvas.prototype.drawImage = function( aSource, destX, destY, destWidth, destHei destWidth = Math.min( this._canvasContext.canvas.width, destWidth ); destHeight = Math.m...
replaced var declaration with const declaration
diff --git a/src/RendererPlugin.js b/src/RendererPlugin.js index <HASH>..<HASH> 100644 --- a/src/RendererPlugin.js +++ b/src/RendererPlugin.js @@ -7,6 +7,12 @@ class RendererPlugin { constructor() { this._objects = []; + + /** + * Используется для обозначения типа плагина + * @type...
Add type field to RendererPlugin for better understanding
diff --git a/pwnypack/shellcode/translate.py b/pwnypack/shellcode/translate.py index <HASH>..<HASH> 100644 --- a/pwnypack/shellcode/translate.py +++ b/pwnypack/shellcode/translate.py @@ -128,6 +128,22 @@ def translate(env, func, *args, **kwargs): else: value[index] = new_value + e...
Support in-place add/subtract on registers.
diff --git a/libs/options.js b/libs/options.js index <HASH>..<HASH> 100644 --- a/libs/options.js +++ b/libs/options.js @@ -24,8 +24,6 @@ function parseOptions(opts) { opts = extend(defaults, opts); - if (opts.verbose) console.log(opts); - if (os.platform() === 'win32') { opts.pipeFileToMaste...
we don't care of what we don't need
diff --git a/elasticsearch-transport/spec/spec_helper.rb b/elasticsearch-transport/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/elasticsearch-transport/spec/spec_helper.rb +++ b/elasticsearch-transport/spec/spec_helper.rb @@ -18,16 +18,22 @@ def jruby? RUBY_PLATFORM =~ /\bjava\b/ end +# The names of the ...
[CLIENT] Add documentation to spec_helper methods
diff --git a/test/data/test_field.py b/test/data/test_field.py index <HASH>..<HASH> 100644 --- a/test/data/test_field.py +++ b/test/data/test_field.py @@ -1,4 +1,6 @@ from unittest import TestCase + +import six import torchtext.data as data @@ -94,7 +96,7 @@ class TestField(TestCase): assert data.get_tok...
SpaCy tok only takes unicode, so convert with six
diff --git a/src/DbalDataProvider.php b/src/DbalDataProvider.php index <HASH>..<HASH> 100644 --- a/src/DbalDataProvider.php +++ b/src/DbalDataProvider.php @@ -158,6 +158,29 @@ class DbalDataProvider extends DataProvider public function filter($fieldName, $operator, $value) { + switch ($operator) { +...
Update DbalDataProvider.php Convert operator strings to SQL
diff --git a/tests/test_tasker.py b/tests/test_tasker.py index <HASH>..<HASH> 100644 --- a/tests/test_tasker.py +++ b/tests/test_tasker.py @@ -486,11 +486,11 @@ def test_retry_generator(exc, in_init, retry_times): error_message = 'cmd_error' if retry_times >= 0: - with pytest.raises(RetryGenerato...
Rename conflicting var in test context manager
diff --git a/bin/test-browser.js b/bin/test-browser.js index <HASH>..<HASH> 100755 --- a/bin/test-browser.js +++ b/bin/test-browser.js @@ -166,7 +166,7 @@ function startTest() { if (err) { clearInterval(interval); testError(err); - } else if (results.completed) { + } else if...
(#<I>) - Fail early when running browser tests on saucelabs
diff --git a/netdiff/parsers/olsr.py b/netdiff/parsers/olsr.py index <HASH>..<HASH> 100644 --- a/netdiff/parsers/olsr.py +++ b/netdiff/parsers/olsr.py @@ -25,6 +25,8 @@ class OlsrParser(BaseParser): cost = link["tcEdgeCost"] except KeyError as e: raise NetParserException('...
Corrected weight in OlsrParser
diff --git a/src/Decorator/JaegerConnectionDecorator.php b/src/Decorator/JaegerConnectionDecorator.php index <HASH>..<HASH> 100644 --- a/src/Decorator/JaegerConnectionDecorator.php +++ b/src/Decorator/JaegerConnectionDecorator.php @@ -26,10 +26,10 @@ class JaegerConnectionDecorator extends AbstractConnectionDecorator ...
Fix return type for Connection::connect() Method must return `bool` according to phpdoc in `Doctrine\DBAL\Connection::connect()` > @return bool TRUE if the connection was successfully established, FALSE if the connection is already open. Missed return bool leads to type error while this package used with `doctrine...
diff --git a/fructose/index.js b/fructose/index.js index <HASH>..<HASH> 100644 --- a/fructose/index.js +++ b/fructose/index.js @@ -7,4 +7,4 @@ AppRegistry.registerComponent("storybooknative", () => Fructose(getStories, { platform: "native" }) ); -export default Fructose(getStories); +export default Fructose(getSt...
fix: adding the relevant config to allow expo to work with fructose app (#<I>) * fix: adding the relevant config to allow expo to work with fructose app
diff --git a/lib/discordrb/data.rb b/lib/discordrb/data.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/data.rb +++ b/lib/discordrb/data.rb @@ -222,6 +222,17 @@ module Discordrb @server.role(role_id.to_i) end end + + # Update this member's voice state + # @note For internal use only. + ...
Create a caching method to update a user's voice state
diff --git a/lang/en/resource.php b/lang/en/resource.php index <HASH>..<HASH> 100644 --- a/lang/en/resource.php +++ b/lang/en/resource.php @@ -85,6 +85,7 @@ $string['resourcetypedirectory'] = 'Display a directory'; $string['resourcetypefile'] = 'Link to a file or web site'; $string['resourcetypehtml'] = 'Compose a we...
Added string for adding links to repositories
diff --git a/bus/rabbitmq/correlator.js b/bus/rabbitmq/correlator.js index <HASH>..<HASH> 100644 --- a/bus/rabbitmq/correlator.js +++ b/bus/rabbitmq/correlator.js @@ -5,12 +5,15 @@ var events = require('events'), path = require('path'), Promise = require('bluebird'), util = require('util'); +var warn = r...
added warning to clarify how to use with cluster
diff --git a/api/src/main/java/org/cache2k/EntryRefreshController.java b/api/src/main/java/org/cache2k/EntryRefreshController.java index <HASH>..<HASH> 100644 --- a/api/src/main/java/org/cache2k/EntryRefreshController.java +++ b/api/src/main/java/org/cache2k/EntryRefreshController.java @@ -27,7 +27,7 @@ package org.cac...
fix for API compatibility to <I>
diff --git a/pymatgen/analysis/phase_diagram.py b/pymatgen/analysis/phase_diagram.py index <HASH>..<HASH> 100644 --- a/pymatgen/analysis/phase_diagram.py +++ b/pymatgen/analysis/phase_diagram.py @@ -443,12 +443,10 @@ class BasePhaseDiagram(MSONable): Returns: The actual ndarray used to construct t...
clean: remove for-loop for list comp
diff --git a/cmd/bucket-policy-parser.go b/cmd/bucket-policy-parser.go index <HASH>..<HASH> 100644 --- a/cmd/bucket-policy-parser.go +++ b/cmd/bucket-policy-parser.go @@ -23,7 +23,6 @@ import ( "errors" "fmt" "io" - "path" "sort" "strings" @@ -224,7 +223,7 @@ func resourcePrefix(resource string) string { ...
Avoid path-cleaning policy resources for a better compliance with S3 (#<I>)
diff --git a/cast_test.go b/cast_test.go index <HASH>..<HASH> 100644 --- a/cast_test.go +++ b/cast_test.go @@ -1006,9 +1006,12 @@ func TestToDurationSliceE(t *testing.T) { {[]string{"1s", "1m"}, []time.Duration{time.Second, time.Minute}, false}, {[]int{1, 2}, []time.Duration{1, 2}, false}, {[]interface{}{1, 3}...
Add TestToDurationSliceE cases to reach <I>% coverage
diff --git a/geomdl/_exchange.py b/geomdl/_exchange.py index <HASH>..<HASH> 100644 --- a/geomdl/_exchange.py +++ b/geomdl/_exchange.py @@ -373,7 +373,7 @@ def export_dict_surf(obj): # Trim curves if obj.trims: trim_data = dict(count=len(obj.trims)) - trim_curve_typemap = dict(spline=export_dic...
Add support for analytic geometry types
diff --git a/sos/plugins/npm.py b/sos/plugins/npm.py index <HASH>..<HASH> 100644 --- a/sos/plugins/npm.py +++ b/sos/plugins/npm.py @@ -19,7 +19,6 @@ class Npm(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin, SuSEPlugin): Get info about available npm modules """ - requires_root = False plugin_name =...
[npm] plugin to requires_root Until our utils support commands execution for unpriviledged users, we should disable requires_root = False. Resolves: #<I>
diff --git a/examples/asitvd.js b/examples/asitvd.js index <HASH>..<HASH> 100644 --- a/examples/asitvd.js +++ b/examples/asitvd.js @@ -5,6 +5,7 @@ const exports = {}; import './asitvd.css'; import ngeoSourceAsitVD from 'ngeo/source/AsitVD.js'; +import EPSG21781 from 'ngeo/proj/EPSG21781.js'; import olMap from 'o...
Set projection to view in asitvd example
diff --git a/swiftwind/core/templatetags/banking.py b/swiftwind/core/templatetags/banking.py index <HASH>..<HASH> 100644 --- a/swiftwind/core/templatetags/banking.py +++ b/swiftwind/core/templatetags/banking.py @@ -22,7 +22,7 @@ def currency(value): locale_values = [] for money in value.monies(): ...
Fixes for currency rendering (needs reworking down the line)
diff --git a/dbussy.py b/dbussy.py index <HASH>..<HASH> 100644 --- a/dbussy.py +++ b/dbussy.py @@ -1361,6 +1361,7 @@ def _loop_attach(self, loop, dispatch) : toggled_function = handle_timeout_toggled, data = None ) + self = None # avoid circularity #end _loop_attach class Connection :
avoid memory leaks due to circular refs
diff --git a/lib/ProMotion/table/extensions/longpressable.rb b/lib/ProMotion/table/extensions/longpressable.rb index <HASH>..<HASH> 100644 --- a/lib/ProMotion/table/extensions/longpressable.rb +++ b/lib/ProMotion/table/extensions/longpressable.rb @@ -18,7 +18,7 @@ module ProMotion gesture_point = gesture.locat...
Forgot this one cell_at index_path.
diff --git a/velbus/controller.py b/velbus/controller.py index <HASH>..<HASH> 100644 --- a/velbus/controller.py +++ b/velbus/controller.py @@ -102,8 +102,13 @@ class Controller(object): """ time.sleep(3) logging.info('Scan finished') - callback() - + self._nb...
try to load all modules as part of scan
diff --git a/lib/ronin/ui/command_line/engine_command.rb b/lib/ronin/ui/command_line/engine_command.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/ui/command_line/engine_command.rb +++ b/lib/ronin/ui/command_line/engine_command.rb @@ -43,30 +43,6 @@ module Ronin :method => :licensed_unde...
Removed an unneeded initialize.
diff --git a/python/kmeans.py b/python/kmeans.py index <HASH>..<HASH> 100644 --- a/python/kmeans.py +++ b/python/kmeans.py @@ -46,11 +46,12 @@ kPoints = array(X.take(k)) for i in range(len(kPoints)): kPoints[i] = kPoints[i] - mean(kPoints[i]) -convergeDist = 0.001 +convergeDist = 0.01 tempDist = 1.0 iteration =...
Added stop based on mxIterations
diff --git a/providers/nodebb/category.js b/providers/nodebb/category.js index <HASH>..<HASH> 100644 --- a/providers/nodebb/category.js +++ b/providers/nodebb/category.js @@ -230,7 +230,7 @@ exports.bindCategory = function bindCategory(forum) { * Add a topic to this category * * @public - ...
chore: Fix trailing space in jsdoc because eslint hates my jsdoc template
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ setup( name="paperwork-backend", # if you change the version, don't forget to # * update the ChangeLog file + # * update the download_url in this file version="1.1.2", description=( ...
setup.py: Update download url
diff --git a/bin/publish.js b/bin/publish.js index <HASH>..<HASH> 100644 --- a/bin/publish.js +++ b/bin/publish.js @@ -98,9 +98,13 @@ function getNextBetaVersion(packageJson) { process.exit(1); } const tag = 'beta'; - // const stableVersion = packageJson.version.split('.'); - // const nextStableVersion = `...
Fix publishing addons as xterm
diff --git a/test/app/models/thing.rb b/test/app/models/thing.rb index <HASH>..<HASH> 100644 --- a/test/app/models/thing.rb +++ b/test/app/models/thing.rb @@ -1,2 +1,3 @@ class Thing < ActiveRecord::Base + belongs_to :person end diff --git a/test/test/functional/things_controller_test.rb b/test/test/functional/thing...
Nicer, but still not passing, tests. git-svn-id: <URL>
diff --git a/it/it-tests/src/test/java/it/ui/UiTest.java b/it/it-tests/src/test/java/it/ui/UiTest.java index <HASH>..<HASH> 100644 --- a/it/it-tests/src/test/java/it/ui/UiTest.java +++ b/it/it-tests/src/test/java/it/ui/UiTest.java @@ -23,6 +23,7 @@ import com.sonar.orchestrator.Orchestrator; import com.sonar.orchestra...
Temporary disable IT to allow <I>-RC1 to be released
diff --git a/test/integration/022_bigquery_test/test_simple_bigquery_view.py b/test/integration/022_bigquery_test/test_simple_bigquery_view.py index <HASH>..<HASH> 100644 --- a/test/integration/022_bigquery_test/test_simple_bigquery_view.py +++ b/test/integration/022_bigquery_test/test_simple_bigquery_view.py @@ -52,7 ...
Update bq integration test's expected number of models
diff --git a/test/index.js b/test/index.js index <HASH>..<HASH> 100644 --- a/test/index.js +++ b/test/index.js @@ -24,6 +24,7 @@ describe('Hapi-Sequelized', function () { pass: 'dbPass', // db password dialect: 'sqlite', // database type port: 8889, // database port # + storage: 'test....
Updating test case for storage option Updating the test case for storage option for sqlite dialect.
diff --git a/lib/ronin/wordlist.rb b/lib/ronin/wordlist.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/wordlist.rb +++ b/lib/ronin/wordlist.rb @@ -23,6 +23,8 @@ module Ronin # # An Enumerable class for iterating over wordlist files or lists of words. # + # @since 0.4.0 + # class Wordlist include En...
Added a @since tag to Wordlist.
diff --git a/okio/src/main/java/okio/Segment.java b/okio/src/main/java/okio/Segment.java index <HASH>..<HASH> 100644 --- a/okio/src/main/java/okio/Segment.java +++ b/okio/src/main/java/okio/Segment.java @@ -32,7 +32,7 @@ package okio; */ final class Segment { /** The size of all segments in bytes. */ - static fi...
Try 8 KiB segments. We've heard reports that this dramatically increases throughput for some applications.
diff --git a/wily/cache.py b/wily/cache.py index <HASH>..<HASH> 100644 --- a/wily/cache.py +++ b/wily/cache.py @@ -106,6 +106,8 @@ def store(config, archiver, revision, stats): logger.debug(f"Creating {revision.key} output") filename = root / (revision.key + ".json") + if filename.exists(): + rais...
put a guard against overwritting the cache files
diff --git a/src/Listener/EntityChangedListener.php b/src/Listener/EntityChangedListener.php index <HASH>..<HASH> 100644 --- a/src/Listener/EntityChangedListener.php +++ b/src/Listener/EntityChangedListener.php @@ -97,7 +97,7 @@ class EntityChangedListener $mutated_fields = $this->meta_mutation_provide...
Changed info() logging to debug()
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ requires = [] setup( name='skosprovider', - version='0.2.1a1', + version='0.2.1', description='Abstraction layer for SKOS vocabularies.', long_description=open('README.rst').read() + '\n\...
Bumpt to version <I>.
diff --git a/tests/integration/deploy/test_deploy_command.py b/tests/integration/deploy/test_deploy_command.py index <HASH>..<HASH> 100644 --- a/tests/integration/deploy/test_deploy_command.py +++ b/tests/integration/deploy/test_deploy_command.py @@ -639,7 +639,7 @@ to create a managed default bucket, or run sam deploy...
Fixed Stack Name (#<I>)
diff --git a/src/widgets/ForceVerificationBlock.php b/src/widgets/ForceVerificationBlock.php index <HASH>..<HASH> 100644 --- a/src/widgets/ForceVerificationBlock.php +++ b/src/widgets/ForceVerificationBlock.php @@ -69,6 +69,10 @@ class ForceVerificationBlock extends Widget return null; } + ...
hide verification block if client is owner of object
diff --git a/gpiozero/input_devices.py b/gpiozero/input_devices.py index <HASH>..<HASH> 100644 --- a/gpiozero/input_devices.py +++ b/gpiozero/input_devices.py @@ -149,8 +149,8 @@ class WaitableInputDevice(InputDevice): This can be set to a function which accepts no (mandatory) parameters, or a Python ...
Fix speling and grandma mistakes Several in WaitableInputDevice's attribute docstrings.