hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
e4f99618ec328606e60c2b0d6b7b3f4733f4854c
diff --git a/lib/charlotte.js b/lib/charlotte.js index <HASH>..<HASH> 100755 --- a/lib/charlotte.js +++ b/lib/charlotte.js @@ -1998,7 +1998,12 @@ page.onError(err, tab, function() {}); } } else if (isReload || isPost) { - if (isPost) loadPage.onB...
retain requestedPage of current when handling POST
danieldkim_charlotte
train
58ce299b382eb723248ceb088e47cf54d595e846
diff --git a/commits.go b/commits.go index <HASH>..<HASH> 100644 --- a/commits.go +++ b/commits.go @@ -58,5 +58,8 @@ func (cm *Commits) buildCommitsQuery(include, exclude string) string { p.Add("exclude", exclude) } - return p.Encode() + if res := p.Encode(); len(res) > 0 { + return "?" + res + } + return "" }
Fixed GetCommits API method query params generation
ktrysmt_go-bitbucket
train
711d33f7f1811b7626c6995e069b7f75dab1965f
diff --git a/sb.js b/sb.js index <HASH>..<HASH> 100644 --- a/sb.js +++ b/sb.js @@ -512,7 +512,7 @@ sb.$ = function(selector, root) { nodeList.setSelector(selector); - if(document.querySelectorAll){ + if(root.querySelectorAll){ nodeList.add(root.querySelectorAll(selector)); } else { @@ -1391,22 +1391,24 @@ ...
node.sb_id now added as attribute instead of as property so that it works with xml nodes Element.prototypes not added to xml
surebert_surebert-framework
train
c8d42aa18b7abd75e45e1fccdb04b763d1f5f992
diff --git a/osmdroid-android/src/main/java/org/osmdroid/views/overlay/ItemizedIconOverlay.java b/osmdroid-android/src/main/java/org/osmdroid/views/overlay/ItemizedIconOverlay.java index <HASH>..<HASH> 100644 --- a/osmdroid-android/src/main/java/org/osmdroid/views/overlay/ItemizedIconOverlay.java +++ b/osmdroid-android...
Update issue <I> Status: ReadyForTesting Added populate() call to addItem(int, Item)
osmdroid_osmdroid
train
d043976f729c9f87fad14418c31383b28f84787c
diff --git a/lib/Thelia/Core/Template/Loop/Document.php b/lib/Thelia/Core/Template/Loop/Document.php index <HASH>..<HASH> 100644 --- a/lib/Thelia/Core/Template/Loop/Document.php +++ b/lib/Thelia/Core/Template/Loop/Document.php @@ -262,7 +262,7 @@ class Document extends BaseI18nLoop implements PropelSearchLoopInterface ...
Improved (again) error messages
thelia_core
train
384a4ebc889d6586a2a61b0324e3f11eef02ddf0
diff --git a/src/psd_tools2/psd/color.py b/src/psd_tools2/psd/color.py index <HASH>..<HASH> 100644 --- a/src/psd_tools2/psd/color.py +++ b/src/psd_tools2/psd/color.py @@ -26,13 +26,16 @@ class Color(BaseElement): List of int values. """ - id = attr.ib(default=ColorSpaceID.RGB, converter=ColorSpaceID,...
Workaround for irregular color space id
psd-tools_psd-tools
train
9fef3af76e3efb2a2b7d3c2c8df3003df8593f28
diff --git a/rig/version.py b/rig/version.py index <HASH>..<HASH> 100644 --- a/rig/version.py +++ b/rig/version.py @@ -1,3 +1,3 @@ """The current Rig version number. This definition is used throughout the software.""" -__version__ = "0.4.0" +__version__ = "0.5.0"
<I> Bumped version number.
project-rig_rig
train
dd4bfb946f19e6b942ae49e3664b389e84a92f99
diff --git a/internal/resolver/web/resolver.go b/internal/resolver/web/resolver.go index <HASH>..<HASH> 100644 --- a/internal/resolver/web/resolver.go +++ b/internal/resolver/web/resolver.go @@ -6,7 +6,6 @@ import ( "net/http" "regexp" "strings" - "time" "github.com/micro/go-micro/v2/api/resolver" res "gith...
internal/resolver/web: remove random seed
micro_micro
train
203ec1375018b24e45cd911509cf4d87dfce022a
diff --git a/wfe2/wfe.go b/wfe2/wfe.go index <HASH>..<HASH> 100644 --- a/wfe2/wfe.go +++ b/wfe2/wfe.go @@ -515,12 +515,17 @@ func (wfe *WebFrontEndImpl) Nonce( } statusCode := http.StatusNoContent - // The ACME specification says GET requets should receive http.StatusNoContent + // The ACME specification says GET...
Return a no-store Cache-Control header for newNonce (#<I>) The spec specifies (<URL>) that a `no-store` Cache-Control header is required in response to getting a new nonce. This PR makes that change specifically but does not modify other uses of the `no-cache` directive. Fixes #<I>
letsencrypt_boulder
train
866ab2900f34327d918b33373240fdd830c7aacf
diff --git a/app/forms/sufia/forms/permission_template_form.rb b/app/forms/sufia/forms/permission_template_form.rb index <HASH>..<HASH> 100644 --- a/app/forms/sufia/forms/permission_template_form.rb +++ b/app/forms/sufia/forms/permission_template_form.rb @@ -26,7 +26,7 @@ module Sufia # This allows the attri...
Fix minor bug when updating AdminSet visibility. Add test to validate.
samvera_hyrax
train
e9beac97253cdfb76659c5bb54dfd56d349faf44
diff --git a/src/core/__init__.py b/src/core/__init__.py index <HASH>..<HASH> 100644 --- a/src/core/__init__.py +++ b/src/core/__init__.py @@ -3,19 +3,23 @@ import codecs import os import shutil import re +import imp +import tempfile +import sys class Migration(object): MIGRATION_FILES_EXTENSION = ".migrat...
improving the way to read the migrations, avoiding problems of encoding
guilhermechapiewski_simple-db-migrate
train
8ca36403113fa9eaf32ac661d99a92688ba42e7b
diff --git a/lib/puppet/type/exec.rb b/lib/puppet/type/exec.rb index <HASH>..<HASH> 100755 --- a/lib/puppet/type/exec.rb +++ b/lib/puppet/type/exec.rb @@ -180,10 +180,9 @@ module Puppet end newparam(:logoutput) do - desc "Whether to log output. Defaults to logging output at the - loglevel for t...
Update docs w/ new default logoutput value from ticket #<I> This commit updates the inline parameter docs to match a change that was previously merged.
puppetlabs_puppet
train
53293f7ed5e0f2e45fb185b60e344ea8436f02aa
diff --git a/enum.py b/enum.py index <HASH>..<HASH> 100644 --- a/enum.py +++ b/enum.py @@ -1,8 +1,11 @@ import sys +import pdb from itertools import product, chain import perg + + # Map to keep track of subpatterns we see SUBPATTERNS = {} @@ -10,6 +13,38 @@ SUBPATTERNS = {} # so we get correct backreference...
things working now, some code down for enumerating subpatterns/backreferences but it won't be pretty
anrosent_perg
train
4727eb0249dfc59a4946f07721be6b85f11da957
diff --git a/src/Flare/Providers/RouteServiceProvider.php b/src/Flare/Providers/RouteServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Flare/Providers/RouteServiceProvider.php +++ b/src/Flare/Providers/RouteServiceProvider.php @@ -132,7 +132,7 @@ class RouteServiceProvider extends ServiceProvider ...
Couple of Minor Fixes, reset password does not work though.
laravelflare_flare
train
bda5a5e3464c374221ab65c1e7a4103198166582
diff --git a/dist/yoast-seo.js b/dist/yoast-seo.js index <HASH>..<HASH> 100644 --- a/dist/yoast-seo.js +++ b/dist/yoast-seo.js @@ -2297,6 +2297,7 @@ YoastSEO.SnippetPreview.prototype.formatTitle = function() { if ( title === "" ) { title = this.refObj.rawData.pageTitle; } + this.unformattedText.snippet_title = t...
Make sure the unformatted data is kept up to date
Yoast_YoastSEO.js
train
3f7722d9e6003460be4d0f938dfd0543ef8b48b3
diff --git a/src/Mcamara/LaravelLocalization/LaravelLocalization.php b/src/Mcamara/LaravelLocalization/LaravelLocalization.php index <HASH>..<HASH> 100644 --- a/src/Mcamara/LaravelLocalization/LaravelLocalization.php +++ b/src/Mcamara/LaravelLocalization/LaravelLocalization.php @@ -947,7 +947,13 @@ class LaravelLocaliz...
Check if HTTP_ACCEPT_LANGUAGE is accepted on config
mcamara_laravel-localization
train
b2d2e0910596e71682eca3f691e16552f4851b97
diff --git a/cmd/admin-heal.go b/cmd/admin-heal.go index <HASH>..<HASH> 100644 --- a/cmd/admin-heal.go +++ b/cmd/admin-heal.go @@ -131,5 +131,5 @@ func mainAdminHeal(ctx *cli.Context) error { "Unable to display follow heal status.", ) - return nil + return herr } diff --git a/cmd/typed-errors.go b/cmd/typed-err...
`mc heal` and `mc mirror` should respond with proper exit code (#<I>) respond with os.exit(0) incase of errors Fixes #<I> #<I>
minio_mc
train
1f81940a1f3b74b1a559255c0a08f20ae03762ac
diff --git a/gui/default/syncthing/core/syncthingController.js b/gui/default/syncthing/core/syncthingController.js index <HASH>..<HASH> 100755 --- a/gui/default/syncthing/core/syncthingController.js +++ b/gui/default/syncthing/core/syncthingController.js @@ -1535,6 +1535,7 @@ angular.module('syncthing.core') ...
gui: Initialise sharing when accepting new device (fixes #<I>) (#<I>)
syncthing_syncthing
train
4569615dc2144c137362771146e87c30d313272f
diff --git a/test/path.js b/test/path.js index <HASH>..<HASH> 100644 --- a/test/path.js +++ b/test/path.js @@ -178,9 +178,9 @@ describe('path', function() { }) }) - it('should remove path', function(cb) { + it('should fail removing path', function(cb) { db.paths.remove(test_path._id, function(err) { - ...
test(path): Path has already been removed through user deletion
ezseed_database
train
748df8e93524650ed8a34463cf951df0a002789a
diff --git a/lambdas/es/indexer/document_queue.py b/lambdas/es/indexer/document_queue.py index <HASH>..<HASH> 100644 --- a/lambdas/es/indexer/document_queue.py +++ b/lambdas/es/indexer/document_queue.py @@ -24,7 +24,7 @@ CONTENT_INDEX_EXTS = [ ] # See https://amzn.to/2xJpngN for chunk size as a function of containe...
Bump request size to <I>MB for larger containers (#<I>)
quiltdata_quilt
train
5b90a9d8a98d5d9f595e682e5619f79f4001b3c9
diff --git a/api/v1/users/authentication/credentials/repositories/token/Repo.php b/api/v1/users/authentication/credentials/repositories/token/Repo.php index <HASH>..<HASH> 100644 --- a/api/v1/users/authentication/credentials/repositories/token/Repo.php +++ b/api/v1/users/authentication/credentials/repositories/token/Re...
Renamed method from query() to read() so that it's a proper antonym of write()
opulencephp_Opulence
train
097541ca849e70270ee8950f4b63774eff166fbc
diff --git a/lib/librarian/environment/runtime_cache.rb b/lib/librarian/environment/runtime_cache.rb index <HASH>..<HASH> 100644 --- a/lib/librarian/environment/runtime_cache.rb +++ b/lib/librarian/environment/runtime_cache.rb @@ -80,7 +80,7 @@ module Librarian end def keyspace(keyspace) - Keyspa...
Some specs for the keyspaced-scoped runtime-cache.
applicationsonline_librarian
train
0f8f5f34021bfb21159b7b62f5448ee73b7fc895
diff --git a/src/toil/provisioners/cgcloud/provisioner.py b/src/toil/provisioners/cgcloud/provisioner.py index <HASH>..<HASH> 100644 --- a/src/toil/provisioners/cgcloud/provisioner.py +++ b/src/toil/provisioners/cgcloud/provisioner.py @@ -160,6 +160,9 @@ class CGCloudProvisioner(AbstractProvisioner): """ ...
Enable tentative spot provisioning in cgcloud provisioner
DataBiosphere_toil
train
8b93950443c58681e06ca325e30233677ae080bb
diff --git a/atmosphere-packages/angular-compilers/package.js b/atmosphere-packages/angular-compilers/package.js index <HASH>..<HASH> 100644 --- a/atmosphere-packages/angular-compilers/package.js +++ b/atmosphere-packages/angular-compilers/package.js @@ -14,9 +14,9 @@ Package.registerBuildPlugin({ use: [ // Us...
Update compiler dependencies to most current versions (#<I>) Upgrade to Meteor <I> is not possible due to outdated dependencies.
Urigo_angular-meteor
train
62d1637f7a47b76bffd4fd16015f709df8662840
diff --git a/commerce-openapi-util/src/main/java/com/liferay/commerce/openapi/util/generator/CollectionDTOGenerator.java b/commerce-openapi-util/src/main/java/com/liferay/commerce/openapi/util/generator/CollectionDTOGenerator.java index <HASH>..<HASH> 100644 --- a/commerce-openapi-util/src/main/java/com/liferay/commerc...
COMMERCE-<I> commerce-openapi-util - Be consistent with creating new generator instance
liferay_com-liferay-commerce
train
f79b9245c85a42943fcb25cf8757cb4884e1af24
diff --git a/lib/data_mapper/engine/arel_engine/gateway.rb b/lib/data_mapper/engine/arel_engine/gateway.rb index <HASH>..<HASH> 100644 --- a/lib/data_mapper/engine/arel_engine/gateway.rb +++ b/lib/data_mapper/engine/arel_engine/gateway.rb @@ -61,6 +61,7 @@ module DataMapper if header.respond_to?(:columns) ...
[WIP] Fix m:m definitions in specs and mark them as pending
rom-rb_rom
train
91b90471645e1b96cdc8118043e50632407cedd8
diff --git a/bcbio/pipeline/run_info.py b/bcbio/pipeline/run_info.py index <HASH>..<HASH> 100644 --- a/bcbio/pipeline/run_info.py +++ b/bcbio/pipeline/run_info.py @@ -300,7 +300,7 @@ ALGORITHM_KEYS = set(["platform", "aligner", "bam_clean", "bam_sort", "archive", "tools_off", "tools_on", "assembl...
Leave coverage_depth_max in allowed keys for back-compatibility
bcbio_bcbio-nextgen
train
dfa0f7e901d774a7ca7e52782b8844369a6b619e
diff --git a/Foundation/Binding.php b/Foundation/Binding.php index <HASH>..<HASH> 100644 --- a/Foundation/Binding.php +++ b/Foundation/Binding.php @@ -272,12 +272,16 @@ class Binding implements Protocol\Http * @param string $database * @return Orient\Http\Response */ - public function deleteDocu...
Implemented MVCC in the binding.
doctrine_orientdb-odm
train
ae7d661eac8f06b2cb13363f4781c6d601b34e8b
diff --git a/src/components/dialog/dialog.js b/src/components/dialog/dialog.js index <HASH>..<HASH> 100644 --- a/src/components/dialog/dialog.js +++ b/src/components/dialog/dialog.js @@ -746,17 +746,23 @@ function MdDialogProvider($$interimElementProvider) { // Add keydown listeners element.on('keydow...
fix(dialog): fix dialog resizing on window resize The current resize listeners for the window are misplaced inside of the condition of `escapeToClose == true`. Fixes #<I> Closes #<I>
angular_material
train
3f1cff1b3e6b08cf9fb0637cb84bc2a78d075abe
diff --git a/tests/TestCase/View/Helper/FormHelperTest.php b/tests/TestCase/View/Helper/FormHelperTest.php index <HASH>..<HASH> 100644 --- a/tests/TestCase/View/Helper/FormHelperTest.php +++ b/tests/TestCase/View/Helper/FormHelperTest.php @@ -715,7 +715,7 @@ class FormHelperTest extends TestCase */ public fu...
Use url=>false for not displaying action.
cakephp_cakephp
train
3f71c22acd49a06ab83060a4cd44e4d2d55fc18e
diff --git a/lib/OTPAuthenticate.php b/lib/OTPAuthenticate.php index <HASH>..<HASH> 100644 --- a/lib/OTPAuthenticate.php +++ b/lib/OTPAuthenticate.php @@ -47,20 +47,20 @@ class OTPAuthenticate * Generates code based on timestamp and secret * * @param string $secret Secret shared with user - * @param int $time...
Modify library to also allow HOTP
marc1706_otp-authenticate
train
493a201b1226383c86fae7f8af6bab6169889b78
diff --git a/src/Controller/ControllerFactory.php b/src/Controller/ControllerFactory.php index <HASH>..<HASH> 100644 --- a/src/Controller/ControllerFactory.php +++ b/src/Controller/ControllerFactory.php @@ -174,8 +174,16 @@ class ControllerFactory implements ControllerFactoryInterface, RequestHandlerInt ...
Fix passedParams with object values We never really defined the types for `passedParams` so userland code relies on that now. I think it provides some clever solutions like adding automatic ORM entity resolution via middleware that I'd like to make it formally work. Fixes #<I>
cakephp_cakephp
train
130a36da890454ea1196061b04c37a01b6e7c7b4
diff --git a/meshio/med_io.py b/meshio/med_io.py index <HASH>..<HASH> 100644 --- a/meshio/med_io.py +++ b/meshio/med_io.py @@ -305,7 +305,7 @@ def write(filename, mesh, add_global_ids=True): return -def _write_data(fields, mesh_name, profile, name, supp, data, med_type): +def _write_data(fields, mesh_name, pro...
correct a bug and let tests pass
nschloe_meshio
train
0d2e7741eba1248528ac61266cf549348baf3851
diff --git a/spyder/plugins/editor/extensions/snippets/extension.py b/spyder/plugins/editor/extensions/snippets/extension.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/editor/extensions/snippets/extension.py +++ b/spyder/plugins/editor/extensions/snippets/extension.py @@ -12,7 +12,7 @@ from collections import Ord...
Disable snippet when Esc is pressed or cursor is moved outside snippet
spyder-ide_spyder
train
fdabb488c239fde06a214b47ce3567fc19a0c818
diff --git a/src/main/java/com/lazerycode/jmeter/mojo/CheckResultsMojo.java b/src/main/java/com/lazerycode/jmeter/mojo/CheckResultsMojo.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/lazerycode/jmeter/mojo/CheckResultsMojo.java +++ b/src/main/java/com/lazerycode/jmeter/mojo/CheckResultsMojo.java @@ -66,7 +66,...
#<I> tweak output to make logging cleaner
jmeter-maven-plugin_jmeter-maven-plugin
train
abb0c8a9989ef6148efe2c4c746ad969e54ff5ff
diff --git a/lightflow/scripts/cli.py b/lightflow/scripts/cli.py index <HASH>..<HASH> 100755 --- a/lightflow/scripts/cli.py +++ b/lightflow/scripts/cli.py @@ -1,10 +1,12 @@ import click import json +from functools import update_wrapper from lightflow.config import Config from lightflow.version import __version__ ...
Fix bug that required config file for printing the default config
AustralianSynchrotron_lightflow
train
f2f23d9eb440e5139f1a0b3f0b8119763df210ac
diff --git a/lib/raven/event.rb b/lib/raven/event.rb index <HASH>..<HASH> 100644 --- a/lib/raven/event.rb +++ b/lib/raven/event.rb @@ -39,7 +39,7 @@ module Raven @level = options[:level] || :error @logger = options[:logger] || 'root' @culprit = options[:culprit] - @server_name = options[:serve...
Use @configuration in place of Raven.configuration
getsentry_raven-ruby
train
e0d7c9c6aa6f178b30a7fad09384518d299ae563
diff --git a/src/Jaspersoft/Service/ReportService.php b/src/Jaspersoft/Service/ReportService.php index <HASH>..<HASH> 100644 --- a/src/Jaspersoft/Service/ReportService.php +++ b/src/Jaspersoft/Service/ReportService.php @@ -25,12 +25,16 @@ class ReportService * @param string $page - Request a specific page * @para...
Added additional functionality to runReport service (freshData, saveDataSnapshot, pages, and transformerKey
Jaspersoft_jrs-rest-php-client
train
bbbecb8a613f7302541ba303ee248ef7dac089d1
diff --git a/sources/scalac/transformer/AddAccessors.java b/sources/scalac/transformer/AddAccessors.java index <HASH>..<HASH> 100644 --- a/sources/scalac/transformer/AddAccessors.java +++ b/sources/scalac/transformer/AddAccessors.java @@ -36,7 +36,7 @@ public class AddAccessors extends Transformer { } prote...
- don't use accessors for constructor arguments... - don't use accessors for constructor arguments when they are used during class construction (this both makes the program faster, and avoids unnecessary accessors in some interesting cases)
scala_scala
train
198069635518da40ed5c1249f9ace9e0ee99f626
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,34 @@ +import os +import sys from setuptools import setup, find_packages +if sys.version_info < (2,7) or sys.version_info.major > 2: + sys.exit('Only Python 2.7 is supported') + +readme_path = os.path.join(os.pa...
Updated setup.py with more metadata
OpenAgInitiative_openag_python
train
a8eea6f47cd339b1a5e88a8b11508a4ed214215c
diff --git a/bcbio/provenance/system.py b/bcbio/provenance/system.py index <HASH>..<HASH> 100644 --- a/bcbio/provenance/system.py +++ b/bcbio/provenance/system.py @@ -7,11 +7,14 @@ import copy import multiprocessing import os import resource +import shlex import socket +import subprocess import yaml from bcbi...
Skip queueing to get machine_info, use sinfo instead
bcbio_bcbio-nextgen
train
2cdb04453ca621ab1d6991c8392d3046629c5754
diff --git a/lib/delivery_boy.rb b/lib/delivery_boy.rb index <HASH>..<HASH> 100644 --- a/lib/delivery_boy.rb +++ b/lib/delivery_boy.rb @@ -96,3 +96,5 @@ module DeliveryBoy end end end + +at_exit { DeliveryBoy.shutdown }
Shut down gracefully on process exit
zendesk_delivery_boy
train
a9a2fca9dde691df6f00096496e3cd5283c69610
diff --git a/lib/model_extensions.rb b/lib/model_extensions.rb index <HASH>..<HASH> 100644 --- a/lib/model_extensions.rb +++ b/lib/model_extensions.rb @@ -193,8 +193,5 @@ module OfflineMirror OfflineMirror::GroupState.find_or_create_by_group(owning_group) end end - - module GlobalDataInstanc...
Refactored GroupDataTest a bit, added and greened some more GroupOwnedRecord tests
DavidMikeSimon_offroad
train
2af8d97d6cac7076a8e6a22cc8128818c120e7e2
diff --git a/src/main/java/com/googlecode/lanterna/gui2/AbstractWindow.java b/src/main/java/com/googlecode/lanterna/gui2/AbstractWindow.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/googlecode/lanterna/gui2/AbstractWindow.java +++ b/src/main/java/com/googlecode/lanterna/gui2/AbstractWindow.java @@ -48,7 +48,...
I was wrong about this method, it really was a check for invalid
mabe02_lanterna
train
d5e97a120f4820ad524a5ffb2c622df90dfa1a0a
diff --git a/xclim/indices/_synoptic.py b/xclim/indices/_synoptic.py index <HASH>..<HASH> 100644 --- a/xclim/indices/_synoptic.py +++ b/xclim/indices/_synoptic.py @@ -17,7 +17,7 @@ __all__ = [ @declare_units(ua="[speed]") -def jetstream_metric_woolings( +def jetstream_metric_woollings( ua: xarray.DataArray, ...
rename js metric
Ouranosinc_xclim
train
2d0ac549da2cd2ccd733f2080bfd6656fb030f91
diff --git a/tests/AccessLogTest.php b/tests/AccessLogTest.php index <HASH>..<HASH> 100644 --- a/tests/AccessLogTest.php +++ b/tests/AccessLogTest.php @@ -123,7 +123,7 @@ EOT; $this->assertEquals('0.0.0.0', Format::getLocalIp($request)); $this->assertEquals('index.php', Format::getFilename($request));...
Using assertSame to make assert equals strict
middlewares_access-log
train
7d4bb714352ad88e267064ce9f52f19543172825
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index <HASH>..<HASH> 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,7 +1,10 @@ VERSION 2.3.0 ================ +- added native print() support + prints title and elapsed time of an tracked object after loop completed - data member self.end stores elapsed time when l...
title print support, refactoring
rasbt_pyprind
train
5e34d59328c1b8f51d12f8444628592bfe8326f8
diff --git a/system/Database/Query.php b/system/Database/Query.php index <HASH>..<HASH> 100644 --- a/system/Database/Query.php +++ b/system/Database/Query.php @@ -404,11 +404,16 @@ class Query implements QueryInterface foreach ($binds as $placeholder => $value) { $escapedValue = $this->db->escape($value); + ...
Escape dollar signs in named parameters because they donot survive preg_replace but are needed for passwords.
codeigniter4_CodeIgniter4
train
44b2648a1e12525782fb6f8adfb05176f45dd52b
diff --git a/cellbase-mongodb/src/test/java/org/opencb/cellbase/mongodb/db/VariantAnnotationMongoDBAdaptorTest.java b/cellbase-mongodb/src/test/java/org/opencb/cellbase/mongodb/db/VariantAnnotationMongoDBAdaptorTest.java index <HASH>..<HASH> 100644 --- a/cellbase-mongodb/src/test/java/org/opencb/cellbase/mongodb/db/Var...
feature/refactor-var-annot: insertions and deletions tests enabled at VariantAnnotationMongoDBAdaptorTest
opencb_cellbase
train
98b27d52afec5e94311fbd79fc432f5ce56151b7
diff --git a/simulator/src/main/java/com/hazelcast/simulator/coordinator/PerformanceStateContainer.java b/simulator/src/main/java/com/hazelcast/simulator/coordinator/PerformanceStateContainer.java index <HASH>..<HASH> 100644 --- a/simulator/src/main/java/com/hazelcast/simulator/coordinator/PerformanceStateContainer.jav...
Minor rename of method in PerformanceStateContainer
hazelcast_hazelcast-simulator
train
04cae61afabc8b481283e97e6b4daff9678a7871
diff --git a/Tests/Unit/ViewHelpers/ForViewHelperTest.php b/Tests/Unit/ViewHelpers/ForViewHelperTest.php index <HASH>..<HASH> 100644 --- a/Tests/Unit/ViewHelpers/ForViewHelperTest.php +++ b/Tests/Unit/ViewHelpers/ForViewHelperTest.php @@ -421,7 +421,7 @@ class ForViewHelperTest extends \TYPO3\Fluid\ViewHelpers\ViewHelp...
[BUGFIX] Remove use of short array syntax in <I> branch The <I> branch claims to be compatible with PHP <I>, so we better stick to our promise.
neos_fluid
train
bc38a52c914d4b077b904b6548f4f9d3d14db04b
diff --git a/devices.js b/devices.js index <HASH>..<HASH> 100755 --- a/devices.js +++ b/devices.js @@ -4076,7 +4076,7 @@ const devices = [ 'SmokeSensor-EM', 'FB56-SMF02HM1.4', ], - model: 'HS1SA', + model: 'HS1SA-M', vendor: 'HEIMAN', description: 'Smok...
Fix HS1SA-M model.
Koenkk_zigbee-shepherd-converters
train
045dc82aa3262373554843965d2ea2f098d7d5d2
diff --git a/py/testdir_ec2/test_cloud_static.py b/py/testdir_ec2/test_cloud_static.py index <HASH>..<HASH> 100644 --- a/py/testdir_ec2/test_cloud_static.py +++ b/py/testdir_ec2/test_cloud_static.py @@ -14,7 +14,6 @@ class Basic(unittest.TestCase): def test_cloud(self): h2o.touch_cloud() - ...
AAaaaa! <I> seconds sleep in the test!! Mr. Jenkins was slacking for long time...
h2oai_h2o-2
train
fc9958799a92a133d1a7589b5434954171ccded4
diff --git a/django_zappa/management/commands/deploy.py b/django_zappa/management/commands/deploy.py index <HASH>..<HASH> 100644 --- a/django_zappa/management/commands/deploy.py +++ b/django_zappa/management/commands/deploy.py @@ -30,7 +30,7 @@ class Command(ZappaCommand): self.require_settings(args, options) ...
profile_name option To use named profiles from ~/.aws/credentials
Miserlou_django-zappa
train
e322a6dca2568d65aeded1b74c38ac24d9939c94
diff --git a/tests/lib/screenshot-testing/support/test-environment.js b/tests/lib/screenshot-testing/support/test-environment.js index <HASH>..<HASH> 100644 --- a/tests/lib/screenshot-testing/support/test-environment.js +++ b/tests/lib/screenshot-testing/support/test-environment.js @@ -80,11 +80,15 @@ TestingEnvironmen...
make sure to free memory in case of a failure
matomo-org_matomo
train
4e8c94e824d9ffd37ba53bcfc100fec21faf0200
diff --git a/lib/werist.js b/lib/werist.js index <HASH>..<HASH> 100644 --- a/lib/werist.js +++ b/lib/werist.js @@ -286,6 +286,9 @@ class Werist { options.server = match[2]; return this.lookup(address, options, callback); } + if (lines[i].trim() === '% This q...
lib/werist: check the whois.iana.org response if one object was found
w4andy_node-werist
train
6dba70a671510f755aa3085297e4d6d56b325a51
diff --git a/lib/eye/controller/commands.rb b/lib/eye/controller/commands.rb index <HASH>..<HASH> 100644 --- a/lib/eye/controller/commands.rb +++ b/lib/eye/controller/commands.rb @@ -78,7 +78,8 @@ private # find object to action, restart ... (app, group or process) # nil if not found def find_objects(str) - ...
# target empty not equal all, target all for this
kostya_eye
train
4e137d4b63b29f3fd0ceae1af54e92e7f4a9a044
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "publish-to-cdn": "node publish.js", "snyk-protect": "snyk protect", "prepublish": "npm run snyk-protect", + "lint-staged": "lint-staged", "detect-secrets": "node task/dete...
fix: when value is Number,Buffer.alloc replace Buffer.from (#<I>)
ali-sdk_ali-oss
train
aafe4a3cac176c2f35711f7afbc48f1795cb11c3
diff --git a/src/main/java/javax/util/streamex/AbstractStreamEx.java b/src/main/java/javax/util/streamex/AbstractStreamEx.java index <HASH>..<HASH> 100644 --- a/src/main/java/javax/util/streamex/AbstractStreamEx.java +++ b/src/main/java/javax/util/streamex/AbstractStreamEx.java @@ -541,35 +541,35 @@ import java.util.st...
AbstractStreamEx: maxBy/minBy inlined to reduce stack depth
amaembo_streamex
train
145664db843ed6d7aff871b4ef79de8824759da1
diff --git a/Stagehand/FSM/State.php b/Stagehand/FSM/State.php index <HASH>..<HASH> 100644 --- a/Stagehand/FSM/State.php +++ b/Stagehand/FSM/State.php @@ -47,6 +47,7 @@ require_once 'Stagehand/FSM/Event.php'; define('STAGEHAND_FSM_EVENT_ENTRY', '_entry'); define('STAGEHAND_FSM_EVENT_EXIT', '_exit'); define('STAGEHAN...
- Added STAGEHAND_FSM_EVENT_END constant.
phpmentors-jp_stagehand-fsm
train
ef47455b05938cf9e5a427a3ffd77a2162fbd3e7
diff --git a/util/btcctl/btcctl.go b/util/btcctl/btcctl.go index <HASH>..<HASH> 100644 --- a/util/btcctl/btcctl.go +++ b/util/btcctl/btcctl.go @@ -58,6 +58,7 @@ var commandHandlers = map[string]*handlerData{ "getrawmempool": &handlerData{0, 0, displaySpewDump, nil, makeGetRawMempool, ""}, "getrawtransaction"...
Add listtransactions support to btcctl. This is currently using the generic reply formater, and will likely be switched out for a custom one later.
btcsuite_btcd
train
12e53c6f53e2f463bd75bcf94a98de9bcc2be26c
diff --git a/src/main/java/net/dv8tion/jda/core/requests/restaction/pagination/PaginationAction.java b/src/main/java/net/dv8tion/jda/core/requests/restaction/pagination/PaginationAction.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/dv8tion/jda/core/requests/restaction/pagination/PaginationAction.java +++ b/s...
Return RequestFuture for PaginationAction async iterations This allows to use continuations after the iteration completed
DV8FromTheWorld_JDA
train
ae409751c15bfdc73102ab2cb568ee4b39cef6f6
diff --git a/framework/core/src/Database/AbstractModel.php b/framework/core/src/Database/AbstractModel.php index <HASH>..<HASH> 100644 --- a/framework/core/src/Database/AbstractModel.php +++ b/framework/core/src/Database/AbstractModel.php @@ -55,13 +55,13 @@ abstract class AbstractModel extends Eloquent { ...
Apply fixes from StyleCI (#<I>) [ci skip] [skip ci]
flarum_core
train
871509f67be5e620bfa0498babcc8fa396b8cddf
diff --git a/happenings/views.py b/happenings/views.py index <HASH>..<HASH> 100755 --- a/happenings/views.py +++ b/happenings/views.py @@ -184,9 +184,11 @@ def event_update_list(request, slug): """ event = get_object_or_404(Event, slug=slug) updates = Update.objects.filter(event__slug=slug) - if event...
minor commit to trigger travis build
tBaxter_tango-happenings
train
fc52f263be4da2bb722c65e54cd8a153a7d34751
diff --git a/test/offline/offline_integration.js b/test/offline/offline_integration.js index <HASH>..<HASH> 100644 --- a/test/offline/offline_integration.js +++ b/test/offline/offline_integration.js @@ -86,13 +86,7 @@ describe('Offline', /** @suppress {accessControls} */ function() { }); // TODO: Add a PlayRead...
Work around offline integration test failure This adds a workaround for a Chrome bug so that the test can be unquarantined. Change-Id: I3b<I>af<I>db<I>f3b<I>e<I>c<I>e<I>f<I>fc<I>df
google_shaka-player
train
b2b86df3ed8aebc9c3848e42e4cdffe6400b040d
diff --git a/tests/testmagics.py b/tests/testmagics.py index <HASH>..<HASH> 100644 --- a/tests/testmagics.py +++ b/tests/testmagics.py @@ -1,5 +1,6 @@ from unittest import SkipTest +import holoviews as hv from holoviews.core.options import Store try: from holoviews import ipython @@ -93,40 +94,39 @@ class Tes...
Restored TestOutputMagic unit tests
pyviz_holoviews
train
857b46d25a5aeb49b51cf0e04a324d6e0790819a
diff --git a/lib/boxgrinder-build/plugins/delivery/ebs/ebs-plugin.rb b/lib/boxgrinder-build/plugins/delivery/ebs/ebs-plugin.rb index <HASH>..<HASH> 100644 --- a/lib/boxgrinder-build/plugins/delivery/ebs/ebs-plugin.rb +++ b/lib/boxgrinder-build/plugins/delivery/ebs/ebs-plugin.rb @@ -288,7 +288,7 @@ module BoxGrinder ...
Accidentally deleted correct code when rebasing to master, returning it now (fixes tests)
boxgrinder_boxgrinder-build
train
c0b48f9d7b443a2b7b07c8a7568ba5d81412e0ed
diff --git a/chai/mock.py b/chai/mock.py index <HASH>..<HASH> 100644 --- a/chai/mock.py +++ b/chai/mock.py @@ -3,6 +3,7 @@ An open mocking object. ''' from types import MethodType from stub import stub, Stub +from exception import UnexpectedCall class Mock(object): @@ -19,12 +20,14 @@ class Mock(object): def...
Auto-generated and __call__ Mock methods raise UnexpectedCall when not stubbed stub() method handles when argument is a Mock object by stubbing mock.__call__
agoragames_chai
train
bfd28c20840456538e627a769edcae5af0fa1a76
diff --git a/lib/adhearsion/cli_commands.rb b/lib/adhearsion/cli_commands.rb index <HASH>..<HASH> 100644 --- a/lib/adhearsion/cli_commands.rb +++ b/lib/adhearsion/cli_commands.rb @@ -5,9 +5,6 @@ require 'thor' module Adhearsion module CLI class AhnCommand < Thor - attr_accessor :app_stopped - attr_ac...
[UPDATE] fixed multiple call issue with Thor it passes ARGV on execute of script/ahn causing restart to be called again
adhearsion_adhearsion
train
57fc5e1380fe523a4b250a5ebc00575b21a37be2
diff --git a/test/images/network-tester/webserver.go b/test/images/network-tester/webserver.go index <HASH>..<HASH> 100644 --- a/test/images/network-tester/webserver.go +++ b/test/images/network-tester/webserver.go @@ -214,7 +214,7 @@ func main() { // Find all sibling pods in the service and post to their /write han...
bump wait timeout for nettest container
kubernetes_kubernetes
train
2723ca69ff10c1c0e2a012b6454de093dab58c88
diff --git a/src/main/java/io/github/bonigarcia/wdm/ChromeDriverManager.java b/src/main/java/io/github/bonigarcia/wdm/ChromeDriverManager.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/github/bonigarcia/wdm/ChromeDriverManager.java +++ b/src/main/java/io/github/bonigarcia/wdm/ChromeDriverManager.java @@ -29,7 ...
Switch to public the default constructor of DriverManager's
bonigarcia_webdrivermanager
train
4db610bb8f79de7cd52fa5c64410111db66d528c
diff --git a/lib/search_engine_unit_tests.py b/lib/search_engine_unit_tests.py index <HASH>..<HASH> 100644 --- a/lib/search_engine_unit_tests.py +++ b/lib/search_engine_unit_tests.py @@ -199,8 +199,8 @@ class TestQueryParser(unittest.TestCase): def test_parsing_structured_query_existing_field(self): "se...
WebSearch: unit test update * Amends the tests test_parsing_structured_query_existing_field and test_parsing_colons_and_spaces_badly_structured to use more common fields to keep the tests from failing on some production sites due to different non-Atlantis index configurations these sites may have. (closes #<I...
inveniosoftware_invenio-records
train
22dc1a340067ab95b4e66922a1e2320431242a6b
diff --git a/openquake/hazardlib/source/multi.py b/openquake/hazardlib/source/multi.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/source/multi.py +++ b/openquake/hazardlib/source/multi.py @@ -151,19 +151,19 @@ class MultiPointSource(ParametricSeismicSource): self.tectonic_region_type = attrs['tecton...
Removed some h5py deprecation warnings
gem_oq-engine
train
52ce7e68f12833a479fdfd414a80cf9542fedd79
diff --git a/src/js/me-shim.js b/src/js/me-shim.js index <HASH>..<HASH> 100644 --- a/src/js/me-shim.js +++ b/src/js/me-shim.js @@ -385,27 +385,30 @@ mejs.HtmlMediaElementShim = { getTypeFromFile: function(url) { url = url.split('?')[0]; - var ext = url.substring(url.lastIndexOf('.') + 1).toLowerCase(); - retu...
audio/video part passed to getTypeFromExtension
mediaelement_mediaelement
train
4009b9a66dd2125671526c294a8951d253bf2b92
diff --git a/searx/webapp.py b/searx/webapp.py index <HASH>..<HASH> 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -91,11 +91,6 @@ def index(): continue selected_categories.append(category) if not len(selected_categories): - cookie_categories = request.co...
[mod] the browser search always uses the general category
asciimoo_searx
train
5c40d6610cf4ec77b929ba0c22920107d133d0c7
diff --git a/command/format/diff.go b/command/format/diff.go index <HASH>..<HASH> 100644 --- a/command/format/diff.go +++ b/command/format/diff.go @@ -122,16 +122,6 @@ func ResourceChange( panic(fmt.Sprintf("failed to decode plan for %s while rendering diff: %s", addr, err)) } - // We currently have an opt-out t...
remove NormalizeObjectFromLegacySDK from diff The NormalizeObjectFromLegacySDK calls have been moved into the provider shims, so all objects generated by the provider should conform now.
hashicorp_terraform
train
decf540df0f478f537669de60dfea95513229273
diff --git a/python/ccxt/async/base/exchange.py b/python/ccxt/async/base/exchange.py index <HASH>..<HASH> 100644 --- a/python/ccxt/async/base/exchange.py +++ b/python/ccxt/async/base/exchange.py @@ -186,78 +186,6 @@ class Exchange(BaseExchange): orderbook = await self.perform_order_book_request(market, limit, ...
removed syncronous methods from python/ccxt/async/base/exchange.py
ccxt_ccxt
train
4e141834ee9649e825d9fbd91c0642bc04d669f2
diff --git a/src/Omnipay/WeChat/Message/WechatPurchaseRequest.php b/src/Omnipay/WeChat/Message/WechatPurchaseRequest.php index <HASH>..<HASH> 100755 --- a/src/Omnipay/WeChat/Message/WechatPurchaseRequest.php +++ b/src/Omnipay/WeChat/Message/WechatPurchaseRequest.php @@ -25,6 +25,10 @@ class WechatPurchaseRequest extend...
Throw Exception when `code_url` is empty
labs7in0_omnipay-wechat
train
ce2d1d6e2bbf93990070f3f65b372144d692b824
diff --git a/src/crypto/index.js b/src/crypto/index.js index <HASH>..<HASH> 100644 --- a/src/crypto/index.js +++ b/src/crypto/index.js @@ -1218,9 +1218,9 @@ Crypto.prototype.setDeviceVerification = async function( [deviceId]: device, }, }); - // XXX: we'll n...
Don't emit event here, as per comment
matrix-org_matrix-js-sdk
train
1a0801fc646b29b7e3a25efa03997413660dcf85
diff --git a/azkaban-common/src/main/java/azkaban/jobExecutor/ProcessJob.java b/azkaban-common/src/main/java/azkaban/jobExecutor/ProcessJob.java index <HASH>..<HASH> 100644 --- a/azkaban-common/src/main/java/azkaban/jobExecutor/ProcessJob.java +++ b/azkaban-common/src/main/java/azkaban/jobExecutor/ProcessJob.java @@ -3...
Fix bug in canWriteInCurrentWorkingDirectory, delete TEMP_FILE user_can_write in current working directory if it exists (#<I>) * Fix bug in canWriteInCurrentWorkingDirectory, delete TEMP_FILE user_can_write in current working directory if it exists
azkaban_azkaban
train
c174c20bf0fa6947c9e91f7dd5ed7ebf4f0ad8c9
diff --git a/svg/charts/line.py b/svg/charts/line.py index <HASH>..<HASH> 100644 --- a/svg/charts/line.py +++ b/svg/charts/line.py @@ -137,7 +137,7 @@ class Line(Graph): origin = paths[-1] else: area_path = "V%(graph_height)s" % vars(self) - origin = coord_format(get_coords((0,0))) + origin = c...
Fix one last usage of get_coords. Tests now pass on Python 3 natively
jaraco_svg.charts
train
91fa84d37f17884901b049a0fa87236df18ae451
diff --git a/buildsys/tasks/init.js b/buildsys/tasks/init.js index <HASH>..<HASH> 100644 --- a/buildsys/tasks/init.js +++ b/buildsys/tasks/init.js @@ -54,8 +54,7 @@ gulp.task('init', function () { var destRoot = (mode == 'local-dev') ? config.paths.testRoot + '/src' : config.paths.srcRoot - // return gu...
fixing src on init once and for all!
weareenvoy_holly
train
1e0f34e43a32280a89008a2337c4f8a67f74b494
diff --git a/src/main/java/org/dasein/cloud/google/network/LoadBalancerSupport.java b/src/main/java/org/dasein/cloud/google/network/LoadBalancerSupport.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/dasein/cloud/google/network/LoadBalancerSupport.java +++ b/src/main/java/org/dasein/cloud/google/network/LoadBa...
Enhanced null checking to combat issue in bug <I>
dasein-cloud_dasein-cloud-google
train
01e42d5dcc7e45fffff0a4c879d91aadc3d9bb49
diff --git a/lib/environment.js b/lib/environment.js index <HASH>..<HASH> 100644 --- a/lib/environment.js +++ b/lib/environment.js @@ -693,7 +693,10 @@ class Environment extends EventEmitter { let resolved; // Win32: moduleId is resolving as moduleId.js or moduleId.json instead of moduleId/index.js, workaroun...
Add missing try/catch on require.resolve and remove js extension to fix (#<I>) ts support.
yeoman_environment
train
204f41c7fa3b0af2e61c048b601996faf2b68a7f
diff --git a/src/public/scheduler.js b/src/public/scheduler.js index <HASH>..<HASH> 100644 --- a/src/public/scheduler.js +++ b/src/public/scheduler.js @@ -105,7 +105,7 @@ sigma.scheduler = (function() { } stop(); } else { - var n; + var n = (typeof v == 'string') ? v : ''; this.worke...
Fixed queue emptying in removeWorker()
jacomyal_sigma.js
train
09b6c2531d9117de07cc88b15c9b51e59e744095
diff --git a/app/assets/javascripts/pageflow/page_types/video.js b/app/assets/javascripts/pageflow/page_types/video.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/pageflow/page_types/video.js +++ b/app/assets/javascripts/pageflow/page_types/video.js @@ -49,10 +49,11 @@ pageflow.pageType.register('video', _...
Do not set video src on video page activate While historically this might have been required for iOS, it causes crashes of Chrome on Android now. Keep for iOS to prevent making things worse there.
codevise_pageflow
train
76cff47fef7d66739f23e662a84388c5fe5825bb
diff --git a/packages/adapter-flat-file-db/index.js b/packages/adapter-flat-file-db/index.js index <HASH>..<HASH> 100644 --- a/packages/adapter-flat-file-db/index.js +++ b/packages/adapter-flat-file-db/index.js @@ -1,8 +1,8 @@ const path = require('path'); const flatfile = require('flat-file-db'); const promisify = ...
fix: Use adapter-utils filtering in flat-file-db
micro-analytics_micro-analytics-cli
train
b816daf809c7bd48c54e80f029de17bed1bdd5fd
diff --git a/ovirtlago/cmd.py b/ovirtlago/cmd.py index <HASH>..<HASH> 100755 --- a/ovirtlago/cmd.py +++ b/ovirtlago/cmd.py @@ -119,18 +119,6 @@ def do_ovirt_runtest(prefix, test_file, **kwargs): action='store_true', ) @cli_plugin_add_argument( - '--engine-dir', - help=('Deprecated, left here for backwards ...
ovirtlago: remove deprecated per-project repo directories These were not used for a while, so it has no affect except cleanup.
lago-project_lago
train
814d7983bc586c7e62f7eb3bed8cecdf4e7507d8
diff --git a/docs/assets/js/docs.js b/docs/assets/js/docs.js index <HASH>..<HASH> 100644 --- a/docs/assets/js/docs.js +++ b/docs/assets/js/docs.js @@ -108,4 +108,11 @@ window.addEventListener('load', function () { document.getElementById('open-menu').addEventListener('click', function () { document.getEle...
add move to id on resize
Scout24_showcar-ui
train
fca673d65393b98ac50d2c830f3fcaff58238190
diff --git a/src/xterm.js b/src/xterm.js index <HASH>..<HASH> 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -2470,16 +2470,16 @@ Terminal.prototype.evaluateKeyEscapeSequence = function(ev) { }; var modifiers = ev.shiftKey << 0 | ev.altKey << 1 | ev.ctrlKey << 2 | ev.metaKey << 3; switch (ev.keyCode) { - ...
Move key handler comments inside case blocks Improves readability
xtermjs_xterm.js
train
2fdce2d671a4f319323a5d92db508ad05c72d550
diff --git a/test/lib/agent/utils/storage.js b/test/lib/agent/utils/storage.js index <HASH>..<HASH> 100644 --- a/test/lib/agent/utils/storage.js +++ b/test/lib/agent/utils/storage.js @@ -34,7 +34,7 @@ describe('storage', function() { describe('with nonexisting path', function() { before(function(done) { -...
Fix storage test on nonexisting path
prey_prey-node-client
train
6537beaf823d3c29555ef0956d8240cfbaa634eb
diff --git a/src/components/text.js b/src/components/text.js index <HASH>..<HASH> 100644 --- a/src/components/text.js +++ b/src/components/text.js @@ -239,12 +239,12 @@ module.exports.Component = registerComponent('text', { self.mesh.visible = true; el.emit('textfontset', {font: data.font, fontObj: fo...
fix text used with other geometry types (fixes #<I>) (#<I>)
aframevr_aframe
train
1803c65e4097b9d6cb83f72a8a09aeddcc01f685
diff --git a/p2p/crypto.go b/p2p/crypto.go index <HASH>..<HASH> 100644 --- a/p2p/crypto.go +++ b/p2p/crypto.go @@ -53,6 +53,21 @@ func newCryptoId(id ClientIdentity) (self *cryptoId, err error) { return } +func (self *cryptoId) Run(remotePubKeyDER []byte) (rw *secretRW) { + if self.initiator { + auth, initNonce, ...
integrate cryptoId into peer and connection lifecycle
ethereum_go-ethereum
train
0b99123f27c553cb4b1bbc41d39c0d62adb6840a
diff --git a/server/sonar-web/src/main/js/components/charts/treemap.js b/server/sonar-web/src/main/js/components/charts/treemap.js index <HASH>..<HASH> 100644 --- a/server/sonar-web/src/main/js/components/charts/treemap.js +++ b/server/sonar-web/src/main/js/components/charts/treemap.js @@ -45,6 +45,10 @@ export const T...
hide link icon on very small treemap cells
SonarSource_sonarqube
train
41c8fb505f3eab5f1ae074eb28894e37be61caec
diff --git a/src/ui/components/ReactOverlayView.js b/src/ui/components/ReactOverlayView.js index <HASH>..<HASH> 100644 --- a/src/ui/components/ReactOverlayView.js +++ b/src/ui/components/ReactOverlayView.js @@ -70,6 +70,7 @@ var ReactOverlayView = React.createClass({ componentDidUpdate: function(prevProps) { ...
Re-draw Overlayview when componentDidUpdate Call draw method of the Overlayview when the React component updates. This allows the position of the overlay to be changed through props and have the overlay update on the map.
pieterv_react-googlemaps
train
c8a9724ec32b8344e3547db4bcd3c63eb1277c53
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.21.0] - 2018-04-23 +### Fixed +- Update GET group...
Update GET and PUT groups api routes
discourse_discourse_api
train
b1036aabfd2264d0fa6f8ecf294996442a418dc8
diff --git a/azure-cognitiveservices-search/azure/cognitiveservices/search/__init__.py b/azure-cognitiveservices-search/azure/cognitiveservices/search/__init__.py index <HASH>..<HASH> 100644 --- a/azure-cognitiveservices-search/azure/cognitiveservices/search/__init__.py +++ b/azure-cognitiveservices-search/azure/cognit...
Do not declare azure.cognitiveservices.search as NSpkg
Azure_azure-sdk-for-python
train
c8052ddb866ec8ef7f940b2dec97913cadfd4cae
diff --git a/lib/python/voltdbclient.py b/lib/python/voltdbclient.py index <HASH>..<HASH> 100644 --- a/lib/python/voltdbclient.py +++ b/lib/python/voltdbclient.py @@ -20,7 +20,7 @@ if sys.hexversion < 0x02050000: raise Exception("Python version 2.5 or greater is required.") import array import socket -import ssl...
ENG-<I>: bypass import ssl if python don't support it (#<I>) * bypass import ssl if python don't support it * address the comment
VoltDB_voltdb
train
de2146b276ac1ecdf3245a85f191bb5b6f296894
diff --git a/mod/quiz/question.php b/mod/quiz/question.php index <HASH>..<HASH> 100644 --- a/mod/quiz/question.php +++ b/mod/quiz/question.php @@ -123,6 +123,8 @@ switch ($question->qtype) { case SHORTANSWER: // Delete all the old answers + // FIXME ...
Note for something that needs to be fixed
moodle_moodle
train
742f29f020c21662d4797133ffbb4f805ac292e1
diff --git a/Datagrid/PropelDatagrid.php b/Datagrid/PropelDatagrid.php index <HASH>..<HASH> 100644 --- a/Datagrid/PropelDatagrid.php +++ b/Datagrid/PropelDatagrid.php @@ -134,7 +134,7 @@ abstract class PropelDatagrid implements PropelDatagridInterface $empty = false; } ...
Fix problems with 0 value in filter
spyrit_PropelDatagridBundle
train