hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
d12d9ddcb1e7136ebfd7115cc056944fcba21bae
diff --git a/config/python.py b/config/python.py index <HASH>..<HASH> 100644 --- a/config/python.py +++ b/config/python.py @@ -2,6 +2,11 @@ import config.project package_name = config.project.project_name +install_requires = [ + "pyfakeuse", + "logging_tree", + "pyyaml", +] test_requires = [ "pylint...
run_requires -> install_requires
veltzer_pylogconf
train
py
aeb7b46d535c97590a37a100ff8648864a64f634
diff --git a/tests/unit/components/LMap.spec.js b/tests/unit/components/LMap.spec.js index <HASH>..<HASH> 100644 --- a/tests/unit/components/LMap.spec.js +++ b/tests/unit/components/LMap.spec.js @@ -205,8 +205,6 @@ describe('component: LMap.vue', () => { // Quarantining this test because it seems it blocks jest ex...
Add wrapper creation to quarantined test
KoRiGaN_Vue2Leaflet
train
js
bf895bb0ede2bc6af411ef4f2167d3ba702ec9a1
diff --git a/lib/template.js b/lib/template.js index <HASH>..<HASH> 100644 --- a/lib/template.js +++ b/lib/template.js @@ -172,7 +172,11 @@ module.exports = (function () { */ if (init.before) { - return init.before(); + return new Promise( + function (resolve,...
Pass resolve, reject to hooks.
carrot_sprout
train
js
5a1aa19878c39fa15fc4a7c701b9bc609811241d
diff --git a/vyper/optimizer.py b/vyper/optimizer.py index <HASH>..<HASH> 100644 --- a/vyper/optimizer.py +++ b/vyper/optimizer.py @@ -11,7 +11,7 @@ def get_int_at(args, pos, signed=False): o = LOADED_LIMIT_MAP[args[pos].args[0].value] else: return None - if signed: + if signed or o < 0: ...
Fix optimization of negative integer addition Previously when optimizing an addition involving a negative integer, the optimizer would treat negative values as their positive two's complement representation, which would cause overflow (e.g. -1 + 1 would equal 2**<I> rather than 0).
ethereum_vyper
train
py
756b5234dc5ebd9db9845742dff02c8c7223d3c1
diff --git a/numina/core/__init__.py b/numina/core/__init__.py index <HASH>..<HASH> 100644 --- a/numina/core/__init__.py +++ b/numina/core/__init__.py @@ -31,3 +31,5 @@ from .reciperesult import RecipeResult, provides, Product, Optional from .reciperesult import ValidRecipeResult from .reciperesult import define_resu...
Added BaseRecipe as an alias to RecipeBase
guaix-ucm_numina
train
py
84cee45baed1afbd03a3491d2fc005b09fb29ac7
diff --git a/lib/fishback.js b/lib/fishback.js index <HASH>..<HASH> 100644 --- a/lib/fishback.js +++ b/lib/fishback.js @@ -28,17 +28,17 @@ Fishback.prototype.request = function (req, res) { // Call list[0].request(), if we get a "reject", call list[1].request(), // and so on. - function reject(list) { + ...
reject() -> process() (much better name!)
ithinkihaveacat_node-fishback
train
js
9098e34fbd6bf111e50970d6ad1cde7ea8ca7bd8
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -import os try: from setuptools import setup except ImportError:
Remove unused os import in setup.py
rhgrant10_Groupy
train
py
3501f85bfad39cbea8c2fe7867971754e17d3823
diff --git a/homu/server.py b/homu/server.py index <HASH>..<HASH> 100644 --- a/homu/server.py +++ b/homu/server.py @@ -256,7 +256,7 @@ def github(): if action == 'reopened': # FIXME: Review comments are ignored here - for comment in get_repo(repo_label, repo_cfg).issue(pul...
Restore the status when a PR is reopened Previously, the status of a reopened PR was set to an empty string.
barosl_homu
train
py
b5974c2069fb276bfccdc152e9e3984fec824ac2
diff --git a/tarbell/app.py b/tarbell/app.py index <HASH>..<HASH> 100644 --- a/tarbell/app.py +++ b/tarbell/app.py @@ -235,7 +235,7 @@ class TarbellSite: except KeyError: pass if is_dict: - k = row.custom['key'].text + ...
add slughifi to one more place
tarbell-project_tarbell
train
py
eb2a04912c7227e30ed23d69dd8175c886fc459b
diff --git a/internal/monitor/postmonitor.go b/internal/monitor/postmonitor.go index <HASH>..<HASH> 100644 --- a/internal/monitor/postmonitor.go +++ b/internal/monitor/postmonitor.go @@ -18,8 +18,6 @@ type PostMonitor struct { // Query is the multireddit query PostMonitor will use to find new posts // (e.g. self+fu...
Remove unused post count. Former-commit-id: <I>ee6b1bd<I>eac9a7adf1e4a2fb0e<I>c8ba<I>
turnage_graw
train
go
713552fc083a2f3b8bc871e389983d1d4e94c3f4
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -51,6 +51,6 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-nodeunit'); grunt.loadNpmTasks('grunt-contrib-internal'); - grunt.registerTask('test', ['clean', 'xmlmin', 'nod...
Add JSHint target to test target.
dtrunk90_grunt-xmlmin
train
js
b02a8954c37732d9596b7dcef881ed211cda5695
diff --git a/vendor/refinerycms/images/lib/images.rb b/vendor/refinerycms/images/lib/images.rb index <HASH>..<HASH> 100644 --- a/vendor/refinerycms/images/lib/images.rb +++ b/vendor/refinerycms/images/lib/images.rb @@ -31,6 +31,7 @@ module Refinery Refinery::Plugin.register do |plugin| plugin.title ...
Fixed dashboard not working with I<I>n This caused errors, because the image plugin generated a unknown url, based on the title of the plugin, which gets translated.
refinery_refinerycms
train
rb
ff11499729975274e338ad1cd63ea7824f2dc046
diff --git a/zhaquirks/xiaomi/aqara/motion_ac02.py b/zhaquirks/xiaomi/aqara/motion_ac02.py index <HASH>..<HASH> 100644 --- a/zhaquirks/xiaomi/aqara/motion_ac02.py +++ b/zhaquirks/xiaomi/aqara/motion_ac02.py @@ -71,11 +71,27 @@ class LocalIlluminanceMeasurementCluster( ): """Local lluminance measurement cluster.""...
Small tweaks to Aqara P1 motion sensor (#<I>) * Small tweaks to Aqara P1 motion sensor * add debug line * discard values over FFDC and set to 0 * update debug log
dmulcahey_zha-device-handlers
train
py
9a4a2d36583f7f80ea42a989e6e4ce5371574a4b
diff --git a/test/request_test.rb b/test/request_test.rb index <HASH>..<HASH> 100644 --- a/test/request_test.rb +++ b/test/request_test.rb @@ -41,9 +41,21 @@ class RequestTest < Minitest::Test end end - # def test_socket_error - # raised = assert_raises(BlockScore::APIConnectionError) do - # - # end -...
add socket_error and connection_refused tests
BlockScore_blockscore-ruby
train
rb
aaf783b0fc8a7d8052b9c9f29d0b6c23b8036eee
diff --git a/ca/django_ca/admin.py b/ca/django_ca/admin.py index <HASH>..<HASH> 100644 --- a/ca/django_ca/admin.py +++ b/ca/django_ca/admin.py @@ -53,7 +53,7 @@ class CertificateAdmin(admin.ModelAdmin): list_display = ('cn', 'serial', 'status', 'expires_date') list_filter = (StatusListFilter, ) readonly_...
fix subjectAltName for real
mathiasertl_django-ca
train
py
9506347ab82c4a83de9dac75f09825355fdd59ec
diff --git a/scandir.py b/scandir.py index <HASH>..<HASH> 100644 --- a/scandir.py +++ b/scandir.py @@ -20,7 +20,7 @@ import collections import ctypes import sys -__version__ = '0.7' +__version__ = '0.8' __all__ = ['scandir', 'walk'] # Windows FILE_ATTRIBUTE constants for interpreting the
Bump up version number for latest PEP changes.
benhoyt_scandir
train
py
b346366a45d917a229c2e85bb38a8677f253de95
diff --git a/src/Acquia/Common/Version.php b/src/Acquia/Common/Version.php index <HASH>..<HASH> 100644 --- a/src/Acquia/Common/Version.php +++ b/src/Acquia/Common/Version.php @@ -4,6 +4,6 @@ namespace Acquia\Common; final class Version { - const RELEASE = '0.10.0-dev'; + const RELEASE = '0.10.0'; const B...
Prepare for release [skip ci]
acquia_acquia-sdk-php
train
php
c5c0f56384f0fc5591ac9694e1dc1d52887b1893
diff --git a/chorus/src/main/java/org/chorusbdd/chorus/remoting/jmx/ChorusHandlerJmxExporter.java b/chorus/src/main/java/org/chorusbdd/chorus/remoting/jmx/ChorusHandlerJmxExporter.java index <HASH>..<HASH> 100755 --- a/chorus/src/main/java/org/chorusbdd/chorus/remoting/jmx/ChorusHandlerJmxExporter.java +++ b/chorus/src...
remove unnecessary throws clause for runtime exception
Chorus-bdd_Chorus
train
java
f4d9deffa470af893467c6af8c5555fd7bb6f8d4
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -58,16 +58,16 @@ RSpec.configure do |config| end config.before :suite do - call_server(:start) puts - puts ">> waiting for server to bootup" + puts ">> starting...
tests: small changes on specs helper
bmedici_rest-ftp-daemon
train
rb
782bd95acd15918339e2562ebe6252d68c66fd08
diff --git a/lib/train/platforms/detect/helpers/os_common.rb b/lib/train/platforms/detect/helpers/os_common.rb index <HASH>..<HASH> 100644 --- a/lib/train/platforms/detect/helpers/os_common.rb +++ b/lib/train/platforms/detect/helpers/os_common.rb @@ -97,6 +97,12 @@ module Train::Platforms::Detect::Helpers retu...
Add a new regex for Cisco XE devices
inspec_train
train
rb
15e4a6d26b30731f525a9d75d0df3051ce01f00b
diff --git a/abaaso.js b/abaaso.js index <HASH>..<HASH> 100644 --- a/abaaso.js +++ b/abaaso.js @@ -890,7 +890,7 @@ var abaaso = function(){ break; case "id": if (observer.listeners[obj.id] !== undefined) { - observer.listeners[args[i]] = observer.listeners[obj.id]; + observer.l...
Changed the observer listener move to a copy/del set of ops
avoidwork_abaaso
train
js
2499d43325a647148c183a0fc22055a9dff0a0c7
diff --git a/nsinit/init.go b/nsinit/init.go index <HASH>..<HASH> 100644 --- a/nsinit/init.go +++ b/nsinit/init.go @@ -65,8 +65,10 @@ func Init(container *libcontainer.Container, uncleanRootfs, consolePath string, if err := mount.InitializeMountNamespace(rootfs, consolePath, container); err != nil { return fmt.Er...
Check supplied hostname before using it. Docker-DCO-<I>-
opencontainers_runc
train
go
238b8337db1673b3b8e385ba082b43e3cb228374
diff --git a/cli.js b/cli.js index <HASH>..<HASH> 100755 --- a/cli.js +++ b/cli.js @@ -18,7 +18,7 @@ function text(text, color) { } require('fallback-cli')('ava/cli.js', function (opts) { - if (true || !opts.localCli) { + if (!opts.localCli) { chalk = require('chalk'); indent = chalk.gray('│ ');
actually run AVA when the command is executed
jamestalmage_ava-cli
train
js
1904c9eaaf221013dfc21fe4e186496dfd3a30d9
diff --git a/spring-social-twitter/src/main/java/org/springframework/social/twitter/api/Tweet.java b/spring-social-twitter/src/main/java/org/springframework/social/twitter/api/Tweet.java index <HASH>..<HASH> 100644 --- a/spring-social-twitter/src/main/java/org/springframework/social/twitter/api/Tweet.java +++ b/spring-...
tweet object is now serializable, consistant with other twitter api objects
spring-projects_spring-social-twitter
train
java
a33d5ad2838390f873533606537b8f9b4430c0c7
diff --git a/app/lib/actions/katello/capsule_content/sync.rb b/app/lib/actions/katello/capsule_content/sync.rb index <HASH>..<HASH> 100644 --- a/app/lib/actions/katello/capsule_content/sync.rb +++ b/app/lib/actions/katello/capsule_content/sync.rb @@ -52,7 +52,8 @@ module Actions concurrence do r...
Fixes #<I> - properly detect CVPE during proxy sync
Katello_katello
train
rb
bd085e0a21b938708cf0c5b5477ba4cd399f9f71
diff --git a/roaring/roaring.go b/roaring/roaring.go index <HASH>..<HASH> 100644 --- a/roaring/roaring.go +++ b/roaring/roaring.go @@ -3667,15 +3667,9 @@ func (op *op) apply(b *Bitmap) (changed bool) { case opTypeRemove: return b.remove(op.value) case opTypeAddBatch: - for _, v := range op.values { - nc := b....
simply setting list of values with *N methods
pilosa_pilosa
train
go
50ed91cc799ed7b32cc77127b131a183820c0d39
diff --git a/spec/lib/stretcher_index_type_spec.rb b/spec/lib/stretcher_index_type_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/stretcher_index_type_spec.rb +++ b/spec/lib/stretcher_index_type_spec.rb @@ -17,13 +17,12 @@ describe Stretcher::Index do describe "searching" do before do @doc = {:messag...
Fix spec that shouldn't have been passing in IndexType spec
stretcher_stretcher
train
rb
a7d1a2e080b418a93141fef5d0cd9baad21ad58d
diff --git a/notario/validators/__init__.py b/notario/validators/__init__.py index <HASH>..<HASH> 100644 --- a/notario/validators/__init__.py +++ b/notario/validators/__init__.py @@ -23,7 +23,7 @@ class cherry_pick(tuple): self.must_validate = tuple([key for key, value in _tuple]) except ValueErro...
safer deduction of items that must_be_validated
alfredodeza_notario
train
py
661ae81af52259af6788d25b63d15925e82777c0
diff --git a/web/core/application.py b/web/core/application.py index <HASH>..<HASH> 100644 --- a/web/core/application.py +++ b/web/core/application.py @@ -201,9 +201,14 @@ class Application(object): # Passing invalid arguments would 500 Internal Server Error on us due to the TypeError exception bubbling up. try: ...
Improved callable instance vs. routine detection.
marrow_WebCore
train
py
0645fd2c80c05109f148e28cdf78d636406cb6d7
diff --git a/activerecord/lib/active_record/associations/association_collection.rb b/activerecord/lib/active_record/associations/association_collection.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/associations/association_collection.rb +++ b/activerecord/lib/active_record/associations/association...
Don't use method_missing when we don't have to
rails_rails
train
rb
32947535e7668d5be53f3b29e9e79a63a4d763cf
diff --git a/simuvex/plugins/view.py b/simuvex/plugins/view.py index <HASH>..<HASH> 100644 --- a/simuvex/plugins/view.py +++ b/simuvex/plugins/view.py @@ -21,10 +21,12 @@ class SimRegNameView(SimStatePlugin): v = self.state.se.BVV(v, self.state.arch.registers[k][1]*8) try: - return se...
RegView no longer throws attribute errors for KeyErrors that shouldn't have been thrown
angr_angr
train
py
0f27d1d7228733dd442708af5ee314c448a723b1
diff --git a/lib/gridfs/grid_store.js b/lib/gridfs/grid_store.js index <HASH>..<HASH> 100644 --- a/lib/gridfs/grid_store.js +++ b/lib/gridfs/grid_store.js @@ -1379,6 +1379,7 @@ GridStoreStream.prototype._read = function(n) { var read = function() { // Read data self.gs.read(length, function(err, buffer) { ...
NODE-<I> GridStoreStream._read() doesn't check GridStore.read() error
mongodb_node-mongodb-native
train
js
c5d7738e660bf3530d4c45d47846c5037caf6d08
diff --git a/sportsipy/fb/fb_utils.py b/sportsipy/fb/fb_utils.py index <HASH>..<HASH> 100644 --- a/sportsipy/fb/fb_utils.py +++ b/sportsipy/fb/fb_utils.py @@ -20,12 +20,10 @@ def _parse_squad_name(team_id): string Returns a ``string`` of the parsed team's name. """ - name = team_id.replace(' FC', ...
fewer lines of code (#<I>) Reduce the number of similar lines in the football utility module.
roclark_sportsreference
train
py
89ca4e12938feec09e40786f048dbe4a351f813f
diff --git a/src/Models/User.php b/src/Models/User.php index <HASH>..<HASH> 100644 --- a/src/Models/User.php +++ b/src/Models/User.php @@ -52,7 +52,7 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon * * @var array */ - protected $fillable = ['name', 'email', 'pass...
Allow for the account status to be filled
eveseat_web
train
php
e40d0eba063e1ba61f99eec5c1003af6a6280ea4
diff --git a/client/views/heatmap.js b/client/views/heatmap.js index <HASH>..<HASH> 100644 --- a/client/views/heatmap.js +++ b/client/views/heatmap.js @@ -129,8 +129,12 @@ module.exports = View.extend({ view.queryByHook('alpha').value = view.model.alpha; view.recalculateColors(view.model); - ...
Add callback that dc uses to deregister
NLeSC_spot
train
js
6d379c8c207f16bd0c8630f92eb30041f4323607
diff --git a/storage/src/main/java/io/atomix/storage/buffer/FileBytes.java b/storage/src/main/java/io/atomix/storage/buffer/FileBytes.java index <HASH>..<HASH> 100644 --- a/storage/src/main/java/io/atomix/storage/buffer/FileBytes.java +++ b/storage/src/main/java/io/atomix/storage/buffer/FileBytes.java @@ -236,6 +236,7 ...
Ensure file bytes are zeroed starting at correct offset when resizing bytes.
atomix_atomix
train
java
5508d1b63002efd7e888a0c382f52f925caf896e
diff --git a/wayback-core/src/main/java/org/archive/wayback/util/webapp/RequestMapper.java b/wayback-core/src/main/java/org/archive/wayback/util/webapp/RequestMapper.java index <HASH>..<HASH> 100644 --- a/wayback-core/src/main/java/org/archive/wayback/util/webapp/RequestMapper.java +++ b/wayback-core/src/main/java/org/...
BUGFIX: was setting path prefix to "//" for requests to "/" git-svn-id: <URL>
iipc_openwayback
train
java
fe1abc1728d6c8ecb7ecbf75f86f1014e823dfec
diff --git a/aiocron/__init__.py b/aiocron/__init__.py index <HASH>..<HASH> 100644 --- a/aiocron/__init__.py +++ b/aiocron/__init__.py @@ -7,6 +7,7 @@ import time import functools import asyncio import sys +import inspect async def null_callback(*args): @@ -19,12 +20,15 @@ def wrap_func(func): _func = ...
make wrapper analyze the value returned from callback func and await it in case Awaitable was returned;
gawel_aiocron
train
py
b1564c47537bd24e7933e3a0cc9624b698a96536
diff --git a/src/Webserver/BuiltInWebserverController.php b/src/Webserver/BuiltInWebserverController.php index <HASH>..<HASH> 100644 --- a/src/Webserver/BuiltInWebserverController.php +++ b/src/Webserver/BuiltInWebserverController.php @@ -25,10 +25,6 @@ final class BuiltInWebserverController implements WebserverControl...
Don't error if webserver is already running
ciaranmcnulty_behat-localwebserverextension
train
php
63eb73e8651126bba7a701916feaf38e00f69128
diff --git a/luigi/worker.py b/luigi/worker.py index <HASH>..<HASH> 100644 --- a/luigi/worker.py +++ b/luigi/worker.py @@ -83,8 +83,6 @@ class Worker(object): is_complete = False try: is_complete = task.complete() - if is_complete not in (True, False): - ...
Allowing non-boolean returns from the complete method. This should fix endsongsource and a few other sources Change-Id: I<I>d8ef<I>c8f<I>c9fffb<I>afa<I>d0d0ea7c Reviewed-on: <URL>
spotify_luigi
train
py
cc5eed2c3cd08ff77c72f05dc65f0553ae8463d5
diff --git a/go/engine/passphrase_change.go b/go/engine/passphrase_change.go index <HASH>..<HASH> 100644 --- a/go/engine/passphrase_change.go +++ b/go/engine/passphrase_change.go @@ -302,6 +302,10 @@ func (c *PassphraseChange) runStandardUpdate(ctx *Context) (err error) { // commonArgs must be called inside a LoginSta...
Ensure that a login session is loaded in order to get salt
keybase_client
train
go
3ada8f9ce32629928fbff3b26156876f5eef3767
diff --git a/resources/index.js b/resources/index.js index <HASH>..<HASH> 100644 --- a/resources/index.js +++ b/resources/index.js @@ -23,6 +23,7 @@ function makeRequest(path, event, context) { event: event, context: context }; + var stringified = JSON.stringify(requestBody); var contentLength = Buff...
Blindly attempt to parse JSON data to return to `context`
mweagle_Sparta
train
js
4571bf38d33fb83669dca27e1c7a6ee8c112ef02
diff --git a/src/Proxy/AbstractCollection.php b/src/Proxy/AbstractCollection.php index <HASH>..<HASH> 100644 --- a/src/Proxy/AbstractCollection.php +++ b/src/Proxy/AbstractCollection.php @@ -3,9 +3,10 @@ namespace Tequila\MongoDB\ODM\Proxy; use ArrayAccess; +use Countable; use Iterator; -abstract class AbstractC...
Countable interface for AbstractCollection proxy
tequila_mongodb-odm
train
php
df37d54f785a6efb09f9e07bf7a98befb0f5bda4
diff --git a/util/builder.py b/util/builder.py index <HASH>..<HASH> 100644 --- a/util/builder.py +++ b/util/builder.py @@ -19,6 +19,7 @@ class RainbowBuilder(object): 'css': '1.0.7', 'generic': '1.0.9', 'go': '1.0', + 'haskell': '1.0.1', 'html': '1.0.7', ...
added haskell to the builder.py.
ccampbell_rainbow
train
py
8bc931868cdf81240d7c396b7d49e43812dc15b9
diff --git a/packages/@uppy/locales/src/en_US.js b/packages/@uppy/locales/src/en_US.js index <HASH>..<HASH> 100644 --- a/packages/@uppy/locales/src/en_US.js +++ b/packages/@uppy/locales/src/en_US.js @@ -16,6 +16,7 @@ en_US.strings = { closeModal: 'Close Modal', companionAuthError: 'Authorization required', com...
locales: Update en_US.
transloadit_uppy
train
js
715e74773b0c148487d9b59c124d22742ba19d65
diff --git a/lib/jumpstart/base.rb b/lib/jumpstart/base.rb index <HASH>..<HASH> 100644 --- a/lib/jumpstart/base.rb +++ b/lib/jumpstart/base.rb @@ -65,7 +65,6 @@ module JumpStart end # set up instance variable containing an array that will be populated with existing jumpstart templates - # TODO lookup...
removed TODO for lookup_existing_templates as this already has a test
i0n_jumpstart
train
rb,rb
6a0cd1e8f06d4e64989efc9e6ed378c0641661e7
diff --git a/src/Adyen/Config.php b/src/Adyen/Config.php index <HASH>..<HASH> 100644 --- a/src/Adyen/Config.php +++ b/src/Adyen/Config.php @@ -69,16 +69,6 @@ class Config implements ConfigInterface return !empty($this->data['x-api-key']) ? $this->data['x-api-key'] : null; } - /** - * Get the Poin...
Removed getPOIID from config/interface
Adyen_adyen-php-api-library
train
php,php
addfb33c758138bff0f7ffdf151a7faac1e44df7
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -43,7 +43,7 @@ module.exports = function (grunt) { tagName: '%VERSION%', tagMessage: 'Version %VERSION%', push: true, - pushTo: 'upstream', + pushTo: 'origin', ...
build(bump): push to origin
aaccurso_phaser-state-transition-plugin
train
js
bf0b48ad8788a87e6fc8425e239f7359f8a4cec0
diff --git a/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php b/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php +++ b/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php @@ -83,7 +83,...
[FrameworkBundle] Remove reference to APP_SECRET in MicroKernelTrait
symfony_symfony
train
php
b7186a04cfecae9de25444ac9137f01f11d64db9
diff --git a/tasklib/task.py b/tasklib/task.py index <HASH>..<HASH> 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -280,7 +280,7 @@ class Task(TaskResource): yield key @property - def _is_modified(self): + def modified(self): return bool(list(self._modified_fields)) ...
Task: Make modified property non-private This is actually useful to have open to public. For modify hooks, you get two lines of input(original and modified version), so it's quite useful to have a convenient way of checking whether the task you got is modified or not.
robgolding_tasklib
train
py
bc6230b6760272e8ceff394dedbf9f2009602082
diff --git a/src/core/reducer.js b/src/core/reducer.js index <HASH>..<HASH> 100644 --- a/src/core/reducer.js +++ b/src/core/reducer.js @@ -1,8 +1,10 @@ import { createStore, applyMiddleware, compose, combineReducers } from 'redux' +import { routerMiddleware } from 'react-router-redux' +import { browserHistory } from '...
Use react-router-redux middleware required for action-based navigation
jsonmaur_jumpsuit
train
js
9681b0c4d47379c816514555e9b5585d993b3bb1
diff --git a/packages/node_modules/@ciscospark/internal-plugin-ediscovery/src/ediscovery.js b/packages/node_modules/@ciscospark/internal-plugin-ediscovery/src/ediscovery.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@ciscospark/internal-plugin-ediscovery/src/ediscovery.js +++ b/packages/node_modules/@cisco...
feat(ediscovery): initial use of kms rback with hardcoded id
webex_spark-js-sdk
train
js
3c77bbcedb35530f73112e28906b8109c81b5874
diff --git a/ctypeslib/codegen/codegenerator.py b/ctypeslib/codegen/codegenerator.py index <HASH>..<HASH> 100644 --- a/ctypeslib/codegen/codegenerator.py +++ b/ctypeslib/codegen/codegenerator.py @@ -311,9 +311,9 @@ class Generator(object): else: ### DEBUG int() float() in...
we do handle __names
trolldbois_ctypeslib
train
py,py
0b451214bf251f96c38940c031a4f8a5ade8a6a5
diff --git a/src/main/java/mousio/etcd4j/requests/EtcdKeyRequest.java b/src/main/java/mousio/etcd4j/requests/EtcdKeyRequest.java index <HASH>..<HASH> 100644 --- a/src/main/java/mousio/etcd4j/requests/EtcdKeyRequest.java +++ b/src/main/java/mousio/etcd4j/requests/EtcdKeyRequest.java @@ -37,6 +37,9 @@ public class EtcdKe...
leading slash leads to unnecessary redirects
jurmous_etcd4j
train
java
ff5d1f6db2744e6a163bd2c00fce86f814759b2c
diff --git a/src/Themer/ThemerResource.php b/src/Themer/ThemerResource.php index <HASH>..<HASH> 100644 --- a/src/Themer/ThemerResource.php +++ b/src/Themer/ThemerResource.php @@ -207,6 +207,8 @@ abstract class ThemerResource throw new InvalidInstanceException('Settings is not a valid instance of ' . Resour...
Moved required settings check nearer to entry point
samanix_laranix
train
php
36cf09585d8ba75597017622c6a167663530935d
diff --git a/addon/components/fa-icon.js b/addon/components/fa-icon.js index <HASH>..<HASH> 100644 --- a/addon/components/fa-icon.js +++ b/addon/components/fa-icon.js @@ -4,7 +4,6 @@ import Ember from 'ember' import { icon, parse, toHtml, config } from '@fortawesome/fontawesome-svg-core' import { htmlSafe } from '@em...
Remove deprecation on importing icons directly (#<I>)
FortAwesome_ember-fontawesome
train
js
02c93bab0fbe6ac7739203b23b67ff32ddd7b383
diff --git a/lib/coach/handler.rb b/lib/coach/handler.rb index <HASH>..<HASH> 100644 --- a/lib/coach/handler.rb +++ b/lib/coach/handler.rb @@ -1,4 +1,5 @@ require "coach/errors" +require "active_support/core_ext/object/try" module Coach class Handler
Add 'require' for 'try' method
gocardless_coach
train
rb
f3ab133ff6329dca40feee914ed843d31af8eaad
diff --git a/src/shims/form-shim-extend.js b/src/shims/form-shim-extend.js index <HASH>..<HASH> 100644 --- a/src/shims/form-shim-extend.js +++ b/src/shims/form-shim-extend.js @@ -910,7 +910,7 @@ if(!Modernizr.formattribute || !Modernizr.fieldsetdisabled){ var stopPropagation = function(e){ e.stopPropagation(...
fix click/submit does not always bubble to the window object
aFarkas_webshim
train
js
b98b0cf8250cfa5c201336ed4e0def8bed1fe560
diff --git a/tests/settings.py b/tests/settings.py index <HASH>..<HASH> 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -30,7 +30,6 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationM...
SessionAuthenticationMiddleware not available in Django<I> and <I>. We don't really need it to run tests.
inonit_drf-haystack
train
py
8d519d2b5aa4ca8543114bc5c8b5a3c76d73b421
diff --git a/lib/proxy.js b/lib/proxy.js index <HASH>..<HASH> 100644 --- a/lib/proxy.js +++ b/lib/proxy.js @@ -35,7 +35,8 @@ function ReverseProxy(opts){ // Create a proxy server with custom application logic // var proxy = this.proxy = httpProxy.createProxyServer({ - xfwd: true + xfwd: true, + prepen...
Opting out of http-proxy's prepend path
OptimalBits_redbird
train
js
c740559b17cc020ab490963f8982972935d3f177
diff --git a/presto-main/src/main/java/com/facebook/presto/cost/PlanNodeStatsEstimateMath.java b/presto-main/src/main/java/com/facebook/presto/cost/PlanNodeStatsEstimateMath.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/cost/PlanNodeStatsEstimateMath.java +++ b/presto-main/src/mai...
Do not process same symbol twice when adding stats
prestodb_presto
train
java
c715fec47d2a3450d20fd6c61a0435750b286f87
diff --git a/test/e2e/apps/rc.go b/test/e2e/apps/rc.go index <HASH>..<HASH> 100644 --- a/test/e2e/apps/rc.go +++ b/test/e2e/apps/rc.go @@ -256,9 +256,7 @@ var _ = SIGDescribe("ReplicationController", func() { ginkgo.By("waiting for ReplicationController is have a DeletionTimestamp") for event := range rcWatchCh...
Update ReplicationController event watch check
kubernetes_kubernetes
train
go
036a5f9041c5b35fb8fbe0f9c64e54fe95384e6f
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__ = '2016.07.0' -build = '679 (d044cc6)' +__version__ = '2016.08.0' +build = '680 (eb4fc37)' diff -...
Ensure EXIF empty strings are interpreted as None
jim-easterbrook_Photini
train
py,py
291ab80d061175564b2725fa6c54963106e5f883
diff --git a/test/src/Swiper.test.js b/test/src/Swiper.test.js index <HASH>..<HASH> 100644 --- a/test/src/Swiper.test.js +++ b/test/src/Swiper.test.js @@ -33,7 +33,7 @@ describe('<Swiper/>', function() { }) it('only renders <Slide/> children in wrapper', () => { - const wrapper = shallow( + const wrapper ...
shallow mounting does not work for testing that only <Slide /> components are mounted, use full mount
nickpisacane_react-dynamic-swiper
train
js
d47c818cb0b8803f62e956940533e82070ff2cf5
diff --git a/server/server_test.go b/server/server_test.go index <HASH>..<HASH> 100644 --- a/server/server_test.go +++ b/server/server_test.go @@ -35,6 +35,7 @@ func TestModPolicyAssign(t *testing.T) { Config: config.GlobalConfig{ As: 1, RouterId: "1.1.1.1", + Port: -1, }, }) assert.Nil(er...
server_test: stop listening Listening on well-known port require the root privileges. This patch stop listening to avoid that because this test doesn't need to accept a peer.
osrg_gobgp
train
go
64c413cdec59dd41f3e2a1503921dfd9be1821ea
diff --git a/Model/Controls/MapTypeControl.php b/Model/Controls/MapTypeControl.php index <HASH>..<HASH> 100644 --- a/Model/Controls/MapTypeControl.php +++ b/Model/Controls/MapTypeControl.php @@ -71,7 +71,10 @@ class MapTypeControl public function addMapTypeId($mapTypeId) { if(in_array($mapTypeId, Map...
Don't add map type id to a map type control if it already exists
egeloen_IvoryGoogleMapBundle
train
php
71a71d4822aa9b20c739baea4abaa6de7be99cf2
diff --git a/tests/unit/test_zypp_plugins.py b/tests/unit/test_zypp_plugins.py index <HASH>..<HASH> 100644 --- a/tests/unit/test_zypp_plugins.py +++ b/tests/unit/test_zypp_plugins.py @@ -13,8 +13,14 @@ import sys from tests.support.mock import MagicMock, patch # Import Salt Testing Libs -from tests.support.unit imp...
test_zypp_plugins: Protect import zypp_plugin by try/except pylint complains: tests/unit/test_zypp_plugins.py:<I>: [W<I>(3rd-party-module-not-gated), ] 3rd-party module import is not gated in a try/except: 'zypp_plugin'
saltstack_salt
train
py
759d3c1993ed744e9128b6e2141281741cbdf8f0
diff --git a/javascript/cable_ready.js b/javascript/cable_ready.js index <HASH>..<HASH> 100644 --- a/javascript/cable_ready.js +++ b/javascript/cable_ready.js @@ -371,12 +371,16 @@ const perform = ( if (detail.element || options.emitMissingElementWarnings) DOMOperations[name](detail) } ...
Add more detail to the CableReady error message (#<I>) * add more detail to the CableReady error message * Currently it just states 'CableReady detected an error in morph! Object doesn't support this action' which makes it pretty hard to debug * run prettier-standard:format * add polyfills hint to error messa...
hopsoft_cable_ready
train
js
7d535e1953414e6a00bf03289c03ca73f283ec24
diff --git a/src/InputFilter.php b/src/InputFilter.php index <HASH>..<HASH> 100644 --- a/src/InputFilter.php +++ b/src/InputFilter.php @@ -864,7 +864,7 @@ class InputFilter } // Remove all symbols - $attrSubSet[0] = preg_replace('/[^\p{L}\p{N}\s]/u', '', $attrSubSet[0]); + $attrSubSet[0] = preg_replace('/...
Update to allow for - character in attribute name
joomla-framework_filter
train
php
3b93edd90f7e99b6796d4c35d5ab0f0fd7321b54
diff --git a/src/main/resources/META-INF/resources/primefaces-extensions/tooltip/1-tooltip.js b/src/main/resources/META-INF/resources/primefaces-extensions/tooltip/1-tooltip.js index <HASH>..<HASH> 100644 --- a/src/main/resources/META-INF/resources/primefaces-extensions/tooltip/1-tooltip.js +++ b/src/main/resources/MET...
Fixed spelling mistake in doclet.
primefaces-extensions_core
train
js
e47353686667f5ecb81b2f8ef4144e0dd7f3ba08
diff --git a/ospec/ospec.js b/ospec/ospec.js index <HASH>..<HASH> 100644 --- a/ospec/ospec.js +++ b/ospec/ospec.js @@ -32,12 +32,11 @@ else window.o = m() ctx = parent } o.only = function(subject, predicate, silent) { - if (!silent) { - console.log(highlight("/!\\ WARNING /!\\ o.only() mode")) - try {throw ...
[ospec] cleanup o.only
MithrilJS_mithril.js
train
js
f4835635e8111d832067c8afc62a82be3e25ee1b
diff --git a/fat/directory.go b/fat/directory.go index <HASH>..<HASH> 100644 --- a/fat/directory.go +++ b/fat/directory.go @@ -120,6 +120,10 @@ func (d *DirectoryEntry) Name() string { } func (d *DirectoryEntry) ShortName() string { + if d.entry.name == "." || d.entry.name == ".." { + return d.entry.name + } + r...
fat: handle ./.. in the directory name
mitchellh_go-fs
train
go
6a514f479f75e85a8a0ae36a90fb4eb98ee42b51
diff --git a/src/Command/DropDatabaseDoctrineCommand.php b/src/Command/DropDatabaseDoctrineCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/DropDatabaseDoctrineCommand.php +++ b/src/Command/DropDatabaseDoctrineCommand.php @@ -89,7 +89,8 @@ EOT $ifExists = $input->getOption('if-exists'); - u...
use the same code in drop as in create
chubbyphp_chubbyphp-doctrine-db-service-provider
train
php
1a5ef78686d9c8c55d708ce24ebe22ede9b8bc7b
diff --git a/array/rotate_array.py b/array/rotate_array.py index <HASH>..<HASH> 100644 --- a/array/rotate_array.py +++ b/array/rotate_array.py @@ -28,6 +28,10 @@ def rotate_one_by_one(nums, k): nums[0] = temp +# +# Reverse segments of the array, followed by the entire array +# T(n)- O(n) +# def rotate(num...
Added time complexity of the optimized solution
keon_algorithms
train
py
38775f06c2285f3d12b9f4a0bc70bded29dce274
diff --git a/hbmqtt/utils.py b/hbmqtt/utils.py index <HASH>..<HASH> 100644 --- a/hbmqtt/utils.py +++ b/hbmqtt/utils.py @@ -13,4 +13,11 @@ def not_in_dict_or_none(dict, key): if key not in dict or dict[key] is None: return True else: - return False \ No newline at end of file + return Fa...
Add method for formatting client info (address, port, id)
beerfactory_hbmqtt
train
py
1a9accbe5d264b93d800c6d724e5526066dbf4e8
diff --git a/telethon/client/auth.py b/telethon/client/auth.py index <HASH>..<HASH> 100644 --- a/telethon/client/auth.py +++ b/telethon/client/auth.py @@ -155,7 +155,7 @@ class AuthMethods: 'not login to the bot account using the provided ' 'bot_token (it may not be usi...
Fix warning when using formatted phones in start (#<I>)
LonamiWebs_Telethon
train
py
a37daebe46b98e833f378f240ff0be8dc339550c
diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index <HASH>..<HASH> 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -12,6 +12,7 @@ REQUIRES = [ "PyJWT==1.5.3", "botbuilder-schema>=4.7.1", "adal==...
Updated botframework-connector setup.py requirements.
Microsoft_botbuilder-python
train
py
c3fb521e0987214b1d075ee9e16ca01f11d13230
diff --git a/test/spec.js b/test/spec.js index <HASH>..<HASH> 100644 --- a/test/spec.js +++ b/test/spec.js @@ -92,7 +92,7 @@ describe('Task: checkDependencies', () => { }); // Deprecated. - it('should install missing packages and continue when `install` and `continue`' + + it('(deprecated) should ...
Mark `continue` as deprecated in the test message
mgol_grunt-check-dependencies
train
js
daf8f3ef8e91486e9239bafe30ec217198adbc38
diff --git a/expression/bench_test.go b/expression/bench_test.go index <HASH>..<HASH> 100644 --- a/expression/bench_test.go +++ b/expression/bench_test.go @@ -1118,8 +1118,6 @@ func genVecExprBenchCase(ctx sessionctx.Context, funcName string, testCase vecEx // testVectorizedEvalOneVec is used to verify that the vector...
expression: fix data race in builtin_other_vec_generated_test.go (#<I>)
pingcap_tidb
train
go
0d2f5bd133cd98978f1f909a04b6d557e6d5f765
diff --git a/uaa/src/test/java/org/cloudfoundry/identity/uaa/integration/feature/DefaultIntegrationTestConfig.java b/uaa/src/test/java/org/cloudfoundry/identity/uaa/integration/feature/DefaultIntegrationTestConfig.java index <HASH>..<HASH> 100644 --- a/uaa/src/test/java/org/cloudfoundry/identity/uaa/integration/feature...
Allow self-signed certs when running integration tests [#<I>] <URL>
cloudfoundry_uaa
train
java
058c0316b65829853dbc1a5232cbad3e680ac558
diff --git a/salt/modules/virtualenv_mod.py b/salt/modules/virtualenv_mod.py index <HASH>..<HASH> 100644 --- a/salt/modules/virtualenv_mod.py +++ b/salt/modules/virtualenv_mod.py @@ -176,7 +176,7 @@ def create(path, cmd.append('--distribute') if python is not None and python.strip() != '': -...
allow lookup of python on system path fix: #<I> fixes #<I>
saltstack_salt
train
py
58ae9f8f081c3bb6aa6fed2aae3177837af7389c
diff --git a/src/playbacks/hls/hls.js b/src/playbacks/hls/hls.js index <HASH>..<HASH> 100644 --- a/src/playbacks/hls/hls.js +++ b/src/playbacks/hls/hls.js @@ -44,6 +44,7 @@ export default class HLS extends HTML5VideoPlayback { // be ignored. "playableRegionDuration" does not consider this this.playableRegionD...
hls: Limmit recover attempts.
clappr_clappr
train
js
4b057a3b9a27eb7c7079ee438dca433f20ba629c
diff --git a/mapi/constants.py b/mapi/constants.py index <HASH>..<HASH> 100644 --- a/mapi/constants.py +++ b/mapi/constants.py @@ -1,4 +1,5 @@ # coding=utf-8 + from datetime import date as _date ABOUT_AUTHOR = 'Jessy Williams' @@ -66,4 +67,5 @@ USER_AGENT_EDGE = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebK...
Renames api key environment variable constants
jkwill87_mapi
train
py
7ea820f6e1805dc5099e33963d70607648af4da8
diff --git a/src/models/event-timeline-set.js b/src/models/event-timeline-set.js index <HASH>..<HASH> 100644 --- a/src/models/event-timeline-set.js +++ b/src/models/event-timeline-set.js @@ -746,6 +746,10 @@ EventTimelineSet.prototype._aggregateRelations = function(event) { eventType, this.roo...
Add `Event.relationsCreated` event to listen for future relations collections If you ask for relations but none currently exist, we return `null` to avoid the overhead of many empty relations objects in memory. However, we still want some way to alert consumers when one _is_ later made, so this event level event provi...
matrix-org_matrix-js-sdk
train
js
2aadfe8adca614bc61fc5164125713dc7c2c1ec3
diff --git a/mock/mock.go b/mock/mock.go index <HASH>..<HASH> 100644 --- a/mock/mock.go +++ b/mock/mock.go @@ -147,7 +147,7 @@ func (c *Call) After(d time.Duration) *Call { } // Run sets a handler to be called before returning. It can be used when -// mocking a method such as unmarshalers that takes a pointer to a ...
Grammatical change in documentation for Run() There was a switch between singular and plural which made this line a little bit hard to parse.
stretchr_testify
train
go
47591ce8ccb7db413a345c32804891c231e8b9b7
diff --git a/js/ghostdown.js b/js/ghostdown.js index <HASH>..<HASH> 100644 --- a/js/ghostdown.js +++ b/js/ghostdown.js @@ -87,11 +87,11 @@ window.socket = io(); $(e.target).closest('section').addClass('active'); }); - //You're probably looking for this to add functionality when the text - //changes. + ...
Fixed issue where flag wasn't being reset
VisionistInc_jibe
train
js
6719cab41adb9372c37c9f6ae173440dd98dfb16
diff --git a/plugins/guests/esxi/cap/public_key.rb b/plugins/guests/esxi/cap/public_key.rb index <HASH>..<HASH> 100644 --- a/plugins/guests/esxi/cap/public_key.rb +++ b/plugins/guests/esxi/cap/public_key.rb @@ -24,7 +24,9 @@ module VagrantPlugins set -e SSH_DIR="$(grep -q '^AuthorizedKeysFile\...
esxi guest: do not fail when we cannot set the ssh directory permissions in esxi <I>
hashicorp_vagrant
train
rb
79836debd3831839319f688a401436a9d67bb5be
diff --git a/SingularityService/src/main/java/com/hubspot/singularity/data/RackManager.java b/SingularityService/src/main/java/com/hubspot/singularity/data/RackManager.java index <HASH>..<HASH> 100644 --- a/SingularityService/src/main/java/com/hubspot/singularity/data/RackManager.java +++ b/SingularityService/src/main/...
Delegate to superclass when appropriate.
HubSpot_Singularity
train
java
8ccd64789ab030b76a99b578b5b1e9812b7a8cd8
diff --git a/systemd/test/test_daemon.py b/systemd/test/test_daemon.py index <HASH>..<HASH> 100644 --- a/systemd/test/test_daemon.py +++ b/systemd/test/test_daemon.py @@ -26,7 +26,7 @@ def closing_socketpair(family): def test_booted(): - if os.path.exists('/run/systemd'): + if os.path.exists('/run/systemd/sy...
tests: mirror is-systemd-running test from systemd
systemd_python-systemd
train
py
78b8e562e5ea97138e4ddaa1eab5f7d65b525a73
diff --git a/lib/solve.rb b/lib/solve.rb index <HASH>..<HASH> 100644 --- a/lib/solve.rb +++ b/lib/solve.rb @@ -25,7 +25,10 @@ module Solve # @param [Array<Solve::Demand>, Array<String, String>] demands # # @option options [#say] :ui (nil) - # a ui object for output + # a ui object for output, t...
Allow a user to pass in their own Tracer object so they are not forced into using the HumanReadable one.
berkshelf_solve
train
rb
d1a505d9b01f7ab36355c16a860d6f93d3781921
diff --git a/lib/action_cable_notifications/callbacks.rb b/lib/action_cable_notifications/callbacks.rb index <HASH>..<HASH> 100644 --- a/lib/action_cable_notifications/callbacks.rb +++ b/lib/action_cable_notifications/callbacks.rb @@ -45,8 +45,6 @@ module ActionCableNotifications end end - private - ...
Allows callbacks to be called directly on the model instance
bys-control_action_cable_notifications
train
rb
1fd5d2b02f60b304ea550948da2465edbc02b1fc
diff --git a/src/PackageChangeLogServiceProvider.php b/src/PackageChangeLogServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/PackageChangeLogServiceProvider.php +++ b/src/PackageChangeLogServiceProvider.php @@ -12,7 +12,10 @@ class PackageChangeLogServiceProvider extends ServiceProvider Commands\PC...
run append chk only once
ctf0_PackageChangeLog
train
php
d58b1846835f439082f44167cfe5635b9750bb51
diff --git a/lib/record.js b/lib/record.js index <HASH>..<HASH> 100644 --- a/lib/record.js +++ b/lib/record.js @@ -1,7 +1,7 @@ var _ = require('lodash'); var Record = function(data) { - + var self = this; this.attributes = {}; @@ -19,7 +19,7 @@ var Record = function(data) { self._attachment = val; ...
fixes issue with getFileName and the filename property mismatch #<I>
kevinohara80_nforce
train
js
d36604014e1e13ef40bf0ab95f297e349c06276f
diff --git a/tomodachi/protocol/protobuf_base.py b/tomodachi/protocol/protobuf_base.py index <HASH>..<HASH> 100644 --- a/tomodachi/protocol/protobuf_base.py +++ b/tomodachi/protocol/protobuf_base.py @@ -2,6 +2,7 @@ import logging import uuid import time import base64 +import zlib from typing import Any, Dict, Tuple...
added support for gzipped proto message payload
kalaspuff_tomodachi
train
py
49c36d7af52e93eec69f1d97a7dc2e910ca4aa82
diff --git a/server/migrations/04-00400-query-history-to-batch.js b/server/migrations/04-00400-query-history-to-batch.js index <HASH>..<HASH> 100644 --- a/server/migrations/04-00400-query-history-to-batch.js +++ b/server/migrations/04-00400-query-history-to-batch.js @@ -86,7 +86,7 @@ async function up(queryInterface, c...
make view compatible with MSSQL
rickbergfalk_sqlpad
train
js
33e9ac525615ea4f0e58bce8efb218b9f1428120
diff --git a/uptick/wallet.py b/uptick/wallet.py index <HASH>..<HASH> 100644 --- a/uptick/wallet.py +++ b/uptick/wallet.py @@ -64,14 +64,15 @@ def addkey(ctx, key): installedKeys = ctx.bitshares.wallet.getPublicKeys() if len(installedKeys) == 1: name = ctx.bitshares.wallet.getAccountFromPublicKey(ins...
[addkey] do not set a default_account if no name can be found to the key
bitshares_uptick
train
py
27a9524fe6c3643a0ed388e6db7b18372dd83682
diff --git a/app/lang/fr/cachet.php b/app/lang/fr/cachet.php index <HASH>..<HASH> 100644 --- a/app/lang/fr/cachet.php +++ b/app/lang/fr/cachet.php @@ -4,8 +4,8 @@ return [ // Components 'components' => [ 'status' => [ - 1 => 'Opérationel', - 2 => 'Problèmes de performances', + ...
[French] Wording + typo
CachetHQ_Cachet
train
php
8ab7439c8300cb5183d76c5c28e2c14dc3c9be06
diff --git a/Highlight/Language.php b/Highlight/Language.php index <HASH>..<HASH> 100644 --- a/Highlight/Language.php +++ b/Highlight/Language.php @@ -231,7 +231,7 @@ class Language extends Mode private function expandMode($mode) { - if (count($mode->variants) && !count($mode->cachedVariants)) { + ...
Allow variants to be nullable
scrivo_highlight.php
train
php
379196b612ad05f7d47d0373b22ee1d8b0f7a524
diff --git a/inginious/frontend/lti/lis_outcome_manager.py b/inginious/frontend/lti/lis_outcome_manager.py index <HASH>..<HASH> 100644 --- a/inginious/frontend/lti/lis_outcome_manager.py +++ b/inginious/frontend/lti/lis_outcome_manager.py @@ -36,8 +36,8 @@ class LisOutcomeManager(threading.Thread): self._cours...
(probably) fix a race-condition in lis_outcome_manager, forbidding it to start
UCL-INGI_INGInious
train
py
2d32f6b04cc976fa73a97e725ec6765bbfc1e048
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -42,9 +42,9 @@ module.exports = function(grunt) { } }, watch: { - test: { + build: { files: ['src/**/*.js', 'test/**/*.js', '*.js'], - tasks: ['eslint:all', 'browserif...
fix issue with grunt serve not building source when the task first starts
MiguelCastillo_loggero
train
js