hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
06a6c8df049288288a686de1bc0c8f36b705f9fd
diff --git a/lib/commands/marshalString.js b/lib/commands/marshalString.js index <HASH>..<HASH> 100644 --- a/lib/commands/marshalString.js +++ b/lib/commands/marshalString.js @@ -3,7 +3,7 @@ var _ = require('lodash'); module.exports = function(item) { - if (!_.isString(item)) { + if (!_.isString(item) || _.is...
Added an empty check to the marshalString command.
CascadeEnergy_dynamoDb-marshaler
train
b5358b5774f6312491c69240de9873879328fcf3
diff --git a/lizzy_client/cli.py b/lizzy_client/cli.py index <HASH>..<HASH> 100644 --- a/lizzy_client/cli.py +++ b/lizzy_client/cli.py @@ -104,14 +104,10 @@ def agent_error(e: requests.HTTPError, fatal=True): data = e.response.json() details = data['detail'] # type: str except JSONDecodeError: -...
Always try to use error message as text
zalando-stups_lizzy-client
train
f6da8b258a9d149360e4867355434fe6655f0ee9
diff --git a/numina/user.py b/numina/user.py index <HASH>..<HASH> 100644 --- a/numina/user.py +++ b/numina/user.py @@ -100,13 +100,38 @@ def super_load(path): def mode_show(serializer, args): '''Run the show mode of Numina''' _logger.debug('show mode') + if args.what == 'om': + show_observingmodes(...
Added show options (instrument, obsmodes and recipes)
guaix-ucm_numina
train
0cba00aacadb485f13f846112d1c3f5affbef4f4
diff --git a/src/Connections/Ldap.php b/src/Connections/Ldap.php index <HASH>..<HASH> 100644 --- a/src/Connections/Ldap.php +++ b/src/Connections/Ldap.php @@ -821,7 +821,7 @@ class Ldap implements ConnectionInterface return chr(hexdec($matches[1])); }; - return preg_replace_callback("/\\\...
Removing unescape test for now
Adldap2_Adldap2
train
7746ca17008518e04bced57f7c3b1b11eca4b408
diff --git a/client/src/views/serverselect.js b/client/src/views/serverselect.js index <HASH>..<HASH> 100644 --- a/client/src/views/serverselect.js +++ b/client/src/views/serverselect.js @@ -46,6 +46,7 @@ _kiwi.view.ServerSelect = Backbone.View.extend({ this.gateway = _kiwi.global.components.Network(); ...
Reconnecting when IRCd drops the connection
prawnsalad_KiwiIRC
train
5756e6e448b2a30b259c592ef517d25b5a7fa920
diff --git a/src/main/java/com/ibm/watson/developer_cloud/dialog/v1/DialogService.java b/src/main/java/com/ibm/watson/developer_cloud/dialog/v1/DialogService.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/ibm/watson/developer_cloud/dialog/v1/DialogService.java +++ b/src/main/java/com/ibm/watson/developer_clou...
[dialog] Added integration test to check that the updateProfile method works. #<I>
watson-developer-cloud_java-sdk
train
e997b8ba14803516fd5f4f01b2e041245ee52a9c
diff --git a/src/Illuminate/Foundation/Testing/TestResponse.php b/src/Illuminate/Foundation/Testing/TestResponse.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Foundation/Testing/TestResponse.php +++ b/src/Illuminate/Foundation/Testing/TestResponse.php @@ -64,6 +64,36 @@ class TestResponse } /** + ...
Add additional methods for response status testing (#<I>)
laravel_framework
train
9c2982b03bbbd8f09903921fd9affabbabcad6cb
diff --git a/pipenv/environments.py b/pipenv/environments.py index <HASH>..<HASH> 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -36,5 +36,7 @@ if PIPENV_VENV_IN_PROJECT: if os.name == 'nt': PIPENV_NOSPIN = True +_pipenv_timout_raw = os.environ.get('PIPENV_TIMEOUT') + # Tells pipenv how lo...
put in more proper logic for int conversion when reading from the PIPENV_TIMEOUT variable
pypa_pipenv
train
baef16c209e967a42d8f515ce110d903d2304e72
diff --git a/app/lib/navigation/organization_menu.rb b/app/lib/navigation/organization_menu.rb index <HASH>..<HASH> 100644 --- a/app/lib/navigation/organization_menu.rb +++ b/app/lib/navigation/organization_menu.rb @@ -48,7 +48,7 @@ module Navigation }, { :key => :organization_default_info, ...
oh glorious tests, i offer you this sacrifice. please work.
Katello_katello
train
e387c744e998d639b1117d52ee10e933d1cbc801
diff --git a/lib/createLiveStyleApp.js b/lib/createLiveStyleApp.js index <HASH>..<HASH> 100644 --- a/lib/createLiveStyleApp.js +++ b/lib/createLiveStyleApp.js @@ -45,6 +45,14 @@ module.exports = function createLiveStyleApp(options) { } if (options.root) { + if (options.autoprefixer) { + ...
fix ordering of middleware to ensure autoprefixer is ran after compiless.
One-com_livestyle
train
5bd2e60191f18a583874f3ad92bcba1f4c310345
diff --git a/lib/baza_models/query.rb b/lib/baza_models/query.rb index <HASH>..<HASH> 100644 --- a/lib/baza_models/query.rb +++ b/lib/baza_models/query.rb @@ -57,7 +57,22 @@ class BazaModels::Query end def length - count + if @_previous_model && !any_wheres_other_than_relation? && @_previous_model.autoloa...
Added support for Query#new
kaspernj_baza_models
train
5f7b24a9beb35ec186afc887a077311179d6f74e
diff --git a/test/extended/builds/webhook.go b/test/extended/builds/webhook.go index <HASH>..<HASH> 100644 --- a/test/extended/builds/webhook.go +++ b/test/extended/builds/webhook.go @@ -3,6 +3,7 @@ package builds import ( "bytes" "encoding/json" + "fmt" "io/ioutil" "net/http" "time" @@ -12,6 +13,7 @@ import...
Adding By statements for Webhook Test
openshift_origin
train
7e03645a5534fc582847df6ece72aec516487b47
diff --git a/src/event/event.js b/src/event/event.js index <HASH>..<HASH> 100644 --- a/src/event/event.js +++ b/src/event/event.js @@ -13,6 +13,10 @@ jQuery.event = { if ( jQuery.browser.msie && element.setInterval != undefined ) element = window; + // Make sure that the function being executed has a unique...
Clean up in jQuery.event.add for assigning a handler.guid
jquery_jquery
train
7cf1d37c93a54627e17b150ebd361520a2e7b8f7
diff --git a/code/dataobjects/Link.php b/code/dataobjects/Link.php index <HASH>..<HASH> 100644 --- a/code/dataobjects/Link.php +++ b/code/dataobjects/Link.php @@ -157,8 +157,8 @@ class Link extends DataObject ), TextField::create( 'Anchor', - ...
Update anchor field label to include querystring tip
sheadawson_silverstripe-linkable
train
f54233b1b236c7457828075843c35d04182c55c5
diff --git a/Mapper/DoctrineORMMapper.php b/Mapper/DoctrineORMMapper.php index <HASH>..<HASH> 100644 --- a/Mapper/DoctrineORMMapper.php +++ b/Mapper/DoctrineORMMapper.php @@ -227,7 +227,6 @@ class DoctrineORMMapper implements EventSubscriber try { foreach ($this->associations[$metadata->name] as $...
Apply fixes from StyleCI (#<I>)
sonata-project_SonataEasyExtendsBundle
train
96e4ed2d497d70d58ab3b8a30f29d96781ad544f
diff --git a/redisson/src/main/java/org/redisson/remote/BaseRemoteProxy.java b/redisson/src/main/java/org/redisson/remote/BaseRemoteProxy.java index <HASH>..<HASH> 100644 --- a/redisson/src/main/java/org/redisson/remote/BaseRemoteProxy.java +++ b/redisson/src/main/java/org/redisson/remote/BaseRemoteProxy.java @@ -67,12...
Simplify code using Map::computeIfAbsent
redisson_redisson
train
d983bb9e5a717c2bece47cda5d21b21d3d037cfd
diff --git a/types/src/main/java/com/google/common/html/types/SafeHtmlBuilder.java b/types/src/main/java/com/google/common/html/types/SafeHtmlBuilder.java index <HASH>..<HASH> 100644 --- a/types/src/main/java/com/google/common/html/types/SafeHtmlBuilder.java +++ b/types/src/main/java/com/google/common/html/types/SafeHt...
Add support for "media" attribute. Restricted the attribute to specific elements as it seems like a name which could be used for something dangerous in a future HTML element. Needed in [] ------------- Created by MOE: <URL>
google_safe-html-types
train
1883e41079685a6931addc5e304b6682cc2cd2a3
diff --git a/cubicle.gemspec b/cubicle.gemspec index <HASH>..<HASH> 100644 --- a/cubicle.gemspec +++ b/cubicle.gemspec @@ -5,7 +5,7 @@ Gem::Specification.new do |s| s.name = %q{cubicle} - s.version = "0.1.5" + s.version = "0.1.6" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :...
Added :condition modifier to cubicle DSL, allowing the formal specification of boolean conditions which control whether a value is emitted for each document during an aggregation, or if a null is emitted instead.
PlasticLizard_Cubicle
train
f4bab4d763c0313631384a44ab720320b4738147
diff --git a/pacman/fields.py b/pacman/fields.py index <HASH>..<HASH> 100644 --- a/pacman/fields.py +++ b/pacman/fields.py @@ -87,34 +87,34 @@ class BaseByteSequence(BaseField): self._value = struct.unpack(self.format, data) -class BUByteSequence(BaseByteSequence): +class UBByteSequence(BaseByteSequenc...
Refactor: Change from BUInt8 to UBInt8 form This matches the convention in the construct library and seems to be a bit nicer to look at in general. Much easier to make the change now then later.
digidotcom_python-suitcase
train
163c3c614bd9bf26afb384d851d99215389f9c5b
diff --git a/lib/chai/core/assertions.js b/lib/chai/core/assertions.js index <HASH>..<HASH> 100644 --- a/lib/chai/core/assertions.js +++ b/lib/chai/core/assertions.js @@ -1037,27 +1037,40 @@ module.exports = function (chai, _) { if (desiredError) { this.assert( err === desiredError - ...
assertions: refactor some assertions to use objDisplay instead of inspect
chaijs_chai
train
a029748f1812501f11a7171bb2332f95acfe88f9
diff --git a/test/unit/gateways/quickbooks_test.rb b/test/unit/gateways/quickbooks_test.rb index <HASH>..<HASH> 100644 --- a/test/unit/gateways/quickbooks_test.rb +++ b/test/unit/gateways/quickbooks_test.rb @@ -1,15 +1,15 @@ require 'test_helper' class QuickBooksTest < Test::Unit::TestCase + include CommStub + ...
use CommStub for MultiResponse-based tests, add API response stubs, add unit tests for transactional methods
activemerchant_active_merchant
train
c15ff7cc667ca069d138c0f15c08df3953c53d55
diff --git a/endless_pagination/tests/integration/__init__.py b/endless_pagination/tests/integration/__init__.py index <HASH>..<HASH> 100644 --- a/endless_pagination/tests/integration/__init__.py +++ b/endless_pagination/tests/integration/__init__.py @@ -17,6 +17,8 @@ from endless_pagination.utils import PYTHON3 S...
Selenium tests: replaced xpaths with css selectors.
frankban_django-endless-pagination
train
55351ce27345edb862cecce2b645f8d918994525
diff --git a/lib/mongo/collection.rb b/lib/mongo/collection.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/collection.rb +++ b/lib/mongo/collection.rb @@ -1027,7 +1027,7 @@ module Mongo if RUBY_VERSION < '1.9' && !spec.is_a?(BSON::OrderedHash) raise MongoArgumentError, "Must used OrderedHash i...
RUBY-<I> now with <I> support
mongodb_mongo-ruby-driver
train
94270b85e6976e9f9edeff5346bc1d1099beaab1
diff --git a/bql/planner/planner_test.go b/bql/planner/planner_test.go index <HASH>..<HASH> 100644 --- a/bql/planner/planner_test.go +++ b/bql/planner/planner_test.go @@ -760,19 +760,21 @@ func TestPlannerQuery(t *testing.T) { s, ctx := memory.NewStore(), context.Background() populateStoreWithTriples(ctx, s, "?test...
Separate better the setup from the actual test inside "planner_test.go"
google_badwolf
train
0cea26e862dcfe0524e06de6f6acbd655d8e2d7a
diff --git a/system/Debug/Toolbar/Views/toolbar.js b/system/Debug/Toolbar/Views/toolbar.js index <HASH>..<HASH> 100644 --- a/system/Debug/Toolbar/Views/toolbar.js +++ b/system/Debug/Toolbar/Views/toolbar.js @@ -507,29 +507,48 @@ var ciDebugBar = { setToolbarTheme: function () { var btnTheme = document.getElement...
Improved JS to manage special cases with dark/light mode
codeigniter4_CodeIgniter4
train
561aa11bd1203deb506cfaa14f5cab43293f0163
diff --git a/lib/rsvp/version.rb b/lib/rsvp/version.rb index <HASH>..<HASH> 100644 --- a/lib/rsvp/version.rb +++ b/lib/rsvp/version.rb @@ -1,3 +1,3 @@ module Rsvp - VERSION = "0.2.3" + VERSION = "0.2.4" end
Version bump. Removed rogue migration in build <I>.
ryanricard_rsvp
train
7896520bce05beaa9abaa47445ef089b74cb1ba5
diff --git a/zipline/utils/sentinel.py b/zipline/utils/sentinel.py index <HASH>..<HASH> 100644 --- a/zipline/utils/sentinel.py +++ b/zipline/utils/sentinel.py @@ -4,6 +4,7 @@ Construction of sentinel objects. Sentinel objects are used when you only care to check for object identity. """ import sys +from textwrap imp...
ENH: better error and don't catch attrerror
quantopian_zipline
train
03741aca3894af6f24b2c88fee0aa42b86b7ea54
diff --git a/src/Models/CatalogGroup.js b/src/Models/CatalogGroup.js index <HASH>..<HASH> 100644 --- a/src/Models/CatalogGroup.js +++ b/src/Models/CatalogGroup.js @@ -57,6 +57,11 @@ var CatalogGroup = function(application) { */ this.items = []; + /** + * Gets or sets flag to prevent items in group b...
Add "preserveOrder" flag to CatalogGroup.
TerriaJS_terriajs
train
383a41698e80f7d9d61069454ce6928f7e18be81
diff --git a/tests/Integration/Suites/FrontendRenderingTest.php b/tests/Integration/Suites/FrontendRenderingTest.php index <HASH>..<HASH> 100644 --- a/tests/Integration/Suites/FrontendRenderingTest.php +++ b/tests/Integration/Suites/FrontendRenderingTest.php @@ -5,7 +5,7 @@ namespace Brera; use Brera\Environment\Versi...
Issue #<I>: Change data pool namespace (sorry)
lizards-and-pumpkins_catalog
train
3db05a1e66c1e061c3e6db3176a635ff2c00a236
diff --git a/xchange-btcturk/src/main/java/org/knowm/xchange/btcturk/BTCTurkExchange.java b/xchange-btcturk/src/main/java/org/knowm/xchange/btcturk/BTCTurkExchange.java index <HASH>..<HASH> 100644 --- a/xchange-btcturk/src/main/java/org/knowm/xchange/btcturk/BTCTurkExchange.java +++ b/xchange-btcturk/src/main/java/org/...
Fixed NULL Error for Authenticated Services If the api key is defined after running "ExchangeFactory.INSTANCE.createExchange" command, authenticated services were null.
knowm_XChange
train
cb7756a6f5b62a772b48d0cf39354dd0dedee2c2
diff --git a/pghoard/pghoard.py b/pghoard/pghoard.py index <HASH>..<HASH> 100644 --- a/pghoard/pghoard.py +++ b/pghoard/pghoard.py @@ -355,17 +355,20 @@ class PGHoard: last_backup_time = None site_config = self.config["backup_sites"][site] - basebackups_to_delete = self.determine_backups_...
Add explicit site active check before deleting anything This is already checked in `handle_site` but to make the code more resilient for future bugs explicitly check the state before proceeding with any deletes.
aiven_pghoard
train
d6d343865bc7c915ec7f6222b436a28eeedf23e2
diff --git a/core/server/config/index.js b/core/server/config/index.js index <HASH>..<HASH> 100644 --- a/core/server/config/index.js +++ b/core/server/config/index.js @@ -43,6 +43,7 @@ _private.loadNconf = function loadNconf(options) { nconf.isPrivacyDisabled = localUtils.isPrivacyDisabled.bind(nconf); nconf....
🎨 show clearer error for wrong content path (#<I>) no issue
TryGhost_Ghost
train
4ef5d37433bb86ee0218ca54828dab08a19eeecf
diff --git a/system-test/storage.js b/system-test/storage.js index <HASH>..<HASH> 100644 --- a/system-test/storage.js +++ b/system-test/storage.js @@ -1671,7 +1671,7 @@ describe('storage', function() { upload({interrupt: false}, function(err) { assert.ifError(err); - assert.st...
Fix system tests for string comparisons (#<I>) * test: fix buffer-string comparisons * npm run prettier
googleapis_nodejs-storage
train
5c6aad6d5c78d80283c8d5b0238c180576ae1416
diff --git a/operator/crd_test.go b/operator/crd_test.go index <HASH>..<HASH> 100644 --- a/operator/crd_test.go +++ b/operator/crd_test.go @@ -112,13 +112,6 @@ func (s *crdTestSuite) TestGetCRD(c *C) { err = waitForCRD(context.TODO(), client, "bar") c.Assert(err, ErrorMatches, ".*timeout waiting for CRD bar.*") -...
k8s: Remove CRD deleting functionality This commit removes the ability to delete CRDs from Cilium because that would delete all the CRs in the cluster. Follow-up from: <URL>
cilium_cilium
train
db094f9b92cf8c844e61ece19caf294bd58cf37c
diff --git a/tools/validator.py b/tools/validator.py index <HASH>..<HASH> 100755 --- a/tools/validator.py +++ b/tools/validator.py @@ -23,37 +23,30 @@ class ArtifactDefinitionsValidator(object): _MACOS_PRIVATE_SUB_PATHS = ('etc', 'tftpboot', 'tmp', 'var') + _SUPPORTED_ENVIRONMENT_VARIABLES = [ + '%%environ...
Validate environment and users variables in Registry key paths (#<I>)
ForensicArtifacts_artifacts
train
5243b7c6e77de8fbaf499f1ae007abd48d466580
diff --git a/flap/__init__.py b/flap/__init__.py index <HASH>..<HASH> 100644 --- a/flap/__init__.py +++ b/flap/__init__.py @@ -18,7 +18,7 @@ from logging import getLogger, FileHandler, Formatter, DEBUG __tool_name__ = "FLaP" -__version__ = "0.4.2" +__version__ = "0.5.0" def _configure_logger():
Releasing version <I>
fchauvel_flap
train
0293f958c989d9abb7e436c8933961e59154ee66
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -53,7 +53,7 @@ var StoreSchema = require('./commands/yokozuna/storeschema'); * * @class Client * @constructor - * @param {Object} cluster - the cluster to use. + * @param {Object} cluster - the cluste...
Documentation tags to refer to command classes and other items done.
basho_riak-nodejs-client
train
00d32d183c5e93ef46292021ea1c70b165cd1c12
diff --git a/src/com/google/javascript/jscomp/J2clPass.java b/src/com/google/javascript/jscomp/J2clPass.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/J2clPass.java +++ b/src/com/google/javascript/jscomp/J2clPass.java @@ -239,7 +239,7 @@ public class J2clPass implements CompilerPass { /*...
Make J2CL pass inline Casts.to and Casts.$to. This pass is in preparation to rename Casts.to to Casts.$to. J2CL runtime supporting classes should have methods whose names are clearly internal and unlikely to name clash with method names written by users. ------------- Created by MOE: <URL>
google_closure-compiler
train
e2fccafa3c5903bff28b177d7aac8eee7ac4b05f
diff --git a/modules/cms/classes/Controller.php b/modules/cms/classes/Controller.php index <HASH>..<HASH> 100644 --- a/modules/cms/classes/Controller.php +++ b/modules/cms/classes/Controller.php @@ -640,7 +640,7 @@ class Controller list($componentName, $handlerName) = explode('::', $handler); ...
allow calling of components extension ajax handlers
octobercms_october
train
e66d513281d5e9f47c5627463a019a9a8906824b
diff --git a/src/components/VInput/VInput.js b/src/components/VInput/VInput.js index <HASH>..<HASH> 100755 --- a/src/components/VInput/VInput.js +++ b/src/components/VInput/VInput.js @@ -172,11 +172,14 @@ export default { } }) }, - genSlot (ref, location, slot) { + genSlot (type, location, sl...
fix(VSelect): toggle menu when dropdown arrow is clicked (#<I>) * fix(v-autocomplete): toggle menu on icon click * fix(v-autocomplete): fix icon/menu toggle fixes #<I> * refactor(v-select): move onMouseUp logic for `v-select` with **offset-y** * refactor(v-select): change comparison should evaluate i...
vuetifyjs_vuetify
train
0beb81ad4c915ebfe4327bd193b726865ab2fbef
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -107,6 +107,7 @@ * [#2569](https://github.com/bbatsov/rubocop/issues/2569): `Style/MethodCallParentheses` doesn't register warnings for `object.()` syntax, since it is handled by `Style/LambdaCall`. ([@alexdow...
[Fix #<I>] Fix 'variable' style for Lint/EndAlignment We had no tests checking whether `Lint/EndAlignment`'s `variable` style worked or not when a node with `end` is not on the RHS of an assignment. So it was never noticed when <I>d0b<I> completely broke the `variable` style. Fix it up, and add tests so this doesn't ...
rubocop-hq_rubocop
train
9c665374989856dc0190d93e324ea55f8ae7c543
diff --git a/lib/Sabre/DAV/Version.php b/lib/Sabre/DAV/Version.php index <HASH>..<HASH> 100644 --- a/lib/Sabre/DAV/Version.php +++ b/lib/Sabre/DAV/Version.php @@ -15,7 +15,7 @@ class Sabre_DAV_Version { /** * Full version number */ - const VERSION = '1.0.1'; + const VERSION = '1.0.2'; /** ...
Bumped version to <I>
sabre-io_dav
train
3373995e012b1c43b0acf2ca94dda8a30097f98e
diff --git a/core-http/pom.xml b/core-http/pom.xml index <HASH>..<HASH> 100644 --- a/core-http/pom.xml +++ b/core-http/pom.xml @@ -30,12 +30,6 @@ </dependency> <dependency> <groupId>io.datakernel</groupId> - <artifactId>datakernel-codec</artifactId> - <version>${project.version}</version> - ...
Remove datakernel-codec dependency from datakernel-http
softindex_datakernel
train
7d611c6eac1893da94ede6a4541e082918db73da
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,8 +1,6 @@ import * as hooks from './hooks'; import service from './service'; -import mongoose from 'mongoose'; export { hooks }; -export { mongoose }; export { service }; export default service; \ No ...
no longer exposing mongoose
feathersjs-ecosystem_feathers-mongoose
train
7090f8b1e2120e9ab7cac05840a9c2057d7e8541
diff --git a/tools/src/main/java/org/wildfly/swarm/tools/exec/SwarmExecutor.java b/tools/src/main/java/org/wildfly/swarm/tools/exec/SwarmExecutor.java index <HASH>..<HASH> 100644 --- a/tools/src/main/java/org/wildfly/swarm/tools/exec/SwarmExecutor.java +++ b/tools/src/main/java/org/wildfly/swarm/tools/exec/SwarmExecuto...
Ensure that the `weld-se-shaded` artifact containing Weld 3 is the first on the classpath for non uber jar scenarios
thorntail_thorntail
train
e2b09a8aecc8330697cf27aaa01b3b9e36577cda
diff --git a/src/DoctrineORMModule/Options/DBALConnection.php b/src/DoctrineORMModule/Options/DBALConnection.php index <HASH>..<HASH> 100644 --- a/src/DoctrineORMModule/Options/DBALConnection.php +++ b/src/DoctrineORMModule/Options/DBALConnection.php @@ -160,9 +160,9 @@ class DBALConnection extends AbstractOptions ...
Fixed signature setDoctrineCommentedTypes
doctrine_DoctrineORMModule
train
ad57aa05ad05b08348acee229bad163c995146a5
diff --git a/src/sap.ui.mdc/src/sap/ui/mdc/ValueHelp.js b/src/sap.ui.mdc/src/sap/ui/mdc/ValueHelp.js index <HASH>..<HASH> 100644 --- a/src/sap.ui.mdc/src/sap/ui/mdc/ValueHelp.js +++ b/src/sap.ui.mdc/src/sap/ui/mdc/ValueHelp.js @@ -356,9 +356,10 @@ sap.ui.define([ var oTypeahead = this.getTypeahead(); var oDialog ...
[INTERNAL] ValueHelp: cannot be closed Change-Id: Ia6dec7d<I>e<I>b<I>a<I>f1c<I>a<I>
SAP_openui5
train
0f381a162b7358e923d1b6ed03650ed36cd3d518
diff --git a/lib/rest_adapter/connection.rb b/lib/rest_adapter/connection.rb index <HASH>..<HASH> 100644 --- a/lib/rest_adapter/connection.rb +++ b/lib/rest_adapter/connection.rb @@ -15,7 +15,7 @@ module DataMapperRest # this is used to run the http verbs like http_post, http_put, http_delete etc. # TODO: han...
[dm-rest-adapter] Can't append path, otherwise every request is appended...
datamapper_dm-rest-adapter
train
8a7e832e264f5f763629df10d27ae9e9716dee9a
diff --git a/library/Phpass.php b/library/Phpass.php index <HASH>..<HASH> 100644 --- a/library/Phpass.php +++ b/library/Phpass.php @@ -81,18 +81,18 @@ class Phpass public function __construct($iterationCountLog2 = 8, $portableHashes = false) { $this->_itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZa...
Cleaned up extra whitespace in source file.
rchouinard_phpass
train
13b65fd5119bd17eb0402e6a025ed3bf5d23ee65
diff --git a/lib/sir-trevor/helpers/view_helper.rb b/lib/sir-trevor/helpers/view_helper.rb index <HASH>..<HASH> 100644 --- a/lib/sir-trevor/helpers/view_helper.rb +++ b/lib/sir-trevor/helpers/view_helper.rb @@ -8,14 +8,14 @@ module SirTrevor def render_sir_trevor(json, image_type = 'large') if hash = pa...
Rename render_block to make it consistent with other method names.
madebymany_sir-trevor-rails
train
539f0fa396b6144d21cec2d8e3cd352964839a9e
diff --git a/lib/plugins/jingle.js b/lib/plugins/jingle.js index <HASH>..<HASH> 100644 --- a/lib/plugins/jingle.js +++ b/lib/plugins/jingle.js @@ -7,6 +7,12 @@ var window = window || global; module.exports = function (client) { var jingle = client.jingle = new Jingle(); + client.supportedICEServiceTypes = { ...
Allow restricting the types of ICE servers used by Jingle
legastero_stanza.io
train
f15567f175620eea9902d7a39deff800a57ccc74
diff --git a/src/painter.js b/src/painter.js index <HASH>..<HASH> 100644 --- a/src/painter.js +++ b/src/painter.js @@ -283,6 +283,7 @@ function outputAttribute(pen, name, value, diff, inspect, diffFn) { if (diff) { + pen.sp(); switch(diff.type) { case 'changed': ou...
Skips outputting attributes that are undefined Closes #1
bruderstein_unexpected-htmllike
train
1071e9357ef9e31bb1aea1064586fbc507b0f4b3
diff --git a/benchexec/tools/ultimate.py b/benchexec/tools/ultimate.py index <HASH>..<HASH> 100644 --- a/benchexec/tools/ultimate.py +++ b/benchexec/tools/ultimate.py @@ -57,6 +57,7 @@ class UltimateTool(benchexec.tools.template.BaseTool): "LICENSE.GPL", "LICENSE.GPL.LESSER", "mathsat", + ...
add mathsat-LICENSE as required file
sosy-lab_benchexec
train
8339a019a1764ad09a41defc02dafa3ad6b97321
diff --git a/lang/en/admin.php b/lang/en/admin.php index <HASH>..<HASH> 100755 --- a/lang/en/admin.php +++ b/lang/en/admin.php @@ -236,7 +236,7 @@ $string['configintrosite'] = 'This page allows you to configure the front page a $string['configintrotimezones'] = 'This page will search for new information about world ti...
MDL-<I> string rewording thanks to Koen Roggemans
moodle_moodle
train
77f4c1f2e881fe1c858e251ec659f7077e56b734
diff --git a/elasticsearch_dsl/filter.py b/elasticsearch_dsl/filter.py index <HASH>..<HASH> 100644 --- a/elasticsearch_dsl/filter.py +++ b/elasticsearch_dsl/filter.py @@ -70,6 +70,41 @@ class Bool(BoolMixin, Filter): 'should': {'type': 'filter', 'multi': True}, 'must_not': {'type': 'filter', 'multi': ...
Proper logix with & for bool filters/queries Respecting minimum_should_match logic
elastic_elasticsearch-dsl-py
train
419330ea53c60889160b3b32c240478c22df65a0
diff --git a/languagetool-language-modules/en/src/main/java/org/languagetool/rules/en/AbstractEnglishSpellerRule.java b/languagetool-language-modules/en/src/main/java/org/languagetool/rules/en/AbstractEnglishSpellerRule.java index <HASH>..<HASH> 100644 --- a/languagetool-language-modules/en/src/main/java/org/languageto...
[en] comment out unused member vars
languagetool-org_languagetool
train
5d4cb475a919cdd4a02d39cad35a54127f65c785
diff --git a/identify/extensions.py b/identify/extensions.py index <HASH>..<HASH> 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -116,7 +116,7 @@ EXTENSIONS = { 'rs': {'text', 'rust'}, 'rst': {'text', 'rst'}, 's': {'text', 'asm'}, - 'sbt': {'text', 'scala'}, + 'sbt': {'text', '...
Allow sbt to be differentiated
chriskuehl_identify
train
4470e4e5ed66cd67f8e1ad8004a19d6714b6d846
diff --git a/sip-servlets-test-suite/testsuite/src/test/java/org/mobicents/servlet/sip/testsuite/TestSipListener.java b/sip-servlets-test-suite/testsuite/src/test/java/org/mobicents/servlet/sip/testsuite/TestSipListener.java index <HASH>..<HASH> 100644 --- a/sip-servlets-test-suite/testsuite/src/test/java/org/mobicents...
Non regression test for github Issue #<I> (cherry picked from commit <I>d<I>a<I>ccbad1cb<I>dcb<I>dcec3de<I>f<I>e)
RestComm_sip-servlets
train
302f52311cef67b0e3d654544eb84dbf01c6ed2f
diff --git a/lib/rfc/rif.rb b/lib/rfc/rif.rb index <HASH>..<HASH> 100644 --- a/lib/rfc/rif.rb +++ b/lib/rfc/rif.rb @@ -102,9 +102,9 @@ class Rif < RSpec::Core::Formatters::BaseTextFormatter return "Unexpected unit: #{unit} for #{line}" end value = value * 1024 - measure.sub!(/:$/, ''...
Fix memory stats when there is no swap
p-mongo_rfc
train
7d4294b2799654dbe3a837091dc6f2963eaaf46d
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -37,16 +37,16 @@ }, "homepage": "https://github.com/libp2p/js-libp2p-identify#readme", "devDependencies": { - "aegir": "^11.0.0", + "aegir": "^11.0.1", "chai": "^3.5.0", "dirty-chai": "...
Feat/new peer info (#<I>) * chore: update deps * feat: peer-info rave
libp2p_js-libp2p-identify
train
97cbea005e6e1e5c238a8e1d6a753a54404811a6
diff --git a/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php b/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php +++ b/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php @...
[Lock] Skip test if posix extension is not installed This isn't installed by default on Fedora
symfony_symfony
train
dec00f3b9825df374638ffbe450b6f46d4802784
diff --git a/lib/Pagon/App.php b/lib/Pagon/App.php index <HASH>..<HASH> 100644 --- a/lib/Pagon/App.php +++ b/lib/Pagon/App.php @@ -111,8 +111,6 @@ class App extends EventEmitter */ public function __construct($config = array()) { - $app = & $this; - // Is cli $this->_cli = PHP_S...
Some fix for app->config when construct
hfcorriez_pagon
train
3d76571621d9f34d7c0470b7d621aea916ceb0f6
diff --git a/jsonresults.go b/jsonresults.go index <HASH>..<HASH> 100644 --- a/jsonresults.go +++ b/jsonresults.go @@ -131,7 +131,7 @@ type GetNetworkInfoResult struct { ProtocolVersion int32 `json:"protocolversion"` TimeOffset int64 `json:"timeoffset"` Connections int32...
Update getnetworkinfo structure. This matches the changes in Bitcoin Core. Tested with btcctl. OK @jcvernaleo
btcsuite_btcd
train
893ca2a56846d498f30b75b6fcad771138ac4574
diff --git a/test/integration/features/step_definitions/common-steps.js b/test/integration/features/step_definitions/common-steps.js index <HASH>..<HASH> 100644 --- a/test/integration/features/step_definitions/common-steps.js +++ b/test/integration/features/step_definitions/common-steps.js @@ -5,18 +5,22 @@ import {inf...
test: prepared for use of package-preview
travi_project-scaffolder
train
3a929ec7667f79a7663e89bdcd06d0f91afa3db8
diff --git a/core/src/main/java/at/stefangeyer/challonge/model/enumeration/TournamentState.java b/core/src/main/java/at/stefangeyer/challonge/model/enumeration/TournamentState.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/at/stefangeyer/challonge/model/enumeration/TournamentState.java +++ b/core/src/main/ja...
Adds tournament state for accepting_predictions
stefangeyer_challonge-java
train
8d2330a8975f704dfc564c417e45b8973f3298fb
diff --git a/test/Event/ReadModel/JSONLD/CdbXMLImporterTest.php b/test/Event/ReadModel/JSONLD/CdbXMLImporterTest.php index <HASH>..<HASH> 100644 --- a/test/Event/ReadModel/JSONLD/CdbXMLImporterTest.php +++ b/test/Event/ReadModel/JSONLD/CdbXMLImporterTest.php @@ -486,6 +486,10 @@ class CdbXMLImporterTest extends \PHPUni...
III-<I> Updated header docs.
cultuurnet_udb3-php
train
3978d6ac3bdbc18485e8094fc6a776a8f126d2a2
diff --git a/synapse/tests/test_cortex.py b/synapse/tests/test_cortex.py index <HASH>..<HASH> 100644 --- a/synapse/tests/test_cortex.py +++ b/synapse/tests/test_cortex.py @@ -1325,3 +1325,20 @@ class CortexTest(s_test.SynTest): self.len(0, core.eval('testint<10')) self.len(0, core.eval('testin...
ensure time based gt/ge/lt/le lifts work like regular int lifts.
vertexproject_synapse
train
f7a9e088f9ec8bf4593bf017baa38722e5a047e1
diff --git a/lib/stupidedi/builder/navigation.rb b/lib/stupidedi/builder/navigation.rb index <HASH>..<HASH> 100644 --- a/lib/stupidedi/builder/navigation.rb +++ b/lib/stupidedi/builder/navigation.rb @@ -430,6 +430,22 @@ module Stupidedi end end + # Sequence multiple traversals together, by iterat...
Create method Navigation#sequence to make several traversals in one call
irobayna_stupidedi
train
4e8c56f30b7020982fd09691f74999c447d64517
diff --git a/azurerm/helpers/validate/compute.go b/azurerm/helpers/validate/compute.go index <HASH>..<HASH> 100644 --- a/azurerm/helpers/validate/compute.go +++ b/azurerm/helpers/validate/compute.go @@ -41,7 +41,7 @@ func SharedImageName(v interface{}, k string) (ws []string, es []error) { func SharedImageVersionName(...
Allowed larger numbers for azurerm_shared_image_version name (#<I>)
terraform-providers_terraform-provider-azurerm
train
dd6612ccee1867440e382423204ed386df3e8357
diff --git a/tests/test_menu_launcher.py b/tests/test_menu_launcher.py index <HASH>..<HASH> 100644 --- a/tests/test_menu_launcher.py +++ b/tests/test_menu_launcher.py @@ -163,7 +163,7 @@ def test_running_menu(): cmd = "python2.7 menu_launcher.py "+path_dirs.base_dir+" "+path_dirs.info_dir+" "+path_dirs.data_dir ...
Undoing some test_running_menu experiments.
CyberReboot_vent
train
cb0c6dd251eef3f7753516c9f50ad329d9cb845a
diff --git a/secedgar/filings/_base.py b/secedgar/filings/_base.py index <HASH>..<HASH> 100644 --- a/secedgar/filings/_base.py +++ b/secedgar/filings/_base.py @@ -13,18 +13,6 @@ class AbstractFiling(ABC): """``secedgar.client._base``: Client to use to make requests.""" pass # pragma: no cover - ...
CLN: Rearrange to have all properties at start
coyo8_sec-edgar
train
2b3289ceade0530a8b9ab178c844aeadb1aea956
diff --git a/lib/giantbomb.rb b/lib/giantbomb.rb index <HASH>..<HASH> 100644 --- a/lib/giantbomb.rb +++ b/lib/giantbomb.rb @@ -6,5 +6,5 @@ require 'httparty' end module GiantBomb - VERSION = "0.0.1" + VERSION = "0.0.2" end \ No newline at end of file
bumped version to <I>
games-directory_api-giantbomb
train
93eff19f5fad5e0e8e8556eb235edbe657b999bd
diff --git a/main/src/main/java/tachyon/UnderFileSystem.java b/main/src/main/java/tachyon/UnderFileSystem.java index <HASH>..<HASH> 100644 --- a/main/src/main/java/tachyon/UnderFileSystem.java +++ b/main/src/main/java/tachyon/UnderFileSystem.java @@ -46,8 +46,7 @@ public abstract class UnderFileSystem { public stati...
change local FS underfsAddress to /; fix a bug in excluding prefix-matching paths
Alluxio_alluxio
train
9f3d26d90ec316c5ecd6f6f311c009cd72198ca8
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -85,7 +85,7 @@ function SerialPortListener(){ this.Dimmer=function (offset){ this.parent=parent; this.head="55000a0701eb"; - this.adr=(parseInt(base,16)+offset).toString(16) + this.adr=(parseInt(base,16)+parseInt(off...
make sure offset is allways a number
enocean-js_node-enocean
train
0a1ed5f9bc9d94ab959af6a63cfc4a67cae69730
diff --git a/parsl/executors/status_handling.py b/parsl/executors/status_handling.py index <HASH>..<HASH> 100644 --- a/parsl/executors/status_handling.py +++ b/parsl/executors/status_handling.py @@ -177,7 +177,7 @@ class BlockProviderExecutor(ParslExecutor): launch_cmd = self._get_launch_command(block_id) ...
Disambiguate which executor blocks are launched on (#<I>) Elaborate on x->y notation to be clear what the x and y values are in the log message
Parsl_parsl
train
1fd8fba0459e44eb05a4eff73b03856d12b79006
diff --git a/tests/commands/envelope_test.py b/tests/commands/envelope_test.py index <HASH>..<HASH> 100644 --- a/tests/commands/envelope_test.py +++ b/tests/commands/envelope_test.py @@ -26,6 +26,7 @@ import unittest import mock from alot.commands import envelope +from alot.db.envelope import Envelope # When usi...
Add tests for new commands The test file is also renamed.
pazz_alot
train
5b3e6b965f486961b54bec72470f4459350f4d4b
diff --git a/src/Analyser/NodeScopeResolver.php b/src/Analyser/NodeScopeResolver.php index <HASH>..<HASH> 100644 --- a/src/Analyser/NodeScopeResolver.php +++ b/src/Analyser/NodeScopeResolver.php @@ -501,10 +501,6 @@ class NodeScopeResolver } return; - } elseif ($node instanceof Do_) { - foreach ($node->stm...
VariableCertaintyInIssetRule - fixed isset() in do-while loop
phpstan_phpstan
train
dfd43330e7b42f66d0351fd7045c903dc5ee898c
diff --git a/packages/ember-engines/tests/acceptance/teardown-test.js b/packages/ember-engines/tests/acceptance/teardown-test.js index <HASH>..<HASH> 100644 --- a/packages/ember-engines/tests/acceptance/teardown-test.js +++ b/packages/ember-engines/tests/acceptance/teardown-test.js @@ -1,4 +1,4 @@ -import { module, tes...
Re-enable routeless engine container cleanup test. This test was disabled due to a failure on Ember <I>, which has subsequently been fixed in Ember <I>.
ember-engines_ember-engines
train
94083023172a755b716cb4ebeb2e577d62de7220
diff --git a/openquake/engine/calculators/hazard/event_based/core.py b/openquake/engine/calculators/hazard/event_based/core.py index <HASH>..<HASH> 100644 --- a/openquake/engine/calculators/hazard/event_based/core.py +++ b/openquake/engine/calculators/hazard/event_based/core.py @@ -297,7 +297,6 @@ class GmfCalculator(o...
Removed a debugging print
gem_oq-engine
train
5a386f5f1ad3f9a4d41f7b2ca0afea33e148bbed
diff --git a/docs-site/src/pages/pattern-lab/_patterns/40-components/text/15-text-tag-variations.twig b/docs-site/src/pages/pattern-lab/_patterns/40-components/text/15-text-tag-variations.twig index <HASH>..<HASH> 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/40-components/text/15-text-tag-variations.twig +++ ...
DS-<I>: remove anchor demo, fix fontSize bug, remove cite case since we're deprecating it.
bolt-design-system_bolt
train
6ca3b3faa7e3ec29d01016fdc7bd656ff0e8a64e
diff --git a/src/filters.php b/src/filters.php index <HASH>..<HASH> 100644 --- a/src/filters.php +++ b/src/filters.php @@ -40,7 +40,7 @@ array_map(function ($type) { }); }, [ 'index', '404', 'archive', 'author', 'category', 'tag', 'taxonomy', 'date', 'home', - 'front_page', 'page', 'paged', 'search', 'sin...
front_page => frontpage Correct the value based on what WordPress passes as filter values <URL>
roots_sage
train
5914704eb2a19bcc5f19b1f1778fe7a330d78077
diff --git a/lib/sneakers/queue.rb b/lib/sneakers/queue.rb index <HASH>..<HASH> 100644 --- a/lib/sneakers/queue.rb +++ b/lib/sneakers/queue.rb @@ -46,7 +46,7 @@ class Sneakers::Queue handler_klass = worker.opts[:handler] || Sneakers::CONFIG[:handler] handler = handler_klass.new(@channel, queue, worker.opts) ...
Switch to :manual_ack to remove deprecation warning.
jondot_sneakers
train
08b82193ed5dc26b6bdb5d3cac3311675447b768
diff --git a/lib/AbstractObject.php b/lib/AbstractObject.php index <HASH>..<HASH> 100644 --- a/lib/AbstractObject.php +++ b/lib/AbstractObject.php @@ -489,19 +489,21 @@ abstract class AbstractObject */ function exception($message, $type = null, $code = null) { - if (!$type) { + if (! $type...
AbstractObject: bugfix for my fix :) Partly reverting <URL>
atk4_atk4
train
cd6cf6b6e4ac7df8ab0540429228bc54ca2f267c
diff --git a/pluginfile.php b/pluginfile.php index <HASH>..<HASH> 100644 --- a/pluginfile.php +++ b/pluginfile.php @@ -524,7 +524,7 @@ if ($component === 'blog') { send_file_not_found(); } - require_login($course); + require_course_login($course, true); $groupid = (int)array_shift($args); ...
pluginfile MDLSITE-<I> Relaxed login check on pluginfile surrounding group icons
moodle_moodle
train
66597585c12f87e35dfb8dc643d94434679be515
diff --git a/boolean/boolean.py b/boolean/boolean.py index <HASH>..<HASH> 100644 --- a/boolean/boolean.py +++ b/boolean/boolean.py @@ -470,21 +470,25 @@ class Expression(object): """ return set(s.obj for s in self.symbols) + def get_literals(self): + """ + Return a list of all the l...
#<I> Add new get_literals and get_symbols Expression methods * the methods allow to remove some code duplication and offer a way to get all symbols and literals instances too.
bastikr_boolean.py
train
fe14638b520d56a7d2a07b6bebdaaef3f8528864
diff --git a/lib/transforms/reviewContentSecurityPolicy.js b/lib/transforms/reviewContentSecurityPolicy.js index <HASH>..<HASH> 100644 --- a/lib/transforms/reviewContentSecurityPolicy.js +++ b/lib/transforms/reviewContentSecurityPolicy.js @@ -327,6 +327,18 @@ module.exports = (queryObj, options) => { } ...
reviewCSP: Tweak the wording of the 'unsafe-inline' warning, and make sure it is emitted
assetgraph_assetgraph
train
2e553f8d343316ac201c0bc95a0abda570822f3e
diff --git a/src/Codeception/Util/Connector/Kohana.php b/src/Codeception/Util/Connector/Kohana.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Util/Connector/Kohana.php +++ b/src/Codeception/Util/Connector/Kohana.php @@ -37,7 +37,7 @@ class Kohana extends \Symfony\Component\BrowserKit\Client { $kohanaRequest...
Syntax error in Kohana connector
Codeception_Codeception
train
95c58269b998a1544697b1464fca749e5d318296
diff --git a/builtin/providers/aws/resource_aws_cloudwatch_log_subscription_filter_test.go b/builtin/providers/aws/resource_aws_cloudwatch_log_subscription_filter_test.go index <HASH>..<HASH> 100644 --- a/builtin/providers/aws/resource_aws_cloudwatch_log_subscription_filter_test.go +++ b/builtin/providers/aws/resource_...
provider/aws: fix TestAccAWSCloudwatchLogSubscriptionFilter_basic by linking the name
hashicorp_terraform
train
1ffd2bd7e5023cd81464f0a6ac1ac8e6c0816183
diff --git a/test/host/bdd.js b/test/host/bdd.js index <HASH>..<HASH> 100644 --- a/test/host/bdd.js +++ b/test/host/bdd.js @@ -4,17 +4,18 @@ /*global console, setTimeout, clearTimeout*/ - var context = (function () { - /*global global*/ // NodeJS global - if ("object" === typeof global) { - ...
Support Nashorn: access to global (#<I>)
ArnaudBuchholz_gpf-js
train
aa7e2c049be18653508161293cc7e73dccba880b
diff --git a/app/helpers/linkify.js b/app/helpers/linkify.js index <HASH>..<HASH> 100644 --- a/app/helpers/linkify.js +++ b/app/helpers/linkify.js @@ -1 +1,2 @@ -export { default, linkify } from 'ember-linkify/helpers/linkify'; +import Linkify from 'ember-linkify/helpers/linkify'; +export default Linkify; diff --git a/...
Continue attempting to get the tests to pass
johno_ember-linkify
train
03ac407276c3347306db774050c8568815a86d67
diff --git a/lxd/lifecycle/storage_volume_backup.go b/lxd/lifecycle/storage_volume_backup.go index <HASH>..<HASH> 100644 --- a/lxd/lifecycle/storage_volume_backup.go +++ b/lxd/lifecycle/storage_volume_backup.go @@ -1,12 +1,9 @@ package lifecycle import ( - "fmt" - "net/url" - - "github.com/lxc/lxd/lxd/project" "g...
lxd/lifecycle/storage/volume/backup: Updates StorageVolumeBackupAction.Event to clarify the type of backup name required And updates to use api.NewURL().
lxc_lxd
train
0655db6843d1120caf4b515c9f2be65a01d44fee
diff --git a/lib/Thelia/Command/ModuleRefreshCommand.php b/lib/Thelia/Command/ModuleRefreshCommand.php index <HASH>..<HASH> 100644 --- a/lib/Thelia/Command/ModuleRefreshCommand.php +++ b/lib/Thelia/Command/ModuleRefreshCommand.php @@ -36,7 +36,7 @@ class ModuleRefreshCommand extends ContainerAwareCommand { ...
Container is now required by ModuleManagement::updateModules()
thelia_core
train
bc203747192852a0e0ed88ec6c7ab83baaddc415
diff --git a/shared/chat/conversations-list/index.native.js b/shared/chat/conversations-list/index.native.js index <HASH>..<HASH> 100644 --- a/shared/chat/conversations-list/index.native.js +++ b/shared/chat/conversations-list/index.native.js @@ -97,9 +97,7 @@ const BottomLine = ({participantNeedToRekey, youNeedToRekey...
Fix cut off emoji on Android conversation list
keybase_client
train
3f6b55a32064d370cfc648393c22254ac48d2c4c
diff --git a/src/services/line-stat-getter.js b/src/services/line-stat-getter.js index <HASH>..<HASH> 100644 --- a/src/services/line-stat-getter.js +++ b/src/services/line-stat-getter.js @@ -1,10 +1,7 @@ /* eslint-disable no-underscore-dangle */ import _ from 'lodash'; import P from 'bluebird'; -import moment from '...
fix: switched moment to moment-tz for line-stat-getter (#<I>)
ForestAdmin_forest-express-mongoose
train
f125873c500b8ee2c5739551c2b7848c4ab47f01
diff --git a/src/utils/subscription-registry.js b/src/utils/subscription-registry.js index <HASH>..<HASH> 100644 --- a/src/utils/subscription-registry.js +++ b/src/utils/subscription-registry.js @@ -187,12 +187,12 @@ class SubscriptionRegistry { * * @param {String} name the name/topic the subscriber was ...
style(subscription-registry): Rename sender to socket.
deepstreamIO_deepstream.io
train
9938f524565bea089339bba3e051febe972a71de
diff --git a/src/bin/kittik-list.js b/src/bin/kittik-list.js index <HASH>..<HASH> 100644 --- a/src/bin/kittik-list.js +++ b/src/bin/kittik-list.js @@ -1,10 +1,7 @@ #!/usr/bin/env node -var program = require('commander'); +import program from 'commander'; program .option('--only-themes', 'Print out installed th...
refactor(cli): Split to sub-commands
ghaiklor_kittik
train
11e363325f80f7120ad071947c0f7bb60423bf01
diff --git a/CHANGES b/CHANGES index <HASH>..<HASH> 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +Release 2.0 (April 2, 2014) +--------------------------- + +* Stable release. + + Release 2.0rc2 (March, 2014) ---------------------------- @@ -53,6 +59,7 @@ This is a beta release. implies, it returns the dat...
Preparing for <I> release
django-treebeard_django-treebeard
train
a3ddce858c73789f6c51adcb4d5bb42e36fe34a6
diff --git a/lib/adhearsion/commands.rb b/lib/adhearsion/commands.rb index <HASH>..<HASH> 100644 --- a/lib/adhearsion/commands.rb +++ b/lib/adhearsion/commands.rb @@ -1,4 +1,5 @@ require 'fileutils' +require 'adhearsion/script_ahn_loader' module Adhearsion module CLI @@ -17,6 +18,14 @@ USAGE class << self...
When starting an app, fork inside the app's directory so bundler works right
adhearsion_adhearsion
train
866713f110c59640951aa2b5de3e7bf5188d66c0
diff --git a/dataset/freeze/format/fjson.py b/dataset/freeze/format/fjson.py index <HASH>..<HASH> 100644 --- a/dataset/freeze/format/fjson.py +++ b/dataset/freeze/format/fjson.py @@ -1,6 +1,6 @@ import json from datetime import datetime, date -from collections import defaultdict +from collections import defaultdict, ...
Order JSON freeze fields deterministically To avoid commits like [this one](<URL>) on Python 3
pudo_dataset
train
f756b2a9aa89e228cf34c0e343773225240205ed
diff --git a/lib/ruby-lint/definition/ruby_object.rb b/lib/ruby-lint/definition/ruby_object.rb index <HASH>..<HASH> 100644 --- a/lib/ruby-lint/definition/ruby_object.rb +++ b/lib/ruby-lint/definition/ruby_object.rb @@ -78,6 +78,13 @@ module RubyLint :method ] + ## + # String used to separate...
Defining constants using constant paths.
YorickPeterse_ruby-lint
train