diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js b/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js index <HASH>..<HASH> 100644 --- a/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js +++ b/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js @@ -4...
MDL-<I> fix JS error when moodlenolink button not present in toolbar Thanks Rossiani Wijaya for discovering this issue!
diff --git a/google-api-client/src/main/java/com/google/api/client/googleapis/auth/oauth2/OAuth2Utils.java b/google-api-client/src/main/java/com/google/api/client/googleapis/auth/oauth2/OAuth2Utils.java index <HASH>..<HASH> 100644 --- a/google-api-client/src/main/java/com/google/api/client/googleapis/auth/oauth2/OAuth2...
Mark OAuth2Utils as Beta It isn't really meant to be used generally, but needs to be exposed for the different components to reuse code.
diff --git a/visidata/settings.py b/visidata/settings.py index <HASH>..<HASH> 100644 --- a/visidata/settings.py +++ b/visidata/settings.py @@ -308,8 +308,8 @@ def loadConfigAndPlugins(vd, args): options.visidata_dir = args.visidata_dir or os.getenv('VD_DIR', '') or options.visidata_dir options.config = args.c...
[plugins-] sys.path needs str #<I>
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -9,19 +9,16 @@ var normalizeArgs = require('./normalize-args'); module.exports = function (opts) { opts = normalizeArgs(arguments); - var cliPath; - var location; + var cliPath = resolveSync(opts.path, process.cwd()); + v...
return null from `resolveSync` instead of throwing an error
diff --git a/src/primitives/a-tube.js b/src/primitives/a-tube.js index <HASH>..<HASH> 100644 --- a/src/primitives/a-tube.js +++ b/src/primitives/a-tube.js @@ -15,7 +15,7 @@ module.exports.Primitive = AFRAME.registerPrimitive('a-tube', { path: 'tube.path', segments: 'tube.segments', radius...
[a-tube] Fix primitive and update issues. (fixes #<I>, #<I>)
diff --git a/swim/heal_via_discover_provider.go b/swim/heal_via_discover_provider.go index <HASH>..<HASH> 100644 --- a/swim/heal_via_discover_provider.go +++ b/swim/heal_via_discover_provider.go @@ -131,7 +131,6 @@ func (h *discoverProviderHealer) Heal() ([]string, error) { } h.previousHostListSize = len(hostList...
Don’t change the hostlist in place to prevent race conditions when a discovery provider returns the reference to a static hostlist. (#<I>)
diff --git a/lib/fog/aws/requests/rds/describe_db_instances.rb b/lib/fog/aws/requests/rds/describe_db_instances.rb index <HASH>..<HASH> 100644 --- a/lib/fog/aws/requests/rds/describe_db_instances.rb +++ b/lib/fog/aws/requests/rds/describe_db_instances.rb @@ -58,7 +58,7 @@ module Fog end ...
fix for RDS mocking to avoid state flipping between "modifying" and "available"
diff --git a/everest/entities/aggregates.py b/everest/entities/aggregates.py index <HASH>..<HASH> 100644 --- a/everest/entities/aggregates.py +++ b/everest/entities/aggregates.py @@ -168,18 +168,14 @@ class OrmAggregate(Aggregate): return ent def iterator(self): - if not self._relationship is Non...
Optimized OrmAggregate.iterator.
diff --git a/app/lib/actions/katello/repository/import_upload.rb b/app/lib/actions/katello/repository/import_upload.rb index <HASH>..<HASH> 100644 --- a/app/lib/actions/katello/repository/import_upload.rb +++ b/app/lib/actions/katello/repository/import_upload.rb @@ -13,6 +13,10 @@ module Actions plan_action(...
Fixes #<I> - Handle bad upload errors (#<I>)
diff --git a/src/mako/session/Session.php b/src/mako/session/Session.php index <HASH>..<HASH> 100644 --- a/src/mako/session/Session.php +++ b/src/mako/session/Session.php @@ -198,7 +198,7 @@ class Session protected function generateId() { - return md5(UUID::v4()); + return sha1(UUID::v4() . uniqid('session', tr...
Added more randomness to session IDs
diff --git a/test/host/node_loader.js b/test/host/node_loader.js index <HASH>..<HASH> 100644 --- a/test/host/node_loader.js +++ b/test/host/node_loader.js @@ -42,12 +42,15 @@ global.gpfSourcesPath = "../../src/"; } - if ("release" === global.version) { + if (options.release) { + console.log...
Implemented version switch was not working...
diff --git a/Gemfile b/Gemfile index <HASH>..<HASH> 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ source "https://rubygems.org" -# Specify your gem"s dependencies in sensu-transport.gemspec +# Specify your gem's dependencies in sensu-transport.gemspec gemspec diff --git a/lib/sensu/transport/base.rb b/lib/sens...
[redis-transport] updated transport api reconnect() to include force param
diff --git a/event/event.js b/event/event.js index <HASH>..<HASH> 100644 --- a/event/event.js +++ b/event/event.js @@ -56,7 +56,7 @@ $.ready = function() { }; // If Mozilla is used -if ( $.browser == "mozilla" ) { +if ( $.browser == "mozilla" || $.browser == "opera" ) { // Use the handy event callback document....
DOMContentLoaded works in Opera 9b2+, so I have it firing for that now too - the means that there is a DOM Ready solution for every major browser! (Older version of Opera simply fallback to window.onload)
diff --git a/runtests.py b/runtests.py index <HASH>..<HASH> 100644 --- a/runtests.py +++ b/runtests.py @@ -30,6 +30,7 @@ if not settings.configured: ROOT_URLCONF='allaccess.tests.urls', LOGIN_URL='/login/', LOGIN_REDIRECT_URL='/', + USE_TZ=True, )
Ensure tests are run with timezone support active. Currently passes without any warnings. Fixes #<I>
diff --git a/src/lib/skemer.js b/src/lib/skemer.js index <HASH>..<HASH> 100644 --- a/src/lib/skemer.js +++ b/src/lib/skemer.js @@ -55,7 +55,7 @@ function shouldReplace(context) { * new value or a default value. Otherwise, the new value */ function setValueToType(context) { - var t, value; + var t, value, ...
- Fixed duplicated var declaration
diff --git a/src/mustache_core.js b/src/mustache_core.js index <HASH>..<HASH> 100644 --- a/src/mustache_core.js +++ b/src/mustache_core.js @@ -26,7 +26,7 @@ var canReflect = require("can-reflect"); // ## Helpers -var mustacheLineBreakRegExp = /(?:(^|(?:\r?)\n)(\s*)(\{\{([\s\S]*)\}\}\}?)([^\S\n\r]*)($|\r?\n))|(\{\{...
ungroup carriage return at beginning of mustacheLineBreakRegExp
diff --git a/packages/react-impression/src/components/Popover/Popover.js b/packages/react-impression/src/components/Popover/Popover.js index <HASH>..<HASH> 100644 --- a/packages/react-impression/src/components/Popover/Popover.js +++ b/packages/react-impression/src/components/Popover/Popover.js @@ -153,6 +153,7 @@ expor...
fix popover (#<I>)
diff --git a/edc_notification/settings.py b/edc_notification/settings.py index <HASH>..<HASH> 100644 --- a/edc_notification/settings.py +++ b/edc_notification/settings.py @@ -10,7 +10,10 @@ APP_NAME = 'edc_notification' env = environ.Env() -ENVFILE = os.environ['ENVFILE'] or 'env.sample' +try: + ENVFILE = os.en...
refer to env.sample in travis tests
diff --git a/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBaseContentFields.php b/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBaseContentFields.php index <HASH>..<HASH> 100644 --- a/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBaseContentFields.php +++ b/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBas...
EZP-<I>: Skipped empty object state groups during indexing (#<I>)
diff --git a/libraries/common/components/Image/style.js b/libraries/common/components/Image/style.js index <HASH>..<HASH> 100644 --- a/libraries/common/components/Image/style.js +++ b/libraries/common/components/Image/style.js @@ -24,6 +24,9 @@ const image = css({ * Before there was a left:50%, translateX(-50%) hac...
PWA-<I> - even better comment
diff --git a/wire/msgtx.go b/wire/msgtx.go index <HASH>..<HASH> 100644 --- a/wire/msgtx.go +++ b/wire/msgtx.go @@ -314,6 +314,21 @@ func (msg *MsgTx) TxHash() chainhash.Hash { return chainhash.DoubleHashH(buf.Bytes()) } +// WitnessHash generates the hash of the transaction serialized according to +// the new witne...
BIP<I>+wire: add a WitnessHash method to tx
diff --git a/spec/unit/knife/bootstrap_spec.rb b/spec/unit/knife/bootstrap_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/knife/bootstrap_spec.rb +++ b/spec/unit/knife/bootstrap_spec.rb @@ -1661,7 +1661,7 @@ describe Chef::Knife::Bootstrap do before do Chef::Config[:validation_key] = "/blah" ...
Relax the match for validation key path Because we expand the path to the validation key, the exact match of "/blah" under Windows was failing, because it expanded to "C:/blah"
diff --git a/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/startup/SipHostConfig.java b/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/startup/SipHostConfig.java index <HASH>..<HASH> 100644 --- a/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/startup/SipHostConfig.java +++ b/sip-servle...
Fix for exploded directory deployment in Tomcat provided by Thomas Lenesey from Nexcom Systems git-svn-id: <URL>
diff --git a/benchexec/tools/ultimate.py b/benchexec/tools/ultimate.py index <HASH>..<HASH> 100644 --- a/benchexec/tools/ultimate.py +++ b/benchexec/tools/ultimate.py @@ -131,7 +131,7 @@ class UltimateTool(benchexec.tools.template.BaseTool): launcher_jar = os.path.join(ultimatedir, jar) if os....
more verbosity for launcher jar error
diff --git a/pyodesys/tests/test_symbolic.py b/pyodesys/tests/test_symbolic.py index <HASH>..<HASH> 100644 --- a/pyodesys/tests/test_symbolic.py +++ b/pyodesys/tests/test_symbolic.py @@ -395,7 +395,7 @@ def test_long_chain_banded_scipy(n): min_time_band = min(min_time_band, time_band) check(yout_dens[-1, ...
add safety factor for timings in test suite
diff --git a/tests/test_goea_statsmodels.py b/tests/test_goea_statsmodels.py index <HASH>..<HASH> 100755 --- a/tests/test_goea_statsmodels.py +++ b/tests/test_goea_statsmodels.py @@ -18,7 +18,7 @@ def test_goea_statsmodels(log=sys.stdout): prt_if = lambda nt: nt.p_uncorrected < 0.0005 ## These will specify to...
Add multiple-test method, FDR adaptive Gavrilov-Benjamini-Sarkar to tests.
diff --git a/src/Schema/Generators/SchemaGenerator.php b/src/Schema/Generators/SchemaGenerator.php index <HASH>..<HASH> 100644 --- a/src/Schema/Generators/SchemaGenerator.php +++ b/src/Schema/Generators/SchemaGenerator.php @@ -10,7 +10,7 @@ class SchemaGenerator * @param string $version * @return boolean ...
revert to introspection <I>
diff --git a/packages/site/pages/core/motion.js b/packages/site/pages/core/motion.js index <HASH>..<HASH> 100644 --- a/packages/site/pages/core/motion.js +++ b/packages/site/pages/core/motion.js @@ -181,15 +181,15 @@ const Travel = _ => ( } .pill1 { width: 50%; - animation: 3000ms 500ms in...
refactor(site): add more time to motion travel example
diff --git a/spec/acceptance/neovim-ruby-host_spec.rb b/spec/acceptance/neovim-ruby-host_spec.rb index <HASH>..<HASH> 100644 --- a/spec/acceptance/neovim-ruby-host_spec.rb +++ b/spec/acceptance/neovim-ruby-host_spec.rb @@ -34,7 +34,7 @@ RSpec.describe "neovim-ruby-host" do # Start the remote host host_nvim....
Add extra sleep to acceptance test to debug travis failures
diff --git a/lib/gym/options.rb b/lib/gym/options.rb index <HASH>..<HASH> 100644 --- a/lib/gym/options.rb +++ b/lib/gym/options.rb @@ -122,6 +122,11 @@ module Gym conflict_block: proc do |value| UI.user_error!("'#{value.key}' must be false to...
adding option to just export ipa from archive_path
diff --git a/src/com/caverock/androidsvg/SVGImageView.java b/src/com/caverock/androidsvg/SVGImageView.java index <HASH>..<HASH> 100644 --- a/src/com/caverock/androidsvg/SVGImageView.java +++ b/src/com/caverock/androidsvg/SVGImageView.java @@ -76,6 +76,9 @@ public class SVGImageView extends ImageView private v...
Don't perform SVGImageView initialisation if View is in edit mode.
diff --git a/src/Provider.php b/src/Provider.php index <HASH>..<HASH> 100644 --- a/src/Provider.php +++ b/src/Provider.php @@ -619,7 +619,7 @@ class Provider ); } }, - function () use ($metadataPrefix) { + function () use (&$metadataPrefix) { ...
Set $metadataPrefix in getRecordListParams() Since the value is set in a closure, it must be passed by reference
diff --git a/leveldb/external_test.go b/leveldb/external_test.go index <HASH>..<HASH> 100644 --- a/leveldb/external_test.go +++ b/leveldb/external_test.go @@ -36,7 +36,7 @@ var _ = testutil.Defer(func() { testutil.DoDBTesting(&t) db.TestClose() done <- true - }, 9.0) + }, 20.0) }) Describe("r...
leveldb: Increase 'write test' timeout to <I> secs
diff --git a/packages/ws/src/Ws/Services/ExtService.php b/packages/ws/src/Ws/Services/ExtService.php index <HASH>..<HASH> 100644 --- a/packages/ws/src/Ws/Services/ExtService.php +++ b/packages/ws/src/Ws/Services/ExtService.php @@ -51,13 +51,14 @@ class ExtService extends BaseSunat private function processRespons...
Preserve original code in getStatus
diff --git a/eth_account/hdaccount/__init__.py b/eth_account/hdaccount/__init__.py index <HASH>..<HASH> 100644 --- a/eth_account/hdaccount/__init__.py +++ b/eth_account/hdaccount/__init__.py @@ -13,5 +13,9 @@ def derive_ethereum_key(seed: bytes, account_index: int=0): def seed_from_mnemonic(words: str, passphrase=...
bug: Do proper check of seed words before deriving key
diff --git a/lib/fluent/plugin/out_google_cloud.rb b/lib/fluent/plugin/out_google_cloud.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/plugin/out_google_cloud.rb +++ b/lib/fluent/plugin/out_google_cloud.rb @@ -1236,8 +1236,10 @@ module Fluent {} rescue StandardError => e - @log.error "Failed to set ...
Mute 'Failed to set monitored resource labels for gce_instance' error for GKE On-Prem. (#<I>)
diff --git a/tests/test_pydocstyle.py b/tests/test_pydocstyle.py index <HASH>..<HASH> 100644 --- a/tests/test_pydocstyle.py +++ b/tests/test_pydocstyle.py @@ -7,6 +7,7 @@ registry = violations.ErrorRegistry _disabled_checks = [ 'D202', # No blank lines allowed after function docstring + 'D205', # 1 blank...
disable D<I> in pylint (#<I>)
diff --git a/proso/release.py b/proso/release.py index <HASH>..<HASH> 100644 --- a/proso/release.py +++ b/proso/release.py @@ -1 +1 @@ -VERSION = '3.3.0' +VERSION = '3.4.0.dev'
start working on <I>.dev
diff --git a/server/api.go b/server/api.go index <HASH>..<HASH> 100644 --- a/server/api.go +++ b/server/api.go @@ -86,13 +86,12 @@ func (d dexAPI) UpdateClient(ctx context.Context, req *api.UpdateClientReq) (*ap } err := d.s.UpdateClient(req.Id, func(old storage.Client) (storage.Client, error) { - if req.Redirec...
Update also to a list of empty redirect URIs and Peers
diff --git a/src/MarkerClusterGroup.js b/src/MarkerClusterGroup.js index <HASH>..<HASH> 100644 --- a/src/MarkerClusterGroup.js +++ b/src/MarkerClusterGroup.js @@ -134,7 +134,7 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({ //If we have already clustered we'll need to add this one to a cluster - newCluster = ...
Pass the right zoom level in so that clustering happens at the right scale
diff --git a/src/main/resources/META-INF/resources/primefaces/keyfilter/1-keyfilter.js b/src/main/resources/META-INF/resources/primefaces/keyfilter/1-keyfilter.js index <HASH>..<HASH> 100644 --- a/src/main/resources/META-INF/resources/primefaces/keyfilter/1-keyfilter.js +++ b/src/main/resources/META-INF/resources/prime...
Fix #<I>: Keyfilter prevent drag and drop. (#<I>) * Fix #<I>: Keyfilter prevent drag and drop. * Fix #<I>: Keyfilter prevent drag and drop.
diff --git a/openquake/risklib/asset.py b/openquake/risklib/asset.py index <HASH>..<HASH> 100644 --- a/openquake/risklib/asset.py +++ b/openquake/risklib/asset.py @@ -658,12 +658,9 @@ def build_asset_array(assets_by_site, tagnames=()): elif field in tagnames: value = asset.tagidxs[...
Small cleanup in build_asset_array
diff --git a/saltapi/netapi/rest_cherrypy.py b/saltapi/netapi/rest_cherrypy.py index <HASH>..<HASH> 100644 --- a/saltapi/netapi/rest_cherrypy.py +++ b/saltapi/netapi/rest_cherrypy.py @@ -65,11 +65,10 @@ class LowDataAdapter(object): @cherrypy.tools.json_out() def GET(self): - # FIXME: how to pass a c...
Change root URL command to issue a compound command
diff --git a/distribution/src/test/java/com/orientechnologies/distribution/integration/OIntegrationTestTemplate.java b/distribution/src/test/java/com/orientechnologies/distribution/integration/OIntegrationTestTemplate.java index <HASH>..<HASH> 100644 --- a/distribution/src/test/java/com/orientechnologies/distribution/i...
Incremented timeout for Integration tests
diff --git a/lib/ProMotion/helpers/motion-table/1st/sectioned_table.rb b/lib/ProMotion/helpers/motion-table/1st/sectioned_table.rb index <HASH>..<HASH> 100644 --- a/lib/ProMotion/helpers/motion-table/1st/sectioned_table.rb +++ b/lib/ProMotion/helpers/motion-table/1st/sectioned_table.rb @@ -101,7 +101,7 @@ module ProMot...
Finally accounted for -1 arguments.
diff --git a/lib/commander/runner.rb b/lib/commander/runner.rb index <HASH>..<HASH> 100644 --- a/lib/commander/runner.rb +++ b/lib/commander/runner.rb @@ -66,7 +66,7 @@ module Commander # program :help, 'Copyright', '2008 TJ Holowaychuk' # program :help, 'Anything', 'You want' # program :int_mes...
Misc refactorings to #program
diff --git a/DependencyInjection/RomaricDrigonOrchestraExtension.php b/DependencyInjection/RomaricDrigonOrchestraExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/RomaricDrigonOrchestraExtension.php +++ b/DependencyInjection/RomaricDrigonOrchestraExtension.php @@ -28,7 +28,13 @@ class RomaricDrigonOrc...
Enabled Assetic for our bundle
diff --git a/packages/webiny-app-cms/src/editor/plugins/elementSettings/align/HorizontalAlignAction.js b/packages/webiny-app-cms/src/editor/plugins/elementSettings/align/HorizontalAlignAction.js index <HASH>..<HASH> 100644 --- a/packages/webiny-app-cms/src/editor/plugins/elementSettings/align/HorizontalAlignAction.js +...
Fix horizontal align when alignment options are not defined.
diff --git a/packages/cozy-client/src/cli/index.js b/packages/cozy-client/src/cli/index.js index <HASH>..<HASH> 100644 --- a/packages/cozy-client/src/cli/index.js +++ b/packages/cozy-client/src/cli/index.js @@ -192,4 +192,22 @@ const createClientInteractive = (clientOptions, serverOpts) => { }) } +const main = as...
feat: Add test CLI for createClientInteractive
diff --git a/src/Torann/GeoIP/GeoIP.php b/src/Torann/GeoIP/GeoIP.php index <HASH>..<HASH> 100644 --- a/src/Torann/GeoIP/GeoIP.php +++ b/src/Torann/GeoIP/GeoIP.php @@ -113,8 +113,10 @@ class GeoIP { private function find( $ip = null ) { // Check Session - if ( $ip === null && $position = $this->session->get('geo...
Position object in the session causes bugs, this fixes it. Remove on 2/<I>/<I>
diff --git a/examples/01_empty_window.rb b/examples/01_empty_window.rb index <HASH>..<HASH> 100644 --- a/examples/01_empty_window.rb +++ b/examples/01_empty_window.rb @@ -3,10 +3,10 @@ # http://library.gnome.org/devel/gtk-tutorial/2.90/c39.html # $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib') -req...
Provide a GirFFI#setup method to setup the namespaces.
diff --git a/src/Saxulum/DoctrineMongoDb/Provider/DoctrineMongoDbProvider.php b/src/Saxulum/DoctrineMongoDb/Provider/DoctrineMongoDbProvider.php index <HASH>..<HASH> 100644 --- a/src/Saxulum/DoctrineMongoDb/Provider/DoctrineMongoDbProvider.php +++ b/src/Saxulum/DoctrineMongoDb/Provider/DoctrineMongoDbProvider.php @@ -1...
feat(): Optionally allow the specification of driver options
diff --git a/closure/goog/graphics/canvaselement.js b/closure/goog/graphics/canvaselement.js index <HASH>..<HASH> 100644 --- a/closure/goog/graphics/canvaselement.js +++ b/closure/goog/graphics/canvaselement.js @@ -626,7 +626,8 @@ goog.graphics.CanvasTextElement.prototype.updateText_ = function() { if (this.x1_ == t...
Don't pass the extra parameters of goog.array.map callback to the htmlEscape function. R=chrishenry DELTA=2 (1 added, 0 deleted, 1 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=<I> git-svn-id: <URL>
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -16,14 +16,18 @@ { if ( this.doneFn && this.processes === 1 && this.queue.length === 0 ) { - this.doneFn() + this.doneFn( this.errors.length !== 0 ? this.errors ...
pass errors and results to done callback
diff --git a/src/Artistas/PagSeguroConfig.php b/src/Artistas/PagSeguroConfig.php index <HASH>..<HASH> 100644 --- a/src/Artistas/PagSeguroConfig.php +++ b/src/Artistas/PagSeguroConfig.php @@ -2,7 +2,6 @@ namespace Artistas\PagSeguro; -use Illuminate\Config\Repository as Config; use Illuminate\Log\Writer as Log; u...
Applied fixes from StyleCI (#<I>)
diff --git a/tests/FluentDOMStyleTest.php b/tests/FluentDOMStyleTest.php index <HASH>..<HASH> 100644 --- a/tests/FluentDOMStyleTest.php +++ b/tests/FluentDOMStyleTest.php @@ -54,6 +54,12 @@ class FluentDOMStyleTest extends PHPUnit_Framework_TestCase { $this->assertTrue($items instanceof FluentDOMStyle); $this...
FluentDOMStyleTest: - added: test for reading on a list that includes text nodes
diff --git a/leaflet.photon.js b/leaflet.photon.js index <HASH>..<HASH> 100644 --- a/leaflet.photon.js +++ b/leaflet.photon.js @@ -225,6 +225,7 @@ L.Control.Photon = L.Control.extend({ detailsContainer = L.DomUtil.create('small', '', el), details = []; title.innerHTML = feature.proper...
First shot in displaying OSM type in results (overridable)
diff --git a/umap/umap_.py b/umap/umap_.py index <HASH>..<HASH> 100644 --- a/umap/umap_.py +++ b/umap/umap_.py @@ -2,6 +2,7 @@ # # License: BSD 3 clause from __future__ import print_function +from past.builtins import basestring from warnings import warn import time @@ -1501,10 +1502,19 @@ class UMAP(BaseEstimat...
make sure to raise errors if n_components is string or float
diff --git a/invenio_base/app.py b/invenio_base/app.py index <HASH>..<HASH> 100644 --- a/invenio_base/app.py +++ b/invenio_base/app.py @@ -34,6 +34,7 @@ import click import pkg_resources from flask import Flask from flask.cli import FlaskGroup +from flask.helpers import get_debug_flag from .cmd import instance ...
app: debug state initialization fix * Fixes issue with Flask not setting app.debug until after the application creation, causing e.g. template auto-reloading or Flask-DebugToolbar to not be correctly initialized.
diff --git a/src/deep-security/lib/Token.js b/src/deep-security/lib/Token.js index <HASH>..<HASH> 100644 --- a/src/deep-security/lib/Token.js +++ b/src/deep-security/lib/Token.js @@ -490,7 +490,7 @@ export class Token { * @returns {AWS.CognitoIdentityCredentials} */ get credentials() { - if (!this._creden...
# Fix lambda requests CORS issue
diff --git a/lxd/api_cluster.go b/lxd/api_cluster.go index <HASH>..<HASH> 100644 --- a/lxd/api_cluster.go +++ b/lxd/api_cluster.go @@ -1204,7 +1204,7 @@ func clusterNodesPost(d *Daemon, r *http.Request) response.Response { return response.InternalError(err) } - d.State().Events.SendLifecycle(projectParam(r), lif...
lxd/api/cluster: use 'members' as name for ClusterTokenCreated lifecycle event
diff --git a/lib/jekyll/regenerator.rb b/lib/jekyll/regenerator.rb index <HASH>..<HASH> 100644 --- a/lib/jekyll/regenerator.rb +++ b/lib/jekyll/regenerator.rb @@ -130,7 +130,9 @@ module Jekyll # # Returns nothing. def write_metadata - File.binwrite(metadata_file, Marshal.dump(metadata)) + unles...
Fix #<I>: Make sure that .jekyll-metadata is not generated when not needed.
diff --git a/locator-init/src/main/java/org/talend/esb/locator/server/init/internal/RootNodeInitializer.java b/locator-init/src/main/java/org/talend/esb/locator/server/init/internal/RootNodeInitializer.java index <HASH>..<HASH> 100644 --- a/locator-init/src/main/java/org/talend/esb/locator/server/init/internal/RootNode...
Downgrade message level from error to info.
diff --git a/lib/did_you_mean/tree_spell_checker.rb b/lib/did_you_mean/tree_spell_checker.rb index <HASH>..<HASH> 100644 --- a/lib/did_you_mean/tree_spell_checker.rb +++ b/lib/did_you_mean/tree_spell_checker.rb @@ -4,7 +4,7 @@ module DidYouMean # spell checker for a dictionary that has a tree # structure, see doc...
✂️ 'warning: method redefined; discarding old dimensions'
diff --git a/salt/utils/process.py b/salt/utils/process.py index <HASH>..<HASH> 100644 --- a/salt/utils/process.py +++ b/salt/utils/process.py @@ -223,9 +223,15 @@ class ThreadPool(object): while True: # 1s timeout so that if the parent dies this thread will die within 1s try: - ...
Catch a possible error on shutdown Catches a condition where our exception handler might itself raise an exception on shutdown.
diff --git a/holoviews/plotting/bokeh/element.py b/holoviews/plotting/bokeh/element.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/bokeh/element.py +++ b/holoviews/plotting/bokeh/element.py @@ -2033,8 +2033,8 @@ class OverlayPlot(GenericOverlayPlot, LegendPlot): hover_renderers = [] if hover.r...
Fixed bug in bokeh HoverTool lookup (#<I>)
diff --git a/colorful/__init__.py b/colorful/__init__.py index <HASH>..<HASH> 100644 --- a/colorful/__init__.py +++ b/colorful/__init__.py @@ -4,6 +4,6 @@ from django.utils import version __all__ = ['VERSION', '__version__'] -VERSION = (1, 2, 1, 'alpha', 0) +VERSION = (1, 3, 0, 'final', 0) __version__ = version...
Bumped version number to <I>.
diff --git a/pymc/distributions/continuous.py b/pymc/distributions/continuous.py index <HASH>..<HASH> 100644 --- a/pymc/distributions/continuous.py +++ b/pymc/distributions/continuous.py @@ -1532,6 +1532,7 @@ class Laplace(Continuous): \frac{1}{2b} \exp \left\{ - \frac{|x - \mu|}{b} \right\} .. plot:...
Update pymc.Laplace docsting (#<I>) * fixed pymc.Laplace docsting * fixed pymc.Laplace docsting
diff --git a/haproxy/datadog_checks/haproxy/haproxy.py b/haproxy/datadog_checks/haproxy/haproxy.py index <HASH>..<HASH> 100644 --- a/haproxy/datadog_checks/haproxy/haproxy.py +++ b/haproxy/datadog_checks/haproxy/haproxy.py @@ -237,6 +237,9 @@ class HAProxy(AgentCheck): custom_tags = [] if custom_tags is None e...
Fix error in case of empty stat info (#<I>)
diff --git a/src/extensions/renderer/canvas/drawing-redraw.js b/src/extensions/renderer/canvas/drawing-redraw.js index <HASH>..<HASH> 100644 --- a/src/extensions/renderer/canvas/drawing-redraw.js +++ b/src/extensions/renderer/canvas/drawing-redraw.js @@ -482,7 +482,7 @@ CRp.render = function( options ){ } var e...
Include the animated viewport case for `hideEdgesOnViewport ` Ref : Hide edges on viewport animation #<I>
diff --git a/modules/system/classes/CombineAssets.php b/modules/system/classes/CombineAssets.php index <HASH>..<HASH> 100644 --- a/modules/system/classes/CombineAssets.php +++ b/modules/system/classes/CombineAssets.php @@ -140,7 +140,7 @@ class CombineAssets * Minification filters */ if ($t...
Replaced JSMin with JSqueeze
diff --git a/spring-jdbc-oracle/src/main/java/com/github/ferstl/spring/jdbc/oracle/OracleJdbcTemplate.java b/spring-jdbc-oracle/src/main/java/com/github/ferstl/spring/jdbc/oracle/OracleJdbcTemplate.java index <HASH>..<HASH> 100644 --- a/spring-jdbc-oracle/src/main/java/com/github/ferstl/spring/jdbc/oracle/OracleJdbcTem...
Deprecate OracleJdbcTemplate As of <I>c the Oracle JDBC driver supports JDBC update batching and the proprietary API is deprecated therefore OracleJdbcTemplate should be deprecated as well.
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -6,8 +6,7 @@ var eslintFilter = filter('**/*.js', { restore: true }); stagedFiles() .pipe(eslintFilter) - .pipe(eslint({ - useEslintrc: true - })) + .pipe(eslint()) .pipe(eslint.for...
Removed useEslintrc option since it's true by default
diff --git a/scapy/base_classes.py b/scapy/base_classes.py index <HASH>..<HASH> 100644 --- a/scapy/base_classes.py +++ b/scapy/base_classes.py @@ -14,6 +14,7 @@ Generators and packet meta classes. import re,random,socket import config import error +import types class Gen(object): def __iter__(self): @@ -36,7...
Accept generators and xrange objects as field values
diff --git a/wptools/core.py b/wptools/core.py index <HASH>..<HASH> 100644 --- a/wptools/core.py +++ b/wptools/core.py @@ -248,7 +248,7 @@ class WPTools: https://www.wikidata.org/w/api.php?action=help&modules=wbgetentities """ if not self.wikibase: - print("instance needs a wikibas...
print only to stderr in core
diff --git a/javascript/libjoynr-js/src/main/js/joynr/capabilities/CapabilitiesStore.js b/javascript/libjoynr-js/src/main/js/joynr/capabilities/CapabilitiesStore.js index <HASH>..<HASH> 100644 --- a/javascript/libjoynr-js/src/main/js/joynr/capabilities/CapabilitiesStore.js +++ b/javascript/libjoynr-js/src/main/js/joynr...
[JS] CapabilitiesStore.checkAge ignores negative max ages This way, the age of capabilities can be ignored Change-Id: I0e4cee<I>e<I>fdb<I>b6f5a<I>c0bc<I>bfa6b1
diff --git a/jOOX/src/main/java/org/joox/Impl.java b/jOOX/src/main/java/org/joox/Impl.java index <HASH>..<HASH> 100644 --- a/jOOX/src/main/java/org/joox/Impl.java +++ b/jOOX/src/main/java/org/joox/Impl.java @@ -1884,6 +1884,7 @@ class Impl implements Match { return write(new OutputStreamWriter(stream)); ...
The resource is always closed, in another method
diff --git a/scripts/compile-tsc.js b/scripts/compile-tsc.js index <HASH>..<HASH> 100644 --- a/scripts/compile-tsc.js +++ b/scripts/compile-tsc.js @@ -1,3 +1,5 @@ +/* eslint-disable no-console */ +// tslint:disable:no-console const fs = require('fs'); const path = require('path'); const shell = require('shelljs');
Fix lint by allowing console in build-tsc.js
diff --git a/src/Symfony/Component/Security/Core/Security.php b/src/Symfony/Component/Security/Core/Security.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Security/Core/Security.php +++ b/src/Symfony/Component/Security/Core/Security.php @@ -13,6 +13,7 @@ namespace Symfony\Component\Security\Core; use P...
[Security] class Security implements AuthorizationCheckerInterface The class has the method of AuthorizationCheckerInterface already.
diff --git a/src/integration/helpers/to_map.go b/src/integration/helpers/to_map.go index <HASH>..<HASH> 100644 --- a/src/integration/helpers/to_map.go +++ b/src/integration/helpers/to_map.go @@ -1,14 +1,13 @@ package helpers -import ( - influxdb "github.com/influxdb/influxdb-go" -) +import "common" -func ToMap(ser...
make ToMap work with any ApiSeries
diff --git a/public/vendor/aperture-slider/aperture-slider.js b/public/vendor/aperture-slider/aperture-slider.js index <HASH>..<HASH> 100644 --- a/public/vendor/aperture-slider/aperture-slider.js +++ b/public/vendor/aperture-slider/aperture-slider.js @@ -157,7 +157,7 @@ var ApertureSlider = function (apertureDiv, frame...
facator block ui in apps
diff --git a/src/Mautic/Form.php b/src/Mautic/Form.php index <HASH>..<HASH> 100644 --- a/src/Mautic/Form.php +++ b/src/Mautic/Form.php @@ -170,6 +170,7 @@ class Form if ($contactIp = $contact->getIp()) { $request['header'][] = "X-Forwarded-For: $contactIp"; + $request['header'][] = "C...
fix(client IP): Add additional header in form request - Add a new header Client-Ip: w.x.y.z while submitting the form
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -13,9 +13,16 @@ function get(url) { if (url.length <= 0 || typeof url !== 'string') { throw Error("A valid URL is required"); } + + var options = { + hostname: url, + agent: false, + rejectUnauthorized: ...
sets ciphers: "ALL" on https request
diff --git a/src/trace-plugin-interface.js b/src/trace-plugin-interface.js index <HASH>..<HASH> 100644 --- a/src/trace-plugin-interface.js +++ b/src/trace-plugin-interface.js @@ -249,7 +249,8 @@ function createRootSpan_(api, options, skipFrames) { incomingTraceContext = api.agent_.parseContextFromHeader(options.tr...
Bugfix for creating root spans through plugin API (#<I>) PR-URL: #<I>
diff --git a/lib/buffer_concat_polyfill.js b/lib/buffer_concat_polyfill.js index <HASH>..<HASH> 100644 --- a/lib/buffer_concat_polyfill.js +++ b/lib/buffer_concat_polyfill.js @@ -17,10 +17,10 @@ function polyfill(list, totalLength) { i = 0; // @see http://nodejs.org/api/buffer.html#buffer_class_method_b...
fix buffer concat polyfill for the case when the list contains one zero length buffer
diff --git a/lib/setup.js b/lib/setup.js index <HASH>..<HASH> 100644 --- a/lib/setup.js +++ b/lib/setup.js @@ -174,6 +174,8 @@ function lessPlugins (opts) { logger.fatal(err, 'could not find the requested Less plugin, ' + e.name); process.exit(-1); } + + return e; }); }
add missing return during plugin option setup Issue: ENYO-<I> Enyo-DCO-<I>-
diff --git a/coaster/__init__.py b/coaster/__init__.py index <HASH>..<HASH> 100644 --- a/coaster/__init__.py +++ b/coaster/__init__.py @@ -354,7 +354,7 @@ def sanitize_html(value, valid_tags=VALID_TAGS): newoutput = soup.renderContents() if oldoutput == newoutput: break - warn("This me...
It's a function, not a method
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 @@ -880,7 +880,7 @@ public abstract class A_CmsImport implements I_CmsImport { ...
Fixing null pointer issue during user import.
diff --git a/linshareapi/admin/ldapconnections.py b/linshareapi/admin/ldapconnections.py index <HASH>..<HASH> 100644 --- a/linshareapi/admin/ldapconnections.py +++ b/linshareapi/admin/ldapconnections.py @@ -133,6 +133,6 @@ class LdapConnections2(LdapConnections): rbu.add_field('uuid') rbu.add_field('l...
Mark some ldap fields as extented.
diff --git a/allennlp/commands/predict.py b/allennlp/commands/predict.py index <HASH>..<HASH> 100644 --- a/allennlp/commands/predict.py +++ b/allennlp/commands/predict.py @@ -56,7 +56,8 @@ DEFAULT_PREDICTORS = { 'bidaf': 'machine-comprehension', 'simple_tagger': 'sentence-tagger', 'crf_tagger...
fix predictor issue for constituency parser (#<I>) * fix predictor issue for constituency parser * matt
diff --git a/store/store.go b/store/store.go index <HASH>..<HASH> 100644 --- a/store/store.go +++ b/store/store.go @@ -99,6 +99,7 @@ type statsToken struct { } // statsKey returns the compound statistics identifier that represents key. +// If write is true, the identifier will be created if necessary. // Identifie...
Add comment about write parameter, as mentioned by Rog.
diff --git a/lib/restforce/concerns/streaming.rb b/lib/restforce/concerns/streaming.rb index <HASH>..<HASH> 100644 --- a/lib/restforce/concerns/streaming.rb +++ b/lib/restforce/concerns/streaming.rb @@ -8,11 +8,8 @@ module Restforce # # Returns a Faye::Subscription def subscribe(channels, options =...
Register handlers and convert to topics in 2 steps
diff --git a/client/cli/common/assignment.py b/client/cli/common/assignment.py index <HASH>..<HASH> 100644 --- a/client/cli/common/assignment.py +++ b/client/cli/common/assignment.py @@ -166,7 +166,7 @@ class Assignment(core.Serializable): print() def _find_files(self, pattern): - return glob.glo...
Load tests in sorted order
diff --git a/safemysql.class.php b/safemysql.class.php index <HASH>..<HASH> 100644 --- a/safemysql.class.php +++ b/safemysql.class.php @@ -470,23 +470,28 @@ class SafeMySQL private function escapeInt($value) { - if (is_float($value)) - { - $value = number_format($value, 0, '.', ''); // may lose precision on b...
Added NULL translation as suggested in issue #<I> I changed my mind and made added literal translation from PHP's NULL into Mysql's NULL when processing placeholders.
diff --git a/builtin/providers/google/resource_compute_target_pool.go b/builtin/providers/google/resource_compute_target_pool.go index <HASH>..<HASH> 100644 --- a/builtin/providers/google/resource_compute_target_pool.go +++ b/builtin/providers/google/resource_compute_target_pool.go @@ -82,6 +82,7 @@ func resourceComput...
Change google_compute_target_pool's session_affinity field default to NONE. (#<I>)
diff --git a/src/main/java/io/fabric8/maven/docker/service/QueryService.java b/src/main/java/io/fabric8/maven/docker/service/QueryService.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/fabric8/maven/docker/service/QueryService.java +++ b/src/main/java/io/fabric8/maven/docker/service/QueryService.java @@ -169,1...
chore: Removed bogus comment
diff --git a/src/Providers/ArtisanServiceProvider.php b/src/Providers/ArtisanServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Providers/ArtisanServiceProvider.php +++ b/src/Providers/ArtisanServiceProvider.php @@ -10,10 +10,10 @@ use Illuminate\Console\Scheduling\ScheduleRunCommand; use Cortex\Foundation\Cons...
Apply fixes from StyleCI (#<I>)
diff --git a/catalogue/src/main/java/org/project/openbaton/catalogue/mano/descriptor/VirtualDeploymentUnit.java b/catalogue/src/main/java/org/project/openbaton/catalogue/mano/descriptor/VirtualDeploymentUnit.java index <HASH>..<HASH> 100644 --- a/catalogue/src/main/java/org/project/openbaton/catalogue/mano/descriptor/V...
added orphanRemoval do VNFCs and VNFCIs
diff --git a/org.kevoree.modeling.microframework/src/test/java/org/kevoree/modeling/memory/storage/impl/OffHeapMemoryStorageTest.java b/org.kevoree.modeling.microframework/src/test/java/org/kevoree/modeling/memory/storage/impl/OffHeapMemoryStorageTest.java index <HASH>..<HASH> 100644 --- a/org.kevoree.modeling.microfra...
* first tests of offheap memory storage
diff --git a/lib/specials.js b/lib/specials.js index <HASH>..<HASH> 100644 --- a/lib/specials.js +++ b/lib/specials.js @@ -9,6 +9,7 @@ const intended = [ 'HTTPS', 'JSX', 'DNS', + 'URL', 'now.sh' ]
Add URL as special word (#<I>)