hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
b13ddd57f6f88f75d987dd84d208a2329f1d94bb
diff --git a/pandas/sparse/array.py b/pandas/sparse/array.py index <HASH>..<HASH> 100644 --- a/pandas/sparse/array.py +++ b/pandas/sparse/array.py @@ -87,11 +87,11 @@ def _wrap_result(name, data, sparse_index, fill_value): class SparseArray(PandasObject, np.ndarray): - """Data structure for labeled, sparse floa...
API, DOC: Clarify and Enforce Array to be 1-D during SparseArray Init Construction closes #<I>
pandas-dev_pandas
train
a6ea12a10378bcad0c4e14fa7f5ae80f9708a7e7
diff --git a/sark/ui.py b/sark/ui.py index <HASH>..<HASH> 100644 --- a/sark/ui.py +++ b/sark/ui.py @@ -4,6 +4,7 @@ from threading import RLock import itertools import wrapt from .qt import MenuManager +import traceback class Update(object): @@ -429,6 +430,8 @@ if idaapi.IDA_SDK_VERSION >= 670: ...
Added exception logging for the `_activate` callback in the `ActionHandler` class. It still supresses the errors, but now prints a nice trace to the output window.
tmr232_Sark
train
f8c1e069fa41ed86e430804a0baa101e32add996
diff --git a/src/photini/__init__.py b/src/photini/__init__.py index <HASH>..<HASH> 100644 --- a/src/photini/__init__.py +++ b/src/photini/__init__.py @@ -1,4 +1,4 @@ from __future__ import unicode_literals __version__ = '2021.1.0' -build = '1613 (a50eccf)' +build = '1614 (57e7cef)' diff --git a/src/photini/imageli...
Wrap long strings in metadata changes dialog Unfortunately this also truncates very long strings
jim-easterbrook_Photini
train
5c4b352a9a8c9ff7d61a455f45725dcf50b9c1a2
diff --git a/livy/client.py b/livy/client.py index <HASH>..<HASH> 100644 --- a/livy/client.py +++ b/livy/client.py @@ -116,7 +116,7 @@ class LivyClient: """Create a new session in Livy. The py_files, files, jars and archives arguments are lists of URLs, - eg: ['s3://bucket/object', 'hdfs://pa...
Copy enhanced documentation to LivySession
acroz_pylivy
train
fe6ce7f9388a853f5a000c67c7df85402d5cce62
diff --git a/examples/flickr/flickr.js b/examples/flickr/flickr.js index <HASH>..<HASH> 100644 --- a/examples/flickr/flickr.js +++ b/examples/flickr/flickr.js @@ -287,8 +287,7 @@ window.onload = function () { dayboxes, popover_cfg, zoomfunc, - redraw, - drawe...
Moved drawer_toggle() and drawer_size() functions to controlPanel.js
Kitware_tangelo
train
d2da2ba0120271802372a3c260a8f6177c82f2db
diff --git a/lib/haml/parser.rb b/lib/haml/parser.rb index <HASH>..<HASH> 100644 --- a/lib/haml/parser.rb +++ b/lib/haml/parser.rb @@ -292,7 +292,7 @@ module Haml end if ["else", "elsif"].include?(keyword) - unless @script_level_stack.last.to_i == @line.tabs + unless @script_level_stack.em...
Raise Syntax error for nested else with no if If an `else` is found but there's no corresponding `if`, allow Haml to continue and let Ruby raise a SyntaxError during rendering.
haml_haml
train
adb8436667f62b421315e53c60e1368f0f35caa5
diff --git a/scapy/config.py b/scapy/config.py index <HASH>..<HASH> 100644 --- a/scapy/config.py +++ b/scapy/config.py @@ -287,6 +287,7 @@ def _prompt_changer(attr,val): class Conf(ConfClass): """This object contains the configuration of scapy. session : filename where the session will be saved +interactive_she...
Added IPython support (ticket #<I>, patch from D. Loss) Add the following line to ~/.scapy_startup.py : conf.interactive_shell="ipython
secdev_scapy
train
4270492eb89aa2970a80ee6fbd0626a5fa832799
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1329,8 +1329,8 @@ class SftpClient { createReadStream(remotePath, options) { let listeners; try { - listners = addTemplisteners(this, 'createReadStream'); - haveconnection(this, 'createR...
Add createReadStream and createWriteStream methods
jyu213_ssh2-sftp-client
train
163bc51fc2a6cb7007b83d289ae74ef226e7a2f2
diff --git a/src/commands/destroy.js b/src/commands/destroy.js index <HASH>..<HASH> 100644 --- a/src/commands/destroy.js +++ b/src/commands/destroy.js @@ -60,20 +60,16 @@ module.exports = async function (command, name) { if (fileExists) { // If they typed a name that would normally be mutated, check with the us...
#<I>: Fix destroy test (async/await issue).
TrueCar_gluestick
train
c960ee7cf107be0ae3fe708abfae7b0d728216d5
diff --git a/src/parse-mockdb.js b/src/parse-mockdb.js index <HASH>..<HASH> 100644 --- a/src/parse-mockdb.js +++ b/src/parse-mockdb.js @@ -153,7 +153,9 @@ const UPDATE_OPERATORS = { ensureArray(object, key); const relation = object[key]; value.objects.forEach(pointer => { - relation.push(pointer); +...
Fix: addRelation should not produce duplicates (#<I>) * added failing test case * fixed duplicates bug * removed only from test * simplification
Hustle_parse-mockdb
train
cab908374ed0104c268b704f933ec4ee7bd72f6f
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -47,7 +47,7 @@ function compile(cmdLine, options) { function copyRelevant(srcDir, destDir, options) { var result; var sassDir = options.sassDir; - var cssDir = options.cssDir.replace(/"/, ''); + var cssDir = options.c...
cssDir is now assumed to not contain spaces
g13013_broccoli-compass
train
6acd21ac480c109ef3666bff74422c2f3aeea96e
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,16 @@ an intermittent network problem: [Idempotency keys][idempotency-keys] are added to requests to guarantee that retries are safe. +### Writing a Plugin + +If you're writing a plugin that uses the librar...
Support "app info" for plugins in Ruby Adds support for "app info" (a mechanism that allows a plugin's author to identify that plugin) in Ruby. This is already supported in PHP and we're adding it elsewhere.
stripe_stripe-ruby
train
44c815656daa8e24446a6892f374268a5180ce76
diff --git a/src/classes/api/NostoApiRequest.php b/src/classes/api/NostoApiRequest.php index <HASH>..<HASH> 100644 --- a/src/classes/api/NostoApiRequest.php +++ b/src/classes/api/NostoApiRequest.php @@ -42,9 +42,9 @@ class NostoApiRequest extends NostoHttpRequest const PATH_UNMATCHED_ORDER_TAGGING = '/visits/order...
Updated the URLs for the product endpoint.
Nosto_nosto-php-sdk
train
27b6acb3f220d1cf86000996e085e015ee82f960
diff --git a/lib/express.mocks.js b/lib/express.mocks.js index <HASH>..<HASH> 100644 --- a/lib/express.mocks.js +++ b/lib/express.mocks.js @@ -11,12 +11,12 @@ function mockRequest(request) { var mock = { - listeners : [], - method : 'GET', - headers : [], - uri : { - path : '/', - params : {...
Misc refactoring to mocks
expressjs_express
train
2c5b0eb7fc28cd1788d79e9bf45917a4df91d8cb
diff --git a/course/lib.php b/course/lib.php index <HASH>..<HASH> 100644 --- a/course/lib.php +++ b/course/lib.php @@ -2036,7 +2036,7 @@ function move_courses($courseids, $categoryid) { add_to_log($course->id, "course", "move", "edit.php?id=$course->id", $course->id); $context = context_co...
MDL-<I> Libraries: Deprecated context_moved in favor of context::update_moved()
moodle_moodle
train
c2c32a820018fad6310d3af9d30b4a257d8b9efb
diff --git a/src/utils/pause/frames/tests/displayName.spec.js b/src/utils/pause/frames/tests/displayName.spec.js index <HASH>..<HASH> 100644 --- a/src/utils/pause/frames/tests/displayName.spec.js +++ b/src/utils/pause/frames/tests/displayName.spec.js @@ -56,7 +56,7 @@ describe("formatting display names", () => { ...
Use the ellipsis character instead of 3 dots (#<I>)
firefox-devtools_debugger
train
3df79c656b11bc8f540b42e0a4604bb71a1e2434
diff --git a/mongo_connector/oplog_manager.py b/mongo_connector/oplog_manager.py index <HASH>..<HASH> 100755 --- a/mongo_connector/oplog_manager.py +++ b/mongo_connector/oplog_manager.py @@ -640,11 +640,14 @@ class OplogThread(threading.Thread): def update_checkpoint(self): """Store the current checkpoint...
Do not update the oplog checkpoint if the checkpoint is None. (noted in #<I>)
yougov_mongo-connector
train
9560bb97ad177401e5e7cbfa93111518327351c3
diff --git a/lib/active_record/id_regions.rb b/lib/active_record/id_regions.rb index <HASH>..<HASH> 100644 --- a/lib/active_record/id_regions.rb +++ b/lib/active_record/id_regions.rb @@ -125,9 +125,8 @@ module ArRegion end def region_number_from_sequence + return unless connection.data_source_exists?("...
Fix handling of region_number early in db creation (transferred from ManageIQ/manageiq@<I>b<I>b<I>b<I>c<I>b0b6e<I>e<I>)
ManageIQ_activerecord-id_regions
train
6454fb08977b0cf5c9ee6d1b7ea92962df159cbd
diff --git a/matrix_client/errors.py b/matrix_client/errors.py index <HASH>..<HASH> 100644 --- a/matrix_client/errors.py +++ b/matrix_client/errors.py @@ -23,7 +23,7 @@ class MatrixUnexpectedResponse(MatrixError): """The home server gave an unexpected response. """ def __init__(self, content=""): - s...
constructor should pass its own type to super
matrix-org_matrix-python-sdk
train
1a679c6b14bec45c43088956af5dcea4a9e7572d
diff --git a/tmuxp/session.py b/tmuxp/session.py index <HASH>..<HASH> 100644 --- a/tmuxp/session.py +++ b/tmuxp/session.py @@ -271,16 +271,16 @@ class Session(util.TmuxMappingObject, util.TmuxRelationalObject): returns True or False. ''' if (len(self._windows) > 1): - logger.in...
Get the other tests operational again, try on travis
tmux-python_tmuxp
train
7bf9d68b524d7cb2162555ca130f4ba7bf395072
diff --git a/core/src/main/java/org/cache2k/core/Hash2.java b/core/src/main/java/org/cache2k/core/Hash2.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/cache2k/core/Hash2.java +++ b/core/src/main/java/org/cache2k/core/Hash2.java @@ -35,6 +35,15 @@ import java.util.concurrent.atomic.AtomicLong; */ publi...
optimization: final lock mask depending on the CPU count
cache2k_cache2k
train
9a0fe66b9ed583011851d2b24df56b4192859e51
diff --git a/common/code_spelling_ignore_words.txt b/common/code_spelling_ignore_words.txt index <HASH>..<HASH> 100644 --- a/common/code_spelling_ignore_words.txt +++ b/common/code_spelling_ignore_words.txt @@ -1140,6 +1140,7 @@ requestcancelled requestjson requestsubmitted requeue +requeued requiredargs reschedul...
latent: Always cancel pending substantiation in insubstantiate()
buildbot_buildbot
train
f4fb6e4df2f63ef42ec0816771a7e7ca5e8ab3a8
diff --git a/smashrun/client.py b/smashrun/client.py index <HASH>..<HASH> 100644 --- a/smashrun/client.py +++ b/smashrun/client.py @@ -34,7 +34,7 @@ class Smashrun(object): return self.session.client_id def get_auth_url(self): - return self.session.authorization_url(auth_url) + return self...
include client_secret in url returned by get_auth_url
campbellr_smashrun-client
train
5bfef03db4557e9d537f27d2366b8bbb4598fa80
diff --git a/events.go b/events.go index <HASH>..<HASH> 100644 --- a/events.go +++ b/events.go @@ -28,10 +28,11 @@ const ( ) type Event struct { - Id string `json:"id"` - Status string `json:"status"` - From string `json:"from"` - Time int64 `json:"time"` + Id string `json:"id"` + Status string `...
Add swarm event node data structure
mijia_adoc
train
8f423659b8a1f2b0d97636d5f07ccf897f33d021
diff --git a/src/notebook/components/cell/editor/index.js b/src/notebook/components/cell/editor/index.js index <HASH>..<HASH> 100644 --- a/src/notebook/components/cell/editor/index.js +++ b/src/notebook/components/cell/editor/index.js @@ -115,7 +115,7 @@ export default class Editor extends React.Component { re...
fix(autocomplete): autocomplete when kernel idle
nteract_nteract
train
d4b96474259038da127ccb2681a7652887a6dcd4
diff --git a/grakn-graql/src/main/java/ai/grakn/graql/internal/pattern/property/RelationProperty.java b/grakn-graql/src/main/java/ai/grakn/graql/internal/pattern/property/RelationProperty.java index <HASH>..<HASH> 100644 --- a/grakn-graql/src/main/java/ai/grakn/graql/internal/pattern/property/RelationProperty.java +++ ...
fix for parsing reified relations (#<I>) * fix for reified relations * add test
graknlabs_grakn
train
b4f7beb41beda5c17c55278937e94307e2300348
diff --git a/src/Source/PhpdocSource.php b/src/Source/PhpdocSource.php index <HASH>..<HASH> 100644 --- a/src/Source/PhpdocSource.php +++ b/src/Source/PhpdocSource.php @@ -55,7 +55,7 @@ class PhpdocSource implements SourceInterface $reflection = $this->factory->reflectClass($class); $meta = $this->ge...
Fix properties key for PhpdocSource
jasny_meta
train
ab799cb191875e95c344c54597d361fb0407ecde
diff --git a/src/compiler-io/compilation-processing/process-compilation.js b/src/compiler-io/compilation-processing/process-compilation.js index <HASH>..<HASH> 100644 --- a/src/compiler-io/compilation-processing/process-compilation.js +++ b/src/compiler-io/compilation-processing/process-compilation.js @@ -4,17 +4,21 @@...
Compiler: replace .jsx extension to .js after compilation and transformation
phenomejs_phenome
train
c18c09b9340f9fbfa74346bd9314658521255a0e
diff --git a/gbdxtools/simpleworkflows.py b/gbdxtools/simpleworkflows.py index <HASH>..<HASH> 100644 --- a/gbdxtools/simpleworkflows.py +++ b/gbdxtools/simpleworkflows.py @@ -48,13 +48,13 @@ class PortList(object): def __init__(self, ports): self._portnames = set([p['name'] for p in ports]) for p...
account for case where output port description is absent
DigitalGlobe_gbdxtools
train
3aa1d5e43385aa88607f707a64eefdf6e7492078
diff --git a/lib/login/login-request.js b/lib/login/login-request.js index <HASH>..<HASH> 100644 --- a/lib/login/login-request.js +++ b/lib/login/login-request.js @@ -4,6 +4,7 @@ var spinner = new Spinner('attempting to login...'); spinner.setSpinnerString('/-\\'); var registryServer = process.env.REGISTRY_SERVER || ...
removing colors and replacing with latest version of chalk
jsonresume_resume-cli
train
d2e1983213c0a00032d90ed4be6519acdf473781
diff --git a/pyt/base_cfg.py b/pyt/base_cfg.py index <HASH>..<HASH> 100644 --- a/pyt/base_cfg.py +++ b/pyt/base_cfg.py @@ -668,3 +668,9 @@ class Visitor(ast.NodeVisitor): label_visitor.visit(node) return self.append_node(Node(label_visitor.result, node, line_number = node.lineno, path=self.filenames...
Tuple can in principal stand alone as an expr So this is handled by the cfg..
python-security_pyt
train
0fd428692cc705dcec1ddab9368467d75f1c9663
diff --git a/traffic/data/adsb/decode.py b/traffic/data/adsb/decode.py index <HASH>..<HASH> 100644 --- a/traffic/data/adsb/decode.py +++ b/traffic/data/adsb/decode.py @@ -858,11 +858,50 @@ class AircraftDict(Dict[str, Aircraft]): ac.lon0 = lon0 +class DumpFormat: + def __init__(self, template: str, ...
decode raw files according to different templates
xoolive_traffic
train
de1e166f236f6a1a7ccffb17a044e4bc62f0ae16
diff --git a/config/module.config.php b/config/module.config.php index <HASH>..<HASH> 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -5,14 +5,13 @@ return [ 'cache' => [ 'type' => 'Segment', 'options' => [ - 'route' => '[/e...
FIX route to prevent conflicts + Add AuthenticatedControllerInterface
kambalabs_KmbCache
train
67632f1902958c2d81abe4ee531f9b828f8c7aca
diff --git a/nodeserver/src/client/js/Client/ClientMaster.js b/nodeserver/src/client/js/Client/ClientMaster.js index <HASH>..<HASH> 100644 --- a/nodeserver/src/client/js/Client/ClientMaster.js +++ b/nodeserver/src/client/js/Client/ClientMaster.js @@ -75,7 +75,11 @@ define([ //and create actor for all start...
nodeserver: small fixes to make it work with linux and the <I> port Former-commit-id: 0ac2ce<I>cb7ebd<I>f<I>d7fe4c<I>f8cf<I>efea5
webgme_webgme-engine
train
30cd483d34d53a4bb7cade3515a6db70b83d4a8f
diff --git a/src/org/opencms/ade/containerpage/CmsContainerpageService.java b/src/org/opencms/ade/containerpage/CmsContainerpageService.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/ade/containerpage/CmsContainerpageService.java +++ b/src/org/opencms/ade/containerpage/CmsContainerpageService.java @@ -1603,9 +1...
Fixing formatter setting save issue.
alkacon_opencms-core
train
a2d72f0aa3d55498657a529221fc349025469ef4
diff --git a/cometd-nodejs-client.js b/cometd-nodejs-client.js index <HASH>..<HASH> 100644 --- a/cometd-nodejs-client.js +++ b/cometd-nodejs-client.js @@ -40,10 +40,17 @@ module.exports = { }; this.send = function(data) { - var self = this; + var cookies = ''; ...
Fixes #2 - Coalesce cookies into one header.
cometd_cometd-nodejs-client
train
eca99e5fe9877107b3f68be41fdec7f599aa4f32
diff --git a/xmlWrite.js b/xmlWrite.js index <HASH>..<HASH> 100644 --- a/xmlWrite.js +++ b/xmlWrite.js @@ -14,7 +14,7 @@ String.prototype.replaceAll = function(search, replacement) { function encode(s) { var es = s; - if (typeof s === 'string') { // might be a number + if (typeof s === 'string') { // might be a nu...
xmlWrite comment change only
Mermade_jgeXml
train
8f62ef8b1cdee294abbfa0fc6b6c472a08a8fe60
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ $ git-code-debt-generate The simplest way to write your own custom metrics is to extend -`git_code_debt.metrics.base.SimpleLineCounterBase` +`git_code_debt.metrics.base.SimpleLineCounterBase`. Here...
Add TextLineCounterBase to easy python3 transition
asottile_git-code-debt
train
d638fe963a2372cfc4b9abcf2b72619a91079248
diff --git a/netsnmptestenv.py b/netsnmptestenv.py index <HASH>..<HASH> 100644 --- a/netsnmptestenv.py +++ b/netsnmptestenv.py @@ -59,19 +59,23 @@ class netsnmpTestEnv(object): def shutdown(self): def kill_process(pid): - # First we ask it nicely to quit. If after a second it hasn't, we - # will kill it the ...
Use slightly more intelligent process killing in netsnmptestenv module Instead of hammering the process to be killed with signals continously, sleep small amounts of time and check procfs. This is obviously Linux-specific, but so far I have not heard of anyone trying to use python-netsnmpagent with net-snmp on differe...
pief_python-netsnmpagent
train
a613d70d368c1ce7a8549865d573e57b2829f181
diff --git a/lib/sub_diff/gsub.rb b/lib/sub_diff/gsub.rb index <HASH>..<HASH> 100644 --- a/lib/sub_diff/gsub.rb +++ b/lib/sub_diff/gsub.rb @@ -4,7 +4,7 @@ module SubDiff class Gsub < Sub private - def process(_builder, match, _search) + def diff!(_builder, match, _search) super last_prefix...
Rename references of process to diff!
shuber_sub_diff
train
8ce68154df80f360659e140ba80c699e29ad5f60
diff --git a/spec/puppet-lint/plugins/check_whitespace/80chars_spec.rb b/spec/puppet-lint/plugins/check_whitespace/80chars_spec.rb index <HASH>..<HASH> 100644 --- a/spec/puppet-lint/plugins/check_whitespace/80chars_spec.rb +++ b/spec/puppet-lint/plugins/check_whitespace/80chars_spec.rb @@ -55,17 +55,4 @@ describe '80ch...
Fix Layout/CommentIndentation violations
rodjek_puppet-lint
train
7d64ef71989831c78b1222e90eedd4d28bd087da
diff --git a/lib/agent/plugins/control-panel/interval/test/interval_spec.js b/lib/agent/plugins/control-panel/interval/test/interval_spec.js index <HASH>..<HASH> 100644 --- a/lib/agent/plugins/control-panel/interval/test/interval_spec.js +++ b/lib/agent/plugins/control-panel/interval/test/interval_spec.js @@ -168,22 +1...
Update test cases to cover issue #<I>.
prey_prey-node-client
train
57a15afdf577369b447f1dd9b0b006d529d781de
diff --git a/debug/abaaso.js b/debug/abaaso.js index <HASH>..<HASH> 100644 --- a/debug/abaaso.js +++ b/debug/abaaso.js @@ -870,7 +870,7 @@ if (typeof global.abaaso === "undefined") global.abaaso = (function () { t = typeof o.headers["Content-Type"] !== "undefined" ? o.headers["Content-Type"] : ""; ...
Changed what variable is sent to listeners from client.response()
avoidwork_abaaso
train
a6203bbf37f92cdd08cee25b14915ffd4579f97e
diff --git a/test/unit/rules/no-nested-landmark-test.js b/test/unit/rules/no-nested-landmark-test.js index <HASH>..<HASH> 100644 --- a/test/unit/rules/no-nested-landmark-test.js +++ b/test/unit/rules/no-nested-landmark-test.js @@ -14,9 +14,9 @@ generateRuleTests({ '<div><main></main></div>', '<div role="appli...
fix example of role="header" There is no "header" role. Its role is "contentinfo" I fixed this so that the "good" examples in our tests are also good examples for programmers to emulate in their code.
ember-template-lint_ember-template-lint
train
b767427f06b60dd236bc2c0d6ea41a0e8446fe08
diff --git a/src/core/lombok/eclipse/handlers/HandleSuperBuilder.java b/src/core/lombok/eclipse/handlers/HandleSuperBuilder.java index <HASH>..<HASH> 100644 --- a/src/core/lombok/eclipse/handlers/HandleSuperBuilder.java +++ b/src/core/lombok/eclipse/handlers/HandleSuperBuilder.java @@ -390,10 +390,10 @@ public class Ha...
[SuperBuilder] don't warn on existing toBuilder method
rzwitserloot_lombok
train
944a3ca449258b6d38a75087c5d57db34f3df4a4
diff --git a/src/PhantomInstaller/Installer.php b/src/PhantomInstaller/Installer.php index <HASH>..<HASH> 100644 --- a/src/PhantomInstaller/Installer.php +++ b/src/PhantomInstaller/Installer.php @@ -17,6 +17,7 @@ use Composer\Composer; use Composer\Package\Package; use Composer\Package\RootPackageInterface; use Comp...
Adding try {} catch {} to getPhantomJsVersionFromBinary() to trigger re-download.
jakoch_phantomjs-installer
train
e23bc8ca7c1cb483d4604d57f21b5403fbaabfc5
diff --git a/lib/dependencies/ImportMetaPlugin.js b/lib/dependencies/ImportMetaPlugin.js index <HASH>..<HASH> 100644 --- a/lib/dependencies/ImportMetaPlugin.js +++ b/lib/dependencies/ImportMetaPlugin.js @@ -56,7 +56,7 @@ class ImportMetaPlugin { "ImportMetaPlugin", toConstantDependency(parser, JSON.stri...
use expression hook for metaProperty a MetaProperty is an Expression it's more consistent
webpack_webpack
train
557bf29be6f559054f52bf67d90c85612dae23f2
diff --git a/salt/states/zfs.py b/salt/states/zfs.py index <HASH>..<HASH> 100644 --- a/salt/states/zfs.py +++ b/salt/states/zfs.py @@ -88,7 +88,8 @@ def _absent(name, dataset_type, force=False, recursive=False): # check if dataset exists if ret['result']: - if name in __salt__['zfs.list'](name, **{'t...
fix some oddities with bookmarks and list
saltstack_salt
train
2febff67604904f53c55249c254a18574a9ef1f9
diff --git a/faq-bundle/src/Resources/contao/dca/tl_faq.php b/faq-bundle/src/Resources/contao/dca/tl_faq.php index <HASH>..<HASH> 100644 --- a/faq-bundle/src/Resources/contao/dca/tl_faq.php +++ b/faq-bundle/src/Resources/contao/dca/tl_faq.php @@ -200,7 +200,7 @@ $GLOBALS['TL_DCA']['tl_faq'] = array 'label' ...
[Faq] Access control for comments is missing in the new comments module
contao_contao
train
c392f55ec8d617ced792b7e3c2c510bc3ce7ff69
diff --git a/lib/WebpackOptionsApply.js b/lib/WebpackOptionsApply.js index <HASH>..<HASH> 100644 --- a/lib/WebpackOptionsApply.js +++ b/lib/WebpackOptionsApply.js @@ -206,9 +206,9 @@ class WebpackOptionsApply extends OptionsApply { noSources = options.devtool.indexOf("nosources") >= 0; legacy = options.devtool....
Split sourceMappingURL string This change is splitting `sourceMappingURL` to `source" + "MappingURL` in order to avoid syntax errors caused by babel when importing webpack in code that is transpiled by babel. This workaround was suggested in <URL>
webpack_webpack
train
412fdac0c1a454ba1a2b5dd653cd21821b16e873
diff --git a/src/audio_metadata/formats/ogg.py b/src/audio_metadata/formats/ogg.py index <HASH>..<HASH> 100644 --- a/src/audio_metadata/formats/ogg.py +++ b/src/audio_metadata/formats/ogg.py @@ -155,7 +155,7 @@ class Ogg(Format): except ValueError: raise Exception # TODO - self._obj.seek(-index, os.SEEK_END)...
Use correct index when seeking to last Ogg Page
thebigmunch_audio-metadata
train
bdb52070da96a8864e1ef1fd7e22fb242acad243
diff --git a/python/src/cm_api/endpoints/clusters.py b/python/src/cm_api/endpoints/clusters.py index <HASH>..<HASH> 100644 --- a/python/src/cm_api/endpoints/clusters.py +++ b/python/src/cm_api/endpoints/clusters.py @@ -21,15 +21,21 @@ __docformat__ = "epytext" CLUSTERS_PATH = "/clusters" -def create_cluster(resour...
[cm-api] OPSAPS-<I>: Allow fullVersion in create_cluster Allow clusters to be created with a fully specified CDH version.
cloudera_cm_api
train
bc64eb2456091980e577d9dd219eb4f5da8d3d5e
diff --git a/lib/tasks/lint_task.rb b/lib/tasks/lint_task.rb index <HASH>..<HASH> 100644 --- a/lib/tasks/lint_task.rb +++ b/lib/tasks/lint_task.rb @@ -21,6 +21,7 @@ namespace :magic_lamp do puts "\n#{errors[callback]}" end end + abort else puts "Configuration look...
lint tasks now abort if there are errors
crismali_magic_lamp
train
67a19cffd4c9148788c49d398d746e12f7a6727e
diff --git a/demo/src/screens/MainScreen.js b/demo/src/screens/MainScreen.js index <HASH>..<HASH> 100644 --- a/demo/src/screens/MainScreen.js +++ b/demo/src/screens/MainScreen.js @@ -50,7 +50,7 @@ class MainScreen extends Component { onSearchBoxBlur = () => { this.closeSearchBox(); - this.filterExplorerScr...
dont clear search filter when entering a screen in our demo app
wix_react-native-ui-lib
train
65cddbece18b6c32e0e1cf340d22ba76f054a93e
diff --git a/test/k8sT/Services.go b/test/k8sT/Services.go index <HASH>..<HASH> 100644 --- a/test/k8sT/Services.go +++ b/test/k8sT/Services.go @@ -395,7 +395,11 @@ var _ = Describe("K8sServicesTest", func() { } testExternalTrafficPolicyLocal := func() { - var data v1.Service + var ( + data v1.Service + ...
test: Skip traffic policy test case from third host Skip the externalTrafficPolicy=Local test case from the third (external) host when such does not exist. This will allow us to avoid skipping the whole Context() or It() if the third host does not exist.
cilium_cilium
train
6f56a40ee21b2c75b289dbbd806fd4131b6962b5
diff --git a/features/005_check_for_resource_repetition.feature b/features/005_check_for_resource_repetition.feature index <HASH>..<HASH> 100644 --- a/features/005_check_for_resource_repetition.feature +++ b/features/005_check_for_resource_repetition.feature @@ -32,4 +32,9 @@ Feature: Check for resource repetition S...
FC<I>: Don't warn incorrectly on provider actions.
Foodcritic_foodcritic
train
43d81d0a33c45551a23635893244408dde4f9196
diff --git a/search/plugins/ezsolr/ezsolr.php b/search/plugins/ezsolr/ezsolr.php index <HASH>..<HASH> 100644 --- a/search/plugins/ezsolr/ezsolr.php +++ b/search/plugins/ezsolr/ezsolr.php @@ -1618,6 +1618,8 @@ class eZSolr implements ezpSearchEngine } } + $localNodeIDList = arr...
Fix: EZP-<I> No result when I found 1 location in several languages with multicore ezfind
ezsystems_ezfind
train
ee0740a289cab383ef786e7105965fdf20dbf1f7
diff --git a/peer/example_test.go b/peer/example_test.go index <HASH>..<HASH> 100644 --- a/peer/example_test.go +++ b/peer/example_test.go @@ -23,6 +23,7 @@ func mockRemotePeer() error { UserAgentName: "peer", // User agent name to advertise. UserAgentVersion: "1.0.0", // User agent version to advertise. C...
peer test: set TrickleTimeout for test configs
btcsuite_btcd
train
a8b983dd78423412a728910d0d064e749b3e5bec
diff --git a/galpy/df/sphericaldf.py b/galpy/df/sphericaldf.py index <HASH>..<HASH> 100644 --- a/galpy/df/sphericaldf.py +++ b/galpy/df/sphericaldf.py @@ -218,25 +218,52 @@ class sphericaldf(df): return o else: return (R,vR,vT,z,vz,phi) - + def _sample_r(self,n=1): - ...
Change position sampling to xi formalism
jobovy_galpy
train
d15226b2ccbc27e5280d6c325b44c8cd7b5510b9
diff --git a/lib/commands/provision.js b/lib/commands/provision.js index <HASH>..<HASH> 100644 --- a/lib/commands/provision.js +++ b/lib/commands/provision.js @@ -22,7 +22,7 @@ they enter scout/troop name and wifi config info, then... > hq.settoken("•••") > mesh.config(1,1,20) -> mesh.key("•••") +> mesh.setkey("•••...
adding support for exit to exit repl closes #8
Pinoccio_client-node-pinoccio
train
7052f7b1521c859c6800f41a94e8e94e1d2b5568
diff --git a/ui/src/shared/components/NameableGraph.js b/ui/src/shared/components/NameableGraph.js index <HASH>..<HASH> 100644 --- a/ui/src/shared/components/NameableGraph.js +++ b/ui/src/shared/components/NameableGraph.js @@ -13,6 +13,7 @@ const NameableGraph = React.createClass({ getInitialState() { return { ...
Fix I/O Burn when editing cell name Previously, editing a cell name caused a PUT to the API for every character typed by the user when renaming a cell. This was obviously not ideal, but kept the initial implementation simple. This limits PUTs to update cells to only when blur events happen on the <input>. This is acc...
influxdata_influxdb
train
5d3f349ff7c7c63efcf7db5f794ea59db8159867
diff --git a/wal_e/worker/s3_worker.py b/wal_e/worker/s3_worker.py index <HASH>..<HASH> 100644 --- a/wal_e/worker/s3_worker.py +++ b/wal_e/worker/s3_worker.py @@ -112,6 +112,10 @@ def do_lzop_s3_put(s3_url, local_path): :param local_path: a path to a file to be compressed """ + + assert not s3_url.endswi...
Reaffix file extension properly to WAL uploads
wal-e_wal-e
train
8d9d040b53b80b9fa9ce0616e03886c209042e5c
diff --git a/spec/features/components/back-to-top_spec.rb b/spec/features/components/back-to-top_spec.rb index <HASH>..<HASH> 100644 --- a/spec/features/components/back-to-top_spec.rb +++ b/spec/features/components/back-to-top_spec.rb @@ -1,5 +1,4 @@ require_relative '../spec_helper' -require 'pry' def expect_page_...
chore(feature-tests): require pry in our spec helper
pivotal-cf_pivotal-ui
train
31112420ebb543f839429bcceac873e71652600a
diff --git a/lib/queue_classic/tasks.rb b/lib/queue_classic/tasks.rb index <HASH>..<HASH> 100644 --- a/lib/queue_classic/tasks.rb +++ b/lib/queue_classic/tasks.rb @@ -12,8 +12,9 @@ namespace :qc do QC::Worker.new.start end + desc "Returns the number of jobs in the (default) queue" task :jobs => :environme...
rake: correct qc:jobs QC.queue_length is now QC.length Added description.
QueueClassic_queue_classic
train
371b677d72d95a0b420206ff3489103ba97a420f
diff --git a/modules/social_features/social_group/modules/social_group_quickjoin/src/Form/SocialGroupQuickjoinSettings.php b/modules/social_features/social_group/modules/social_group_quickjoin/src/Form/SocialGroupQuickjoinSettings.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_group/modules/social...
SHN-<I>: Fix saving of the general setting
goalgorilla_open_social
train
4dd8c035867d5a70adf5aae6feedb2e26dcea7b4
diff --git a/OpenPNM/Network/__Import__.py b/OpenPNM/Network/__Import__.py index <HASH>..<HASH> 100644 --- a/OpenPNM/Network/__Import__.py +++ b/OpenPNM/Network/__Import__.py @@ -14,17 +14,25 @@ logger = logging.getLogger(__name__) class Import(GenericNetwork): r""" This method is used to import data resulti...
- Updates to the docstring in the Import class - added pajek files as an future option
PMEAL_OpenPNM
train
ebdcc44b8ee72c17e2d9d4c305c89fdad79162ad
diff --git a/src/eth/DSProxyService.js b/src/eth/DSProxyService.js index <HASH>..<HASH> 100644 --- a/src/eth/DSProxyService.js +++ b/src/eth/DSProxyService.js @@ -38,13 +38,6 @@ export default class DSProxyService extends PrivateService { } } - _setCurrentProxy(transaction) { - return new Promise(async re...
Add transaction settings and nonce to build
makerdao_dai.js
train
d3fd16822f673cd4f70390424724f3eb8b325853
diff --git a/src/Psy/ConfigPaths.php b/src/Psy/ConfigPaths.php index <HASH>..<HASH> 100644 --- a/src/Psy/ConfigPaths.php +++ b/src/Psy/ConfigPaths.php @@ -182,29 +182,28 @@ class ConfigPaths } /** - * Ensure that $file inside $dir exists and is writable. + * Ensure that $file exists and is writable,...
Change touchFileWithMkdir to accept just the path.
bobthecow_psysh
train
3e37eb08ad2986881d25bf89ac868aa14d9d5f54
diff --git a/spec/language/ruby/global_test/repetition/complete_class_with_repetition_spec.rb b/spec/language/ruby/global_test/repetition/complete_class_with_repetition_spec.rb index <HASH>..<HASH> 100644 --- a/spec/language/ruby/global_test/repetition/complete_class_with_repetition_spec.rb +++ b/spec/language/ruby/glo...
Fix test, to use special xml character.
Kuniri_kuniri
train
4681ab0376b69467fde066f10a4b5e4d10552080
diff --git a/nipap-cli/tests/cli-test.py b/nipap-cli/tests/cli-test.py index <HASH>..<HASH> 100755 --- a/nipap-cli/tests/cli-test.py +++ b/nipap-cli/tests/cli-test.py @@ -3,9 +3,9 @@ import unittest import sys -sys.path.append('../') +sys.path.insert(0, '..') from nipap_cli import nipap_cli -from nipap_cli.command...
Modified CLI unit test for exception The CLI unit test now tests for a raised exception on too long command.
SpriteLink_NIPAP
train
85e0b90ebf862e3b663d6b1a13f0c1bb35d2016d
diff --git a/federation/hostmeta/generators.py b/federation/hostmeta/generators.py index <HASH>..<HASH> 100644 --- a/federation/hostmeta/generators.py +++ b/federation/hostmeta/generators.py @@ -318,6 +318,10 @@ class RFC3033Webfinger: "type": "text/html", "href": "%s%s" % (sel...
Add salmon receive url to JSON webfinger
jaywink_federation
train
c8021b70dbf88071d3cfe70e0a3813e4c922310e
diff --git a/sqlbrite/src/androidTest/java/com/squareup/sqlbrite/SqlBriteTest.java b/sqlbrite/src/androidTest/java/com/squareup/sqlbrite/SqlBriteTest.java index <HASH>..<HASH> 100644 --- a/sqlbrite/src/androidTest/java/com/squareup/sqlbrite/SqlBriteTest.java +++ b/sqlbrite/src/androidTest/java/com/squareup/sqlbrite/Sql...
Remove upper-bound from timing tests for slow cloud CI.
square_sqlbrite
train
ac8376988135a36f67fd7119175c0113e668a693
diff --git a/src/git.js b/src/git.js index <HASH>..<HASH> 100644 --- a/src/git.js +++ b/src/git.js @@ -735,6 +735,21 @@ }); }; + /** + * Check if a pathname or pathnames are excluded by .gitignore + * + * @param {string|string[]} [pathnames] + * @param {Function} [then] + */ + Git.protot...
Add checkIgnore prototype method and protected parser method
steveukx_git-js
train
9c40f630e1b549f0b7889fe33dcd826b485af6fc
diff --git a/elasticsearch-model/lib/elasticsearch/model/response/base.rb b/elasticsearch-model/lib/elasticsearch/model/response/base.rb index <HASH>..<HASH> 100644 --- a/elasticsearch-model/lib/elasticsearch/model/response/base.rb +++ b/elasticsearch-model/lib/elasticsearch/model/response/base.rb @@ -48,7 +48,11 @@ mo...
[MODEL] Handle total hits as an object in search response
elastic_elasticsearch-rails
train
8096b95f26b1e8e0fa2b281756f4a4c01a090269
diff --git a/src/infi/projector/helper/utils/__init__.py b/src/infi/projector/helper/utils/__init__.py index <HASH>..<HASH> 100644 --- a/src/infi/projector/helper/utils/__init__.py +++ b/src/infi/projector/helper/utils/__init__.py @@ -230,6 +230,11 @@ def open_tempfile(): except: pass +import re...
HOSTDEV-<I> freezing packages even if their name is not canonical Freezing packages now checks the name VS a normalised (canonical) name, so (for example) writing "jinja2" or "Jinja2" will make no difference in freezing the dependnecies
Infinidat_infi.projector
train
46b4279833d9fc9dbc0d610feef91423827678c6
diff --git a/test/manylinux/run-docker-test.py b/test/manylinux/run-docker-test.py index <HASH>..<HASH> 100644 --- a/test/manylinux/run-docker-test.py +++ b/test/manylinux/run-docker-test.py @@ -13,8 +13,10 @@ tag = 'seashore-test-' + os.environ['CI_JOB_ID'] dst = docker_ctx + '/repo' src = os.environ['CI_PROJECT_DIR...
added basepython thing to get tox.ini working
shopkick_seashore
train
d6236f82891f54672ea724b2d85a7433d285f33b
diff --git a/lib/cyberplat_pki/key_packet.rb b/lib/cyberplat_pki/key_packet.rb index <HASH>..<HASH> 100644 --- a/lib/cyberplat_pki/key_packet.rb +++ b/lib/cyberplat_pki/key_packet.rb @@ -28,7 +28,7 @@ module CyberplatPKI raise "CyberplatPKI: CRYPT_ERR_INVALID_PACKET_FORMAT (unsupported algorithm #{algorithm})"...
JRuby compatibility fixes. RSA#new actually CAN create empty keys, keys are immutable after creation in jruby-openssl and jruby-openssl RSA binding requires all key parameters in specific order. Code is the only documentation for Ruby.
whitequark_cyberplat_pki
train
556d05e506e9e66e3ada02ab984a653828063db1
diff --git a/djpaypal/models/webhooks.py b/djpaypal/models/webhooks.py index <HASH>..<HASH> 100644 --- a/djpaypal/models/webhooks.py +++ b/djpaypal/models/webhooks.py @@ -86,7 +86,7 @@ class WebhookEvent(PaypalObject): ret, created = cls.get_or_update_from_api_data(data) ret.create_or_update_resource() if crea...
Use native signal handling instead of a custom registrations dict
HearthSim_dj-paypal
train
f155c491fe43b3492b4d6d038e57e462b8b77d23
diff --git a/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/ServerStatistics.java b/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/ServerStatistics.java index <HASH>..<HASH> 100644 --- a/client/hotrod-client/src/main/java/org/infinispan/client/hotrod/ServerStatistics.java +++ b/client/...
ISPN-<I> Added tests to differentiate the number of entries statistics
infinispan_infinispan
train
80ab099f71ce0c2a8fd136c6374d57d586e62c7d
diff --git a/Ping.php b/Ping.php index <HASH>..<HASH> 100644 --- a/Ping.php +++ b/Ping.php @@ -6,8 +6,8 @@ * This class pings a host. * * The ping() method pings a server using 'exec', 'socket', or 'fsockopen', and - * and returns FALSE if the server is unreachable within the given timeout, or - * the latency in ...
Issue #1: Fix TTL/Timeout Confusion.
geerlingguy_Ping
train
48d18677000f8ca41ea0c4ca252588c0c48fcfbc
diff --git a/tokumx/check.py b/tokumx/check.py index <HASH>..<HASH> 100644 --- a/tokumx/check.py +++ b/tokumx/check.py @@ -12,6 +12,7 @@ import bson from pymongo import ( MongoClient, ReadPreference, + errors, uri_parser, version as py_version, ) @@ -259,7 +260,7 @@ class TokuMX(AgentCheck): ...
[tokumx] syncing check.
DataDog_integrations-core
train
937906b5f874b5436c42f77f6a41dbb59fd6c735
diff --git a/core_impl/src/test/java/com/google/instrumentation/trace/TraceComponentImplTest.java b/core_impl/src/test/java/com/google/instrumentation/trace/TraceComponentImplTest.java index <HASH>..<HASH> 100644 --- a/core_impl/src/test/java/com/google/instrumentation/trace/TraceComponentImplTest.java +++ b/core_impl/...
Add a missing RunWith annotation. (#<I>)
census-instrumentation_opencensus-java
train
0db259d8a7c52ef3090d67f36f7c2b0ce7b8ed8b
diff --git a/base_konnector.js b/base_konnector.js index <HASH>..<HASH> 100644 --- a/base_konnector.js +++ b/base_konnector.js @@ -41,6 +41,17 @@ module.exports = { process.exit(0) }) .then(account => { + // get the folder path from the folder id and put it in cozyFields.folderPath...
feat: now the expected folderPath parameter is an id of folder and not a path
konnectors_libs
train
c992e0a697ef97d796a95059f4bac8baf391540b
diff --git a/pliers/extractors/base.py b/pliers/extractors/base.py index <HASH>..<HASH> 100644 --- a/pliers/extractors/base.py +++ b/pliers/extractors/base.py @@ -7,6 +7,7 @@ import numpy as np from pliers.transformers import Transformer from pliers.utils import isgenerator, flatten, listify from pandas.api.types im...
add serialized transformer_params to df
tyarkoni_pliers
train
210f1883af9dea19d26886dd21304bff9b3e9ee2
diff --git a/backbone-associations.js b/backbone-associations.js index <HASH>..<HASH> 100644 --- a/backbone-associations.js +++ b/backbone-associations.js @@ -330,7 +330,7 @@ data = val instanceof AssociatedModel ? val : new relatedModel(val, relationOptions); ...
Check existence, not value of identity In relations with type Backbone.One, _setAttr was checking that data's id has a truthy value before comparing the identity with currVal's. This means that if id's value is falsy, such as 0, the predicate fails even if the actual values were the same. By checking for the id's exis...
dhruvaray_backbone-associations
train
59d6e8e1bdc44cdcf1a98146c6780edcf1765f1d
diff --git a/graphics/__init__.py b/graphics/__init__.py index <HASH>..<HASH> 100644 --- a/graphics/__init__.py +++ b/graphics/__init__.py @@ -21,10 +21,23 @@ class Canvas(object): center=True, border=True ): + if ( ( size[0] + border ) *2 ) +1 > console.WIDTH: + ...
Added some validation to Canvas.__init__, as per #<I>
olls_graphics
train
a02ee1d5978d12ae127d8a4c4a1e0f4b3df521cb
diff --git a/h2o-genmodel/src/main/java/hex/genmodel/algos/glrm/GlrmMojoModel.java b/h2o-genmodel/src/main/java/hex/genmodel/algos/glrm/GlrmMojoModel.java index <HASH>..<HASH> 100644 --- a/h2o-genmodel/src/main/java/hex/genmodel/algos/glrm/GlrmMojoModel.java +++ b/h2o-genmodel/src/main/java/hex/genmodel/algos/glrm/Glrm...
fix glrm <I> fail (#<I>) * only compare x factors for all numerical data rows. * Reduced mojo predict iteration number for speed over accuracy. * Reduce number of alphas to search over.
h2oai_h2o-3
train
3dd276de1a141137e295051b3993ac1e3e24eb8e
diff --git a/webpack.tests.js b/webpack.tests.js index <HASH>..<HASH> 100644 --- a/webpack.tests.js +++ b/webpack.tests.js @@ -1,3 +1,8 @@ +// +// This file serves as the main entry file for karma. +// It will require all files ending with `.spec.js` +// and compile them with webpack on the fly. +// const context = re...
DOCS: Add a short explanary header for the webpack.tests.js file
neos_neos-ui
train
171c069b5a1a6ac6a1832ba82f9035f88f98067c
diff --git a/src/Hprose/Promise/functions.php b/src/Hprose/Promise/functions.php index <HASH>..<HASH> 100644 --- a/src/Hprose/Promise/functions.php +++ b/src/Hprose/Promise/functions.php @@ -14,7 +14,7 @@ * * * some helper functions for php 5.3+ ...
Added Promise\promisify.
hprose_hprose-php
train
1ca3eeca516addbcb2a87fee91a4157dbdee4082
diff --git a/netmaster/master/netmaster.go b/netmaster/master/netmaster.go index <HASH>..<HASH> 100755 --- a/netmaster/master/netmaster.go +++ b/netmaster/master/netmaster.go @@ -248,8 +248,11 @@ func startServiceContainer(tenantName string) error { log.Errorf("Error creating DNS container for tenant: %s. Error: %s"...
Restart policy for SkyDNS containers
contiv_netplugin
train
18011b2fcb7f1fff9a13337cb2852370a5de20a5
diff --git a/lib/sup/modes/edit-message-mode.rb b/lib/sup/modes/edit-message-mode.rb index <HASH>..<HASH> 100644 --- a/lib/sup/modes/edit-message-mode.rb +++ b/lib/sup/modes/edit-message-mode.rb @@ -162,8 +162,10 @@ EOS fn = BufferManager.ask_for_filename :attachment, "File name (enter for browser): " return ...
when providing a wildcard as file for an attachment, correctly expand it
sup-heliotrope_sup
train
b5b54168c9c3b277e7cf30c7bfd23435747dd089
diff --git a/src/resources/assets/react/form/fields/DropDownFilterable.js b/src/resources/assets/react/form/fields/DropDownFilterable.js index <HASH>..<HASH> 100644 --- a/src/resources/assets/react/form/fields/DropDownFilterable.js +++ b/src/resources/assets/react/form/fields/DropDownFilterable.js @@ -197,6 +197,7 @@ e...
Triggering change after new option is added
honey-comb_core
train
5aa211f75dc74fed0a09c255205151b798350cc1
diff --git a/tests/test_packet.py b/tests/test_packet.py index <HASH>..<HASH> 100644 --- a/tests/test_packet.py +++ b/tests/test_packet.py @@ -11,7 +11,7 @@ COMPLEXCONTROL_TESTPACKET = '\xf0\x00\x00 \x1f\x01\x00 \x06\x00\x00\x00\x00\x00\ # fixtures for passing in the objects import pytest -@pytest.mark.parametrize(...
add ids for the packets used to refer to them by a logical name
kratsg_ironman
train
0589457389c43b49ca9940036e71e8209bb748ab
diff --git a/routes/oauth.js b/routes/oauth.js index <HASH>..<HASH> 100644 --- a/routes/oauth.js +++ b/routes/oauth.js @@ -38,10 +38,9 @@ var authenticate = function(req, res) { application; if (!token) { - res.render("error", {page: {title: "Error", + res.status(400).render("error", {page...
Fix status code sending in OAuth routes
pump-io_pump.io
train
bbbeb7e86c3ce175c791ea5e7022a4dbb0f16b2b
diff --git a/src/Injector.php b/src/Injector.php index <HASH>..<HASH> 100644 --- a/src/Injector.php +++ b/src/Injector.php @@ -150,9 +150,8 @@ class Injector $result = []; foreach ($function->getParameters() as $parameter) { - $name = $parameter->getName(); $this->resolver->s...
Injector::getFunctionParameters() does not need an associative array
brick_di
train
c01217d379295149a4405803a2e49a461cff9fa5
diff --git a/ontrack-boot/src/main/java/net/nemerosa/ontrack/boot/ui/StructureAPI.java b/ontrack-boot/src/main/java/net/nemerosa/ontrack/boot/ui/StructureAPI.java index <HASH>..<HASH> 100644 --- a/ontrack-boot/src/main/java/net/nemerosa/ontrack/boot/ui/StructureAPI.java +++ b/ontrack-boot/src/main/java/net/nemerosa/ont...
Branches: creation of a branch (ui)
nemerosa_ontrack
train
adf4eee3a29f4aa09c0b5fa3ba8b5dddbc25abc4
diff --git a/test/user-rest-test.js b/test/user-rest-test.js index <HASH>..<HASH> 100644 --- a/test/user-rest-test.js +++ b/test/user-rest-test.js @@ -66,6 +66,8 @@ var goodUser = function(err, doc) { assert.include(doc.profile, "followers"); assert.include(doc.profile, "following"); assert.include(doc.p...
Test that user profile has no _uuid
pump-io_pump.io
train
2aea9b55c551c2905b240971192a821f70c8725e
diff --git a/lib/systems/advance-animations.js b/lib/systems/advance-animations.js index <HASH>..<HASH> 100644 --- a/lib/systems/advance-animations.js +++ b/lib/systems/advance-animations.js @@ -18,6 +18,9 @@ function setOwnPropertiesDeep(src, dest) { module.exports = function advanceAnimations(ecs, data) { ecs.ad...
Dont crash when animation doesn't exist
SplatJS_splat-ecs
train
33a3a395ce913dbe8717e24aebab3af501d40d4d
diff --git a/extensions/cleaner-gallery.php b/extensions/cleaner-gallery.php index <HASH>..<HASH> 100644 --- a/extensions/cleaner-gallery.php +++ b/extensions/cleaner-gallery.php @@ -132,8 +132,17 @@ function cleaner_gallery( $output, $attr ) { /* Open each gallery item. */ $output .= "\n\t\t\t\t\t<{$itemtag} cl...
Add the image orientation as a class on the gallery icon element to bring the gallery shortcode up to date with WP.
justintadlock_hybrid-core
train
897651909b9bc4e205ab4530c3bc612e926bc988
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -250,11 +250,19 @@ export default function undoable (reducer, rawConfig = {}) { } } - const updatedHistory = (state.present === res) - ? state - : insert(state, re...
Addded more support for initialState in createStore without a history
omnidan_redux-undo
train