hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
e07e507d1af687cd64b263038ebd3cb7be74fb40
diff --git a/whisper/whisperv5/filter.go b/whisper/whisperv5/filter.go index <HASH>..<HASH> 100644 --- a/whisper/whisperv5/filter.go +++ b/whisper/whisperv5/filter.go @@ -220,7 +220,7 @@ func matchSingleTopic(topic TopicType, bt []byte) bool { bt = bt[:TopicLength] } - if len(bt) < TopicLength { + if len(bt) == ...
whisper: fixed broken partial topic filtering Changes in #<I> broke partial topic filtering. Re-enable it.
ethereum_go-ethereum
train
142c1c5ddfc71992e4c9d4df2c82d49d89661c0c
diff --git a/pyimgur/__init__.py b/pyimgur/__init__.py index <HASH>..<HASH> 100644 --- a/pyimgur/__init__.py +++ b/pyimgur/__init__.py @@ -153,7 +153,27 @@ class Basic_object(object): class Album(Basic_object): - """An album is a collection of images.""" + """ + An album is a collection of images. + + ...
Add instance variable info to docstrings
Damgaard_PyImgur
train
d0a25602e07be52bc3e881442e41bdd6a12a7e45
diff --git a/src/Transaction.php b/src/Transaction.php index <HASH>..<HASH> 100644 --- a/src/Transaction.php +++ b/src/Transaction.php @@ -20,7 +20,6 @@ use BitWasp\Bitcoin\Crypto\Hash; use BitWasp\Bitcoin\Key\PublicKeyFactory; use BitWasp\Bitcoin\Signature\SignatureFactory; use BitWasp\Buffertools\Buffer; -use stdC...
refactor: be explicit about the return type of deserialize
ArkEcosystem_php-crypto
train
0448fa1336cb7298fb6676a040c3fd5e1a3046ad
diff --git a/lib/que.rb b/lib/que.rb index <HASH>..<HASH> 100644 --- a/lib/que.rb +++ b/lib/que.rb @@ -19,10 +19,12 @@ module Que require_relative 'que/version' require_relative 'que/worker' + @use_prepared_statements = true + class << self extend Forwardable - attr_accessor :logger, :error_handle...
Add Que.use_prepared_statements= to configure their use.
chanks_que
train
4a7ad328b73ee507116963d0fea8ecac4cb17990
diff --git a/sqlite3.go b/sqlite3.go index <HASH>..<HASH> 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -525,7 +525,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error { dest[i] = time.Time{} } default: - dest[i] = s + dest[i] = []byte(s) } }
Next(): populate Row with []byte instead of string, as per driver doc Fix on behalf of bradfitz, see <URL>
xeodou_go-sqlcipher
train
acfb0d75bcef74f1b9e81bba252ec1567b3871c7
diff --git a/src/DocBlox/Plugin/Core/Transformer/Writer/Checkstyle.php b/src/DocBlox/Plugin/Core/Transformer/Writer/Checkstyle.php index <HASH>..<HASH> 100644 --- a/src/DocBlox/Plugin/Core/Transformer/Writer/Checkstyle.php +++ b/src/DocBlox/Plugin/Core/Transformer/Writer/Checkstyle.php @@ -45,6 +45,7 @@ class DocBlox_P...
Format the checkstyle xml to be human readable as discussed here: - <URL>
phpDocumentor_phpDocumentor2
train
653e870fd2635374b8b5b34e8ffeae24269fe982
diff --git a/pycm/pycm_obj.py b/pycm/pycm_obj.py index <HASH>..<HASH> 100644 --- a/pycm/pycm_obj.py +++ b/pycm/pycm_obj.py @@ -871,7 +871,7 @@ class ConfusionMatrix(): :type class_name : any valid type :return: confusion matrix as a numpy.ndarray """ - classes = sorted(self.classes) + ...
edit : classes are not sorted again anymore.
sepandhaghighi_pycm
train
6dfb5e84f260b7053ff385590a120a4bf1ba12e1
diff --git a/openhtf/core/station_api.py b/openhtf/core/station_api.py index <HASH>..<HASH> 100644 --- a/openhtf/core/station_api.py +++ b/openhtf/core/station_api.py @@ -856,8 +856,8 @@ def start_server(): def stop_server(): global API_SERVER if API_SERVER is not None: - _LOG.debug('Stopping Station API ser...
Also log plug init exceptions to the test record. (#<I>)
google_openhtf
train
529e00cca3f76914c4a4696080c3c4eaa731b4ab
diff --git a/lib/ios.js b/lib/ios.js index <HASH>..<HASH> 100644 --- a/lib/ios.js +++ b/lib/ios.js @@ -5,6 +5,11 @@ const childProcess = require('child_process'); const _ = require('./helper'); +exports.getMacOsVersion = function *() { + const macOsVersion = yield _.exec('sw_vers -productVersion'); + _.pass('mac...
feat(add macOS version):
macacajs_macaca-doctor
train
6154028cf01cc5517feca958dbc7c12475e714e8
diff --git a/base/core/src/main/java/org/openscience/cdk/config/IsotopeFactory.java b/base/core/src/main/java/org/openscience/cdk/config/IsotopeFactory.java index <HASH>..<HASH> 100644 --- a/base/core/src/main/java/org/openscience/cdk/config/IsotopeFactory.java +++ b/base/core/src/main/java/org/openscience/cdk/config/I...
Utility methods in the isotope factory.
cdk_cdk
train
edf123bdc2e4ec09bdc4cbf11a166bdf00eb6e8c
diff --git a/src/ValuSo/Feature/CommandTrait.php b/src/ValuSo/Feature/CommandTrait.php index <HASH>..<HASH> 100644 --- a/src/ValuSo/Feature/CommandTrait.php +++ b/src/ValuSo/Feature/CommandTrait.php @@ -47,6 +47,6 @@ trait CommandTrait */ public function getCommand() { - return $this->getCommandS...
Fixes issue, where last command was retrieved using current() when top() should have been used
valu-digital_valuso
train
789771bc03620decdd03bd918320164b08dd68db
diff --git a/src/Relation_One.php b/src/Relation_One.php index <HASH>..<HASH> 100644 --- a/src/Relation_One.php +++ b/src/Relation_One.php @@ -114,7 +114,7 @@ class Relation_One //$m = $this->getModel(); $this->owner->addField($this->our_field, [ 'type' => 'int', //$m->get...
#ref_ id field should not be system=true field because it's completely legit to change it
atk4_data
train
d7be22f660720a2e251aeb2dc9f699c5976ffc20
diff --git a/src/components/card/index.js b/src/components/card/index.js index <HASH>..<HASH> 100644 --- a/src/components/card/index.js +++ b/src/components/card/index.js @@ -218,7 +218,7 @@ class Card extends PureBaseComponent { } render() { - const {onPress, style, containerStyle, /* enableBlur, */ ...othe...
add selected accessibiltiyState to Card
wix_react-native-ui-lib
train
fc810bf47c4d59b019186c2b36142d8b26659cfa
diff --git a/lib/ffi-glib/list_methods.rb b/lib/ffi-glib/list_methods.rb index <HASH>..<HASH> 100644 --- a/lib/ffi-glib/list_methods.rb +++ b/lib/ffi-glib/list_methods.rb @@ -37,8 +37,15 @@ module GLib self.from_array elmttype, ptr end end + + def from elmttype, it + if it.is_a? F...
Add (S)List::from method, to replace extended ::wrap.
mvz_gir_ffi
train
ed90bc47fecd90a091a950c039db55b4e8194e9b
diff --git a/login/index.php b/login/index.php index <HASH>..<HASH> 100644 --- a/login/index.php +++ b/login/index.php @@ -94,7 +94,7 @@ } if (empty($SESSION->wantsurl)) { - $SESSION->wantsurl = $_SERVER["HTTP_REFERER"]; + $SESSION->wantsurl = array_key_exists('HTTP_REFERER',$_SERVER) ? $_SERV...
Fixed REFERER problem, merged from stable
moodle_moodle
train
6291cbe5440f2d6b1f72292eb20671c32f4fcecb
diff --git a/src/tuwien/auto/calimero/mgmt/TransportLayerImpl.java b/src/tuwien/auto/calimero/mgmt/TransportLayerImpl.java index <HASH>..<HASH> 100644 --- a/src/tuwien/auto/calimero/mgmt/TransportLayerImpl.java +++ b/src/tuwien/auto/calimero/mgmt/TransportLayerImpl.java @@ -251,8 +251,8 @@ public class TransportLayerIm...
Remove proxy after destination got destroyed so getProxy does not fail
calimero-project_calimero-core
train
0c583135ba798da18976e03d72e026c3b495c20a
diff --git a/core/server/api/v2/utils/serializers/input/settings.js b/core/server/api/v2/utils/serializers/input/settings.js index <HASH>..<HASH> 100644 --- a/core/server/api/v2/utils/serializers/input/settings.js +++ b/core/server/api/v2/utils/serializers/input/settings.js @@ -26,6 +26,8 @@ module.exports = { ...
Added TODO to settings input serializers no issue - we need these rules globally
TryGhost_Ghost
train
ebcf5f870f25fdd5b44a86340394873dca6839cc
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ except ImportError: long_description = 'Tool for parsing Variant Call Format (VCF) files. Works like a lightweight version of PyVCF.' setup(name='vcf_parser', - version='1.5', + version='1.5.1', d...
Added 'R' to valid format pattern and bumped version to <I>
moonso_vcf_parser
train
b5b96e22b5be753c24912ccf5903231a211e5407
diff --git a/ui/src/shared/components/AnnotationWindow.js b/ui/src/shared/components/AnnotationWindow.js index <HASH>..<HASH> 100644 --- a/ui/src/shared/components/AnnotationWindow.js +++ b/ui/src/shared/components/AnnotationWindow.js @@ -1,18 +1,20 @@ import React, {PropTypes} from 'react' const calcStyle = (annot...
Prevent annotation window from exceeding x axis range
influxdata_influxdb
train
a1723d002b3262f0a115d14910f0eae92aea1e3a
diff --git a/lib/netsuite/records/customer_deposit.rb b/lib/netsuite/records/customer_deposit.rb index <HASH>..<HASH> 100644 --- a/lib/netsuite/records/customer_deposit.rb +++ b/lib/netsuite/records/customer_deposit.rb @@ -13,7 +13,7 @@ module NetSuite actions :get, :get_list, :initialize, :add, :delete, :update...
Adding tran_id to customer deposit Finally! NetSuite added this in
NetSweet_netsuite
train
e5294735bed383800b810ebaad372ba716cddf65
diff --git a/Editor/src/com/kotcrab/vis/editor/event/StatusBarEvent.java b/Editor/src/com/kotcrab/vis/editor/event/StatusBarEvent.java index <HASH>..<HASH> 100644 --- a/Editor/src/com/kotcrab/vis/editor/event/StatusBarEvent.java +++ b/Editor/src/com/kotcrab/vis/editor/event/StatusBarEvent.java @@ -19,14 +19,22 @@ pa...
Added color support for StatusBarEvent
kotcrab_vis-ui
train
f623e0934928e823c509d11c5eeca468d1c5a063
diff --git a/walk_test.go b/walk_test.go index <HASH>..<HASH> 100644 --- a/walk_test.go +++ b/walk_test.go @@ -4,6 +4,7 @@ import ( "fmt" "os" "path/filepath" + "sort" "testing" ) @@ -279,6 +280,10 @@ func TestWalkSymbolicRelativeLinkChain(t *testing.T) { actual = append(actual, filepath.FromSlash(osPath...
print out nodes that have errors during the test
karrick_godirwalk
train
d83b98e097b905af12763f4f885839ad9b088a51
diff --git a/werkzeug/serving.py b/werkzeug/serving.py index <HASH>..<HASH> 100644 --- a/werkzeug/serving.py +++ b/werkzeug/serving.py @@ -702,7 +702,7 @@ def run_simple(hostname, port, application, use_reloader=False, # Do not use relative imports, otherwise "python -m werkzeug.serving" # breaks. -...
Don't use relative imports in serving
pallets_werkzeug
train
36260e2cc14cf1165694b826f9aa060d1ff525aa
diff --git a/sos/R/kernel.py b/sos/R/kernel.py index <HASH>..<HASH> 100644 --- a/sos/R/kernel.py +++ b/sos/R/kernel.py @@ -104,7 +104,9 @@ def _R_repr(obj): if not homogeneous_type(data[c]): data[c] = [str(x) for x in data[c]] feather.write_dataframe(data, ...
Fix a bug with sos ->R data transfer under windows caused by \\ in path name
vatlab_SoS
train
4a086b30c381d06e6bf21a7f63e77f7dbe118c7f
diff --git a/src/python/pants/engine/internals/engine_test.py b/src/python/pants/engine/internals/engine_test.py index <HASH>..<HASH> 100644 --- a/src/python/pants/engine/internals/engine_test.py +++ b/src/python/pants/engine/internals/engine_test.py @@ -367,7 +367,10 @@ class StreamingWorkunitTests(unittest.TestCase, ...
Change StreamingWorkunitHandler default verbosity to DEBUG (#<I>) ### Problem We were previously limiting the verbosity of streaming workunits to INFO. However, this means that a lot of useful workunit information is pruned away before it gets to streaming workunit clients. ### Solution Change the default max...
pantsbuild_pants
train
7829e262d331ef5b3a399f6a507e7a8d6ba5ad03
diff --git a/spec/lib/sequent/core/command_service_spec.rb b/spec/lib/sequent/core/command_service_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/sequent/core/command_service_spec.rb +++ b/spec/lib/sequent/core/command_service_spec.rb @@ -79,7 +79,8 @@ describe Sequent::Core::CommandService do end it "raise...
Honour max line length in command service spec
zilverline_sequent
train
37ef9257ea676eddefbcc802ad1322a0ec1bf506
diff --git a/lib/tw/app/cmds.rb b/lib/tw/app/cmds.rb index <HASH>..<HASH> 100644 --- a/lib/tw/app/cmds.rb +++ b/lib/tw/app/cmds.rb @@ -82,8 +82,20 @@ module Tw::App cmd :stream do |v| stream = Tw::Client::Stream.new @parser.has_param?(:user) ? @parser[:user] : nil - stream.user_stream do |s| - ...
auto re-connect stream #8
shokai_tw
train
55227ccc46329134843b31fd23b3ef9a5a2143e7
diff --git a/lib/bootscaf/cli.rb b/lib/bootscaf/cli.rb index <HASH>..<HASH> 100644 --- a/lib/bootscaf/cli.rb +++ b/lib/bootscaf/cli.rb @@ -13,11 +13,14 @@ module Bootscaf def update(modelname = nil) puts options[:all] ? "Running on all models scaffolds." : "Running on #{modelname} scaffolds." + ...
WIP application.html.erb
thrivesmart_bootscaf
train
29167c78f4e4c415700490142547273c9361b901
diff --git a/example/components/Modals/A static example.js b/example/components/Modals/A static example.js index <HASH>..<HASH> 100644 --- a/example/components/Modals/A static example.js +++ b/example/components/Modals/A static example.js @@ -30,7 +30,7 @@ The header is added automatically if you pass in a \`title\` pr...
should have `onHide` prop
pocotan001_react-styleguide-generator
train
dcca2397200df69958f16ce6c9df026027215803
diff --git a/internal/ir/ir.go b/internal/ir/ir.go index <HASH>..<HASH> 100644 --- a/internal/ir/ir.go +++ b/internal/ir/ir.go @@ -33,7 +33,8 @@ type ( // Func represents a named plan (function) that can be invoked. Functions // accept one or more parameters and return a value. By convention, the - // input docum...
wasm: Fix comment on ir.Func about calling convention
open-policy-agent_opa
train
e9e1dcb218226237aa75a89eeff56f80da9f3d0d
diff --git a/test/test-utils.test.js b/test/test-utils.test.js index <HASH>..<HASH> 100644 --- a/test/test-utils.test.js +++ b/test/test-utils.test.js @@ -1,6 +1,8 @@ "use strict"; -const { extractHash } = require("./testUtils"); +const { extractHash, appendDataIfFileExists } = require("./testUtils"); +const { write...
feat: add test-util to append data to file
webpack_webpack-cli
train
7707ec1faf97ed884b4aa44de273e343b86d4f32
diff --git a/src/Codeception/Module/Yii2.php b/src/Codeception/Module/Yii2.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Module/Yii2.php +++ b/src/Codeception/Module/Yii2.php @@ -297,6 +297,7 @@ class Yii2 extends Framework implements ActiveRecord, PartedModule return; } $fixtures...
Fixtures behavior compability with `yii2-codeception`
Codeception_Codeception
train
3eac685538acc24bc489a77ec17ba7f1b8f4dedf
diff --git a/bosh-director/lib/bosh/director/instance_updater/state_applier.rb b/bosh-director/lib/bosh/director/instance_updater/state_applier.rb index <HASH>..<HASH> 100644 --- a/bosh-director/lib/bosh/director/instance_updater/state_applier.rb +++ b/bosh-director/lib/bosh/director/instance_updater/state_applier.rb @...
Task can be cancelled when director is waiting for the vm to be in specific state [#<I>](<URL>)
cloudfoundry_bosh
train
57ffe2a8b98f4ba688f03f0614adfda5abf8fbcd
diff --git a/lib/epub/parser/content_document.rb b/lib/epub/parser/content_document.rb index <HASH>..<HASH> 100644 --- a/lib/epub/parser/content_document.rb +++ b/lib/epub/parser/content_document.rb @@ -35,9 +35,7 @@ module EPUB # And if so, where should the namespaces be defined? # nav.type = element...
Delete unneccessary output
KitaitiMakoto_epub-parser
train
a03631f6ce6093bae1a4d9cf45a78169b7aab3d3
diff --git a/udiskie/device.py b/udiskie/device.py index <HASH>..<HASH> 100644 --- a/udiskie/device.py +++ b/udiskie/device.py @@ -46,14 +46,8 @@ class Device: return self._get_property('DeviceIsMounted') def is_unlocked(self): - """ - Check if device is already unlocked. - - It see...
Improve Device.is_unlocked() recognition
coldfix_udiskie
train
d1b78301d0f4dbe408f61c9401aa047919e4691e
diff --git a/spec/object_spec.js b/spec/object_spec.js index <HASH>..<HASH> 100644 --- a/spec/object_spec.js +++ b/spec/object_spec.js @@ -190,12 +190,12 @@ describe('Basis.Object', function() { }); }); - describe('with changesOn option', function() { + describe('with on option', function() { ...
Renames the Object.prop `changesOn` option to `on` and removes the warning about not using `on` with computed props.
centro_transis
train
c43fd3e6811ab3a5fb1f551f4323a080084e2f50
diff --git a/configs/module.config.php b/configs/module.config.php index <HASH>..<HASH> 100644 --- a/configs/module.config.php +++ b/configs/module.config.php @@ -32,13 +32,11 @@ return array( 'namespace' => 'EdpUser\ModelBase', 'paths' => array(__DIR__ . '/../src/EdpUser/ModelBase'), ...
Module:: change was reverted due to a typo, yoinks!
ZF-Commons_ZfcUser
train
9a586775298355cb2bf878ea8bb9cfb6e3b4d2a9
diff --git a/jujupy/tests/test_client.py b/jujupy/tests/test_client.py index <HASH>..<HASH> 100644 --- a/jujupy/tests/test_client.py +++ b/jujupy/tests/test_client.py @@ -180,6 +180,12 @@ class TestJuju2Backend(TestCase): self.assertIsNot(cloned, backend) self.assertIs(soft_deadline, cloned.soft_deadl...
Failing test for sharing juju_timings data.
juju_juju
train
c05f608ea9e325f03aa32153d5726b7df884d8da
diff --git a/src/anyconfig/processors.py b/src/anyconfig/processors.py index <HASH>..<HASH> 100644 --- a/src/anyconfig/processors.py +++ b/src/anyconfig/processors.py @@ -226,7 +226,7 @@ def find(obj, prs, forced_type=None, cls=anyconfig.models.processor.Processor): class Processors: """An abstract class of which...
fix: initialize a member with same types of members of children classes
ssato_python-anyconfig
train
699222bff366fa34810d00f64ce4f89f75044788
diff --git a/src/array/_processrendering/processrecreate.js b/src/array/_processrendering/processrecreate.js index <HASH>..<HASH> 100644 --- a/src/array/_processrendering/processrecreate.js +++ b/src/array/_processrendering/processrecreate.js @@ -67,7 +67,7 @@ export default function processRecreate({ ...
fix: Allow to render pure objects via recreate (another fix)
matreshkajs_matreshka
train
983c424dd10604a8a1194bcd44fb46a33d1381aa
diff --git a/revapi-maven-plugin/pom.xml b/revapi-maven-plugin/pom.xml index <HASH>..<HASH> 100644 --- a/revapi-maven-plugin/pom.xml +++ b/revapi-maven-plugin/pom.xml @@ -55,7 +55,7 @@ <dependency> <groupId>org.revapi</groupId> <artifactId>revapi</artifactId> - <version>0.8...
[#<I>] convert-config-to-xml should also work for pom-packaged artifacts.
revapi_revapi
train
4430da259fa5d5bf3c810f880e024dc606e619cc
diff --git a/Manager/RightsManager.php b/Manager/RightsManager.php index <HASH>..<HASH> 100644 --- a/Manager/RightsManager.php +++ b/Manager/RightsManager.php @@ -132,13 +132,14 @@ class RightsManager //Bugfix: If the flushSuite is uncommented, doctrine returns an error. It probably happens because rights ...
[CoreBundle] Significantly improve the recursive edition permission speed.
claroline_Distribution
train
5072e61455ac5cb28fea70d585150556f0a1eee7
diff --git a/liberty-maven-plugin/src/main/java/net/wasdev/wlp/maven/plugins/server/DevMojo.java b/liberty-maven-plugin/src/main/java/net/wasdev/wlp/maven/plugins/server/DevMojo.java index <HASH>..<HASH> 100644 --- a/liberty-maven-plugin/src/main/java/net/wasdev/wlp/maven/plugins/server/DevMojo.java +++ b/liberty-maven...
install features added to the server.xml (#<I>) * install features added to the server.xml * cleaned up comments
WASdev_ci.maven
train
ab0c6f4cb436aa75fe450549057acf930d2c33b5
diff --git a/dipper/sources/GeneOntology.py b/dipper/sources/GeneOntology.py index <HASH>..<HASH> 100644 --- a/dipper/sources/GeneOntology.py +++ b/dipper/sources/GeneOntology.py @@ -56,7 +56,7 @@ class GeneOntology(Source): 'GO_ID', 'DB:Reference', 'Evidence Code', - 'With (or) From',...
expand gaf w/from list splitting
monarch-initiative_dipper
train
08db1c142ca582830832af922b2950c25d48fed4
diff --git a/src/com/google/javascript/jscomp/CodeConsumer.java b/src/com/google/javascript/jscomp/CodeConsumer.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/CodeConsumer.java +++ b/src/com/google/javascript/jscomp/CodeConsumer.java @@ -249,8 +249,8 @@ public abstract class CodeConsumer { f...
Update `CodeConsumer` to append template literal delimiters before updating state variables. Originally the state variables were updated first. Doing so meant they were appended using the "upcoming" consumer state. ------------- Created by MOE: <URL>
google_closure-compiler
train
7020b82b1d955af5dbea1c7cbf5066dc0c090a4c
diff --git a/lib/rules/sort-imports.js b/lib/rules/sort-imports.js index <HASH>..<HASH> 100644 --- a/lib/rules/sort-imports.js +++ b/lib/rules/sort-imports.js @@ -106,16 +106,21 @@ module.exports = function(context) { // Multiple members of an import declaration should also be sorted alphabetically. ...
Fix: `sort-imports` warned between default and members (fixes #<I>) In sorting members, this rule should ignore the default specifiers.
eslint_eslint
train
6645022fb25c11199266fe8872d23db9633d2a53
diff --git a/NQuads.php b/NQuads.php index <HASH>..<HASH> 100644 --- a/NQuads.php +++ b/NQuads.php @@ -152,6 +152,7 @@ class NQuads implements QuadSerializerInterface, QuadParserInterface } // get graph + $graph = null; if (isset($match[9]) && $match[9] !== '') { ...
Turns out I was a bit too eager to remove code
lanthaler_JsonLD
train
cea3121c124bbfbb41b4aba9b4bd801b5bbecb09
diff --git a/lib/SimpleSAML/Session.php b/lib/SimpleSAML/Session.php index <HASH>..<HASH> 100644 --- a/lib/SimpleSAML/Session.php +++ b/lib/SimpleSAML/Session.php @@ -46,7 +46,6 @@ class SimpleSAML_Session { private $idp = null; private $authenticated = null; - private $protocol = null; private $attributes = n...
Session: removed unused protocol attribute.
simplesamlphp_saml2
train
11471796b9fe1df32ba7d87ac77b88b8c897e798
diff --git a/sharpy/product.py b/sharpy/product.py index <HASH>..<HASH> 100644 --- a/sharpy/product.py +++ b/sharpy/product.py @@ -167,6 +167,17 @@ class CheddarProduct(object): return customers + def get_customer(self, code): + + response = self.client.make_request( +...
Added a get_customer method.
SeanOC_sharpy
train
087109914716c551a61a5c9c7dc94ed13f8f0b89
diff --git a/maven/src/changes/changes.xml b/maven/src/changes/changes.xml index <HASH>..<HASH> 100644 --- a/maven/src/changes/changes.xml +++ b/maven/src/changes/changes.xml @@ -5,7 +5,10 @@ <author email="jon.iles@bcs.org.uk">Jon Iles</author> </properties> <body> - <release date="git master" version="6.2....
Gracefully handle incomplete records in XER files
joniles_mpxj
train
8721c9a316b43081876d86194e150c63239e83cd
diff --git a/MasterCard/Core/ApiController.php b/MasterCard/Core/ApiController.php index <HASH>..<HASH> 100644 --- a/MasterCard/Core/ApiController.php +++ b/MasterCard/Core/ApiController.php @@ -272,13 +272,14 @@ class ApiController { private function handleException($response) { $status = $response->ge...
arizzini: fixed issue with response->body when content encoding is not json
Mastercard_sdk-core-php
train
57bb1768543bf99fc3fa04894e619747a224352f
diff --git a/src/Gnugat/Redaktilo/Editor.php b/src/Gnugat/Redaktilo/Editor.php index <HASH>..<HASH> 100644 --- a/src/Gnugat/Redaktilo/Editor.php +++ b/src/Gnugat/Redaktilo/Editor.php @@ -290,6 +290,8 @@ class Editor * @param array $input * * @throws \Gnugat\Redaktilo\Command\CommandNotFoundException ...
[Run] Added @api to Editor#run()
gnugat_redaktilo
train
3f936dd341946ab574fde96aa4e89b72e220b03e
diff --git a/src/internal/mrzOcr.js b/src/internal/mrzOcr.js index <HASH>..<HASH> 100644 --- a/src/internal/mrzOcr.js +++ b/src/internal/mrzOcr.js @@ -41,7 +41,7 @@ async function mrzOcr(image, fontFingerprint, options = {}) { } } - let predicted = await predictImages(images, 'ESC'); + let predicted...
use ESC-v2 model in mrz read procedure
image-js_mrz-detection
train
68e49c5d9a5d56264fdd0e357fa0abfcdc844694
diff --git a/lib/waterline/core/validations.js b/lib/waterline/core/validations.js index <HASH>..<HASH> 100644 --- a/lib/waterline/core/validations.js +++ b/lib/waterline/core/validations.js @@ -51,9 +51,8 @@ Validator.prototype.build = function(attrs) { Object.keys(attrs[attr]).forEach(function(key) { - ...
add additional schema level attributes to validation exclusions
balderdashy_waterline
train
ac812b031fc7412fee92705e9de3552524d9d12c
diff --git a/lib/Unexpected.js b/lib/Unexpected.js index <HASH>..<HASH> 100644 --- a/lib/Unexpected.js +++ b/lib/Unexpected.js @@ -14,6 +14,10 @@ var createWrappedExpectProto = require('./createWrappedExpectProto'); var AssertionString = require('./AssertionString'); var throwIfNonUnexpectedError = require('./throwIf...
Add a helper function for determining whether an arg has the assertion type.
unexpectedjs_unexpected
train
7186c93738b98fefeeb071de4d8d3015269cc06b
diff --git a/lib/knife-solo/bootstraps/linux.rb b/lib/knife-solo/bootstraps/linux.rb index <HASH>..<HASH> 100644 --- a/lib/knife-solo/bootstraps/linux.rb +++ b/lib/knife-solo/bootstraps/linux.rb @@ -14,7 +14,7 @@ module KnifeSolo::Bootstraps end def http_client_get_url(url) - "wget #{url}" + "curl...
Prefer curl to wget on Linux bootstrap
matschaffer_knife-solo
train
f60991eec9d6bd5557fb319817d74659b340ebc7
diff --git a/src/test/java/org/hobsoft/hamcrest/compose/HasFeatureMatcherTest.java b/src/test/java/org/hobsoft/hamcrest/compose/HasFeatureMatcherTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/hobsoft/hamcrest/compose/HasFeatureMatcherTest.java +++ b/src/test/java/org/hobsoft/hamcrest/compose/HasFeatureMa...
Added HasFeatureMatcherTest
markhobson_hamcrest-compose
train
67bb3dc3567398049d6d4afc52ff997241dfd5b4
diff --git a/rockAtlas/phot/download.py b/rockAtlas/phot/download.py index <HASH>..<HASH> 100644 --- a/rockAtlas/phot/download.py +++ b/rockAtlas/phot/download.py @@ -60,7 +60,12 @@ def _download_one_night_of_atlas_data( stdout, stderr = p.communicate() if len(stderr): print 'error in rsyncing MJD %(...
fixed some rsync issue where no folder existed at hawaii end
thespacedoctor_rockAtlas
train
16928370a936e1aba36c2681eeac7c9b63832024
diff --git a/azure-toolkit-libs/azure-toolkit-common-lib/src/main/java/com/microsoft/azure/toolkit/lib/common/model/Subscription.java b/azure-toolkit-libs/azure-toolkit-common-lib/src/main/java/com/microsoft/azure/toolkit/lib/common/model/Subscription.java index <HASH>..<HASH> 100644 --- a/azure-toolkit-libs/azure-tool...
[appservice] #<I>: [Test] NPE when deploy function app from azure explorer
Microsoft_azure-maven-plugins
train
94cee2dafaabb1856c0fe20315f886d0cc6f33c1
diff --git a/ros_buildfarm/common.py b/ros_buildfarm/common.py index <HASH>..<HASH> 100644 --- a/ros_buildfarm/common.py +++ b/ros_buildfarm/common.py @@ -145,7 +145,8 @@ def get_short_arch(arch): def git_github_orgunit(url): prefix = 'https://github.com/' - assert url.startswith(prefix) + if not url.star...
fix devel job generation for non-github urls
ros-infrastructure_ros_buildfarm
train
51e30a4d768fe94d78bbffe691a59d17b2358588
diff --git a/lib/firefox/webdriver/builder.js b/lib/firefox/webdriver/builder.js index <HASH>..<HASH> 100644 --- a/lib/firefox/webdriver/builder.js +++ b/lib/firefox/webdriver/builder.js @@ -30,7 +30,7 @@ module.exports.configureBuilder = function(builder, baseDir, options) { serviceBuilder.setStdio('inherit'); ...
Fix verbose (trace) log for Marionette (#<I>)
sitespeedio_browsertime
train
626e52d8979268870ce066c80eca902d9f976557
diff --git a/atomic_reactor/plugins/exit_koji_promote.py b/atomic_reactor/plugins/exit_koji_promote.py index <HASH>..<HASH> 100644 --- a/atomic_reactor/plugins/exit_koji_promote.py +++ b/atomic_reactor/plugins/exit_koji_promote.py @@ -50,8 +50,9 @@ class KojiPromotePlugin(ExitPlugin): keytab name like 'type:name',...
koji_promote: fix up v1/v2/'docker save' The metadata_only parameter is not really to do with V1 vs V2, but instead relates to whether the output of 'docker save' is uploaded to Koji or not.
projectatomic_atomic-reactor
train
43085e6b3c917bc62e3d2e990eff973c5cca942f
diff --git a/examples/react-example/App.js b/examples/react-example/App.js index <HASH>..<HASH> 100644 --- a/examples/react-example/App.js +++ b/examples/react-example/App.js @@ -20,10 +20,15 @@ module.exports = class App extends React.Component { this.uppy = new Uppy({ autoProceed: false }) .use(Tus10, { e...
react: Use two different instances for Dashboard and DashboardModal examples
transloadit_uppy
train
4bbbd55da12a1b5bb8151280f9cc9c22df55bf33
diff --git a/packages/wdio-spec-reporter/src/index.js b/packages/wdio-spec-reporter/src/index.js index <HASH>..<HASH> 100644 --- a/packages/wdio-spec-reporter/src/index.js +++ b/packages/wdio-spec-reporter/src/index.js @@ -5,9 +5,9 @@ import prettyMs from 'pretty-ms' class SpecReporter extends WDIOReporter { cons...
wdip-spec-reporter: Allow stdout to be overwritten from config
webdriverio_webdriverio
train
6a37dc7b80cf26aba31bf96a64108857913de5ca
diff --git a/src/components/Globe.js b/src/components/Globe.js index <HASH>..<HASH> 100644 --- a/src/components/Globe.js +++ b/src/components/Globe.js @@ -12,6 +12,8 @@ import EoxOpenStreetMapLayer from '../api/EoxOpenStreetMapLayer'; import EoxSentinal2CloudlessLayer from '../api/EoxSentinal2CloudlessLayer'; import ...
Added USGS layers to Globe and adjusted detailControl for Bing layers.
WorldWindEarth_worldwind-react-globe
train
fc57b90c86d651941eeab29a2b22097222723374
diff --git a/src/extensions/default/JSLint/main.js b/src/extensions/default/JSLint/main.js index <HASH>..<HASH> 100644 --- a/src/extensions/default/JSLint/main.js +++ b/src/extensions/default/JSLint/main.js @@ -265,9 +265,9 @@ define(function (require, exports, module) { var resultsPanel = PanelManager.createB...
Rename gold-star/goldStar to lint-status/lintStatus based on @jasonsanjose's feedback.
adobe_brackets
train
4e21f87e3d014d606bb3ba2a89731a7d24806611
diff --git a/pkg/transport/listener.go b/pkg/transport/listener.go index <HASH>..<HASH> 100644 --- a/pkg/transport/listener.go +++ b/pkg/transport/listener.go @@ -172,6 +172,14 @@ func (info TLSInfo) baseConfig() (*tls.Config, error) { MinVersion: tls.VersionTLS12, ServerName: info.ServerName, } + // this o...
pkg/transport: reload TLS certificates for every client requests This changes the baseConfig used when creating tls Configs to utilize the GetCertificate and GetClientCertificate functions to always reload the certificates from disk whenever they are needed. Always reloading the certificates allows changing the certi...
etcd-io_etcd
train
4ef44c58aae6720dbb0c54e66ed000b95e0fe49e
diff --git a/facade/service.go b/facade/service.go index <HASH>..<HASH> 100644 --- a/facade/service.go +++ b/facade/service.go @@ -1098,35 +1098,49 @@ func (f *Facade) ScheduleService(ctx datastore.Context, serviceID string, autoLa func (f *Facade) scheduleService(ctx datastore.Context, tenantID, serviceID string, aut...
For scheduling services, replace 2 tree-walks with just 1
control-center_serviced
train
3b1eb9bd0f16d1e2b57cf2f223382351fa97a551
diff --git a/src/main/java/com/googlecode/lanterna/input/DefaultKeyDecodingProfile.java b/src/main/java/com/googlecode/lanterna/input/DefaultKeyDecodingProfile.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/googlecode/lanterna/input/DefaultKeyDecodingProfile.java +++ b/src/main/java/com/googlecode/lanterna/in...
Issue <I>: Adding new F5 profiles
mabe02_lanterna
train
e6b474635b5e4cb52c7b16b898b1fa6617775d28
diff --git a/packages/@uppy/provider-views/src/SearchProviderView/SearchProviderView.js b/packages/@uppy/provider-views/src/SearchProviderView/SearchProviderView.js index <HASH>..<HASH> 100644 --- a/packages/@uppy/provider-views/src/SearchProviderView/SearchProviderView.js +++ b/packages/@uppy/provider-views/src/Search...
Fix "attempted to use private field on non-instance" in `SearchProvider` (#<I>)
transloadit_uppy
train
d83177ef8c8690584ebed6dc6955bdfe1eef39ab
diff --git a/angrutils/pp.py b/angrutils/pp.py index <HASH>..<HASH> 100644 --- a/angrutils/pp.py +++ b/angrutils/pp.py @@ -1,12 +1,16 @@ # Some pretty-printing routines to help dealing with angr objects import angr +import claripy + def pp(obj, **kwargs): if isinstance(obj, angr.path_group.PathGroup): ...
Added pretty-printing for ast
axt_angr-utils
train
c3fdbaba0824a3912568d28cff0bb7078bf0eba9
diff --git a/bcbio/install.py b/bcbio/install.py index <HASH>..<HASH> 100644 --- a/bcbio/install.py +++ b/bcbio/install.py @@ -513,6 +513,9 @@ def upgrade_thirdparty_tools(args, remotes): Creates a manifest directory with installed programs on the system. """ + conda_bin = _get_mamba_bin() + if not ma...
Use mamba for upgrading. This should speed up the docker builds considerably.
bcbio_bcbio-nextgen
train
b38d1a11709478e4acdd6b4cae3eede3fbfcc635
diff --git a/src/gluonnlp/data/stream.py b/src/gluonnlp/data/stream.py index <HASH>..<HASH> 100644 --- a/src/gluonnlp/data/stream.py +++ b/src/gluonnlp/data/stream.py @@ -103,19 +103,27 @@ class _LazyTransformDataStream(DataStream): def __iter__(self): stream_iter = iter(self._stream) - try: - ...
Fix LazyTransformDataStream prefetching (#<I>)
dmlc_gluon-nlp
train
721699d2bbca1f8ac012ed1c75d2eb129e1beaef
diff --git a/salt/modules/lxc.py b/salt/modules/lxc.py index <HASH>..<HASH> 100644 --- a/salt/modules/lxc.py +++ b/salt/modules/lxc.py @@ -1828,8 +1828,12 @@ def update_lxc_conf(name, lxc_conf, lxc_conf_unset): if not row: continue for conf in row: - ...
Fix traceback for non-string values in lxc config files Resolves #<I>.
saltstack_salt
train
99b7a07d33961e6c9c1ceeca44654e68a74f6caf
diff --git a/VERSION b/VERSION index <HASH>..<HASH> 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.1 \ No newline at end of file +0.2.2 \ No newline at end of file diff --git a/metainspector/scraper.go b/metainspector/scraper.go index <HASH>..<HASH> 100644 --- a/metainspector/scraper.go +++ b/metainspector/scraper...
Version <I> - Fix external links starting with "//"
fern4lvarez_go-metainspector
train
a90f5566ecf3370c302fbe556d13c3b3ffad4b23
diff --git a/jcvideoplayer-lib/src/main/java/fm/jiecao/jcvideoplayer_lib/JCVideoPlayer.java b/jcvideoplayer-lib/src/main/java/fm/jiecao/jcvideoplayer_lib/JCVideoPlayer.java index <HASH>..<HASH> 100644 --- a/jcvideoplayer-lib/src/main/java/fm/jiecao/jcvideoplayer_lib/JCVideoPlayer.java +++ b/jcvideoplayer-lib/src/main/j...
should run oncomplete function when error , stop tasks and remove surfaceview
lipangit_JiaoZiVideoPlayer
train
a695f4d1e96a44cf8d656c7df2860a6c90ccb779
diff --git a/src/org/jgroups/stack/NakReceiverWindow.java b/src/org/jgroups/stack/NakReceiverWindow.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/stack/NakReceiverWindow.java +++ b/src/org/jgroups/stack/NakReceiverWindow.java @@ -49,7 +49,7 @@ import java.util.concurrent.locks.ReentrantReadWriteLock; * * ...
added hasRegularMsgToRemove()
belaban_JGroups
train
9569d28fc2fb79ef07537093c1c74b71545a937b
diff --git a/phabricator/__init__.py b/phabricator/__init__.py index <HASH>..<HASH> 100644 --- a/phabricator/__init__.py +++ b/phabricator/__init__.py @@ -62,6 +62,12 @@ class Result(object): def __getattr__(self, key): return self.response[key] + def __len__(self): + return len(self.response....
Add len() and keys() to dict-like Result object to make dealing with hash results easier
disqus_python-phabricator
train
16d97a012d5738e2b1ecf8b3e96a9418f29d620f
diff --git a/ChangeLog.md b/ChangeLog.md index <HASH>..<HASH> 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a ## [Unreleased] +### Fixed + +- fixed NPE when loading non-existing data into fields of primitive type (issue ...
Fix NPE when loading non-existing primitives (issue #<I>) (#<I>)
arangodb_spring-data
train
97adb3b8110d41ae4e054e7515c6803889f674af
diff --git a/budget/projections.py b/budget/projections.py index <HASH>..<HASH> 100644 --- a/budget/projections.py +++ b/budget/projections.py @@ -75,11 +75,11 @@ class Projections(): self.generate_month_view() self.create_header_grid() - self.contentGrid.attach(self.headerGrid, 1, 0, 1, 1) -...
Changed "Add Projection" to "+". Fixes #<I>.
mthxx_Budget
train
867dcb3c91d023966adb114f509337cbeeced563
diff --git a/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/RealPreference.java b/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/RealPreference.java index <HASH>..<HASH> 100644 --- a/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/RealPreference.java +++ b/rx-preferences/src/main/java...
Fix possible inconsistency between contains and get calls. Before this change, if delete is called in between the contains check and the Adapter’s get call, the AssertionError will be thrown.
f2prateek_rx-preferences
train
be89cdf39f8eb48d144123cf6fcc1dd741acc568
diff --git a/tests/test_keys.py b/tests/test_keys.py index <HASH>..<HASH> 100644 --- a/tests/test_keys.py +++ b/tests/test_keys.py @@ -138,26 +138,27 @@ class TestVectors(TestCase): """Test vectors from https://github.com/bitcoin/bitcoin/blob/master/src/test/key_tests.cpp """ - def _test(self, secret,...
Some of these WIFs are compressed
sbuss_bitmerchant
train
1ab9c45fab29924e665f1a1bbba9749b5efea4ea
diff --git a/lib/run/index.js b/lib/run/index.js index <HASH>..<HASH> 100644 --- a/lib/run/index.js +++ b/lib/run/index.js @@ -200,6 +200,7 @@ module.exports = function (options, callback) { default: `newman-${item}.json`, path: path, ...
Added _postman_variable_scope
postmanlabs_newman
train
6d8d7bde3625271d361a2ebbf34754c7012f9701
diff --git a/src/NamelessCoder/GizzleTYPO3Plugins/GizzlePlugins/ExtensionRepositoryReleasePlugin.php b/src/NamelessCoder/GizzleTYPO3Plugins/GizzlePlugins/ExtensionRepositoryReleasePlugin.php index <HASH>..<HASH> 100644 --- a/src/NamelessCoder/GizzleTYPO3Plugins/GizzlePlugins/ExtensionRepositoryReleasePlugin.php +++ b/s...
[TASK] Set directory in clone during release
NamelessCoder_gizzle-typo3-plugins
train
29d51f802879f843f786d7d625a8c4e203e4aec6
diff --git a/droneapi/lib/__init__.py b/droneapi/lib/__init__.py index <HASH>..<HASH> 100644 --- a/droneapi/lib/__init__.py +++ b/droneapi/lib/__init__.py @@ -403,7 +403,7 @@ class Vehicle(HasObservers): .. py:attribute:: gps_0 - GPS position information (:py:class:`GPSInfo`). + GPS position info...
Fixes APIRef around GPSInfo doc (#<I>) and send_mavlink (#<I>)
dronekit_dronekit-python
train
1499739e40cfdfa9fac23e1731777678aef097a7
diff --git a/alerta/database/backends/mongodb/queryparser.py b/alerta/database/backends/mongodb/queryparser.py index <HASH>..<HASH> 100644 --- a/alerta/database/backends/mongodb/queryparser.py +++ b/alerta/database/backends/mongodb/queryparser.py @@ -55,12 +55,12 @@ class SearchTerm: # print([t for t in self.t...
Fix single term queries following pyparsing <I> changes (#<I>)
alerta_alerta
train
0c5e1c18be72aaca29a3672902f4c27779138781
diff --git a/lib/html/pipeline/toc_filter.rb b/lib/html/pipeline/toc_filter.rb index <HASH>..<HASH> 100644 --- a/lib/html/pipeline/toc_filter.rb +++ b/lib/html/pipeline/toc_filter.rb @@ -11,9 +11,8 @@ module HTML headers = Hash.new(0) doc.css('h1, h2, h3, h4, h5, h6').each do |node| name = ...
stop escaping here since nokogiri does it, and update the regexp to match utf-8
jch_html-pipeline
train
a261d90721ccec4b2a02e3c889c330a59d2b47ba
diff --git a/src/pybel/cli.py b/src/pybel/cli.py index <HASH>..<HASH> 100644 --- a/src/pybel/cli.py +++ b/src/pybel/cli.py @@ -166,6 +166,10 @@ def machine(agents, host): ) click.echo('built BEL graph with {} nodes and {} edges'.format(graph.number_of_nodes(), graph.number_of_edges())) + if 0 == len(grap...
Don't upload empty graphs with INDRA machine
pybel_pybel
train
b676da2b561255b00c1a566e9a94cdf55f20603b
diff --git a/test/lib/AnnotationsFixture.php b/test/lib/AnnotationsFixture.php index <HASH>..<HASH> 100644 --- a/test/lib/AnnotationsFixture.php +++ b/test/lib/AnnotationsFixture.php @@ -1,7 +1,16 @@ <?php +/** + * @get @post @ajax + * @postParam x + * @postParam y + * @postParam z + */ class AnnotationsFixture { ...
Improving code coverage and writing better tests
marcioAlmada_annotations
train
67a218fb4820884ef4724b5c7d13fda2002c8918
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,7 @@ "babel-core": "^6.4.5", "babel-eslint": "^4.1.6", "babel-loader": "^6.2.1", + "babel-plugin-add-module-exports": "^0.1.2", "babel-preset-es2015": "^6.3.13", "commitize...
fix: commonjs support for es6 modules
Urigo_angular-meteor
train
37a93d51c0fdc37354a65809eb4d11c628ed73c9
diff --git a/lib/route.js b/lib/route.js index <HASH>..<HASH> 100644 --- a/lib/route.js +++ b/lib/route.js @@ -56,7 +56,11 @@ var route = function route(origin, destination, time, deparr, callback) { }; return requestP(options) - .then(JSON.parse) + .then(function(data){ + // fixes ...
fixes JSON error from XML_TRIP_REQUEST2 for route
kiliankoe_dvbjs
train
70124c4fb1ad8d742b9955a773c665372c06b6c3
diff --git a/nptdms/test/writer/acceptance_tests.py b/nptdms/test/writer/acceptance_tests.py index <HASH>..<HASH> 100644 --- a/nptdms/test/writer/acceptance_tests.py +++ b/nptdms/test/writer/acceptance_tests.py @@ -287,3 +287,70 @@ class TDMSTestClass(unittest.TestCase): self.assertEqual(len(output_data), 2) ...
Fix writing inconsistent data types for integers
adamreeve_npTDMS
train
b5f674c26f26d2c5479b1c8c41ec31346157791b
diff --git a/bika/lims/browser/analysisrequest.py b/bika/lims/browser/analysisrequest.py index <HASH>..<HASH> 100644 --- a/bika/lims/browser/analysisrequest.py +++ b/bika/lims/browser/analysisrequest.py @@ -2293,8 +2293,7 @@ class AnalysisRequestsView(BikaListingView): 'contentFilter': {'review_state': ('...
Removed AR retraction button from AR list (only allowed from inside AR)
senaite_senaite.core
train
7b17d6132c86805511e629c8b05529907bf3cb31
diff --git a/packages/@vue/cli-service/__tests__/serve.spec.js b/packages/@vue/cli-service/__tests__/serve.spec.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-service/__tests__/serve.spec.js +++ b/packages/@vue/cli-service/__tests__/serve.spec.js @@ -180,3 +180,17 @@ test('dart sass', async () => { // should...
fix: use a single websocket connection for HMR (#<I>) * fix(hmr-websocket): add failing test * fix(hmr-websocket): set injectClient to false, as we inject our own client * fix(hmr-websocket): change test project name
vuejs_vue-cli
train
569397a063bd6b4438c39d03546cf27288c29e99
diff --git a/tools/mergejs.py b/tools/mergejs.py index <HASH>..<HASH> 100755 --- a/tools/mergejs.py +++ b/tools/mergejs.py @@ -13,14 +13,6 @@ # # // @requires Geo/DataSource.js # -# or (ideally) within a class comment definition -# -# /** -# * @class -# * -# * @requires OpenLayers/Layer.js -# ...
comment change only - since this breaks our doc building, removing the suggestion git-svn-id: <URL>
openlayers_openlayers
train
b18d16ca10d062ab7a5c74dc18e29a1b282f855e
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,26 @@ end When no namespaced policy can be found, Pundit falls back to using the non-namespaced policy. +## Headless policies + +Given there is a policy without a corresponding model / ruby class, +you can...
Enable headless policies Enables `policy(:dashboard) # => DashboardPolicy`. Policies without a matching model can come in handy when a controller isn't modeled alongside a resource, e.g. a `DashboardsController`. The policy lookup by symbol also helps with strong parameters, since I prefer `policy(:post)` or `policy...
varvet_pundit
train
8d5722990af8d8e7f41836ed8c8446a1c4e80864
diff --git a/src/config/config.php b/src/config/config.php index <HASH>..<HASH> 100755 --- a/src/config/config.php +++ b/src/config/config.php @@ -7,26 +7,10 @@ return [ * Set this to your own custom middleware, just please know that it * should ensure that the user is logged in. */ - ...
Remove unused middleware stuff and add model events
austinkregel_Warden
train
1b9764fffb5033106e2d0d241dfc5a4ba504be24
diff --git a/server/src/test/java/com/metamx/druid/master/DruidMasterBalancerTest.java b/server/src/test/java/com/metamx/druid/master/DruidMasterBalancerTest.java index <HASH>..<HASH> 100644 --- a/server/src/test/java/com/metamx/druid/master/DruidMasterBalancerTest.java +++ b/server/src/test/java/com/metamx/druid/maste...
add binary version to datasegments for balancer test
apache_incubator-druid
train
48f4dd6161fda2c2915e2d5b1d4a3e784d62be40
diff --git a/zalando/zalando.go b/zalando/zalando.go index <HASH>..<HASH> 100644 --- a/zalando/zalando.go +++ b/zalando/zalando.go @@ -1,3 +1,5 @@ +// Package zalando contains Zalando specific definitions for +// authorization. package zalando import ( @@ -13,6 +15,17 @@ import ( "golang.org/x/oauth2" ) +// Ac...
[DOC] add godoc for the package and all public facing variables and functions.
zalando_gin-oauth2
train
329b1ffd6c8f9d6274a2d8fd8c96070941369250
diff --git a/src/org/opencms/ui/apps/dbmanager/sqlconsole/CmsSqlConsoleExecutor.java b/src/org/opencms/ui/apps/dbmanager/sqlconsole/CmsSqlConsoleExecutor.java index <HASH>..<HASH> 100755 --- a/src/org/opencms/ui/apps/dbmanager/sqlconsole/CmsSqlConsoleExecutor.java +++ b/src/org/opencms/ui/apps/dbmanager/sqlconsole/CmsS...
Improved display of errors in SQL console app.
alkacon_opencms-core
train