hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
ae179ddd1fe0562ae9f46ddf212d7fad67cc317e
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -4254,8 +4254,8 @@ window.CodeMirror = (function() { replaceSelection: function(code, collapse, origin) { makeChange(this, {from: this.sel.from, to: this.sel.to, text: splitLines...
Wrap undo/redo in an operation
codemirror_CodeMirror
train
342c210603c74e4de0fc56d210c962ef9acc2cca
diff --git a/tests/test_ez_setup.py b/tests/test_ez_setup.py index <HASH>..<HASH> 100644 --- a/tests/test_ez_setup.py +++ b/tests/test_ez_setup.py @@ -37,7 +37,7 @@ class TestSetup(unittest.TestCase): def test_install(self): def _faked(*args): return True - ez_setup.python_cmd = _faked...
Update test_install to actually patch the hidden _python_cmd.
pypa_setuptools
train
044c2df8cb9a20f7e867e38565f807eabbe0364d
diff --git a/src/Controller/CrudTrait.php b/src/Controller/CrudTrait.php index <HASH>..<HASH> 100644 --- a/src/Controller/CrudTrait.php +++ b/src/Controller/CrudTrait.php @@ -101,7 +101,7 @@ trait CrudTrait $this->crudFlashMessage($request, 'success', sprintf('%s.create.flash.success', $this->crudNam...
there is no need for a crudCreateRedirectUrl
saxulum_saxulum-crud
train
0988e47d69c27ea8aa4358d242aaff8f2b8d755e
diff --git a/lib/puppet/network/http/connection.rb b/lib/puppet/network/http/connection.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/network/http/connection.rb +++ b/lib/puppet/network/http/connection.rb @@ -84,12 +84,12 @@ module Puppet::Network::HTTP # method above, so they will not inherit the same error han...
(#<I>) Proxy the request_get block to Net::HTTP The fix in a<I>a is insufficient because it silently drops the block passed to the request_get block. This is a problem because it causes file content to be silently dropped and truncated to zero bytes. This patch fixes the problem by proxying the get request block alo...
puppetlabs_puppet
train
7a4c47921c419f9ee7dc8b16c0b21b84dcc99341
diff --git a/src/scene.js b/src/scene.js index <HASH>..<HASH> 100755 --- a/src/scene.js +++ b/src/scene.js @@ -331,10 +331,21 @@ export default class Scene { } } - // Round robin selection of next worker - nextWorker() { - var worker = this.workers[this.next_worker]; - this.next_work...
pin all tiles from each non-tiled source to a single worker prevents data for these sources from being loaded more than once
tangrams_tangram
train
e12b9d8257595c31843e9e472f72cdbed70fb602
diff --git a/lib/receipt.js b/lib/receipt.js index <HASH>..<HASH> 100644 --- a/lib/receipt.js +++ b/lib/receipt.js @@ -1,5 +1,4 @@ import ethUtil from 'ethereumjs-util'; -import bufferShim from 'buffer-shims'; import Signer from './signer'; export const Type = { @@ -12,8 +11,7 @@ export const Type = { function ...
removed buffer shim (#<I>)
acebusters_poker-helper
train
16701c51697e28986feebd122c6a491e4d9ac0e7
diff --git a/cmd/geth/dbcmd.go b/cmd/geth/dbcmd.go index <HASH>..<HASH> 100644 --- a/cmd/geth/dbcmd.go +++ b/cmd/geth/dbcmd.go @@ -18,7 +18,6 @@ package main import ( "bytes" - "errors" "fmt" "os" "os/signal" @@ -418,7 +417,7 @@ func dbGet(ctx *cli.Context) error { db := utils.MakeChainDatabase(ctx, stack,...
internal/ethapi: add db operations to api (#<I>) Adds `debug_dbGet` method to rpc api
ethereum_go-ethereum
train
faf01ee4de1e6686eafaf80918ec15a73b164f94
diff --git a/mod/scorm/player.php b/mod/scorm/player.php index <HASH>..<HASH> 100755 --- a/mod/scorm/player.php +++ b/mod/scorm/player.php @@ -71,6 +71,9 @@ // TOC processing // $scorm->version = strtolower(clean_param($scorm->version, PARAM_SAFEDIR)); // Just to be safe + if (!file_exists($CFG->dir...
FIxed problem when scorm->version is bad
moodle_moodle
train
d626f7e034c5a19627ba7a65dacc25d1e21d6573
diff --git a/jwt/__init__.py b/jwt/__init__.py index <HASH>..<HASH> 100644 --- a/jwt/__init__.py +++ b/jwt/__init__.py @@ -25,6 +25,7 @@ if sys.version_info >= (3, 0, 0): basestring = str +__version__ = '0.2.2' __all__ = ['encode', 'decode', 'DecodeError'] diff --git a/setup.py b/setup.py index <HASH>..<H...
Add __version__ and derive package version from it
jpadilla_pyjwt
train
463afebf12bec10f265be90d167e02c0c6ceee31
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,7 @@ release = '1.0' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['examples'] +exclude_pattern...
Adding back source links in the docs This may fail to build the docs...
regebro_hovercraft
train
54773ede1e345aa064827b6e0bf8dddacb625ef7
diff --git a/frame.js b/frame.js index <HASH>..<HASH> 100644 --- a/frame.js +++ b/frame.js @@ -18,11 +18,6 @@ Frame.prototype.render = function(){ Frame.prototype.url = new Gaffa.Property(function(view, value){ var gaffa = this.gaffa; - if(view._loadedView){ - view._loadedView.remove(); - view....
Previous view is not removed untill new view is loaded
KoryNunn_gaffa-frame
train
a4f9705f76ae592997886ddedc02dd14098aac7c
diff --git a/Zewa/App.php b/Zewa/App.php index <HASH>..<HASH> 100644 --- a/Zewa/App.php +++ b/Zewa/App.php @@ -171,12 +171,11 @@ class App $this->request = new Request(); - $this->module = self::$configuration->router->module; - $this->controller = self::$configuration->router->controller; + ...
finished up cleaning namespaces/paths
zewadesign_framework
train
01d7fe071753fdc27af1b8f79a55e516e9c52d90
diff --git a/src/TextFormatter/Plugins/WittyPantsConfig.php b/src/TextFormatter/Plugins/WittyPantsConfig.php index <HASH>..<HASH> 100644 --- a/src/TextFormatter/Plugins/WittyPantsConfig.php +++ b/src/TextFormatter/Plugins/WittyPantsConfig.php @@ -97,13 +97,13 @@ class WittyPantsConfig extends PluginConfig * characte...
TextFormatter: fixed apostrophe regexp to not include digits with \w + fixed primes routine
s9e_TextFormatter
train
0855658550fa5d9428a82b0465e1c8a3b6ef2dd3
diff --git a/state/multiwatcher.go b/state/multiwatcher.go index <HASH>..<HASH> 100644 --- a/state/multiwatcher.go +++ b/state/multiwatcher.go @@ -5,7 +5,6 @@ package state import ( "container/list" - stderrors "errors" "reflect" "github.com/juju/errors" @@ -57,7 +56,31 @@ func (w *Multiwatcher) Stop() error...
Partially cherry-picks <I>e2dbcc7cdd<I>a<I>cc<I>f<I>d<I>e5ecfe<I>d<I>, returning typed stop errors from multi-watcher.
juju_juju
train
e43dfba966cbb95aa0c47bdf5936bb5023b79d5a
diff --git a/server.go b/server.go index <HASH>..<HASH> 100644 --- a/server.go +++ b/server.go @@ -285,7 +285,7 @@ type Upgrader struct { // preferable." Extension func(httphead.Option) bool - // ExtensionCustorm allow user to parse Sec-WebSocket-Extensions header manually. + // ExtensionCustom allow user to pars...
fix: just a typo (#<I>)
gobwas_ws
train
a66c1e7ccfc27d5bf07903d2e188614e4d767b81
diff --git a/lib/vips.rb b/lib/vips.rb index <HASH>..<HASH> 100644 --- a/lib/vips.rb +++ b/lib/vips.rb @@ -46,8 +46,12 @@ module GObject ffi_lib gobject_libname - # :gtype will usually be 64-bit, but will be 32-bit on 32-bit Windows - typedef :ulong, :GType + # we can't just use ulong, windows has dif...
size gtype as uint<I> on <I>-bit machines helps win<I>
libvips_ruby-vips
train
dccb82f72364c2c6038597e46aae1b679bfdf19d
diff --git a/tests/test_webhooks.py b/tests/test_webhooks.py index <HASH>..<HASH> 100644 --- a/tests/test_webhooks.py +++ b/tests/test_webhooks.py @@ -1,5 +1,6 @@ import requests import asyncio +import pytest from urllib.parse import urlparse from aiohttp import web from aiotg.mock import MockBot @@ -19,6 +20,7 @@...
Just skip webhooks test, it's very fragile
szastupov_aiotg
train
57116111f4f4980896a7469a53ac24128211e36f
diff --git a/lib/controller/index.js b/lib/controller/index.js index <HASH>..<HASH> 100644 --- a/lib/controller/index.js +++ b/lib/controller/index.js @@ -28,7 +28,13 @@ class BaseController { options.fields = options.fields || {}; options.allFields = options.allFields || options.fields; - op...
Format curly quotes and apostrophes to standard quotes and apostrophes
UKHomeOffice_passports-form-wizard
train
c85c8b0971350dbb51408d1c241e4d0b6ee512ba
diff --git a/lib/3scale/core/user.rb b/lib/3scale/core/user.rb index <HASH>..<HASH> 100644 --- a/lib/3scale/core/user.rb +++ b/lib/3scale/core/user.rb @@ -106,13 +106,13 @@ module ThreeScale "service:#{service_id}/user:#{username}" end - #def storage_key(service_id, username, attribute) - #...
uncommenting from functions of users needed for the backend only
3scale_pisoni
train
195fe0e9a74c0c1c41c58303b3e0092b1db31dc9
diff --git a/src/main/java/com/mangofactory/swagger/models/PrimitiveMemberVisitor.java b/src/main/java/com/mangofactory/swagger/models/PrimitiveMemberVisitor.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/mangofactory/swagger/models/PrimitiveMemberVisitor.java +++ b/src/main/java/com/mangofactory/swagger/mode...
Added support for short primitive types fixes #<I>
springfox_springfox
train
fbdb0f08e027827fac1c3699f0ec2efdd358f609
diff --git a/resources/prepublish.js b/resources/prepublish.js index <HASH>..<HASH> 100644 --- a/resources/prepublish.js +++ b/resources/prepublish.js @@ -20,9 +20,7 @@ if (config.scripts.prepublish.indexOf('node ') !== 0) { // Guard against somebody helpfully trying to make the package.json scripts // consistent...
Shorten a line to avoid problem with prettier If this line is too long, prettier wants to wrap this call across multiple lines, and it wants to append a trailing comma too. That's fine on our Babel-transpiled files, but is no good on this one, which needs to be acceptable by vanilla node. So, rather than making an ugl...
graphql_graphiql
train
c9bb5f6a63d3007afe65bef1bd10b36a9fde9b3e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ install_requires = [ 'Flask>=0.11.1', 'celery>=3.1.19', 'invenio-records>=1.0.0a8', - 'invenio-search>=1.0.0a4', + 'invenio-search>=1.0.0a7', 'pytz>=2016.4', ]
installation: invenio-search>=<I>a7
inveniosoftware_invenio-indexer
train
91b6ed0dbdab233eedab558c82b19feafd201a52
diff --git a/fedmsg/core.py b/fedmsg/core.py index <HASH>..<HASH> 100644 --- a/fedmsg/core.py +++ b/fedmsg/core.py @@ -121,7 +121,7 @@ class FedMsgContext(object): warnings.warn("fedmsg is not configured to send any messages") # Cleanup. See http://bit.ly/SaGeOr for discussion. - weakref...
No to CamelCase.
fedora-infra_fedmsg
train
a13d14299af754d18bdcec3d84279b5a244741a4
diff --git a/test/level2/core/files/hc_staff.xml.js b/test/level2/core/files/hc_staff.xml.js index <HASH>..<HASH> 100644 --- a/test/level2/core/files/hc_staff.xml.js +++ b/test/level2/core/files/hc_staff.xml.js @@ -5,7 +5,7 @@ exports.hc_staff = function() { var doc = new dom.Document("html"); var implementatio...
set test documents to xml <I>
jsdom_jsdom
train
d08a727e35da6d8334561963d9839a0bf5e14bfc
diff --git a/source/rafcon/gui/controllers/modification_history.py b/source/rafcon/gui/controllers/modification_history.py index <HASH>..<HASH> 100755 --- a/source/rafcon/gui/controllers/modification_history.py +++ b/source/rafcon/gui/controllers/modification_history.py @@ -236,7 +236,7 @@ class ModificationHistoryTree...
refactor(modification_history): rename internal functions
DLR-RM_RAFCON
train
fcff090cb312ac2510349aeb6cd185093f38f842
diff --git a/cocaine/asio/stream.py b/cocaine/asio/stream.py index <HASH>..<HASH> 100644 --- a/cocaine/asio/stream.py +++ b/cocaine/asio/stream.py @@ -62,7 +62,8 @@ class CocaineStream(IOStream): super(CocaineStream, self).connect(address, functools.partial(self._on_connect, callback), server_hostname) ...
Several bugs has been fixed. * race condition in mocks. * null check for connect callback in stream.
cocaine_cocaine-framework-python
train
388b4b7a0a522bf155cd84d5fe072235c9f872cf
diff --git a/spec/mail/message_spec.rb b/spec/mail/message_spec.rb index <HASH>..<HASH> 100644 --- a/spec/mail/message_spec.rb +++ b/spec/mail/message_spec.rb @@ -1401,6 +1401,14 @@ describe Mail::Message do mail.body = body mail.to_s =~ %r{Content-Type: text/plain; charset=US-ASCII} end ...
Message should not set a charset if it is an attachment part
mikel_mail
train
4200ce4e4435a5f1e99fc1a1afe6ea3398ecf1c8
diff --git a/src/main/java/com/couchbase/lite/replicator/Replication.java b/src/main/java/com/couchbase/lite/replicator/Replication.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/couchbase/lite/replicator/Replication.java +++ b/src/main/java/com/couchbase/lite/replicator/Replication.java @@ -1,5 +1,6 @@ pack...
Issue #<I> - Fix by making behavior closer to iOS code (in the iOS case, the object that is responsible for emitting network state events is given the runloop of the replicator thread) <URL>
couchbase_couchbase-lite-java-core
train
d9f389eb01176fae39fa679921ddfec29fabf1cd
diff --git a/src/main/java/com/marklogic/client/pojo/PojoQueryBuilder.java b/src/main/java/com/marklogic/client/pojo/PojoQueryBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/marklogic/client/pojo/PojoQueryBuilder.java +++ b/src/main/java/com/marklogic/client/pojo/PojoQueryBuilder.java @@ -108,8 +108,8 ...
fix a mistake in javadoc calls to containerQueryBuilder; add generics on PojoQueryBuilder
marklogic_java-client-api
train
ca4c99a0ecb45dec4f72596b293321d85a45cab7
diff --git a/tests/strategies.py b/tests/strategies.py index <HASH>..<HASH> 100644 --- a/tests/strategies.py +++ b/tests/strategies.py @@ -19,9 +19,11 @@ def epoch(): @composite def release(draw): - a = draw(num_str) - parts = [a] + draw(lists(num_str.map(lambda s: '.' + s))) - return ''.join(parts) + r...
Improve hypothesis strategies I used the combinators instead of calling draw multiple times for different parts.
RazerM_parver
train
b7eef094c6af4d51f59c62f5ba350cb3bf075ec1
diff --git a/test/geocoder/agolgeocoder.js b/test/geocoder/agolgeocoder.js index <HASH>..<HASH> 100644 --- a/test/geocoder/agolgeocoder.js +++ b/test/geocoder/agolgeocoder.js @@ -85,7 +85,7 @@ describe('AGOLGeocoder', function() { }); - it('Should not accept IPdoes not support geov6', function() { +...
various english typos. And made a typo myself.
nchaulet_node-geocoder
train
bca1e24d4a7fd17877aa69c0c99d65b0c97bfe47
diff --git a/web/concrete/core/models/page.php b/web/concrete/core/models/page.php index <HASH>..<HASH> 100644 --- a/web/concrete/core/models/page.php +++ b/web/concrete/core/models/page.php @@ -108,33 +108,17 @@ class Concrete5_Model_Page extends Collection { $this->loadError(COLLECTION_NOT_FOUND); } - if ...
moving page permission assignments back into on demand fetching Former-commit-id: <I>fc<I>ac<I>eebacef2e8df1b8fa0b<I>a3d8b<I>f
concrete5_concrete5
train
6c049f329069a1fbc74c77e67a5afa80170bb236
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -221,7 +221,16 @@ waigo.load = function(moduleName) { sanitizedModuleName = moduleName.substr(sepPos + 1); } - debug('Loading module "' + sanitizedModuleName + '" from source "' + sourceName + '"'); + debug('Loadin...
All tests for index.js completed.
waigo_waigo
train
a4351c0f2b1631576621890150a7950d68414c3b
diff --git a/container/src/main/java/org/jboss/forge/container/services/RemoteServiceProxyBeanCallback.java b/container/src/main/java/org/jboss/forge/container/services/RemoteServiceProxyBeanCallback.java index <HASH>..<HASH> 100644 --- a/container/src/main/java/org/jboss/forge/container/services/RemoteServiceProxyBean...
Services should be looked up by native type (not qualified as @Service) from RemoteServiceImpl lazy proxy
forge_core
train
07dcfa928044d5d0cd201b2609598145b1a1817e
diff --git a/releaf-content/app/builders/releaf/content/nodes/form_builder.rb b/releaf-content/app/builders/releaf/content/nodes/form_builder.rb index <HASH>..<HASH> 100644 --- a/releaf-content/app/builders/releaf/content/nodes/form_builder.rb +++ b/releaf-content/app/builders/releaf/content/nodes/form_builder.rb @@ -7...
Optimize item_position_select_options
cubesystems_releaf
train
b6c3a7fa28c270c49c58da1bc1f079307873dc8d
diff --git a/lib/steam/servers/GameServer.php b/lib/steam/servers/GameServer.php index <HASH>..<HASH> 100644 --- a/lib/steam/servers/GameServer.php +++ b/lib/steam/servers/GameServer.php @@ -276,58 +276,54 @@ abstract class GameServer extends Server { * response packet is not known */ private fu...
Don't catch timeouts in GameServer Closes #<I>
koraktor_steam-condenser-php
train
37219fd7ac84577bfd71bdfcafd2a58b55dd717e
diff --git a/src/main/java/io/vlingo/http/resource/Client.java b/src/main/java/io/vlingo/http/resource/Client.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/vlingo/http/resource/Client.java +++ b/src/main/java/io/vlingo/http/resource/Client.java @@ -36,12 +36,14 @@ import io.vlingo.wire.node.Host; public cl...
Support repeating completes for keep-alive connections supporting SSE.
vlingo_vlingo-http
train
c50beace87549827c0da4bbd05488159716a21f7
diff --git a/array/move_zeros_to_end.py b/array/move_zeros_to_end.py index <HASH>..<HASH> 100644 --- a/array/move_zeros_to_end.py +++ b/array/move_zeros_to_end.py @@ -10,12 +10,10 @@ def move_zeros(array): zeros = 0 for i in array: - if not i and type(i) is int or type(i) is float: + if i is 0...
minor update in if statement and used list.extend()
keon_algorithms
train
7ec70d5434653b9d3c1f73f8913d576842fe0cc4
diff --git a/src/views/install/index/_requirement.blade.php b/src/views/install/index/_requirement.blade.php index <HASH>..<HASH> 100644 --- a/src/views/install/index/_requirement.blade.php +++ b/src/views/install/index/_requirement.blade.php @@ -15,11 +15,11 @@ @foreach ($checklist as $name => $requirement) ...
Updates blade output so code tags are not escaped Laravel <I> uses escaped characters by default. Since code tag is being used in installer requirements view, need to use {!! rather than {{ or {{{ to display the unescaped output.
orchestral_foundation
train
73652ed41e3764f38c6ec57d478a76087b2096b3
diff --git a/lib/designdoc.js b/lib/designdoc.js index <HASH>..<HASH> 100755 --- a/lib/designdoc.js +++ b/lib/designdoc.js @@ -33,15 +33,6 @@ DesignDocument.prototype.info = function (callback) { }; /** - * Gets the list of views - */ -DesignDocument.prototype.views = function () { - this.body.views = this.body.vie...
updating design doc API to remove 'duplication' in methods
dominicbarnes_node-couchdb-api
train
e163e57ba0171078421e1649908ff478cc603a77
diff --git a/docs/installation/configuration.rst b/docs/installation/configuration.rst index <HASH>..<HASH> 100644 --- a/docs/installation/configuration.rst +++ b/docs/installation/configuration.rst @@ -1125,15 +1125,15 @@ Below is an example implementation of the ``ImboUsers`` resource used in the abo } ...
Fixed example in config and removed some stuff that was only used by the XML formatter that has been removed.
imbo_imbo
train
ffbfd6f52fe625f3902fa11c1e99012e29ba644f
diff --git a/integration-test-2_1/src/main/java/info/archinnov/achilles/internals/entities/TestUDT.java b/integration-test-2_1/src/main/java/info/archinnov/achilles/internals/entities/TestUDT.java index <HASH>..<HASH> 100644 --- a/integration-test-2_1/src/main/java/info/archinnov/achilles/internals/entities/TestUDT.jav...
Force the bean validation error message to avoid locale dependent build issue
doanduyhai_Achilles
train
bc316484754f1a52d14f759c60a4700cbdc3cb23
diff --git a/test/Normaliser/SqlNormaliserTest.php b/test/Normaliser/SqlNormaliserTest.php index <HASH>..<HASH> 100644 --- a/test/Normaliser/SqlNormaliserTest.php +++ b/test/Normaliser/SqlNormaliserTest.php @@ -18,7 +18,7 @@ class SqlNormaliserTest extends \PHPUnit_Framework_TestCase { * @param array $entityMap ...
Fix metadata mocks for normalisation tests Needed to add primary key fields
silktide_reposition-sql
train
2a03fdc375e54f0368ff42ea3a2eac18e8bff80e
diff --git a/circuitbreaker.go b/circuitbreaker.go index <HASH>..<HASH> 100644 --- a/circuitbreaker.go +++ b/circuitbreaker.go @@ -211,6 +211,8 @@ type TimeoutBreaker struct { } // NewTimeoutBreaker returns a new TimeoutBreaker with the given call timeout and failure threshold. +// If timeout is specified as 0 then...
If a timeout breaker has a timeout of 0 it should behave like a threshold breaker
rubyist_circuitbreaker
train
0426f15fc7a48c2af6c29db28d6e9523c4213db7
diff --git a/lib/adal-angular.js b/lib/adal-angular.js index <HASH>..<HASH> 100644 --- a/lib/adal-angular.js +++ b/lib/adal-angular.js @@ -226,8 +226,6 @@ } var routeChangeHandler = function (e, nextRoute) { - var nextRouteUrl; - if (nextRoute ...
code revised for statechange and route change event
AzureAD_azure-activedirectory-library-for-js
train
2f19c1256ec1ec6a61aca3fa2469cb9a2ca9a63a
diff --git a/espncricinfo/match.py b/espncricinfo/match.py index <HASH>..<HASH> 100644 --- a/espncricinfo/match.py +++ b/espncricinfo/match.py @@ -107,6 +107,9 @@ class Match(object): def match_json(self): return self.json['match'] + def innings_comms_url(self, innings=1, page=1): + return f"h...
added cricinfo commentary json url
dwillis_python-espncricinfo
train
c0b664f544a04d0c96c4449fbedd97ae13e319d8
diff --git a/nameko/testing/services.py b/nameko/testing/services.py index <HASH>..<HASH> 100644 --- a/nameko/testing/services.py +++ b/nameko/testing/services.py @@ -253,13 +253,13 @@ def replace_dependencies(container, *dependencies, **dependency_map): """ Replace the dependency providers on ``container`` with ...
replace_dependencies doc amendments
nameko_nameko
train
d616b640e9282048b988e388821b5433f5febae2
diff --git a/src/video/renderer.js b/src/video/renderer.js index <HASH>..<HASH> 100644 --- a/src/video/renderer.js +++ b/src/video/renderer.js @@ -351,6 +351,10 @@ class Renderer { * @param {boolean} [fill=false] fill the shape with the current color if true */ stroke(shape, fill) { + if (shape ...
fix a regression with roundRect geometry drawing roundRect extends Rect, so testing with instanceof return true against Rect !
melonjs_melonJS
train
36be17617d7cff79a236d01ebfb56b45f2ecb1ea
diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Common/Page/Page.php +++ b/system/src/Grav/Common/Page/Page.php @@ -517,7 +517,7 @@ class Page // Load cached content /** @var Cache $cache */ ...
use old cache_id mechanism for safety
getgrav_grav
train
89c135454edce948a316d708ffbe26fceec2b122
diff --git a/lib/configure.js b/lib/configure.js index <HASH>..<HASH> 100644 --- a/lib/configure.js +++ b/lib/configure.js @@ -250,24 +250,20 @@ function configure (gyp, argv, callback) { , defaults = config.target_defaults , variables = config.variables - if (!defaults) { - defaults = config.ta...
configure: don't inherit the `process.config.defaults` This has been something I've been thinking about for a while now and I finally just got my first bug report for it, so I think emptying out these values is in fact the correct behavior.
janeasystems_nodejs-mobile-gyp
train
51dffb5cbe1a2f5f7b5a910b56ce17b5b86dcf2f
diff --git a/mutant/models/model.py b/mutant/models/model.py index <HASH>..<HASH> 100644 --- a/mutant/models/model.py +++ b/mutant/models/model.py @@ -286,14 +286,61 @@ class BaseDefinition(OrderableModel, ModelDefinitionAttribute): unique_together = (('model_def', 'order'),) def clean(self): - ...
Fixed base support for abstract model base. Might be worth investigating how we could non-abstract model base support (if possible).
charettes_django-mutant
train
c1bf071f4ef11bbbd108364821031a0e2c6e4cfa
diff --git a/Auth/Yadis/ParanoidHTTPFetcher.php b/Auth/Yadis/ParanoidHTTPFetcher.php index <HASH>..<HASH> 100644 --- a/Auth/Yadis/ParanoidHTTPFetcher.php +++ b/Auth/Yadis/ParanoidHTTPFetcher.php @@ -80,7 +80,7 @@ class Auth_Yadis_ParanoidHTTPFetcher extends Auth_Yadis_HTTPFetcher { if (!$this->canFetchURL($url...
Add Auth_OpenID_DISABLE_SSL_VERIFY opt to disable SSL verify
openid_php-openid
train
4d06481fbd3d7aecb9b3d9ec529f4bc90c1d4876
diff --git a/lime/lime_text.py b/lime/lime_text.py index <HASH>..<HASH> 100644 --- a/lime/lime_text.py +++ b/lime/lime_text.py @@ -11,6 +11,8 @@ import itertools import inspect +import scipy as sp +import sklearn from . import lime_base from . import explanation diff --git a/lime/tests/TestLimeText.py b/lime/t...
Better testing Better testing for LimeText and some minor fixes for imports
marcotcr_lime
train
ec892a7083ee9454203fce8ab7b09543e458a8e4
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from util.cyutil import cythonize # my version of Cython.Build.cythonize # NOTE: distutils makes no sense extra_link_args = [] -extra_compile_args = [] +extra_compile_args = ['-DHMM_TEMPS_ON_HEAP'] if '--wi...
put HMM temps on heap by default
mattjj_pyhsmm
train
a70775a2387106c2cd24aa473d0294d51b0f7b69
diff --git a/utils/vmnet.py b/utils/vmnet.py index <HASH>..<HASH> 100644 --- a/utils/vmnet.py +++ b/utils/vmnet.py @@ -23,7 +23,12 @@ import argparse from collections import OrderedDict -VMWARE_NETWORKING_FILE = "/etc/vmware/networking" +if sys.platform.startswith("darwin"): + VMWARE_NETWORKING_FILE = "/Library...
Updates vmnet script to support Mac OS X.
GNS3_gns3-server
train
1cb1bfde3b5ec2a78771f30c67ba08e22763e30d
diff --git a/lib/arbre/element.rb b/lib/arbre/element.rb index <HASH>..<HASH> 100644 --- a/lib/arbre/element.rb +++ b/lib/arbre/element.rb @@ -128,6 +128,10 @@ module Arbre def each(&block) [to_s].each(&block) end + + def inspect + to_s + end def to_str to_s
make `Element#inspect` behave correctly in Ruby <I> As of ruby/ruby@fd7dc<I>d<I>f, `Kernel#inspect` no longer uses `to_s` if it's defined. This means that if `Element#inspect` is called, you'll currently get every instance variable printed out instead of the expected HTML.
activeadmin_arbre
train
d4ce844232698d9954b48126c3e0204d6f510e07
diff --git a/Classes/Domain/Search/ResultSet/Facets/OptionBased/Options/OptionsFacetParser.php b/Classes/Domain/Search/ResultSet/Facets/OptionBased/Options/OptionsFacetParser.php index <HASH>..<HASH> 100644 --- a/Classes/Domain/Search/ResultSet/Facets/OptionBased/Options/OptionsFacetParser.php +++ b/Classes/Domain/Sear...
[TASK] Dispatch signals in OptionsFacetParser (#<I>) This patch adds the possibility to do do individual stuff, like applying a special sorting, after parsing the facet options. Resolves: #<I>
TYPO3-Solr_ext-solr
train
0a02b6d280cb01ce61c61d8e20a8627e3c0bc520
diff --git a/lib/LitleOnlineRequest.rb b/lib/LitleOnlineRequest.rb index <HASH>..<HASH> 100644 --- a/lib/LitleOnlineRequest.rb +++ b/lib/LitleOnlineRequest.rb @@ -252,7 +252,7 @@ module LitleOnline request.authentication = authentication request.merchantId = get_merchant_id(options) - request...
== Version <I> (March <I>, <I>)
Vantiv_litle-sdk-for-ruby
train
28507fbe4257696a2907b568d561341fa8e2f6e0
diff --git a/app/models/mdm/host.rb b/app/models/mdm/host.rb index <HASH>..<HASH> 100755 --- a/app/models/mdm/host.rb +++ b/app/models/mdm/host.rb @@ -1,5 +1,6 @@ # A system with an {#address IP address} on the network that has been discovered in some way. class Mdm::Host < ActiveRecord::Base + require 'mdm/host/ope...
Make railties a hard dep MSP-<I>
rapid7_metasploit_data_models
train
a04b449b2463680138b3ce185b50e6db91d643fb
diff --git a/src/orb/backends/sql/abstractconnection.py b/src/orb/backends/sql/abstractconnection.py index <HASH>..<HASH> 100644 --- a/src/orb/backends/sql/abstractconnection.py +++ b/src/orb/backends/sql/abstractconnection.py @@ -864,10 +864,7 @@ class SQLConnection(orb.Connection): if options.dryRun: ...
#noissue Removed unnecessary logging
orb-framework_orb
train
ed344e70b878a7e400258c75ad5af86ee064affb
diff --git a/staging/src/k8s.io/cloud-provider/volume/helpers/rounding.go b/staging/src/k8s.io/cloud-provider/volume/helpers/rounding.go index <HASH>..<HASH> 100644 --- a/staging/src/k8s.io/cloud-provider/volume/helpers/rounding.go +++ b/staging/src/k8s.io/cloud-provider/volume/helpers/rounding.go @@ -43,7 +43,7 @@ con...
Overflow errors look weird in string format before: quantity {{0 0} {0xc<I>cf<I>d0} DecimalSI} is too great, overflows int<I> after: quantity <I>k is too great, overflows int<I>
kubernetes_kubernetes
train
510beaaede6faf2aa1c18c9ec9c77bcbee6c2f4c
diff --git a/examples/python/multiprocessing/client.py b/examples/python/multiprocessing/client.py index <HASH>..<HASH> 100644 --- a/examples/python/multiprocessing/client.py +++ b/examples/python/multiprocessing/client.py @@ -17,6 +17,7 @@ from __future__ import absolute_import from __future__ import division from _...
Add a CLI parser to the client
grpc_grpc
train
85bb7dd9fc7ad90781dd252a619dbcffbb56b9c9
diff --git a/lib/ohai/plugins/ip_scopes.rb b/lib/ohai/plugins/ip_scopes.rb index <HASH>..<HASH> 100644 --- a/lib/ohai/plugins/ip_scopes.rb +++ b/lib/ohai/plugins/ip_scopes.rb @@ -31,8 +31,10 @@ Ohai.plugin(:IpScopes) do interface['addresses'].each do |address,attrs| begin attrs.merge! '...
OHAI-<I> ensure virtual IPs are never chosen for privateaddress - Refactor privateaddress logic into smaller, more clear methods based on comments from @btm - Make rspec descriptions a little more readable
chef_ohai
train
ba1b48bdcd9d9ae4b5ae670121dc2f6b99eebbf4
diff --git a/main/core/Tests/API/Admin/PluginControllerTest.php b/main/core/Tests/API/Admin/PluginControllerTest.php index <HASH>..<HASH> 100644 --- a/main/core/Tests/API/Admin/PluginControllerTest.php +++ b/main/core/Tests/API/Admin/PluginControllerTest.php @@ -45,7 +45,6 @@ class PluginControllerTest extends Transact...
Update PluginControllerTest.php
claroline_Distribution
train
a9746f4e3cb4e829b1c8d0af74785a85f80dd6f8
diff --git a/lib/celluloid/zmq/version.rb b/lib/celluloid/zmq/version.rb index <HASH>..<HASH> 100644 --- a/lib/celluloid/zmq/version.rb +++ b/lib/celluloid/zmq/version.rb @@ -1,5 +1,5 @@ module Celluloid module ZMQ - VERSION = "0.0.3" + VERSION = "0.0.4" end end
Bump celluloid-zmq version
celluloid_celluloid-zmq
train
bfd5e0336df3db84296028ffe4286a2a64f52a9e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( url='https://github.com/imtapps/generic-request-signer', description="A python library for signing http requests.", long_description=open('README', 'r').read(), - install_requires=open('re...
Peripheral: Split the requirements with readlines
imtapps_generic-request-signer
train
0eeeb7782bd284df55b3fa35008d043c40652be4
diff --git a/src/test/java/org/mariadb/jdbc/ResultSetTest.java b/src/test/java/org/mariadb/jdbc/ResultSetTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/mariadb/jdbc/ResultSetTest.java +++ b/src/test/java/org/mariadb/jdbc/ResultSetTest.java @@ -757,9 +757,11 @@ public class ResultSetTest extends BaseTest ...
[CONJ-<I>] correct leading zero test when using binary protocol
MariaDB_mariadb-connector-j
train
7216e4bd9eceea0be4813da6520a6fa4ed2e3a2a
diff --git a/src/main/java/org/junit/experimental/categories/Categories.java b/src/main/java/org/junit/experimental/categories/Categories.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/junit/experimental/categories/Categories.java +++ b/src/main/java/org/junit/experimental/categories/Categories.java @@ -339,1...
Avoid repeated checks. The only check is `assertNoDescendantsHaveCategoryAnnotations`. It checks all descendants. Hence further calls of `assertNoCategorizedDescendentsOfUncategorizeableParents` for each child are redundant, because it has already been checked.
junit-team_junit4
train
299d54300798f83d7695bcfbd9a0dae764a94980
diff --git a/src/Renderer/Twig.php b/src/Renderer/Twig.php index <HASH>..<HASH> 100644 --- a/src/Renderer/Twig.php +++ b/src/Renderer/Twig.php @@ -72,29 +72,6 @@ class Twig implements RendererInterface $this->twig->getExtension('core')->setDateFormat($config->get('site.date.format')); $this->twig->get...
Move extensions to dedicated extensions class. (#<I>)
Cecilapp_PHPoole
train
c47e8024a7b2e5fdd81a283c0ce2a418f40cd2c2
diff --git a/pyontutils/scig.py b/pyontutils/scig.py index <HASH>..<HASH> 100755 --- a/pyontutils/scig.py +++ b/pyontutils/scig.py @@ -2,19 +2,20 @@ """Look look up ontology terms on the command line. Usage: - scig v [--local --verbose] <id>... - scig i [--local --verbose] <id>... - scig t [--local --verbo...
scig added ability to pass in api key, reccomend cat from file...
tgbugs_pyontutils
train
0e8e0ce27811b99245f662e80845180d914180cd
diff --git a/packages/@vue/cli-ui/src/graphql-api/connectors/projects.js b/packages/@vue/cli-ui/src/graphql-api/connectors/projects.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-ui/src/graphql-api/connectors/projects.js +++ b/packages/@vue/cli-ui/src/graphql-api/connectors/projects.js @@ -316,6 +316,11 @@ asyn...
fix(ui): open project: check if folder exists
vuejs_vue-cli
train
62fb4c3f6e13c2c5086d16fe317af5b994c49085
diff --git a/src/main/java/com/github/davidcarboni/restolino/jetty/FilesHandler.java b/src/main/java/com/github/davidcarboni/restolino/jetty/FilesHandler.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/davidcarboni/restolino/jetty/FilesHandler.java +++ b/src/main/java/com/github/davidcarboni/restolino/j...
Added basic <I> handling for file requests.
davidcarboni_restolino
train
ace4f9e981492c6c0588ee8fd583524e4984ba09
diff --git a/samples/fxml/Demo.rb b/samples/fxml/Demo.rb index <HASH>..<HASH> 100755 --- a/samples/fxml/Demo.rb +++ b/samples/fxml/Demo.rb @@ -44,7 +44,8 @@ class SimpleFXController < FXController # Here we declare that AnchorPane is a fx:id in the file # if you have multiple you can comma separate them, or a...
Adding warning about fx:id vs id
jruby_jrubyfx
train
fe8fd7166992a884623efab21fc435e8701ef0f2
diff --git a/src/main/java/net/uniform/api/Form.java b/src/main/java/net/uniform/api/Form.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/uniform/api/Form.java +++ b/src/main/java/net/uniform/api/Form.java @@ -21,7 +21,7 @@ import net.uniform.api.html.SimpleHTMLTag; import net.uniform.html.HTMLForm; /** ...
Add populate methods that keep other values
uniform-java_uniform
train
11b35fc776bd6077d402dc313bc0096c800e865c
diff --git a/vendor/k8s.io/kubernetes/staging/src/k8s.io/client-go/tools/cache/mutation_detector.go b/vendor/k8s.io/kubernetes/staging/src/k8s.io/client-go/tools/cache/mutation_detector.go index <HASH>..<HASH> 100644 --- a/vendor/k8s.io/kubernetes/staging/src/k8s.io/client-go/tools/cache/mutation_detector.go +++ b/vend...
UPSTREAM: <I>: cache mutation detector: use correct diff function The cache mutation detector must use a diff function that is designed to show differences that cause reflect.DeepEqual to return false.
openshift_origin
train
1ea94837b13c2402d748c50a7d2366b6d528b1fa
diff --git a/optaplanner-benchmark/src/main/java/org/optaplanner/benchmark/config/PlannerBenchmarkConfig.java b/optaplanner-benchmark/src/main/java/org/optaplanner/benchmark/config/PlannerBenchmarkConfig.java index <HASH>..<HASH> 100644 --- a/optaplanner-benchmark/src/main/java/org/optaplanner/benchmark/config/PlannerB...
BZ-<I> The field logger cannot be a non-static field for XStream deserialized XML because it is null in that case. That in turn causes NPE's if things go wrong.
kiegroup_optaplanner
train
3d56f2f7bb37559c942e6f80945408a54c3c717d
diff --git a/src/main/java/net/openhft/chronicle/network/ClientClosedProvider.java b/src/main/java/net/openhft/chronicle/network/ClientClosedProvider.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/openhft/chronicle/network/ClientClosedProvider.java +++ b/src/main/java/net/openhft/chronicle/network/ClientClose...
corrected tag -> * @return {@code true} if the client has intentionally closed
OpenHFT_Chronicle-Network
train
845a24145ae7b8f09b238a520cdb3012e51ddfab
diff --git a/examples/flask_threaded_rpc_client.py b/examples/flask_threaded_rpc_client.py index <HASH>..<HASH> 100644 --- a/examples/flask_threaded_rpc_client.py +++ b/examples/flask_threaded_rpc_client.py @@ -17,28 +17,49 @@ class RpcClient(object): def __init__(self, rpc_queue): self.queue = {} + ...
Updated threaded rpc example with additional comments.
eandersson_amqpstorm
train
e63221b966b185815e839eabdd6401655e549ea8
diff --git a/src/components/bottomSheet/bottom-sheet.js b/src/components/bottomSheet/bottom-sheet.js index <HASH>..<HASH> 100644 --- a/src/components/bottomSheet/bottom-sheet.js +++ b/src/components/bottomSheet/bottom-sheet.js @@ -56,9 +56,26 @@ function MdBottomSheetDirective($mdBottomSheet) { * app.controller('MyCo...
docs(bottomsheet): Add notes about `.catch()` usage. (#<I>) Newer versions of Angular will throw a `Possibly unhandled rejection` exception if you show a bottom sheet without providing a `.catch()` clause to handle the rejection. Add notes to `$mdBottomSheet` documentation and demos to show proper usage.
angular_material
train
33bad64a2dff6da41adb2794cecb4efae23c6dea
diff --git a/sitebricks-mail/src/test/java/com/google/sitebricks/mail/imap/MessageBodyExtractorTest.java b/sitebricks-mail/src/test/java/com/google/sitebricks/mail/imap/MessageBodyExtractorTest.java index <HASH>..<HASH> 100644 --- a/sitebricks-mail/src/test/java/com/google/sitebricks/mail/imap/MessageBodyExtractorTest....
Additional minor test for multipart body parsing in mail body extractor.
dhanji_sitebricks
train
4c61c87071f09c42e94767d28095c3883519ec12
diff --git a/lib/mquery.js b/lib/mquery.js index <HASH>..<HASH> 100644 --- a/lib/mquery.js +++ b/lib/mquery.js @@ -1504,7 +1504,7 @@ Query.prototype.find = function (criteria, callback) { if ('function' === typeof criteria) { callback = criteria; criteria = undefined; - } else if (this.canMerge(criteria))...
mquery.proto.canMerge -> mquery.canMerge
aheckmann_mquery
train
afedb456c68f3122450ec793f9816b314c696172
diff --git a/src/main/java/edu/ksu/canvas/impl/AssignmentImpl.java b/src/main/java/edu/ksu/canvas/impl/AssignmentImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/edu/ksu/canvas/impl/AssignmentImpl.java +++ b/src/main/java/edu/ksu/canvas/impl/AssignmentImpl.java @@ -1,10 +1,8 @@ package edu.ksu.canvas.impl; ...
Removing deprecated assignment creation functions
kstateome_canvas-api
train
7f54e2b9289bab41d3f0c37d45a367aeed2ab574
diff --git a/pants-plugins/tests/python/internal_backend_test/utilities/test_releases.py b/pants-plugins/tests/python/internal_backend_test/utilities/test_releases.py index <HASH>..<HASH> 100644 --- a/pants-plugins/tests/python/internal_backend_test/utilities/test_releases.py +++ b/pants-plugins/tests/python/internal_b...
Version clarification We usually attach some number before the release tag for our internal release, such as `<I>rc0`, but with <URL>
pantsbuild_pants
train
45b51af36841b3cb15541c2e201063170690f94b
diff --git a/src/AwsClient.php b/src/AwsClient.php index <HASH>..<HASH> 100644 --- a/src/AwsClient.php +++ b/src/AwsClient.php @@ -95,12 +95,12 @@ class AwsClient extends AbstractClient implements AwsClientInterface } } - $args += $this->defaults; - if (!$command) { ...
Added tests to client for getIterator, getPaginator, and waitUntil
aws_aws-sdk-php
train
627702aefef1352baa376ea0e3201fc39946546b
diff --git a/pgjdbc/src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java b/pgjdbc/src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java index <HASH>..<HASH> 100644 --- a/pgjdbc/src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java +++ b/pgjdbc/src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java @@ -2...
fix: return correct base type for domain from getUDTs (#<I>) (#<I>)
pgjdbc_pgjdbc
train
0c9f30de629fbc80300e91f53ab2ffb50f6d9db0
diff --git a/JSAT/src/jsat/graphing/ScatterPlot.java b/JSAT/src/jsat/graphing/ScatterPlot.java index <HASH>..<HASH> 100644 --- a/JSAT/src/jsat/graphing/ScatterPlot.java +++ b/JSAT/src/jsat/graphing/ScatterPlot.java @@ -23,7 +23,7 @@ public class ScatterPlot extends Graph2D public ScatterPlot(Vec xValues, Vec yVa...
+- 2 for the range makes scatter plot useless for small valued data sets, so it has been removed git-svn-id: <URL>
EdwardRaff_JSAT
train
5767ab64417578d8ed1da2417e7a39312cc49fb6
diff --git a/sdk/spring/azure-spring-boot/src/main/java/com/microsoft/azure/spring/autoconfigure/aad/AADOAuth2AutoConfiguration.java b/sdk/spring/azure-spring-boot/src/main/java/com/microsoft/azure/spring/autoconfigure/aad/AADOAuth2AutoConfiguration.java index <HASH>..<HASH> 100644 --- a/sdk/spring/azure-spring-boot/sr...
Check AAD authorization scopes before configuration (#<I>) * add checking of aad authorization scopes before configuration
Azure_azure-sdk-for-java
train
bf80332d322b487bc8ca1971dc7fc01c4a6634e9
diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php index <HASH>..<HASH> 100755 --- a/resources/views/index.blade.php +++ b/resources/views/index.blade.php @@ -118,7 +118,7 @@ class="btn btn-sm btn-warning input-control" ...
fix in place edit persists in cookie after logout
vsch_laravel-translation-manager
train
c47484fa2a0f804a74c288467977d27ee70cddc1
diff --git a/app/models/glue/candlepin/owner.rb b/app/models/glue/candlepin/owner.rb index <HASH>..<HASH> 100644 --- a/app/models/glue/candlepin/owner.rb +++ b/app/models/glue/candlepin/owner.rb @@ -58,7 +58,12 @@ module Glue::Candlepin::Owner def del_environments Rails.logger.debug _("All environments fo...
<I> - fixing org deletion envrionment error we need to delete environments in reverse order of the promotion paths so that we do not leave any orphaned environments which causes the deletion to fail
Katello_katello
train
a8453dda89104ce0e2ee9f36491709b942a79c09
diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php +++ b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php @@ -715,6 +715,9 @@ class ClassMetadataInfo implements ClassMetadata */...
#<I> removing the "WTF" part of the logic - an association cache entry should never ever reach metadata
doctrine_orm
train
7927fffc0a65962290fdb22e3c4a530e41a0a040
diff --git a/core/manifest/ClassManifest.php b/core/manifest/ClassManifest.php index <HASH>..<HASH> 100644 --- a/core/manifest/ClassManifest.php +++ b/core/manifest/ClassManifest.php @@ -276,7 +276,7 @@ class SS_ClassManifest { $finder = new ManifestFileFinder(); $finder->setOptions(array( - 'name_regex' =...
AP(RE)CHANGE Exclude files with the underscore prefix from manifest.
silverstripe_silverstripe-framework
train
d014013833af4a51094eec3635d3f9faf6846fe1
diff --git a/jruby-maven-plugin/src/main/java/de/saumya/mojo/jruby/AbstractJRubyMojo.java b/jruby-maven-plugin/src/main/java/de/saumya/mojo/jruby/AbstractJRubyMojo.java index <HASH>..<HASH> 100644 --- a/jruby-maven-plugin/src/main/java/de/saumya/mojo/jruby/AbstractJRubyMojo.java +++ b/jruby-maven-plugin/src/main/java/d...
use jruby <I> as default and cleanup realm before reusing it
torquebox_jruby-maven-plugins
train
f5b9687479377f17f637661351ef5d57c5a89cb7
diff --git a/src/ol/render/canvas/canvasimmediate.js b/src/ol/render/canvas/canvasimmediate.js index <HASH>..<HASH> 100644 --- a/src/ol/render/canvas/canvasimmediate.js +++ b/src/ol/render/canvas/canvasimmediate.js @@ -144,8 +144,11 @@ ol.render.canvas.Immediate.prototype.drawImages_ = function(geometry) { y = (...
Translate to image center before scale and rotation Same treatment here as with the canvas replay.
openlayers_openlayers
train
a973837dd4027cff97b863797618ecdc56cde2c3
diff --git a/gson/src/main/java/com/google/gson/JsonArray.java b/gson/src/main/java/com/google/gson/JsonArray.java index <HASH>..<HASH> 100644 --- a/gson/src/main/java/com/google/gson/JsonArray.java +++ b/gson/src/main/java/com/google/gson/JsonArray.java @@ -40,7 +40,8 @@ public final class JsonArray extends JsonElemen...
made deepCopy protected to eliminate it from the public API for now. It will be in the subsequent release.
google_gson
train
47ec01083bf86878a5ffa740bada5beb34cb5ffb
diff --git a/src/react/Dashboard.js b/src/react/Dashboard.js index <HASH>..<HASH> 100644 --- a/src/react/Dashboard.js +++ b/src/react/Dashboard.js @@ -13,7 +13,7 @@ class Dashboard extends React.Component { componentDidMount () { const uppy = this.props.uppy const options = Object.assign( - {}, + ...
Prefix default plugin IDs when mounted by React components.
transloadit_uppy
train
64117ab64857223fd9546c20f0ee81c5133ba350
diff --git a/lib/connection.js b/lib/connection.js index <HASH>..<HASH> 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -66,8 +66,8 @@ function Connection(option) { this._protocolVersion = option.protocolVersion || 2; this._streamHandlers = {}; this._streamIds = []; - for (var i = 127; i > 0; i--) {...
Make maximum streamId to <I> to keep reserved ids for the future
suguru_cql-client
train
d0109e359685e4a9c2275528ee0dc6d310c594a3
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -128,8 +128,8 @@ setup( sass_manifests={ 'rafcon': { - 'sass_path': 'gui/assets/share/themes/RAFCON/sass', - 'css_path': 'gui/assets/share/themes/RAFCON/gtk-3.0', + 'sass_path':...
chore(setup.py): fix path to theme for build_sass
DLR-RM_RAFCON
train
34ec6161bf591455da6208a75c3a6830a48b5b53
diff --git a/lib/handlers/bin.js b/lib/handlers/bin.js index <HASH>..<HASH> 100644 --- a/lib/handlers/bin.js +++ b/lib/handlers/bin.js @@ -219,8 +219,8 @@ module.exports = Observable.extend({ } } - res.contentType(contentType); if (format !== 'html') { + res.contentType(contentType); r...
Fixing jsbin throwing exception when headers sent twice, then mail vomiting and causing Dave to explode :-\
jsbin_jsbin
train
6c385b12e2759418a6e28f805a774823335f8c99
diff --git a/src/Analyser/Scope.php b/src/Analyser/Scope.php index <HASH>..<HASH> 100644 --- a/src/Analyser/Scope.php +++ b/src/Analyser/Scope.php @@ -446,7 +446,7 @@ class Scope return $typeFromValue; } } - } elseif ($node instanceof String_) { + } elseif ($node instanceof String_ || $node instanceof ...
Correct type for string with multiple parts in doublequotes
phpstan_phpstan
train
d85f834b36ceead58f998c4a774297947cbb3016
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -11,9 +11,9 @@ setup( long_description=open('README.rst').read(), install_requires=[ - 'Django==1.6.2', - 'djangorestframework==2.3.12', - 'pycrypto==2.6.1', + 'Django>=1.6.2,<1.8', + ...
Loosen dependencies a bit Work on support for Django <I>
etoccalino_django-rest-framework-httpsignature
train