hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
f6ce55e57abc33c03bce857d2a01272cdf1cb9f0
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,9 @@ yay readme-driven development! ## TODO -* accurate line numbers for errors in ERB w/ t-blocks (currently they -match pre-processed, not original source) -* helpful error when t-blocks are used incorrectl...
preserve newlines when pre-processing ERB this will ensure that line numbers match up (more or less) with the original source
jenseng_i18nliner
train
65e16c23518972d732d96dae79ad08e52560bb98
diff --git a/pypeerassets/main.py b/pypeerassets/main.py index <HASH>..<HASH> 100644 --- a/pypeerassets/main.py +++ b/pypeerassets/main.py @@ -6,6 +6,7 @@ from binascii import hexlify, unhexlify from pypeerassets import paproto, Kutil from pypeerassets.pautils import * from pypeerassets import constants, transaction...
deck_spawn, load tx fee from networks.
PeerAssets_pypeerassets
train
9d8af977cb7c374060cb92029663e818d80cbc01
diff --git a/falafel/config/__init__.py b/falafel/config/__init__.py index <HASH>..<HASH> 100644 --- a/falafel/config/__init__.py +++ b/falafel/config/__init__.py @@ -469,7 +469,7 @@ class InsightsDataSpecBase(object): # implement it's original behavor raise NotImplementedError() - def get_rege...
Tighten up regex matching for specs Don't add ".*" at the end of the regex prefix by default; only command specs should do this.
RedHatInsights_insights-core
train
e5ae3a3aabdf41107a8d5b3edf42bb6c61e24f7e
diff --git a/psamm/commands/vis.py b/psamm/commands/vis.py index <HASH>..<HASH> 100644 --- a/psamm/commands/vis.py +++ b/psamm/commands/vis.py @@ -302,14 +302,15 @@ def rxnset_for_vis(mm, subset_file, exclude): cpd_set = set() rxn_set = set() for l in subset_file.readlines(): - val...
modify vis.py to make it recoganize '#' in subset file and skip the reactions start with '#' in subset file
zhanglab_psamm
train
32536d7ca007f6708b69fea42686a97fe25b459f
diff --git a/police_api/crime.py b/police_api/crime.py index <HASH>..<HASH> 100644 --- a/police_api/crime.py +++ b/police_api/crime.py @@ -83,6 +83,10 @@ class Crime(NoLocationCrime): def _get_outcomes(self): outcomes = [] + + if not self.persistent_id: + return outcomes + met...
Don't try to get outcomes for Crime objects with no persistent ID.
rkhleics_police-api-client-python
train
ff08798b11ad5d0aaacde8a5fed92d75a0dbc3bd
diff --git a/lang/en_utf8/admin.php b/lang/en_utf8/admin.php index <HASH>..<HASH> 100644 --- a/lang/en_utf8/admin.php +++ b/lang/en_utf8/admin.php @@ -14,6 +14,7 @@ $string['allowobjectembed'] = 'Allow EMBED and OBJECT tags'; $string['allowrenames'] = 'Allow renames'; $string['allowuserblockhiding'] = 'Allow users to...
MDL-<I> merged strings into HEAD (will not be used there)
moodle_moodle
train
0163588ec2c7c0f845538e4808a407d1412767cd
diff --git a/vespa/kepler.py b/vespa/kepler.py index <HASH>..<HASH> 100644 --- a/vespa/kepler.py +++ b/vespa/kepler.py @@ -35,7 +35,6 @@ def koi_propdist(koi, prop): if type(koi) != kplr.api.KOI: client = kplr.API(data_root=KPLR_ROOT) koi = client.koi(koiname(koi, koinum=True)) - try: ...
testing; just broke kicutils...
timothydmorton_VESPA
train
d35113b99bc21f27285e50c831f666627414889a
diff --git a/src/simplebar.js b/src/simplebar.js index <HASH>..<HASH> 100755 --- a/src/simplebar.js +++ b/src/simplebar.js @@ -31,9 +31,9 @@ export default class SimpleBar { this.drag = this.drag.bind(this); this.endDrag = this.endDrag.bind(this); - this.init(); + this.recalculate = de...
fix recalculate being called more than necessary (and debounce actually not working properly...)
Grsmto_simplebar
train
04eae5f579f9d9c365761c3791e4fe3bef0f69ee
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -8,6 +8,7 @@ import ( "net" "net/textproto" "strings" + "sync" "sync/atomic" "time" ) @@ -45,6 +46,7 @@ type Client struct { connection *tls.Conn connActive tAtomBool channels ...
add mutex to channels map to avoid race conditions
gempir_go-twitch-irc
train
839d393f138e8dc61bafc8c175f5e0e5ac61b8a0
diff --git a/integration/v6/experimental/v3_create_package_command_test.go b/integration/v6/experimental/v3_create_package_command_test.go index <HASH>..<HASH> 100644 --- a/integration/v6/experimental/v3_create_package_command_test.go +++ b/integration/v6/experimental/v3_create_package_command_test.go @@ -104,28 +104,4...
v3-create-package test creates app of the correct type - cf deployment <I> bumps the version of CAPI to <I> - This version of CAPI adds validation that the app and package types are compatible (added in #<I>) - Specify the appropriate app type in our integration tests [#<I>](<URL>)
cloudfoundry_cli
train
63ff94040a09d234be520f19b09c209746707295
diff --git a/rdopkg/utils/specfile.py b/rdopkg/utils/specfile.py index <HASH>..<HASH> 100644 --- a/rdopkg/utils/specfile.py +++ b/rdopkg/utils/specfile.py @@ -305,8 +305,13 @@ class Spec(object): def set_patches_base(self, base): v, _ = self.get_patches_base() - if 'patches_ignore' in self.txt an...
Improve patches_ignore detection patches_base was always added to .spec when it contained string 'patches_ignore' (like rdopkg does in changelog) due to an overly relaxed check. I used regex to make sure it only triggers for proper patches_ignore comment. No time was wasted on unit tests because all these hacks must...
softwarefactory-project_rdopkg
train
0582f33d944a872698269da5728fc6be61189edd
diff --git a/config/src/main/java/com/typesafe/config/impl/ConfigImpl.java b/config/src/main/java/com/typesafe/config/impl/ConfigImpl.java index <HASH>..<HASH> 100644 --- a/config/src/main/java/com/typesafe/config/impl/ConfigImpl.java +++ b/config/src/main/java/com/typesafe/config/impl/ConfigImpl.java @@ -52,6 +52,7 @@...
when AnySyntax finds nothing, concat all the exception messages previously we were discarding these which could be bad if one of them was a weird IO problem of some kind.
lightbend_config
train
a46bd03953fcf3458c0e03f74c2dc994d5d6dc32
diff --git a/TYPO3.Flow/Scripts/Migrations/AbstractMigration.php b/TYPO3.Flow/Scripts/Migrations/AbstractMigration.php index <HASH>..<HASH> 100644 --- a/TYPO3.Flow/Scripts/Migrations/AbstractMigration.php +++ b/TYPO3.Flow/Scripts/Migrations/AbstractMigration.php @@ -20,12 +20,6 @@ use TYPO3\Flow\Utility\Files; abstrac...
!!!TASK: Remove output related methods from ``AbstractMigration``
neos_flow-development-collection
train
d157d7a7d32c54ae0af27cb2a3c96e1e596cf537
diff --git a/__tests__/base.js b/__tests__/base.js index <HASH>..<HASH> 100644 --- a/__tests__/base.js +++ b/__tests__/base.js @@ -1406,11 +1406,6 @@ function runBaseTest(name, useProxies, freeze, useListener) { ).toBe(value) }) } - ...
fix(tests): base state type
immerjs_immer
train
2b8c183ebe1d11d3a2d82308398232c0df672949
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ms-users-restify", - "version": "0.12.0", + "version": "0.13.0", "description": "Core of the microservice for handling users", "main": "./lib/index.js", "scripts": { diff ...
Use conditional-auth for user info
makeomatic_ms-users-restify
train
9fc332a2d3bb866ea6338b335f0f55f374c45dcf
diff --git a/nipap/nipap/xmlrpc.py b/nipap/nipap/xmlrpc.py index <HASH>..<HASH> 100755 --- a/nipap/nipap/xmlrpc.py +++ b/nipap/nipap/xmlrpc.py @@ -553,7 +553,7 @@ class NipapXMLRPC: """ try: - return self.nip.find_free_prefix(args.get('auth'), args.get('args')) + return self.ni...
Fix xmlrpc call to find_free_prefix VRF is sent as a separate positional argument to the backend function. This can't have ever worked...
SpriteLink_NIPAP
train
b6306b2ff6ca87d0cc1bf24371c84336830d873f
diff --git a/implementations/micrometer-registry-elastic/src/main/java/io/micrometer/elastic/ElasticMeterRegistry.java b/implementations/micrometer-registry-elastic/src/main/java/io/micrometer/elastic/ElasticMeterRegistry.java index <HASH>..<HASH> 100644 --- a/implementations/micrometer-registry-elastic/src/main/java/i...
Use histogram snapshot when publishing Distribution Summary in ElasticMeterRegistry (#<I>) Fixes #<I>
micrometer-metrics_micrometer
train
be38336fcee7c402611894eb6d08802ae084de2a
diff --git a/src/core/getExports.js b/src/core/getExports.js index <HASH>..<HASH> 100644 --- a/src/core/getExports.js +++ b/src/core/getExports.js @@ -150,6 +150,13 @@ export default class ExportMap { this.named.add(s.exported.name) }.bind(this)) } + + reportErrors(context, declaration) { + context.r...
simpler, consistent parse error reporting
benmosher_eslint-plugin-import
train
212db262c3a55bf3a625df29043d94c7eb41220b
diff --git a/eccodes_grib/dataset.py b/eccodes_grib/dataset.py index <HASH>..<HASH> 100644 --- a/eccodes_grib/dataset.py +++ b/eccodes_grib/dataset.py @@ -143,10 +143,14 @@ def cached(method): @attr.attrs() class Variable(object): - paramId = attr.attrib() stream = attr.attrib() + paramId = attr.attrib()...
Simplify Dataset representation and add a convenience constructor.
ecmwf_cfgrib
train
ec8ba54c54a91fb7140fd9a35b31012bb1abd0f8
diff --git a/test/err.js b/test/err.js index <HASH>..<HASH> 100644 --- a/test/err.js +++ b/test/err.js @@ -63,7 +63,7 @@ describe('stream errors', function () { ], function (err) { assert.ok(err instanceof Error, 'argument should be of type Error'); assert.ok(err instanceof GulpUglifyError, 'argument...
fix(tests): UglifyJS errors use "message" property
terinjokes_gulp-uglify
train
286f1c2625a83a9bc90e5e9ed659f81ebf157ae3
diff --git a/function-aws/src/main/java/io/micronaut/function/aws/MicronautRequestStreamHandler.java b/function-aws/src/main/java/io/micronaut/function/aws/MicronautRequestStreamHandler.java index <HASH>..<HASH> 100644 --- a/function-aws/src/main/java/io/micronaut/function/aws/MicronautRequestStreamHandler.java +++ b/f...
Close applicationContext when running function from CLI. Fixes #<I> (#<I>)
micronaut-projects_micronaut-core
train
82f7b19580701288c5c66b8121af179a7a81055b
diff --git a/tools/install_venv.py b/tools/install_venv.py index <HASH>..<HASH> 100755 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -117,7 +117,7 @@ def install_dependencies(venv=VENV): def print_summary(): summary = """ -lwr environment setup is complete. +pulsar environment setup is complete. ...
Update tools/ for pulsar switch.
galaxyproject_pulsar
train
c0bcabdecd032efc0855fbf9fea328516133a6b0
diff --git a/src/main/org/codehaus/groovy/control/MultipleCompilationErrorsException.java b/src/main/org/codehaus/groovy/control/MultipleCompilationErrorsException.java index <HASH>..<HASH> 100644 --- a/src/main/org/codehaus/groovy/control/MultipleCompilationErrorsException.java +++ b/src/main/org/codehaus/groovy/contr...
Potential NPEs: Make sure we don't get NPEs in case the error collector is not set or when the CompilerConfiguration is not set either. git-svn-id: <URL>
groovy_groovy-core
train
8b5a237365699ac9f928afc0bbb579d32becafd9
diff --git a/psamm/database.py b/psamm/database.py index <HASH>..<HASH> 100644 --- a/psamm/database.py +++ b/psamm/database.py @@ -19,8 +19,8 @@ """Representation of metabolic network databases.""" import abc -from collections import defaultdict, OrderedDict, Mapping - +from collections.abc import Mapping +from col...
Fixed compatibility with higher python versions on select scripts
zhanglab_psamm
train
408da8a81f4c1eea7300bb3aeb0ddb24eafd8654
diff --git a/sonar-server/src/main/java/org/sonar/server/qualityprofile/ESActiveRule.java b/sonar-server/src/main/java/org/sonar/server/qualityprofile/ESActiveRule.java index <HASH>..<HASH> 100644 --- a/sonar-server/src/main/java/org/sonar/server/qualityprofile/ESActiveRule.java +++ b/sonar-server/src/main/java/org/son...
Quality profile's copy should user a different session when reading active rules created by hibernate
SonarSource_sonarqube
train
9fff45491dfc26cebb616ff74b8eebffdf0c3153
diff --git a/src/storage/shard_http_handler.go b/src/storage/shard_http_handler.go index <HASH>..<HASH> 100644 --- a/src/storage/shard_http_handler.go +++ b/src/storage/shard_http_handler.go @@ -1,6 +1,7 @@ package storage import ( + "encoding/json" "fmt" "mime/multipart" "net/http" @@ -27,19 +28,21 @@ func n...
Adds listing of branches and commits.
pachyderm_pachyderm
train
b9ee4fc9f1abd1639bc20a5536f87ad7a5318dea
diff --git a/lib/Cake/Network/Http/HttpSocket.php b/lib/Cake/Network/Http/HttpSocket.php index <HASH>..<HASH> 100644 --- a/lib/Cake/Network/Http/HttpSocket.php +++ b/lib/Cake/Network/Http/HttpSocket.php @@ -403,7 +403,7 @@ class HttpSocket extends CakeSocket { } if ($this->request['redirect'] && $this->response...
URL decode redirect urls. Some servers send url encoded Location headers. Decode location headers before processing a redirect. Fixes #<I>
cakephp_cakephp
train
22b7b71cab7cabac28c2e3a0dd475faa58f85519
diff --git a/Twig/Extension/ConfigExtension.php b/Twig/Extension/ConfigExtension.php index <HASH>..<HASH> 100644 --- a/Twig/Extension/ConfigExtension.php +++ b/Twig/Extension/ConfigExtension.php @@ -2,24 +2,22 @@ namespace Admingenerator\GeneratorBundle\Twig\Extension; -use Symfony\Component\DependencyInjection\Co...
Remove container dependency Remove container dependency from ConfigExtension
symfony2admingenerator_GeneratorBundle
train
f2492287b585e364467e99cefb30b7667baca26d
diff --git a/foliadocserve.py b/foliadocserve.py index <HASH>..<HASH> 100755 --- a/foliadocserve.py +++ b/foliadocserve.py @@ -253,6 +253,8 @@ def getannotations(element, previouswordid = None): if not element.id and (folia.Attrib.ID in element.REQUIRED_ATTRIBS or folia.Attrib.ID in element.OPTIONAL_ATTRIBS): ...
fixed deletion of span annotation, but does not refresh as it should yet
proycon_flat
train
73e1db8e3d05d35fe5294085388f8b25e0cf1de1
diff --git a/code/libraries/koowa/database/rowset/abstract.php b/code/libraries/koowa/database/rowset/abstract.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/database/rowset/abstract.php +++ b/code/libraries/koowa/database/rowset/abstract.php @@ -110,7 +110,7 @@ abstract class KDatabaseRowsetAbstract extend...
KObjectSet::insert() needs to return a boolean
timble_kodekit
train
195b5b1dcf856f404182536feb2de33448cec179
diff --git a/xblock/runtime.py b/xblock/runtime.py index <HASH>..<HASH> 100644 --- a/xblock/runtime.py +++ b/xblock/runtime.py @@ -101,7 +101,8 @@ class KvsFieldData(FieldData): that uses the correct scoped keys for the underlying KeyValueStore """ - def __init__(self, kvs): + def __init__(self, kvs, ...
Make KvsFieldData work properly in multiple-inheritance uses.
edx_XBlock
train
04e7956ee08e209156f6b55df976cc068d911bf6
diff --git a/Net/OpenID/DiffieHellman.php b/Net/OpenID/DiffieHellman.php index <HASH>..<HASH> 100644 --- a/Net/OpenID/DiffieHellman.php +++ b/Net/OpenID/DiffieHellman.php @@ -1,11 +1,32 @@ <?php +/** + * The OpenID library's Diffie-Hellman implementation. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING...
[project @ Added documentation to DiffieHellman.]
openid_php-openid
train
b7da564a568c38d7d2f8c43dd4388892eb2def3c
diff --git a/nephele/nephele-management/src/main/java/eu/stratosphere/nephele/managementgraph/ManagementGraph.java b/nephele/nephele-management/src/main/java/eu/stratosphere/nephele/managementgraph/ManagementGraph.java index <HASH>..<HASH> 100644 --- a/nephele/nephele-management/src/main/java/eu/stratosphere/nephele/ma...
Fixed non deterministic behavior of management graph serialization
stratosphere_stratosphere
train
133f4943bb3834b1161e770e8f3d83249953338e
diff --git a/templates/Fedora-18-x86_64/definition.rb b/templates/Fedora-18-x86_64/definition.rb index <HASH>..<HASH> 100644 --- a/templates/Fedora-18-x86_64/definition.rb +++ b/templates/Fedora-18-x86_64/definition.rb @@ -1,11 +1,11 @@ Veewee::Session.declare({ - # Minimum RAM requirement for installation is 768MB. ...
Tested reduction for memory footprint to <I>MB. Updated for Fedora <I> Beta RC1.
jedi4ever_veewee
train
65851083ecaf37ba74d9944025c3e5e09d90ede6
diff --git a/src/main/java/org/jboss/pressgangccms/utils/common/XMLUtilities.java b/src/main/java/org/jboss/pressgangccms/utils/common/XMLUtilities.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jboss/pressgangccms/utils/common/XMLUtilities.java +++ b/src/main/java/org/jboss/pressgangccms/utils/common/XMLUtil...
Fix to ensure that Translation Nodes aren't replaced with empty Strings.
pressgang-ccms_PressGangCCMSCommonUtilities
train
e517a985c68195915560ea9aa2a60f7950c613f2
diff --git a/lib/manager/npm/extract/index.js b/lib/manager/npm/extract/index.js index <HASH>..<HASH> 100644 --- a/lib/manager/npm/extract/index.js +++ b/lib/manager/npm/extract/index.js @@ -153,21 +153,35 @@ async function extractDependencies(content, fileName, config) { dep.skipReason = 'unknown-versio...
fix(npm): valid github owner/repo when extracting
renovatebot_renovate
train
90ebba68366223e5bd5a58f8e82c288713c21c5d
diff --git a/actionpack/test/controller/caching_test.rb b/actionpack/test/controller/caching_test.rb index <HASH>..<HASH> 100644 --- a/actionpack/test/controller/caching_test.rb +++ b/actionpack/test/controller/caching_test.rb @@ -381,6 +381,7 @@ class AutomaticCollectionCacheTest < ActionController::TestCase @con...
Fix the random caching test failure.
rails_rails
train
1351f1155176a8fc2bb698ef39904fb048a6fe2d
diff --git a/system/src/Grav/Common/Data/Validation.php b/system/src/Grav/Common/Data/Validation.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Common/Data/Validation.php +++ b/system/src/Grav/Common/Data/Validation.php @@ -211,6 +211,17 @@ class Validation /** * @param mixed $value * @param arr...
Added field validation for array of lines
getgrav_grav
train
2e50a7863287a4973ff884a3ff294d37c6ec02f1
diff --git a/openquake/calculators/base.py b/openquake/calculators/base.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/base.py +++ b/openquake/calculators/base.py @@ -845,7 +845,7 @@ def save_gmfs(calculator): save_gmf_data(dstore, haz_sitecol, gmfs[:, haz_sitecol.sids], eids) -def save_gmf_dat...
Small simplification [skip hazardlib]
gem_oq-engine
train
73edc5f26bfd672c2fbf9e35c6abf0b63560763f
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,3 +1,5 @@ +require "bundler/setup" + $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'minitest/autorun'
Use clean bundler environment when running tests
semaperepelitsa_smart_titles
train
4572930d8bdc4999b57f6b2928e9e0464f7e6b99
diff --git a/lib/thredded/engine.rb b/lib/thredded/engine.rb index <HASH>..<HASH> 100644 --- a/lib/thredded/engine.rb +++ b/lib/thredded/engine.rb @@ -26,6 +26,7 @@ module Thredded thredded.css thredded/*.svg ) + Thredded::Engine.config.assets.paths << root.join('vendor', 'assets', 'javasc...
Add vendor to Thredded::Engine.config.assets.paths On Rails 5, engines do not have vendor/* in the asset paths by default. See this test failure: <URL>
thredded_thredded
train
faa1bdf3adb6b65b3cce7686a5cff7ddd586ee0a
diff --git a/test/ffi-gobject/object_test.rb b/test/ffi-gobject/object_test.rb index <HASH>..<HASH> 100644 --- a/test/ffi-gobject/object_test.rb +++ b/test/ffi-gobject/object_test.rb @@ -65,30 +65,6 @@ describe GObject::Object do end end - describe "automatic accessor methods" do - class AccessorTest < GO...
Remove test that depends on method_missing functionality After implementing generation of accessor methods, this test will still fail because the generation happens at the same time the method stubs for the underlying methods are generated.
mvz_gir_ffi
train
9043d39deaa9b8d6b64efd5b4eb0a2225d91dee2
diff --git a/cli/compose/loader/loader.go b/cli/compose/loader/loader.go index <HASH>..<HASH> 100644 --- a/cli/compose/loader/loader.go +++ b/cli/compose/loader/loader.go @@ -3,6 +3,7 @@ package loader import ( "fmt" "path" + "path/filepath" "reflect" "sort" "strings" @@ -371,7 +372,16 @@ func resolveVolumeP...
Fix stack compose bind-mount volumes for Windows For stack compose files, use filepath.IsAbs instead of path.IsAbs, for bind-mounted service volumes, because filepath.IsAbs handles Windows paths, while path.IsAbs does not.
docker_cli
train
b194ac2a7536d70222886c3fcce220149b9937c2
diff --git a/components/TimelineEvent.js b/components/TimelineEvent.js index <HASH>..<HASH> 100644 --- a/components/TimelineEvent.js +++ b/components/TimelineEvent.js @@ -45,8 +45,8 @@ class TimelineEvent extends Component { TimelineEvent.propTypes = { children: React.PropTypes.node.isRequired, - title: React.Pr...
Fixing the prop-type for title and createdAt. Promoting from string to node
rcdexta_react-event-timeline
train
3507a38bc64e1bcb6bc3a5c0cc71cdaaf5fbffa8
diff --git a/generator/lib/behavior/i18n/I18nBehavior.php b/generator/lib/behavior/i18n/I18nBehavior.php index <HASH>..<HASH> 100644 --- a/generator/lib/behavior/i18n/I18nBehavior.php +++ b/generator/lib/behavior/i18n/I18nBehavior.php @@ -33,6 +33,8 @@ class I18nBehavior extends Behavior 'locale_alias' => '', ); ...
[<I>] Allowed behaviors to be executed in arbitrary order (refs #<I>, #<I>)
propelorm_Propel
train
4a1841c6a9f9c11865af671ae94c1035dab23b53
diff --git a/app/models/bar.rb b/app/models/bar.rb index <HASH>..<HASH> 100644 --- a/app/models/bar.rb +++ b/app/models/bar.rb @@ -1,3 +1,5 @@ class Bar < ActiveRecord::Base self.table_name = 'test_bars' + + has_many :foos end diff --git a/app/models/foo.rb b/app/models/foo.rb index <HASH>..<HASH> 100644 --- a/ap...
Add associations to Bar/Foo
sauspiel_postamt
train
3c926094b2b0e09330b5e1df966c51c384978a5e
diff --git a/tests/test_server.py b/tests/test_server.py index <HASH>..<HASH> 100644 --- a/tests/test_server.py +++ b/tests/test_server.py @@ -131,3 +131,18 @@ def test_bookmark_api_delete(client, d_url): rd = client.delete(d_url) assert rd.status_code == 200 assert rd.get_json() == response_template['su...
new: test: refresh_bookmark
jarun_Buku
train
dc83303f82acb48b81157b908dbbc014f705beaf
diff --git a/src/components/IntlTelInputApp.js b/src/components/IntlTelInputApp.js index <HASH>..<HASH> 100644 --- a/src/components/IntlTelInputApp.js +++ b/src/components/IntlTelInputApp.js @@ -829,7 +829,7 @@ class IntlTelInputApp extends Component { try { const container = this.flagDropDown.querySelector...
Removed second argument of parseFloat
patw0929_react-intl-tel-input
train
3262856557ed64f02cffbf323c54efc42cd1d79f
diff --git a/pybar/fei4_run_base.py b/pybar/fei4_run_base.py index <HASH>..<HASH> 100644 --- a/pybar/fei4_run_base.py +++ b/pybar/fei4_run_base.py @@ -69,7 +69,7 @@ class Fei4RunBase(RunBase): Base class for scan- / tune- / analyze-class. - A fei4 run consist of 3 steps: + A fei4 run consist of 3 major s...
ENH: warn if configuration from runs differ between modules
SiLab-Bonn_pyBAR
train
da02acc100daa49ed8aab21c6f5ac37681afc866
diff --git a/src/chui/gestures.js b/src/chui/gestures.js index <HASH>..<HASH> 100755 --- a/src/chui/gestures.js +++ b/src/chui/gestures.js @@ -121,7 +121,7 @@ } } if ($.isAndroid) { - $.gestureLength = 10; + $.gestureLength = 50; if (!!touch.el) { // Swipe detect...
Fixed Android tap bug. Increased swipe detection length to help Android register tap when a scroll as occurred.
chocolatechip-ui_chocolatechipui
train
b68c0670630b99373111ba7d737a41b6767d95c2
diff --git a/src/Installer/Package/ShopPackageInstaller.php b/src/Installer/Package/ShopPackageInstaller.php index <HASH>..<HASH> 100644 --- a/src/Installer/Package/ShopPackageInstaller.php +++ b/src/Installer/Package/ShopPackageInstaller.php @@ -112,7 +112,7 @@ class ShopPackageInstaller extends AbstractPackageInstall...
OXDEV-<I> Rename copy by filter function.
OXID-eSales_oxideshop_composer_plugin
train
0a84de81b8134bb20e8b519b895898c72545c8d0
diff --git a/danceschool/core/migrations/0036_fix_reg_invoice_link.py b/danceschool/core/migrations/0036_fix_reg_invoice_link.py index <HASH>..<HASH> 100644 --- a/danceschool/core/migrations/0036_fix_reg_invoice_link.py +++ b/danceschool/core/migrations/0036_fix_reg_invoice_link.py @@ -1,6 +1,5 @@ from django.conf imp...
Fix for migration commit timing issues on Postgres.
django-danceschool_django-danceschool
train
39c238ee3a65793456650abfcbd7666fe6910b76
diff --git a/src/Casinelli/CampaignMonitor/CampaignMonitor.php b/src/Casinelli/CampaignMonitor/CampaignMonitor.php index <HASH>..<HASH> 100644 --- a/src/Casinelli/CampaignMonitor/CampaignMonitor.php +++ b/src/Casinelli/CampaignMonitor/CampaignMonitor.php @@ -20,6 +20,11 @@ class CampaignMonitor { return n...
Added people function to CampaignMonitor.php
Casinelli_Laravel-CampaignMonitor
train
3036efb0b1ccd99ed081b40ea1022ce9ba06fe3b
diff --git a/foil/fileio.py b/foil/fileio.py index <HASH>..<HASH> 100644 --- a/foil/fileio.py +++ b/foil/fileio.py @@ -7,25 +7,11 @@ from collections import namedtuple from contextlib import contextmanager from io import BufferedReader -from lxml import etree from zipfile import ZipFile from foil.filters import...
Remove xml utlity function. * removes lxml dependency. * Functionality can be found in stlib xml module.
portfoliome_foil
train
42aabfc62606eb77e6d7aeec62805eeee54bc69c
diff --git a/lib/tilelive/batch.js b/lib/tilelive/batch.js index <HASH>..<HASH> 100644 --- a/lib/tilelive/batch.js +++ b/lib/tilelive/batch.js @@ -21,10 +21,31 @@ var TileBatch = function(options) { SphericalMercator.call(this, this.options); - this.mbtiles = new MBTiles(options.filepath); + // Vars need...
Move bounds calculation into constructor and keep track of total/curren tile.
mapbox_tilelive
train
4a539b3826189996ab1b57eed17d4ad08758109d
diff --git a/resources/views/auth/two-factor-auth.blade.php b/resources/views/auth/two-factor-auth.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/auth/two-factor-auth.blade.php +++ b/resources/views/auth/two-factor-auth.blade.php @@ -18,7 +18,7 @@ <h3>{{ trans('dashboard.login....
Use the auth.two-factor route
CachetHQ_Cachet
train
90bd1fd7e967d041f7ae854690c8d46ae4802f01
diff --git a/spec/chromium-spec.js b/spec/chromium-spec.js index <HASH>..<HASH> 100644 --- a/spec/chromium-spec.js +++ b/spec/chromium-spec.js @@ -1088,10 +1088,6 @@ describe('chromium feature', () => { assert.throws(() => { window.alert({toString: null}) }, /Cannot convert object to primitive va...
Native confirm/alert throws differently
electron_electron
train
793162c83558f2898059c6d78b8d035ee3aff674
diff --git a/xwiki-commons-core/xwiki-commons-extension/xwiki-commons-extension-api/src/main/java/org/xwiki/extension/ExtensionManagerConfiguration.java b/xwiki-commons-core/xwiki-commons-extension/xwiki-commons-extension-api/src/main/java/org/xwiki/extension/ExtensionManagerConfiguration.java index <HASH>..<HASH> 1006...
XCOMMONS-<I>: Allow ignoring a configurable list of extension dependencies
xwiki_xwiki-commons
train
843c13829eac83eef3e2c3c1e2ac68a745c65874
diff --git a/spec/confoog_spec.rb b/spec/confoog_spec.rb index <HASH>..<HASH> 100644 --- a/spec/confoog_spec.rb +++ b/spec/confoog_spec.rb @@ -8,22 +8,31 @@ describe Confoog do expect(Confoog::VERSION).not_to be nil end - it 'should accept no options when created but should set sensible defaults' do - set...
Refactor existing tests to improve readability
seapagan_confoog
train
bb7920efb03d0c917f2650351cea8ffb8d8cb665
diff --git a/lib/node/nodes/aggregate-intersection.js b/lib/node/nodes/aggregate-intersection.js index <HASH>..<HASH> 100644 --- a/lib/node/nodes/aggregate-intersection.js +++ b/lib/node/nodes/aggregate-intersection.js @@ -47,10 +47,11 @@ AggregateIntersection.prototype.sql = function() { columns.push(aggregateFun...
Fix another case of duplicate columns in aggregate-intersection
CartoDB_camshaft
train
9ddf4b4dab81a535f375e891cb95e255d522470a
diff --git a/webpack.conf.js b/webpack.conf.js index <HASH>..<HASH> 100644 --- a/webpack.conf.js +++ b/webpack.conf.js @@ -16,7 +16,7 @@ module.exports = { loaders: [ { test: /\.js$/, - include: /(src|test)/, + include: /(src|test|node_modules\/Prebid.js)/, exclude: /node_mod...
Fix issue with building prebid from npm install. Babel loader was being skipped because of the project residing in /node_modules/ directory. (#<I>)
prebid_Prebid.js
train
4cdd43d42505b3b7a1f19cb477f02e1d56233e56
diff --git a/salt/grains/core.py b/salt/grains/core.py index <HASH>..<HASH> 100644 --- a/salt/grains/core.py +++ b/salt/grains/core.py @@ -149,7 +149,7 @@ def _linux_gpu_data(): # XXX; may also need to search for "3D controller" cur_dev = {} continue - if ':...
use regex in order to match lspci output format
saltstack_salt
train
f3e876554c994c900ad28ffaec5e9f64dbf0e46b
diff --git a/core/src/main/java/com/google/common/truth/IntegerSubject.java b/core/src/main/java/com/google/common/truth/IntegerSubject.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/common/truth/IntegerSubject.java +++ b/core/src/main/java/com/google/common/truth/IntegerSubject.java @@ -78,6 +78,...
Deprecate and hide the SubjectFactory constants. ------------- Created by MOE: <URL>
google_truth
train
2b679314467e3b2b21f22cea976674c4b46efae1
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index <HASH>..<HASH> 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -15,7 +15,6 @@ dependencies { } api('io.github.bonigarcia:webdrivermanager:3.8.1') - compileOnly('org.checkerframework:checker:3.2.0') compile...
Get rid of org.checkerframework:checker dependency (#<I>)
selenide_selenide
train
5a444efc52154b7759a6b66dfd91e75f3c3eb5d1
diff --git a/lib/authorizer/auth-interface.js b/lib/authorizer/auth-interface.js index <HASH>..<HASH> 100644 --- a/lib/authorizer/auth-interface.js +++ b/lib/authorizer/auth-interface.js @@ -5,9 +5,14 @@ var _ = require('lodash'), * Creates a wrapper around RequestAuth and provides getters and setters helper functions...
Do early bailout in auth-interface when auth is not valid
postmanlabs_postman-runtime
train
5e15554f5830b7c795d5b6f4756cca70f424310e
diff --git a/symphony/lib/toolkit/class.htmlpage.php b/symphony/lib/toolkit/class.htmlpage.php index <HASH>..<HASH> 100755 --- a/symphony/lib/toolkit/class.htmlpage.php +++ b/symphony/lib/toolkit/class.htmlpage.php @@ -169,6 +169,7 @@ foreach($this->_head as $element) { if(basename($element->get...
Fixing issues with styles and scripts added with duplicate = false.
symphonycms_symphony-2
train
f31f001782eff548668068d08f52f21334931325
diff --git a/nose/test_evolveddiskdf.py b/nose/test_evolveddiskdf.py index <HASH>..<HASH> 100644 --- a/nose/test_evolveddiskdf.py +++ b/nose/test_evolveddiskdf.py @@ -13,6 +13,17 @@ def test_axi_meanvr_grid(): assert numpy.fabs(mvr) < 0.001, 'meanvR of evolveddiskdf for axisymmetric potential is not equal to zero'...
further tests of the various options to calculate mean velocities
jobovy_galpy
train
4373a63f1fa0a26577d7c2abccde3767d7603184
diff --git a/endpoints_management/control/report_request.py b/endpoints_management/control/report_request.py index <HASH>..<HASH> 100644 --- a/endpoints_management/control/report_request.py +++ b/endpoints_management/control/report_request.py @@ -39,11 +39,11 @@ from .. import USER_AGENT, SERVICE_AGENT logger = logg...
rename SIZE_NOT_SET to NOT_SET
cloudendpoints_endpoints-management-python
train
bee414c71f44daa11089a760117a14ae7fe71fbb
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from setuptools import setup import os setup(name='demandlib', - version='0.1.1', + version='0.1.2dev', author='oemof developing group', url='http://github.com/oemof/demandlib', ...
update version number to dev-version after release
oemof_demandlib
train
7eab45a017741ef75eaab4ae86d5447d74ea3088
diff --git a/lib/build-logger.js b/lib/build-logger.js index <HASH>..<HASH> 100644 --- a/lib/build-logger.js +++ b/lib/build-logger.js @@ -5,15 +5,16 @@ import EventEmitter from 'events'; export default class Logger extends EventEmitter { - constructor (host) { + constructor (host, { debug = false, quiet = false...
build-logger: log only errors in quiet mode
zeit_now-cli
train
ecdc52621a8d21e656b9ca5ee4ae45020b7fdcb3
diff --git a/BackofficeBundle/Controller/AreaFlexController.php b/BackofficeBundle/Controller/AreaFlexController.php index <HASH>..<HASH> 100644 --- a/BackofficeBundle/Controller/AreaFlexController.php +++ b/BackofficeBundle/Controller/AreaFlexController.php @@ -63,21 +63,9 @@ class AreaFlexController extends AbstractA...
refacto areaController and fix functional test
open-orchestra_open-orchestra-cms-bundle
train
d9098d499fc010df20fcab082537c441648f6229
diff --git a/mutagen/oggflac.py b/mutagen/oggflac.py index <HASH>..<HASH> 100644 --- a/mutagen/oggflac.py +++ b/mutagen/oggflac.py @@ -96,7 +96,7 @@ class OggFLACVComment(VCFLACDict): if page.serial == first_page.serial: old_pages.append(page) - packets = OggPage.to_packets(old_pa...
OggVorbis, OggFLAC: Synchronize code, be strict about packet conversions.
quodlibet_mutagen
train
b5f80a6e31f7463b7bdcbb582edc9cebff14864e
diff --git a/test/unit/event.js b/test/unit/event.js index <HASH>..<HASH> 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -922,7 +922,7 @@ test("trigger(type, [data], [fn])", function() { ok( true, "Native call was triggered" ); }; - + $elem.live('mouseenter', function(){ ok( true, 'Trigger mou...
Removes empty, duplicate named test block. Fixes #<I>
jquery_jquery
train
6993a7d0b84a02616e057f4d264d483c90508222
diff --git a/ember-cli-build.js b/ember-cli-build.js index <HASH>..<HASH> 100644 --- a/ember-cli-build.js +++ b/ember-cli-build.js @@ -7,6 +7,12 @@ module.exports = function(defaults) { 'ember-cli-bootstrap-sassy': { 'js': false }, + + //TODO: put minification back in for prod + // uglify throws ...
disable asset uglify for now
tedconf_ember-searchable-select
train
4b02846e6332e483cc548bd6933d9a4bc5da8e7c
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,26 @@ All notable changes to SpiceyPy will be documented here The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project tries to adhere to [Semantic Versioning](http://sem...
SpiceyPy <I> release * see changelog for changes
AndrewAnnex_SpiceyPy
train
9b837bdb65aa241605e6b7d41915f18b23e7f636
diff --git a/src/Browser.php b/src/Browser.php index <HASH>..<HASH> 100644 --- a/src/Browser.php +++ b/src/Browser.php @@ -72,6 +72,11 @@ class Browser private $isChromeFrame = false; /** + * @var bool + */ + private $isCompatibilityMode = false; + + /** * @param null|string|UserAgent $u...
Adding setter and getter for $isCompatibilityMode
sinergi_php-browser-detector
train
49aebe16a18086aff7ba21f77cd9e6cfbf9e0268
diff --git a/lib/devtools/index.js b/lib/devtools/index.js index <HASH>..<HASH> 100644 --- a/lib/devtools/index.js +++ b/lib/devtools/index.js @@ -557,6 +557,61 @@ var consoleFilterCommandSpec = { }; +/** + * 'scratchpad' command + */ +var scratchpadCommandSpec = { + name: 'scratchpad', + description: { key: 'sc...
Bug <I> (scratchpad, part): Initial implementation of scratchpad command
joewalker_gcli
train
6bbe31524340535054bd729a9b5c8724b1d73742
diff --git a/parser.go b/parser.go index <HASH>..<HASH> 100644 --- a/parser.go +++ b/parser.go @@ -1471,11 +1471,18 @@ func (p *Parser) parseFields() (Fields, error) { func (p *Parser) parseField() (*Field, error) { f := &Field{} + _, pos, _ := p.scanIgnoreWhitespace() + p.unscan() // Parse the expression first....
check if fields are valid during parse. Binary expressions that yield a boolean are invalid and we can catch these at parse time. Fixes #<I>
influxdata_influxql
train
1577bd460b4470c038f516b0d167f9041f345445
diff --git a/packages/table/src/Table.test.js b/packages/table/src/Table.test.js index <HASH>..<HASH> 100644 --- a/packages/table/src/Table.test.js +++ b/packages/table/src/Table.test.js @@ -88,6 +88,27 @@ describe("Table", function() { }); }); + describe("Expandable Row Groups", () => { + test("Click on ...
test(table): tests the expand/collapse toggle on tables with subrows affects: @crave/farmblocks-table
CraveFood_farmblocks
train
2ccceb8da0bbc64fc749444dc847c97798212ad8
diff --git a/lib/node/node.js b/lib/node/node.js index <HASH>..<HASH> 100644 --- a/lib/node/node.js +++ b/lib/node/node.js @@ -337,15 +337,19 @@ module.exports.create = function createNode(type, expectedParams, options) { var validator = expectedParams[expectedParamName]; if (!validator.null...
Added node_id param to errors in node creation
CartoDB_camshaft
train
644844dd7934ce23fb90e01047c91826650b1164
diff --git a/HostIp.php b/HostIp.php index <HASH>..<HASH> 100644 --- a/HostIp.php +++ b/HostIp.php @@ -86,7 +86,9 @@ final class HostIp extends AbstractHttpProvider implements Provider, IpAddressGe return new AddressCollection([]); } - return new AddressCollection([Address::createFromArra...
Added 'providedBy' (#<I>) * Added 'providedBy' * Bugfix * Applied changes from StyleCI
geocoder-php_host-ip-provider
train
e465304d5186a39d146308e0b046313d25bba13c
diff --git a/tests/_support/Page/CreditCardCreateUI.php b/tests/_support/Page/CreditCardCreateUI.php index <HASH>..<HASH> 100644 --- a/tests/_support/Page/CreditCardCreateUI.php +++ b/tests/_support/Page/CreditCardCreateUI.php @@ -13,6 +13,7 @@ class CreditCardCreateUI extends Base public $URL = '/CreditCard/creat...
TPWDCEE-<I> - First name added
wirecard_paymentSDK-php
train
a6afbc8fcf611c2c8fd9847caddc90af29b850e4
diff --git a/director/lib/director/jobs/update_release.rb b/director/lib/director/jobs/update_release.rb index <HASH>..<HASH> 100644 --- a/director/lib/director/jobs/update_release.rb +++ b/director/lib/director/jobs/update_release.rb @@ -10,6 +10,7 @@ module Bosh::Director release_dir = args.first ...
bug fix after BaseJob and OHM model refactoring
cloudfoundry_bosh
train
fa952b394dd651dfa68f80641f8b702808ad8889
diff --git a/tensorflow_probability/python/internal/variadic_reduce.py b/tensorflow_probability/python/internal/variadic_reduce.py index <HASH>..<HASH> 100644 --- a/tensorflow_probability/python/internal/variadic_reduce.py +++ b/tensorflow_probability/python/internal/variadic_reduce.py @@ -123,20 +123,11 @@ def make_va...
Finish transition of tfxla.variadic_reduce to point to XlaVariadicReduceV2. PiperOrigin-RevId: <I>
tensorflow_probability
train
43b0c21a3d8ae596b1dc5020d2b0e29e05e38778
diff --git a/rest_registration/api/views/login.py b/rest_registration/api/views/login.py index <HASH>..<HASH> 100644 --- a/rest_registration/api/views/login.py +++ b/rest_registration/api/views/login.py @@ -22,7 +22,7 @@ from rest_registration.utils.responses import get_ok_response @api_view_serializer_class_getter( ...
Rename DEFAULT_PERMISSION_CLASSES to NOT_AUTHENTICATED_PERMISSION_CLASSES
apragacz_django-rest-registration
train
b331a48e06791ab7595f706af46b8bf9244d1f2e
diff --git a/credentials/alts/alts.go b/credentials/alts/alts.go index <HASH>..<HASH> 100644 --- a/credentials/alts/alts.go +++ b/credentials/alts/alts.go @@ -28,6 +28,7 @@ import ( "errors" "fmt" "net" + "sync" "time" "google.golang.org/grpc/credentials" @@ -54,6 +55,8 @@ const ( ) var ( + vmOnGCP ...
alts: re-add vmOnGCP and once globals for easier testing (#<I>)
grpc_grpc-go
train
635d5eba9b429a8e9d0ab66eaf597626e9872441
diff --git a/Repository/ShippingMethodRepository.php b/Repository/ShippingMethodRepository.php index <HASH>..<HASH> 100755 --- a/Repository/ShippingMethodRepository.php +++ b/Repository/ShippingMethodRepository.php @@ -23,10 +23,7 @@ use WellCommerce\Bundle\ShippingBundle\Entity\ShippingMethodInterface; */ class Shi...
Added tree filters in order's datagrid: payment method, shipping method, status
WellCommerce_ShippingBundle
train
e971298e72876bc5a19c3fc121d83788671fb35a
diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/webui/SideMenu.js b/bundles/org.eclipse.orion.client.ui/web/orion/webui/SideMenu.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/orion/webui/SideMenu.js +++ b/bundles/org.eclipse.orion.client.ui/web/orion/webui/SideMenu.js @@ -273,2...
Nav Menu: hide "Go To Folder" action when you're already viewing the folder * In general, do not show links to your current location
eclipse_orion.client
train
33220127c0c40edf08dde830bdb8d6f0033e9b0f
diff --git a/Kwc/Form/Wizard/Component.php b/Kwc/Form/Wizard/Component.php index <HASH>..<HASH> 100644 --- a/Kwc/Form/Wizard/Component.php +++ b/Kwc/Form/Wizard/Component.php @@ -6,22 +6,13 @@ class Kwc_Form_Wizard_Component extends Kwc_Abstract_Composite_Component $ret = parent::getSettings($param); ...
Don't use removed isPosted() api: not needed anymore as we don't have POST fallback anymore
koala-framework_koala-framework
train
2306816902479607ebb94a3112baab3184b98aa3
diff --git a/postcard_creator/postcard_creator_swissid.py b/postcard_creator/postcard_creator_swissid.py index <HASH>..<HASH> 100644 --- a/postcard_creator/postcard_creator_swissid.py +++ b/postcard_creator/postcard_creator_swissid.py @@ -63,8 +63,8 @@ class PostcardCreatorSwissId(PostcardCreatorBase): _dump_r...
fix issue with image w/h
abertschi_postcard_creator_wrapper
train
5f87f61fe65dd068e60d3f37378e7784df020561
diff --git a/lib/trestle/admin/builder.rb b/lib/trestle/admin/builder.rb index <HASH>..<HASH> 100644 --- a/lib/trestle/admin/builder.rb +++ b/lib/trestle/admin/builder.rb @@ -70,8 +70,10 @@ module Trestle def breadcrumb(label=nil, path=nil, &block) if block_given? @admin.breadcrumb = block - ...
Handle setting breadcrumb to nil/false
TrestleAdmin_trestle
train
41dc95be5f0783166107a52c29e2851ceeeb3090
diff --git a/salesforce/tests/test_integration.py b/salesforce/tests/test_integration.py index <HASH>..<HASH> 100644 --- a/salesforce/tests/test_integration.py +++ b/salesforce/tests/test_integration.py @@ -613,7 +613,7 @@ class BasicSOQLRoTest(TestCase): self.assertIn('Lead.LastModifiedBy.Username = %s', sql) ...
Fixed test to be independent on SF_PK value
django-salesforce_django-salesforce
train
6fd09f5f65b802e55f61e3e34a3bb5606f845713
diff --git a/bin/cmd.js b/bin/cmd.js index <HASH>..<HASH> 100644 --- a/bin/cmd.js +++ b/bin/cmd.js @@ -48,6 +48,7 @@ function modulenameCmd(args, callback) { // TODO: Proxy console.{error,log} and process.exit so we can return result var command = new Command() + .description('Does the thing with the thing ...
Add description to commander invocation Since it's nice for the helpInformation to include a description of the command and its purpose.
kevinoid_travis-status
train
0015347007087e9ef493e93d73ce76744833d1a1
diff --git a/tck/src/org/objenesis/tck/search/ClassEnumerator.java b/tck/src/org/objenesis/tck/search/ClassEnumerator.java index <HASH>..<HASH> 100644 --- a/tck/src/org/objenesis/tck/search/ClassEnumerator.java +++ b/tck/src/org/objenesis/tck/search/ClassEnumerator.java @@ -89,6 +89,10 @@ public class ClassEnumerator {...
Be able to customize the class loader
easymock_objenesis
train
348cb798e26a056bd40f5ec7c0d8f440d7b6cc0b
diff --git a/caddyconfig/httpcaddyfile/builtins.go b/caddyconfig/httpcaddyfile/builtins.go index <HASH>..<HASH> 100644 --- a/caddyconfig/httpcaddyfile/builtins.go +++ b/caddyconfig/httpcaddyfile/builtins.go @@ -408,11 +408,18 @@ func parseRoute(h Helper) (caddyhttp.MiddlewareHandler, error) { return nil, h.Errf("p...
httpcaddyfile: Allow php_fastcgi to be used in route directive Fixes <URL>
mholt_caddy
train
90c20bc5b5afbb97177bb81191570406804f555b
diff --git a/lib/l20n/context.js b/lib/l20n/context.js index <HASH>..<HASH> 100644 --- a/lib/l20n/context.js +++ b/lib/l20n/context.js @@ -45,7 +45,7 @@ function getWithFallback(id) { var entry = locale.entries[id]; if (entry === undefined) { cur++; - reportMissing.call(this, new L10nError( + ...
Follow-up to async format*: don't silence notfounderror listeners
l20n_l20n.js
train
38c61a38db35698031f9f29c8aad8a21e6bb89e6
diff --git a/src/sap.m/src/sap/m/FacetFilter.js b/src/sap.m/src/sap/m/FacetFilter.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/FacetFilter.js +++ b/src/sap.m/src/sap/m/FacetFilter.js @@ -1435,6 +1435,8 @@ sap.ui.define([ var oFirstItem = (this._displayedList.getMode() === ListMode.MultiSelect) ? oToPag...
[FIX] sap.m.FacetFilter: focus showing properly when not have data Change-Id: I6d<I>b1dda6ba<I>ef<I>b<I>fd7ce<I>c<I>e3b<I>a3 BCP: <I>
SAP_openui5
train
6126f340c2278118ad9d3594b0b8dfff54c92cd1
diff --git a/src/withChannel.js b/src/withChannel.js index <HASH>..<HASH> 100644 --- a/src/withChannel.js +++ b/src/withChannel.js @@ -123,7 +123,6 @@ const withChannel = ({ const { data, isReceived, selectors } = this.state; if (active === false) return null; - if (!isReceived) return null; ...
Add isFirstDataReceived prop
storybooks_addon-development-kit
train
5684d912938d8ef16b72e9c9dd1ce2117e62bc2a
diff --git a/context.go b/context.go index <HASH>..<HASH> 100644 --- a/context.go +++ b/context.go @@ -42,7 +42,7 @@ func (cg *ContextGroup) NewContextGroup(path string) *ContextGroup { } // Handle allows handling HTTP requests via an http.HandlerFunc, as opposed to an httptreemux.HandlerFunc. -// Any parameters fr...
added support for http.Handler interface on ContextGroup
dimfeld_httptreemux
train
8312557d240339e09f2f431c4d2c71154d086dce
diff --git a/hardware/linkset/src/main/java/org/mobicents/ss7/linkset/oam/LinksetState.java b/hardware/linkset/src/main/java/org/mobicents/ss7/linkset/oam/LinksetState.java index <HASH>..<HASH> 100644 --- a/hardware/linkset/src/main/java/org/mobicents/ss7/linkset/oam/LinksetState.java +++ b/hardware/linkset/src/main/ja...
changed quotes symbol as it failed with the new pom settings
RestComm_jss7
train