hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
a3c29b70a9ec6696e76ba5a6e5ef856d31b3a427
diff --git a/railties/lib/rails/generators/rails/scaffold_controller/templates/controller.rb b/railties/lib/rails/generators/rails/scaffold_controller/templates/controller.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +++ b/railties/lib/rails/genera...
use :only instead of :except callback option in the controller template As [Security Guide](<URL>) says, it's better to use `before_filter only: []` instead of `except: []` so we don't forget to turn the filter off for newly added actions.
rails_rails
train
1ca659788bb06acd0d8cbab3e3029c89c3465bd5
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -136,6 +136,9 @@ module.exports = function (grunt) { // Validate Bootstrap HTML bootlint: { + options: { + relaxerror: ['W005'] + }, files: ['pages/**/*.html', '*.html'] ...
Skip W<I> check until it will be possible to ignore it only in file pages/examples/invoice-print.html
ColorlibHQ_AdminLTE
train
32a89a6c0fc7cee7203bf84ffdd0ca46a094daa6
diff --git a/lib/helpscout/client.rb b/lib/helpscout/client.rb index <HASH>..<HASH> 100644 --- a/lib/helpscout/client.rb +++ b/lib/helpscout/client.rb @@ -530,6 +530,41 @@ module HelpScout end + # Create Conversation Thread + # http://developer.helpscout.net/help-desk-api/conversations/create-thread/ + ...
Add client method for creating conversation threads
hramos_helpscout
train
63987442ef8af2aef33fcbf1d3bbdd3ec62df3e5
diff --git a/idbstore.js b/idbstore.js index <HASH>..<HASH> 100644 --- a/idbstore.js +++ b/idbstore.js @@ -50,7 +50,9 @@ * internally used to construct the name of the database, which will be * kwArgs.storePrefix + kwArgs.storeName * @param {Number} [kwArgs.dbVersion=1] The version of the store - * @par...
Add out-of-line info to ctor JSDoc
jensarps_IDBWrapper
train
d44850b61ff29758408f18c585ea1626876f1252
diff --git a/luigi/process.py b/luigi/process.py index <HASH>..<HASH> 100644 --- a/luigi/process.py +++ b/luigi/process.py @@ -44,7 +44,7 @@ def check_pid(pidfile): def write_pid(pidfile): server_logger.info("Writing pid file") piddir = os.path.dirname(pidfile) - if not os.path.exists(piddir): + if pid...
funny thing is I think I just found a bug through my tests :) if you have a local pidfile
spotify_luigi
train
04ed71c7ba22bbd888b61d51101bd71cb78c6578
diff --git a/dual/dual.go b/dual/dual.go index <HASH>..<HASH> 100644 --- a/dual/dual.go +++ b/dual/dual.go @@ -6,15 +6,16 @@ import ( "context" "sync" + dht "github.com/libp2p/go-libp2p-kad-dht" + "github.com/ipfs/go-cid" ci "github.com/libp2p/go-libp2p-core/crypto" "github.com/libp2p/go-libp2p-core/host" ...
fix: improve error handling in dual dht 1. FindPeer should succeed as long as we find the peer in one DHT. 2. If we get a kbucket error from one DHT, return the error from the other DHT. 3. Avoid returning the same error twice.
libp2p_go-libp2p-kad-dht
train
1452c51fbaf0ef203d19b99453103bab392c3435
diff --git a/src/server/views/dashboard/jobDetails.js b/src/server/views/dashboard/jobDetails.js index <HASH>..<HASH> 100644 --- a/src/server/views/dashboard/jobDetails.js +++ b/src/server/views/dashboard/jobDetails.js @@ -18,7 +18,7 @@ async function handler(req, res) { return res.render('dashboard/templates/jobD...
fix progress bar percentage on job permalinks
bee-queue_arena
train
c4fc5e1f89d756cdd9a7fe19baa04aeae844a26c
diff --git a/sip/execution_control/master_controller/rest/tests/test.py b/sip/execution_control/master_controller/rest/tests/test.py index <HASH>..<HASH> 100644 --- a/sip/execution_control/master_controller/rest/tests/test.py +++ b/sip/execution_control/master_controller/rest/tests/test.py @@ -32,5 +32,5 @@ class Maste...
Convert reply from bytes to string The GET message reply is a byte string and it needs to be converted to a string before being passed to the JSON parser.
SKA-ScienceDataProcessor_integration-prototype
train
de64cf8d440c8fd91ab4021ba50604a0a408e7e3
diff --git a/src/drivers.js b/src/drivers.js index <HASH>..<HASH> 100644 --- a/src/drivers.js +++ b/src/drivers.js @@ -82,8 +82,7 @@ import SwitchDriver from './Switch/driver'; import TextDriver from './Text/driver'; import TextInputWithIconDriver from './TextInputWithIcon/driver'; import Too...
Commented drivers that are still unused #<I>
sociomantic-tsunami_nessie-ui
train
861c477a3331754c3bf45fc13965793ce295d186
diff --git a/preload_test.go b/preload_test.go index <HASH>..<HASH> 100644 --- a/preload_test.go +++ b/preload_test.go @@ -6,6 +6,8 @@ import ( "os" "reflect" "testing" + + "github.com/jinzhu/gorm" ) func getPreloadUser(name string) *User { @@ -130,6 +132,10 @@ func TestNestedPreload1(t *testing.T) { if !re...
Test Preload won't panic when nothing found
jinzhu_gorm
train
1b8e3f0f5f04517072d08bf729063c2573822bc5
diff --git a/src/test/cases/collection.js b/src/test/cases/collection.js index <HASH>..<HASH> 100644 --- a/src/test/cases/collection.js +++ b/src/test/cases/collection.js @@ -3,9 +3,22 @@ var lib = require('../../index'); var config = require('../config'); describe('Collection', function () { - before(function () ...
tests: load fixtures when testing with data.
fahad19_firenze
train
703ccc7e322d10f42bc5b334d67b8791f0e516aa
diff --git a/pyatv/mrp/pairing.py b/pyatv/mrp/pairing.py index <HASH>..<HASH> 100644 --- a/pyatv/mrp/pairing.py +++ b/pyatv/mrp/pairing.py @@ -57,4 +57,4 @@ class MrpPairingHandler(PairingHandler): def pin(self, pin): """Pin code used for pairing.""" - self.pin_code = pin + self.pin_code =...
Support PINs with leading zeros in MRP This is a quickfix, I will add better validation of PIN codes later.
postlund_pyatv
train
0b1d396ec9a80205f54f3e77c88a4d5e7bdcfc44
diff --git a/SchematicPlugin.php b/SchematicPlugin.php index <HASH>..<HASH> 100644 --- a/SchematicPlugin.php +++ b/SchematicPlugin.php @@ -32,7 +32,7 @@ class SchematicPlugin extends BasePlugin */ public function getVersion() { - return '1.2.0'; + return '1.2.2'; } /** diff --g...
Ninjafix, userGroups has no getSectionsByHandle method
nerds-and-company_schematic
train
550a8e118fdb06c8e5dcb4e14fb42f5057ae5e16
diff --git a/spec/index_spec.js b/spec/index_spec.js index <HASH>..<HASH> 100644 --- a/spec/index_spec.js +++ b/spec/index_spec.js @@ -35,27 +35,25 @@ describe('gulp-jasmine-browser', function() { (await Promise.all(processes)).filter(p => p.process).map(p => (p.process.kill(), p.closed)); }); - describeWith...
re-enable headless specs in travis
jasmine_gulp-jasmine-browser
train
7dfeff1a6d3a328d7a231de5c6122f2c29d4293c
diff --git a/lib/lifx/light.rb b/lib/lifx/light.rb index <HASH>..<HASH> 100644 --- a/lib/lifx/light.rb +++ b/lib/lifx/light.rb @@ -341,7 +341,7 @@ module LIFX # Returns a nice string representation of the Light # @return [String] def to_s - %Q{#<LIFX::Light id=#{id} label=#{label(fetch: false)} powe...
Inspect output should be utf-8
LIFX_lifx-gem
train
b8422fb4f8fa94ee20810cc92d94b6b0bcd1c47b
diff --git a/sonar-server/src/main/webapp/javascripts/navigator/filters/ajax-select-filters.js b/sonar-server/src/main/webapp/javascripts/navigator/filters/ajax-select-filters.js index <HASH>..<HASH> 100644 --- a/sonar-server/src/main/webapp/javascripts/navigator/filters/ajax-select-filters.js +++ b/sonar-server/src/ma...
SONAR-<I> Support of the new rules WS
SonarSource_sonarqube
train
68e9d1c04bdc989a6ef454b54498df6253875914
diff --git a/spatialist/vector.py b/spatialist/vector.py index <HASH>..<HASH> 100644 --- a/spatialist/vector.py +++ b/spatialist/vector.py @@ -28,19 +28,18 @@ class Vector(object): the vector file to read; if filename is None, a new in-memory Vector object is created. In this case `driver` is overridd...
[Vector.__init__] support all OGR file formats and offer auto-detect via new method __driver_autodetect
johntruckenbrodt_spatialist
train
9db05e5f86db6190f32380aab640f369a7f24d02
diff --git a/safe/definitions/reports/components.py b/safe/definitions/reports/components.py index <HASH>..<HASH> 100644 --- a/safe/definitions/reports/components.py +++ b/safe/definitions/reports/components.py @@ -149,7 +149,12 @@ notes_assumptions_component = { 'jinja2/' 'bullet-list...
fix issue #<I>: Add displacement rates description in the notes (#<I>)
inasafe_inasafe
train
0de75c4cfc5b85fd6d0b22cee8bb55d68cb49fd1
diff --git a/lib/accesslib.php b/lib/accesslib.php index <HASH>..<HASH> 100755 --- a/lib/accesslib.php +++ b/lib/accesslib.php @@ -826,7 +826,7 @@ function load_user_capability($capability='', $context = NULL, $userid='') { * please help test if this code is working / runs faster for you. please report bugs asap!...
MDL-<I>, adding another flag to hopefully speed up the loop
moodle_moodle
train
0f1dde8502124ef7efe3ec1324fdb4feac535b4d
diff --git a/lib/Widget/Marker.php b/lib/Widget/Marker.php index <HASH>..<HASH> 100644 --- a/lib/Widget/Marker.php +++ b/lib/Widget/Marker.php @@ -90,6 +90,7 @@ class Marker extends WidgetProvider { $start = current($this->data); $end = end($this->data); + // If start t...
fixed the error that may equals '<I>' when start time === end time
twinh_wei
train
d7d42fcf6884e569a31d1bef6d69c9e96312c355
diff --git a/src/quantum/azext_quantum/_help.py b/src/quantum/azext_quantum/_help.py index <HASH>..<HASH> 100644 --- a/src/quantum/azext_quantum/_help.py +++ b/src/quantum/azext_quantum/_help.py @@ -120,7 +120,7 @@ helps['quantum offerings list'] = """ examples: - name: List offerings available in an Azure ...
[Quantum] Expand help and error messages about Provider/SKU format (#<I>) * Expand help and error messages * Append 'offerings list' example to 'workspace create' help example * Add more details to --provider-sku-list help
Azure_azure-cli-extensions
train
bc22bf6c5a2d45acdf9e80e5397c8e5de1a4f245
diff --git a/packages/client/lib/index.js b/packages/client/lib/index.js index <HASH>..<HASH> 100644 --- a/packages/client/lib/index.js +++ b/packages/client/lib/index.js @@ -6,3 +6,4 @@ exports.request = require('./request') exports.subscription = require('./subscription') exports.util = require('./util') exports.w...
fix(@yodata/client/lib/client): export .Client class forgot to do that...
Yodata_yodata
train
ef36771fe6877d8cde8aafdc91cc3d02a40d055f
diff --git a/marshmallow_jsonschema/__init__.py b/marshmallow_jsonschema/__init__.py index <HASH>..<HASH> 100644 --- a/marshmallow_jsonschema/__init__.py +++ b/marshmallow_jsonschema/__init__.py @@ -2,3 +2,9 @@ from pkg_resources import get_distribution __version__ = get_distribution('marshmallow-jsonschema').versio...
Make dump_schema import-able from the top-level module
fuhrysteve_marshmallow-jsonschema
train
177f36485342879860082dadea7b863bf2cd7024
diff --git a/src/com/opencms/defaults/master/CmsMasterContent.java b/src/com/opencms/defaults/master/CmsMasterContent.java index <HASH>..<HASH> 100644 --- a/src/com/opencms/defaults/master/CmsMasterContent.java +++ b/src/com/opencms/defaults/master/CmsMasterContent.java @@ -1,7 +1,7 @@ /* * File : $Source: /alkacon...
Added empty constructor for JSPs.
alkacon_opencms-core
train
b7b2a41378532e837b3fba722b73ae7803a53bf9
diff --git a/test/Models/CatalogMemberSpec.js b/test/Models/CatalogMemberSpec.js index <HASH>..<HASH> 100644 --- a/test/Models/CatalogMemberSpec.js +++ b/test/Models/CatalogMemberSpec.js @@ -70,4 +70,40 @@ describe('CatalogMember', function () { expect(member.infoWithoutSources).toEqual(info); });...
Add a test for info merging.
TerriaJS_terriajs
train
418cea174df1b7dd69926431c34f254a5c41076b
diff --git a/src/Symfony/Bridge/Twig/Command/LintCommand.php b/src/Symfony/Bridge/Twig/Command/LintCommand.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bridge/Twig/Command/LintCommand.php +++ b/src/Symfony/Bridge/Twig/Command/LintCommand.php @@ -99,7 +99,7 @@ EOF $template .= fread(STDIN, 1024); ...
[TwigBridge] Added compile-time issues checking in twig:lint command
symfony_symfony
train
6ae352882c24803c89c2c33a30649d6fae4b37df
diff --git a/src/picker/PickerColumn.js b/src/picker/PickerColumn.js index <HASH>..<HASH> 100644 --- a/src/picker/PickerColumn.js +++ b/src/picker/PickerColumn.js @@ -141,6 +141,10 @@ export default createComponent({ }, onClickItem(index) { + if (this.moving) { + return; + } + this.d...
fix(Picker): avoid click event when moving (#<I>)
youzan_vant
train
bd0b650de76589ca936fa74da41f21172a8ba894
diff --git a/test/integration/script-loader/pages/_document.js b/test/integration/script-loader/pages/_document.js index <HASH>..<HASH> 100644 --- a/test/integration/script-loader/pages/_document.js +++ b/test/integration/script-loader/pages/_document.js @@ -23,6 +23,7 @@ export default class MyDocument extends Documen...
Update script loader tests (#<I>)
zeit_next.js
train
689fcde345ac99c5fcdc0a4ff3d5167f874dc6cf
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ The client here will eventually be released as "spython" (and eventually to singularity on pypi), and the versions here will coincide with these releases. ## [master](https://github.com/singu...
need to support old daemon_name, etc (#<I>)
singularityhub_singularity-cli
train
f4c809a9945d71fb27cae57522f174a21de058d1
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,6 @@ setup( ], install_requires=[ "wagtail>=1.3.1", - "wagtailmodeladmin>=1.2.5" + "wagtailmodeladmin>=2.5.7", ], ) diff --git a/wagtailmenus/__init__.py b/wagtailmenus/__init__...
Update wagtailmodeladmin version dependency and version to <I>
rkhleics_wagtailmenus
train
7ae0f330c76c8acda556c92988262873955c8a64
diff --git a/code/extensions/ElementPageExtension.php b/code/extensions/ElementPageExtension.php index <HASH>..<HASH> 100644 --- a/code/extensions/ElementPageExtension.php +++ b/code/extensions/ElementPageExtension.php @@ -77,7 +77,7 @@ class ElementPageExtension extends DataExtension { ->removeComponentsByType('G...
using sortable rather than orderable as it has better support
dnadesign_silverstripe-elemental
train
49e9d642f4a6f783fe41267571887e4500ad49ae
diff --git a/metrics-guice/src/main/java/com/yammer/metrics/guice/JmxReporterProvider.java b/metrics-guice/src/main/java/com/yammer/metrics/guice/JmxReporterProvider.java index <HASH>..<HASH> 100644 --- a/metrics-guice/src/main/java/com/yammer/metrics/guice/JmxReporterProvider.java +++ b/metrics-guice/src/main/java/com...
Also need to start the jmx reporter ...
dropwizard_metrics
train
f48e520875868801d306d60f92d48b07218ca888
diff --git a/lib/mapping.js b/lib/mapping.js index <HASH>..<HASH> 100644 --- a/lib/mapping.js +++ b/lib/mapping.js @@ -48,7 +48,7 @@ Mapping.prototype.map = function(input) { // If we have only been passed the alias and no options then use the // default value if there is one. - if (_.keys(input).length === 1 ...
Don't check if we have mappings for default. By this time we'll have already cooked and returned a formula.
RickEyre_command-mapper
train
de9605a8b0ef692faeb7e273804493e7cabf5775
diff --git a/phantomjs/FileSystem.js b/phantomjs/FileSystem.js index <HASH>..<HASH> 100644 --- a/phantomjs/FileSystem.js +++ b/phantomjs/FileSystem.js @@ -106,6 +106,7 @@ class FileSystem { /** * @param {string} filePath + * @return {boolean} */ lastModified(filePath) { return fs.st...
Implement PhantomJS's fs.makeTree method This patch implements missing PhantomJS's fs.makeTree method.
GoogleChrome_puppeteer
train
a86e901468e694d5043de739f15b7043720392e1
diff --git a/lib/utils.js b/lib/utils.js index <HASH>..<HASH> 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -301,7 +301,7 @@ Utils.makeRoute = function(baseRoute, file, options) { **/ -Utils.makeKey = function(file) { +Utils.makeKey = function(route) { return route.replace(/^\//, "").replace(/\//g, ":").repla...
Fix typo in Utils#makeKey
shippjs_shipp-server
train
101fa042b505d1efb089b6ce85ad292839bf3d8d
diff --git a/zipkin-zookeeper/src/test/java/zipkin/collector/zookeeper/ZooKeeperRule.java b/zipkin-zookeeper/src/test/java/zipkin/collector/zookeeper/ZooKeeperRule.java index <HASH>..<HASH> 100644 --- a/zipkin-zookeeper/src/test/java/zipkin/collector/zookeeper/ZooKeeperRule.java +++ b/zipkin-zookeeper/src/test/java/zip...
Attempts to deflake zookeeper by retrying
apache_incubator-zipkin
train
981595e791ad51c3fa04c3d3e6c4e380d5908b24
diff --git a/gae/impl/cloud/datastore.go b/gae/impl/cloud/datastore.go index <HASH>..<HASH> 100644 --- a/gae/impl/cloud/datastore.go +++ b/gae/impl/cloud/datastore.go @@ -20,6 +20,7 @@ import ( "reflect" "sort" "strings" + "sync" "time" "go.chromium.org/luci/common/errors" @@ -55,7 +56,7 @@ type boundDatast...
[gae/impl/cloud] Add transactionWrapper around *Transaction. This simplistic implementation serializes all mutation access to the underlying *Transaction, bringing it on-par with the "impl/prod" behavior. R=ddoman, tandrii, vadimsh Change-Id: I<I>e<I>db2de<I>f2b<I>dfe<I>ce<I>e1effdaf Reviewed-on: <URL>
luci_luci-go
train
bd262ca86fdf26d0ce0855321b6c58dfbaef3cb6
diff --git a/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java b/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java +++ b/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java @...
[JENKINS-<I>] Add exists check to task log folder
jenkinsci_support-core-plugin
train
39d76929e85c16322a94190807fc8927d094c6f6
diff --git a/tests/Generator/GeneratorTest.php b/tests/Generator/GeneratorTest.php index <HASH>..<HASH> 100755 --- a/tests/Generator/GeneratorTest.php +++ b/tests/Generator/GeneratorTest.php @@ -525,21 +525,6 @@ final class GeneratorTest extends AbstractTestCase $this->assertNotNull($content); } - pu...
issue #<I> - remove unit test which never passed locally but on Travis CI (from which I'm leaving...)
WsdlToPhp_PackageGenerator
train
69fd6aacf9b1ff0901385ed25d6fdb6f40e4fb51
diff --git a/cocaine/proxy/proxy.py b/cocaine/proxy/proxy.py index <HASH>..<HASH> 100644 --- a/cocaine/proxy/proxy.py +++ b/cocaine/proxy/proxy.py @@ -43,6 +43,7 @@ from toro import Timeout from cocaine.services import Service from cocaine.services import Locator from cocaine.exceptions import ServiceError +from coc...
[Proxy] Add a retry to reconnect to an application. Version bump <I>rc<I>
cocaine_cocaine-tools
train
55c2ad5ab9d4f0a653430daa8f6a366f063f6f60
diff --git a/resources/lang/cs-CZ/notifications.php b/resources/lang/cs-CZ/notifications.php index <HASH>..<HASH> 100644 --- a/resources/lang/cs-CZ/notifications.php +++ b/resources/lang/cs-CZ/notifications.php @@ -12,54 +12,97 @@ return [ 'component' => [ 'status_update' => [ - 'subject' => '...
New translations notifications.php (Czech)
CachetHQ_Cachet
train
a099e4e0862bb0756e553f6dca32b1a3402d007d
diff --git a/config/mail.php b/config/mail.php index <HASH>..<HASH> 100644 --- a/config/mail.php +++ b/config/mail.php @@ -11,11 +11,12 @@ return [ | sending of e-mail. You may specify which one you're using throughout | your application here. By default, Laravel is setup for SMTP mail. | - | Supporte...
Change default mail driver to smtp The "mail" driver has been removed completely from the underlying libraries due to serious security concerns. Refs #<I>
octobercms_october
train
1b78d4e300e4e1010edcb3b09d88cb33cdec3e3d
diff --git a/plenum/cli/cli.py b/plenum/cli/cli.py index <HASH>..<HASH> 100644 --- a/plenum/cli/cli.py +++ b/plenum/cli/cli.py @@ -31,6 +31,7 @@ from plenum.cli.helper import getUtilGrams, getNodeGrams, getClientGrams, \ from plenum.client.wallet import Wallet from plenum.common.exceptions import NameAlreadyExists f...
[#SOV-<I>] modified some code to use genHa instead of other logic to see if intermitted port availability related issues gets fixed
hyperledger_indy-plenum
train
d36e2f0dd41f77c8275ba816ddc6038e47724720
diff --git a/lib/em-systemcommand/version.rb b/lib/em-systemcommand/version.rb index <HASH>..<HASH> 100644 --- a/lib/em-systemcommand/version.rb +++ b/lib/em-systemcommand/version.rb @@ -1,5 +1,5 @@ module Em module Systemcommand - VERSION = "2.0.7" + VERSION = "2.0.8" end end
bumped version number to <I>
leoc_em-systemcommand
train
04805295cd304982ad4de78c8b104fc6bdcf8f33
diff --git a/pom.xml b/pom.xml index <HASH>..<HASH> 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ <groupId>intellimate.izou</groupId> <artifactId>Izou</artifactId> - <version>0.9.9.9.5-SNAPSHOT</version> + <version>0.9.9.9.7-SNAPSHOT</version> <packaging>jar</packaging> <name>Izou</name...
fixed some file and property file related bugs
intellimate_Izou
train
e4cde5d58cbb09d1843796f96ba86225ff94fe05
diff --git a/activerecord/test/cases/adapters/postgresql/array_test.rb b/activerecord/test/cases/adapters/postgresql/array_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/adapters/postgresql/array_test.rb +++ b/activerecord/test/cases/adapters/postgresql/array_test.rb @@ -10,12 +10,12 @@ class Postgre...
Fix indent in PG array tests [ci skip]
rails_rails
train
b71d468062222c4dffe6dad889dcec3c470562f7
diff --git a/spyder/plugins/editor.py b/spyder/plugins/editor.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/editor.py +++ b/spyder/plugins/editor.py @@ -105,12 +105,9 @@ class EditorConfigPage(PluginConfigPage): interface_group = QGroupBox(_("Interface")) newcb = self.create_checkbox...
Removed wrong instructions introduced via a failed merge
spyder-ide_spyder
train
6229b8f1fbf9f51000bd80669dc554804aabfae5
diff --git a/tests/cases/analysis/ParserTest.php b/tests/cases/analysis/ParserTest.php index <HASH>..<HASH> 100644 --- a/tests/cases/analysis/ParserTest.php +++ b/tests/cases/analysis/ParserTest.php @@ -86,11 +86,11 @@ EOD; public function testClassVariableName() { $code = <<<EOD class baz { - public static \$foo...
Get parser to have <I>% coverage by adding some exception tests
UnionOfRAD_li3_quality
train
dd05e64e8985291449598ac149cbb00b10e95df6
diff --git a/source/rafcon/mvc/controllers/menu_bar.py b/source/rafcon/mvc/controllers/menu_bar.py index <HASH>..<HASH> 100644 --- a/source/rafcon/mvc/controllers/menu_bar.py +++ b/source/rafcon/mvc/controllers/menu_bar.py @@ -500,6 +500,15 @@ class MenuBarController(ExtendedController): if force: ...
resolves #<I> introduces new dialog to ask the user if: - the state machine should be stopped and then state machines should be refreshed - or the state machine should be kept running a no refresh should be performed at all
DLR-RM_RAFCON
train
5811fa8096b86559336de1ef44173cddb480b4d2
diff --git a/src/test/java/net/openhft/performance/tests/network/SimpleServerAndClientTest.java b/src/test/java/net/openhft/performance/tests/network/SimpleServerAndClientTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/net/openhft/performance/tests/network/SimpleServerAndClientTest.java +++ b/src/test/java/ne...
Use the TIMER for heartbeats instead of the REPLICATION thread and remove some duplicate methods.
OpenHFT_Chronicle-Network
train
42c766bab843481920a7ea90e7b9527c34c6ed67
diff --git a/src/feat/web/webserver.py b/src/feat/web/webserver.py index <HASH>..<HASH> 100644 --- a/src/feat/web/webserver.py +++ b/src/feat/web/webserver.py @@ -25,6 +25,8 @@ import os import re import sys import time +import tempfile +import types from zope.interface import Interface, Attribute, implements @...
Define methods to access to the headers and body of the Request and Response of the feat's webserver.
f3at_feat
train
e48ee4b5af835691273c977264eb7928faee3365
diff --git a/omgeo/tests/tests.py b/omgeo/tests/tests.py index <HASH>..<HASH> 100755 --- a/omgeo/tests/tests.py +++ b/omgeo/tests/tests.py @@ -70,7 +70,7 @@ class GeocoderTest(OmgeoTestCase): 'quebec_accent': PlaceQuery('527 Ch. Beauséjour, Saint-Elzéar-de-Témiscouata QC'), 'qu...
Add blank subregion to structured mexico request.
azavea_python-omgeo
train
95c1bcaddc2af7e2e69996f729d7e3cdc259abf5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name = "django-user-accounts", - version = "1.0b6", + version = "1.0b7", author = "Brian Rosner", author_email = "brosner@gmail.com", ...
Bumped to <I>b7
pinax_django-user-accounts
train
343c15447baf3052d4ad958d1da5b7776ab33bdc
diff --git a/jujupy.py b/jujupy.py index <HASH>..<HASH> 100644 --- a/jujupy.py +++ b/jujupy.py @@ -1356,7 +1356,11 @@ class EnvJujuClient: except subprocess.CalledProcessError: logging.warning('tear_down destroy-controller failed') retval = self.kill_controller() - logging....
Changed some names. Updated logging in tear_down.
juju_juju
train
c74a4992021badf6424ec1007f96daa4a872de88
diff --git a/languagetool-core/src/main/java/org/languagetool/tokenizers/WordTokenizer.java b/languagetool-core/src/main/java/org/languagetool/tokenizers/WordTokenizer.java index <HASH>..<HASH> 100644 --- a/languagetool-core/src/main/java/org/languagetool/tokenizers/WordTokenizer.java +++ b/languagetool-core/src/main/j...
small refactoring of DE_CASE and WordTokenizer
languagetool-org_languagetool
train
8af3befb59123f215723d5549e8ab95b3c1826bd
diff --git a/ffmpeg_normalize/_streams.py b/ffmpeg_normalize/_streams.py index <HASH>..<HASH> 100644 --- a/ffmpeg_normalize/_streams.py +++ b/ffmpeg_normalize/_streams.py @@ -194,6 +194,11 @@ class AudioStream(MediaStream): "First pass not run, you must call parse_loudnorm_stats first" ) ...
cap measured input loudness, fixes #<I>
slhck_ffmpeg-normalize
train
b76ee3d0102df6289a9c77af89c1f6e21d59d906
diff --git a/mafan/__init__.py b/mafan/__init__.py index <HASH>..<HASH> 100644 --- a/mafan/__init__.py +++ b/mafan/__init__.py @@ -1 +1 @@ -from text import tradify, simplify, to_traditional, to_simplified \ No newline at end of file +from text import tradify, simplify, to_traditional, to_simplified, is_simplified, is_...
tried and failed version of is_simplified
hermanschaaf_mafan
train
5d83aae342eadc9c993e2c82d7e0a9ba8dd10de5
diff --git a/lib/fog/opennebula/models/compute/networks.rb b/lib/fog/opennebula/models/compute/networks.rb index <HASH>..<HASH> 100644 --- a/lib/fog/opennebula/models/compute/networks.rb +++ b/lib/fog/opennebula/models/compute/networks.rb @@ -18,8 +18,8 @@ module Fog nil end - def get_by_na...
[opennebula] fixed networks.get_by_name, added tests get_by_name is now using the filter from @andrewjamesbrown
fog_fog
train
8806151ac8c3ea6e908c7c3ded0c3db462d09eee
diff --git a/containers/pax-exam-container-karaf/src/main/java/org/ops4j/pax/exam/karaf/container/internal/KarafTestContainer.java b/containers/pax-exam-container-karaf/src/main/java/org/ops4j/pax/exam/karaf/container/internal/KarafTestContainer.java index <HASH>..<HASH> 100644 --- a/containers/pax-exam-container-karaf...
[PAXEXAM-<I>] support custom entry-point when launching Karaf
ops4j_org.ops4j.pax.exam2
train
b8251c02a52b62a31cb36eafbf49ba86bedeac1b
diff --git a/core/src/main/java/io/undertow/Undertow.java b/core/src/main/java/io/undertow/Undertow.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/io/undertow/Undertow.java +++ b/core/src/main/java/io/undertow/Undertow.java @@ -242,6 +242,9 @@ public final class Undertow { } } catch (...
UNDERTOW-<I> close worker if start fails
undertow-io_undertow
train
7ec6d7bddca2eae01a9d7a6812c91be9b46e1308
diff --git a/util.js b/util.js index <HASH>..<HASH> 100644 --- a/util.js +++ b/util.js @@ -388,3 +388,7 @@ exports.createPagination = function createPagination (data, page, limit) { pagination.data = data.splice((pagination.page - 1) * limit, limit) return pagination } + +exports.getDatabaseOffset = function get...
create utility to get database offset value from page number and items per page
thomas4019_expressa
train
3c392643f97b907ab686883b643136e988c1fa34
diff --git a/config/routes.rb b/config/routes.rb index <HASH>..<HASH> 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -106,7 +106,7 @@ Rails.application.routes.draw do end # Admin/XController - %w{content comments profiles general pages feedback resources sidebar textfilters themes trackbacks users set...
Delete routes to admin controller which don't exist These admin controllers don't exist: * comments * general * trackbacks
publify_publify
train
9449be5def2c7c70e2fed5e4a4defde6b014f348
diff --git a/src/Helpers/CrudApi.php b/src/Helpers/CrudApi.php index <HASH>..<HASH> 100644 --- a/src/Helpers/CrudApi.php +++ b/src/Helpers/CrudApi.php @@ -163,44 +163,7 @@ class CrudApi $output .= $this->fieldHelper->formCreate($fields); break; case 'form-edit': - foreach (...
Refactor form edit logic from crudapi helper to field helper.
taskforcedev_crud-api
train
52b4692ebefd5a25420238aa53176ef8d4dc2e83
diff --git a/lib/Doctrine/DBAL/Platforms/MariaDb1027Platform.php b/lib/Doctrine/DBAL/Platforms/MariaDb1027Platform.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/DBAL/Platforms/MariaDb1027Platform.php +++ b/lib/Doctrine/DBAL/Platforms/MariaDb1027Platform.php @@ -36,7 +36,7 @@ final class MariaDb1027Platform extends...
Disable native JSON support for MariaDB <I>.x Since the JSON type is simply an alias to a LONG TEXT we must force a comment, otherwise things will not work properly. Also the test for JSON types should work regardless of native JSON support (DBAL should add a comment to identify the correct type).
doctrine_dbal
train
78ae42b267a6cc2ede5500d0b0be86b0a5d5b170
diff --git a/accessible/tree.service.js b/accessible/tree.service.js index <HASH>..<HASH> 100644 --- a/accessible/tree.service.js +++ b/accessible/tree.service.js @@ -266,6 +266,7 @@ blocklyApp.TreeService = ng.core while (dfsStack.length) { var currentNode = dfsStack.shift(); if (c...
After marking a spot or copying a block in the workspace, move the active desc to the parent.
LLK_scratch-blocks
train
9b5be806bca3a60774ae42606d7af0129a364931
diff --git a/demo/common/migrations/0002_auto_20150507_1708.py b/demo/common/migrations/0002_auto_20150507_1708.py index <HASH>..<HASH> 100644 --- a/demo/common/migrations/0002_auto_20150507_1708.py +++ b/demo/common/migrations/0002_auto_20150507_1708.py @@ -5,27 +5,36 @@ from django.db import models, migrations from ...
Updated the demo migration (needed for <I>) to do nothing in <I>
WimpyAnalytics_django-andablog
train
0b061578ad9ae28f7b35977dbe68e21602b1739d
diff --git a/gym-unity/tests/test_gym.py b/gym-unity/tests/test_gym.py index <HASH>..<HASH> 100644 --- a/gym-unity/tests/test_gym.py +++ b/gym-unity/tests/test_gym.py @@ -5,8 +5,8 @@ import numpy as np from gym_unity.envs import UnityEnv, UnityGymException from tests.mock_communicator import MockCommunicator -@mock...
Fixed the gym_unity tests (#<I>)
Unity-Technologies_ml-agents
train
9d31bb0542d1d3913be7c3aa12f88d9498847e48
diff --git a/code/Report.php b/code/Report.php index <HASH>..<HASH> 100644 --- a/code/Report.php +++ b/code/Report.php @@ -158,9 +158,9 @@ class SS_Report extends ViewableData public function getLink($action = null) { + return Controller::join_links( - AdminRootController::admin_url(), - Config::inst...
BUG Fix broken form actions on parent and nested gridfields
silverstripe_silverstripe-reports
train
7c13de20a5d25282e1b4b7360e4403eb2a07124f
diff --git a/sharding-orchestration/sharding-orchestration-core/src/main/java/org/apache/shardingsphere/orchestration/internal/keygen/LeafSnowflakeKeyGenerator.java b/sharding-orchestration/sharding-orchestration-core/src/main/java/org/apache/shardingsphere/orchestration/internal/keygen/LeafSnowflakeKeyGenerator.java i...
Add leaf snowflake key generator and related functions.
apache_incubator-shardingsphere
train
902222c2fee8cfbfbf9c3963e5f9f1f73ee79ddd
diff --git a/src/client.express.event.listener.js b/src/client.express.event.listener.js index <HASH>..<HASH> 100644 --- a/src/client.express.event.listener.js +++ b/src/client.express.event.listener.js @@ -22,7 +22,7 @@ ClientExpress.EventListener = (function(server) { title: element.title || '', ...
searching for :// instead of http so ftp:// or file:// will work as well now
MarkNijhof_client.express.js
train
71b6b40ac718e04e7f40f2818e61f30ca4a15bc4
diff --git a/lib/cramp/websocket.rb b/lib/cramp/websocket.rb index <HASH>..<HASH> 100644 --- a/lib/cramp/websocket.rb +++ b/lib/cramp/websocket.rb @@ -20,7 +20,10 @@ module Cramp end def process - @env['websocket.receive_callback'] = method(:_on_data_receive) + @buffer = [] + @buffering = fal...
Grab some methods from faye
lifo_cramp
train
129cffcf751d901fc7a9ac05742d977aebb66d9b
diff --git a/src/Graviton/CoreBundle/Service/CoreVersionUtils.php b/src/Graviton/CoreBundle/Service/CoreVersionUtils.php index <HASH>..<HASH> 100644 --- a/src/Graviton/CoreBundle/Service/CoreVersionUtils.php +++ b/src/Graviton/CoreBundle/Service/CoreVersionUtils.php @@ -69,18 +69,8 @@ class CoreVersionUtils */ ...
EVO-<I> get Self-Version with git
libgraviton_graviton
train
e2f03104cb8979d9eea1a46a9046b8e115f7e0bc
diff --git a/app/simple_view_controller.rb b/app/simple_view_controller.rb index <HASH>..<HASH> 100644 --- a/app/simple_view_controller.rb +++ b/app/simple_view_controller.rb @@ -1,21 +1,21 @@ class SimpleViewController < UIViewController def viewDidLoad self.title = "SimpleView Demo" - @items = ["Apple", "...
dimensions helper methods. update demo app
seanho_SimpleView
train
9ff59c13f0c1295e9a0acd45913f00d8c9a5c0af
diff --git a/mongoctl/errors.py b/mongoctl/errors.py index <HASH>..<HASH> 100644 --- a/mongoctl/errors.py +++ b/mongoctl/errors.py @@ -5,9 +5,6 @@ __author__ = 'abdul' # Mongoctl Exception class ############################################################################### class MongoctlException(Exception): - d...
Remove ref to deprecated "message" property of BaseException
mongolab_mongoctl
train
12b11fb4c99cf8b6d51023ca8edf300fbbf09cd2
diff --git a/src/main/java/org/dita/dost/reader/MapMetaReader.java b/src/main/java/org/dita/dost/reader/MapMetaReader.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/dita/dost/reader/MapMetaReader.java +++ b/src/main/java/org/dita/dost/reader/MapMetaReader.java @@ -305,6 +305,12 @@ public final class MapMetaRe...
Detect non-locked navtitle, do not push to topics
dita-ot_dita-ot
train
768cccc29475811ff3aede201fab8f0074a9c502
diff --git a/salt/client/ssh/shell.py b/salt/client/ssh/shell.py index <HASH>..<HASH> 100644 --- a/salt/client/ssh/shell.py +++ b/salt/client/ssh/shell.py @@ -4,6 +4,7 @@ Manage transport commands via ssh ''' # Import python libs +import re import os import time import logging @@ -12,9 +13,20 @@ import subproces...
Add routine to pass a password into ssh
saltstack_salt
train
c805aec770d7da67e655cc40e801ca1cbe5a8689
diff --git a/js/src/tooltip.js b/js/src/tooltip.js index <HASH>..<HASH> 100644 --- a/js/src/tooltip.js +++ b/js/src/tooltip.js @@ -111,8 +111,7 @@ const ClassName = { } const Selector = { - TOOLTIP_INNER: '.tooltip-inner', - TOOLTIP_ARROW: '.tooltip-arrow' + TOOLTIP_INNER: '.tooltip-inner' } const Trigger = ...
fix popover arrow by selecting the first element child
twbs_bootstrap
train
83366fd1481ade96d202fcc22cf842b11b8bafd3
diff --git a/Command/Proxy/DoctrineCommandHelper.php b/Command/Proxy/DoctrineCommandHelper.php index <HASH>..<HASH> 100644 --- a/Command/Proxy/DoctrineCommandHelper.php +++ b/Command/Proxy/DoctrineCommandHelper.php @@ -3,7 +3,7 @@ namespace Doctrine\Bundle\DoctrineBundle\Command\Proxy; use Doctrine\DBAL\Tools\Conso...
Fix incorrect assertions After applying phpcs at <I>c<I>bef<I>dc3c3e8e<I>f3be6b4e<I>abc8f6 there were some regressions, reported at <URL>
doctrine_DoctrineBundle
train
97d01030b0286801ce62eec851c89d053eb724d7
diff --git a/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java b/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java +++ b/src/main/java/com/cloudbees/jenkins/support/impl/JenkinsLogs.java @...
[FIXED JENKINS-<I>] Pick up and logs that have been refactored into JENKINS_HOME/logs
jenkinsci_support-core-plugin
train
bd57b64d00a048aa0910298c183d62a39917a695
diff --git a/tests/test_chinese.py b/tests/test_chinese.py index <HASH>..<HASH> 100644 --- a/tests/test_chinese.py +++ b/tests/test_chinese.py @@ -77,3 +77,11 @@ def test_alternate_codes(): # Separate codes for Mandarin and Cantonese assert tokenize('谢谢谢谢', 'cmn') == tokens assert tokenize('谢谢谢谢', 'yue')...
change math for INFERRED_SPACE_FACTOR to not overflow
LuminosoInsight_wordfreq
train
88e7c8fb5a63bb137a1037c940e876280c61e4ac
diff --git a/src/client/components/Document.js b/src/client/components/Document.js index <HASH>..<HASH> 100644 --- a/src/client/components/Document.js +++ b/src/client/components/Document.js @@ -17,9 +17,6 @@ export default class Document extends React.Component { } Document.propTypes = { - children: PropTypes.one...
Simplified Document component's PropTypes
storyforj_fervor
train
d52938c255f11b0f51c18145c515c771bdf700cd
diff --git a/src/engine/execute.js b/src/engine/execute.js index <HASH>..<HASH> 100644 --- a/src/engine/execute.js +++ b/src/engine/execute.js @@ -60,7 +60,7 @@ var execute = function (sequencer, thread, blockId) { try { // @todo deal with the return value primitiveReturnValue = blockFunction(arg...
Bind thread.yield passed to primitive to actual thread
LLK_scratch-vm
train
502e64c2567c363d3cf0f2b1b542b9c1db74e973
diff --git a/index/scorch/segment/zap/posting.go b/index/scorch/segment/zap/posting.go index <HASH>..<HASH> 100644 --- a/index/scorch/segment/zap/posting.go +++ b/index/scorch/segment/zap/posting.go @@ -337,7 +337,6 @@ func (i *PostingsIterator) Next() (segment.Posting, error) { reuseLocs := i.next.locs // hold for r...
scorch zap Posting doesn't use iterator field
blevesearch_bleve
train
2c3be97e0a555ed7cccbeeeff998167a7a945601
diff --git a/src/masonite/__init__.py b/src/masonite/__init__.py index <HASH>..<HASH> 100644 --- a/src/masonite/__init__.py +++ b/src/masonite/__init__.py @@ -1,3 +1,7 @@ +from pkgutil import extend_path +__path__ = extend_path(__path__, __name__) + + from .managers.BroadcastManager import Broadcast from .managers.Ca...
Fix issue with namespace which effects when installing one of the packages externally <URL>
MasoniteFramework_masonite
train
11a9c3decc22693fe0507031a3cf4e94fb64b98c
diff --git a/src/preact.js b/src/preact.js index <HASH>..<HASH> 100644 --- a/src/preact.js +++ b/src/preact.js @@ -114,8 +114,8 @@ function createContext () { for (let i in mappedProps) { if (mappedProps[i] !== nextMappedProps[i]) return true } - for (let i in mappedProps) { - if (!(i in nextMa...
Fix a bug in diffing props
KidkArolis_tiny-atom
train
123a3f28c3fbf070baac2efb82541fb36b70628f
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,10 @@ A new connection pool using default connection configurations (`host="localhost" from repool import ConnectionPool pool = ConnectionPool() - cw = pool.acquire() #returns a Connection...
Remove wrapper visibility. Pool acquire() and release() now directly work with rethinkdb Connection objects.
njouanin_repool
train
c0f06be65e0d54003f1d643224170c3d165ce4ce
diff --git a/cake/tests/cases/console/libs/tasks/controller.test.php b/cake/tests/cases/console/libs/tasks/controller.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/console/libs/tasks/controller.test.php +++ b/cake/tests/cases/console/libs/tasks/controller.test.php @@ -199,5 +199,31 @@ class ControllerTask...
Adding test case for bake output.
cakephp_cakephp
train
2359f6ba7a74c5a88a0244d3943a8302ad78fe00
diff --git a/src/config.js b/src/config.js index <HASH>..<HASH> 100644 --- a/src/config.js +++ b/src/config.js @@ -1,6 +1,5 @@ const path = require('path'); const readPkgUp = require('read-pkg-up'); -const cosmiconfig = require('cosmiconfig'); const pkg = require('../package.json'); @@ -15,13 +14,7 @@ const rikk...
Do not use cosmiconfig for now
springload_rikki-patterns
train
7f1a73195f98bbe52fbb66e807e23e6693aa7d1b
diff --git a/ash/acl.go b/ash/acl.go index <HASH>..<HASH> 100644 --- a/ash/acl.go +++ b/ash/acl.go @@ -20,29 +20,37 @@ type Authorizer func(ctx *fire.Context) (Enforcer, error) // Strategy contains lists of authorizers that are used to authorize the request. type Strategy struct { // Single operations. - List ...
added back the specification of per action authorizers
256dpi_fire
train
a98907de416268c9867a1342aaf188b138a54e4a
diff --git a/varcode/effects/effect_prediction_coding_in_frame.py b/varcode/effects/effect_prediction_coding_in_frame.py index <HASH>..<HASH> 100644 --- a/varcode/effects/effect_prediction_coding_in_frame.py +++ b/varcode/effects/effect_prediction_coding_in_frame.py @@ -151,51 +151,24 @@ def predict_in_frame_coding_eff...
got rid of special case for insertions after codon boundary
openvax_varcode
train
cfca077b66bcff5a8eefc9621ff0d01ee019d6e9
diff --git a/pom.xml b/pom.xml index <HASH>..<HASH> 100644 --- a/pom.xml +++ b/pom.xml @@ -98,7 +98,7 @@ <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> - <version>3.4.0</version> + <version>4.1.0</version> <optional>true</optional> </dependency> ...
Fix various issues Use modern JNA Set Locale.ENGLISH in server test for passing in non-english machines
NessComputing_syslog4j
train
20796a3f0922354582b6134bca5aa4c372685d23
diff --git a/VM-Core/src/main/java/com/validation/manager/core/tool/msword/importer/TableExtractor.java b/VM-Core/src/main/java/com/validation/manager/core/tool/msword/importer/TableExtractor.java index <HASH>..<HASH> 100644 --- a/VM-Core/src/main/java/com/validation/manager/core/tool/msword/importer/TableExtractor.jav...
Remove adding the mapping row here. Handled in upper layers.
javydreamercsw_validation-manager
train
afe00721523a6b633b4979b8e168d53a9be77e6d
diff --git a/gcl/util.py b/gcl/util.py index <HASH>..<HASH> 100644 --- a/gcl/util.py +++ b/gcl/util.py @@ -51,6 +51,8 @@ def to_python(value, seen=None): raise RecursionException('to_python: infinite recursion while evaluating %r' % value) seen.add(value.ident) return {k: to_python(value[k], seen=seen)...
Support expanding lazy tuples inside Python dicts
rix0rrr_gcl
train
3abcc3429052b27216fba9ee711577bbe77717ff
diff --git a/features/express/express-live-commands.js b/features/express/express-live-commands.js index <HASH>..<HASH> 100644 --- a/features/express/express-live-commands.js +++ b/features/express/express-live-commands.js @@ -1,7 +1,7 @@ 'use strict'; module.exports = function($allonsy) { - $allonsy.outputInfo('\...
fix(express): output format
CodeCorico_allons-y-express
train
41928d293a8e10260ed0adb56a9c8f6e09956cec
diff --git a/graylog2-shared/src/main/java/org/graylog2/shared/buffers/processors/DecodingProcessor.java b/graylog2-shared/src/main/java/org/graylog2/shared/buffers/processors/DecodingProcessor.java index <HASH>..<HASH> 100644 --- a/graylog2-shared/src/main/java/org/graylog2/shared/buffers/processors/DecodingProcessor....
input codecs with no configuration caused NPE
Graylog2_graylog2-server
train
5392b3a4c95d2f11670f69a7f2e3ec25f5c752f9
diff --git a/scripts/make.js b/scripts/make.js index <HASH>..<HASH> 100644 --- a/scripts/make.js +++ b/scripts/make.js @@ -121,11 +121,15 @@ const copyNonJavaScriptFiles = buildPath => { 'README.md', 'yarn.lock', 'docs', + 'native/shared', 'native/ios', 'native/android', + 'native/android...
Fix make.js for recentJSI changes
Nozbe_WatermelonDB
train
74a576c75afa7609f1245ae6e59edfdbc788ebdb
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ install_reqs = parse_requirements('requirements.txt', session=False) setup( name='envs', - description='Easy access of environment variables from Python with support for booleans.', + description='Ea...
Updated version to <I>
capless_envs
train
b9d66953ffeaddb100506b423c0cb03d79efc2c4
diff --git a/shared/actions/chat/messages.js b/shared/actions/chat/messages.js index <HASH>..<HASH> 100644 --- a/shared/actions/chat/messages.js +++ b/shared/actions/chat/messages.js @@ -49,12 +49,14 @@ function* deleteMessage(action: Constants.DeleteMessage): SagaGenerator<any, any yield put(navigateTo([], [cha...
send outbox id on edit and delete so it matches sending (#<I>)
keybase_client
train
20fee0e1e425e2a3eb3c578c8005761a900a00c4
diff --git a/lib/link.class.js b/lib/link.class.js index <HASH>..<HASH> 100644 --- a/lib/link.class.js +++ b/lib/link.class.js @@ -102,18 +102,18 @@ TLink.prototype.extend = function TLink_extend(ext) TLink.prototype.sync = function TLink_sync() { // any keepalive event, sync all pipes w/ a new handshake - log.de...
fix some old refs to 'link', replace with 'this'
telehash_telehash-js
train
177c2578a9d2c169e5008ec6e3abbc8759e84f30
diff --git a/rails_event_store_active_record/lib/rails_event_store_active_record/event_repository.rb b/rails_event_store_active_record/lib/rails_event_store_active_record/event_repository.rb index <HASH>..<HASH> 100644 --- a/rails_event_store_active_record/lib/rails_event_store_active_record/event_repository.rb +++ b/r...
Support #global_position in RailsEventStoreActiveRecord
RailsEventStore_rails_event_store
train