hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
c1318f01498f5ec54c8f9d24de133c214499f2c3
diff --git a/src/nfc/llcp/pdu.py b/src/nfc/llcp/pdu.py index <HASH>..<HASH> 100644 --- a/src/nfc/llcp/pdu.py +++ b/src/nfc/llcp/pdu.py @@ -331,8 +331,8 @@ class ParameterExchange(ProtocolDataUnit): @property def wks_text(self): t = {0: "LLC", 1: "SDP", 4: "SNEP"} - l = [t.get(i, str(i)) for i ...
Correct flake8 complain about ambiguous variable name.
nfcpy_nfcpy
train
1d31eed26044e571401c292ae53d0ae154e08cf8
diff --git a/lib/simple_command.rb b/lib/simple_command.rb index <HASH>..<HASH> 100644 --- a/lib/simple_command.rb +++ b/lib/simple_command.rb @@ -35,14 +35,21 @@ module SimpleCommand @errors ||= {} end + def add_error(key, value) + errors[key] ||= [] + errors[key] << value + errors[key].uniq! + en...
refactors #add_error and #add_errors as public methods
nebulab_simple_command
train
ef56a9536b15795af2f3708f61c5f2b0f230c53a
diff --git a/nailgun/entities.py b/nailgun/entities.py index <HASH>..<HASH> 100644 --- a/nailgun/entities.py +++ b/nailgun/entities.py @@ -4093,6 +4093,8 @@ class LifecycleEnvironment( required=True, ), 'prior': entity_fields.OneToOneField(LifecycleEnvironment), + '...
Add registry name fields to Lifecycle Environment (#<I>)
SatelliteQE_nailgun
train
f13b79c4687108373ce5fb945ca57649d24dbd78
diff --git a/src/PDODecorator.php b/src/PDODecorator.php index <HASH>..<HASH> 100644 --- a/src/PDODecorator.php +++ b/src/PDODecorator.php @@ -1,8 +1,6 @@ <?php namespace F3\LazyPDO; -use PDO; - /** * PDO decorator, redirect calls to PDO methods * @@ -12,7 +10,7 @@ use PDO; * @author Alexey Karapetov <karape...
Update PDODecorator.php
f3ath_lazypdo
train
f7c882d55e26958d03c34c9718a964b9a8180da2
diff --git a/cmd/helm/completion.go b/cmd/helm/completion.go index <HASH>..<HASH> 100644 --- a/cmd/helm/completion.go +++ b/cmd/helm/completion.go @@ -21,61 +21,70 @@ import ( "os" "path/filepath" - "github.com/pkg/errors" "github.com/spf13/cobra" + + "helm.sh/helm/v3/cmd/helm/require" ) const completionDes...
feat(cmd): Subcommands for the completion command Making each shell a subcommand of the 'completion' has multiple advantages: - simplifies the code, - allows to have different flags for each shell, for example, a future `--no-descriptions` flag for fish only, - allows to tailor the help text per shell.
helm_helm
train
72766d9567c7fc95991de90340270a225072d721
diff --git a/lib/stevenson/application.rb b/lib/stevenson/application.rb index <HASH>..<HASH> 100644 --- a/lib/stevenson/application.rb +++ b/lib/stevenson/application.rb @@ -2,7 +2,7 @@ require 'thor' module Stevenson class Application < Thor - desc 'new PROJECT_NAME', 'generates a Jekyll at PROJECT_NAME' + ...
Refactor file placing for data and config
RootsRated_stevenson
train
f64823376338a3455a28c5d1033dc352b4a230a9
diff --git a/src/main/java/com/taskadapter/redmineapi/internal/RedmineDateParser.java b/src/main/java/com/taskadapter/redmineapi/internal/RedmineDateParser.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/taskadapter/redmineapi/internal/RedmineDateParser.java +++ b/src/main/java/com/taskadapter/redmineapi/inter...
Issue #<I> fix time zones in date parsing tests
taskadapter_redmine-java-api
train
bd017822d5d4693f3ebfa8713bf4b9f7d47ff88f
diff --git a/copy/copy.go b/copy/copy.go index <HASH>..<HASH> 100644 --- a/copy/copy.go +++ b/copy/copy.go @@ -152,18 +152,6 @@ func Image(ctx *types.SystemContext, policyContext *signature.PolicyContext, des canModifyManifest := len(sigs) == 0 manifestUpdates := types.ManifestUpdateOptions{} - srcConfigInfo := s...
Move config.json copying after manifest updates This location is better because a manifest update could change whether there even is a config json, or its contents. For now, this does not really change behavior.
containers_image
train
1be789ac1b275860a36ed146b957d8c3c1b37126
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ Hermione is a utility for integration testing of web pages using [WebdriverIO v4 - [Test Collection](#test-collection) - [Test Parser API](#test-parser-api) - [setController(name, methods)](#setco...
feat: add subscriptions to parser events for TestParserAPI
gemini-testing_hermione
train
38a38317dee5f2230d08be3f005560d6e9cb92db
diff --git a/rootpy/plotting/root2matplotlib.py b/rootpy/plotting/root2matplotlib.py index <HASH>..<HASH> 100644 --- a/rootpy/plotting/root2matplotlib.py +++ b/rootpy/plotting/root2matplotlib.py @@ -402,11 +402,11 @@ def bar(hists, hlist = _maybe_reversed(hists, reverse) toterr = bottom = None ...
update root2matplotlib and plotting.utils to new binning convention
rootpy_rootpy
train
26d60e6d73e641a471e901e9a2776654d11b39c4
diff --git a/lib/grit/submodule.rb b/lib/grit/submodule.rb index <HASH>..<HASH> 100644 --- a/lib/grit/submodule.rb +++ b/lib/grit/submodule.rb @@ -66,6 +66,7 @@ module Grit config[current]['id'] = (commit.tree/current).id elsif line =~ /^\t(\w+) = (.+)$/ config[current][$1] = $2 + ...
fix submodule config parsing to deal with arbitrary submodule names
mojombo_grit
train
6081c804384baeedfc0c437ade31e643ade507d7
diff --git a/Lib/glyphsLib/builder/builders.py b/Lib/glyphsLib/builder/builders.py index <HASH>..<HASH> 100644 --- a/Lib/glyphsLib/builder/builders.py +++ b/Lib/glyphsLib/builder/builders.py @@ -37,6 +37,7 @@ BRACKET_GLYPH_RE = re.compile( REVERSE_BRACKET_LABEL ) ) +BRACKET_GLYPH_SUFFIX_RE = re.compile(r...
Move BRACKET_GLYPH_SUFFIX_RE to other REs
googlefonts_glyphsLib
train
b70413d709f2f90b79252852a3f35f4b1de2526f
diff --git a/lib/tokyo_metro/app/renderer/station_facility/platform/info/normal/whole.rb b/lib/tokyo_metro/app/renderer/station_facility/platform/info/normal/whole.rb index <HASH>..<HASH> 100644 --- a/lib/tokyo_metro/app/renderer/station_facility/platform/info/normal/whole.rb +++ b/lib/tokyo_metro/app/renderer/station_...
<I>_<I> Bug fix - TokyoMetro::App::Renderer::StationFacility::Platform::Info::Normal::Whole
osorubeki-fujita_odpt_tokyo_metro
train
31fbef27fd2750a8c24ebef2743ac254ec68b439
diff --git a/stanza/models/tokenization/data.py b/stanza/models/tokenization/data.py index <HASH>..<HASH> 100644 --- a/stanza/models/tokenization/data.py +++ b/stanza/models/tokenization/data.py @@ -185,23 +185,28 @@ class DataLoader: return units, labels, features, raw_units def strings_startin...
Global shuffling of sentences during tokenizer training
stanfordnlp_stanza
train
ee0dadfe7893a418eed8e0cdbe1d2fb3c4847f47
diff --git a/test/all.rb b/test/all.rb index <HASH>..<HASH> 100644 --- a/test/all.rb +++ b/test/all.rb @@ -26,6 +26,7 @@ tests = %w( assembler worker overseer + logger end-to-end ) exit_statuses = [] diff --git a/test/overseer_spec.rb b/test/overseer_spec.rb index <HASH>..<HASH> 100644 --- a/test/oversee...
Overseer isn't guaranteed to have a log. Logger is
JScott_robot_sweatshop
train
4498d23d22ad3342c528a21ed03d33daba91e823
diff --git a/pkg/resources/aws/aws.go b/pkg/resources/aws/aws.go index <HASH>..<HASH> 100644 --- a/pkg/resources/aws/aws.go +++ b/pkg/resources/aws/aws.go @@ -654,10 +654,11 @@ func ListSubnets(cloud fi.Cloud, clusterName string) ([]*resources.Resource, err resourceTracker := &resources.Resource{ Name: FindNa...
Fix toolbox dump bug: store subnet in resource
kubernetes_kops
train
c46958ccf693e19f7da1de3f91c7057338a02fb5
diff --git a/Resources/public/js/resource/manager/manager.js b/Resources/public/js/resource/manager/manager.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/resource/manager/manager.js +++ b/Resources/public/js/resource/manager/manager.js @@ -56,7 +56,7 @@ * - zoom: a zoom value for thumbnails * ...
[CoreBundle] Fixed resource picker
claroline_Distribution
train
3507decf80162a13bbc74d4beb0b1dc4c3fefd4d
diff --git a/src/Generators/Webserver/Database/DatabaseGenerator.php b/src/Generators/Webserver/Database/DatabaseGenerator.php index <HASH>..<HASH> 100644 --- a/src/Generators/Webserver/Database/DatabaseGenerator.php +++ b/src/Generators/Webserver/Database/DatabaseGenerator.php @@ -136,6 +136,8 @@ class DatabaseGenerat...
configure host when deleting. (#<I>) noticed that this would error out with a undefined variable, 'host' when deleting website
tenancy_multi-tenant
train
8cd4f68f470c372e959045e7d4d58c0e0b50ad9a
diff --git a/config.py b/config.py index <HASH>..<HASH> 100644 --- a/config.py +++ b/config.py @@ -17,7 +17,7 @@ EXTENSIONS = [ 'invenio.ext.assets', 'invenio.ext.template', 'invenio.ext.admin', - 'invenio.ext.logger', + 'invenio.ext.logging', 'invenio.ext.gravatar', 'invenio.ext.menu:Men...
base: errorlib and logger consolidation NOTE: beware, patch amended by Tibor to use new file names
inveniosoftware_invenio-base
train
e27a98ef7104cffe723ecc3a0bc17f7be1fb00ba
diff --git a/src/main/java/org/gitlab4j/api/GitLabApiClient.java b/src/main/java/org/gitlab4j/api/GitLabApiClient.java index <HASH>..<HASH> 100755 --- a/src/main/java/org/gitlab4j/api/GitLabApiClient.java +++ b/src/main/java/org/gitlab4j/api/GitLabApiClient.java @@ -480,10 +480,13 @@ public class GitLabApiClient { ...
Mods to post() methods to ensure content-length header is included.
gmessner_gitlab4j-api
train
32eb232ada3c3f37685be15f7a4265a682e71366
diff --git a/php/commands/core.php b/php/commands/core.php index <HASH>..<HASH> 100644 --- a/php/commands/core.php +++ b/php/commands/core.php @@ -1409,7 +1409,9 @@ EOT; } else { WP_CLI::error( 'Nightly builds are only available in .zip format.' ); } - } elseif ( 'en_US' === $locale ) { + } + + if ( 'en...
Split ifelse statement up for readability.
wp-cli_extension-command
train
049874ac4975312584f5124dfd23d6b5ac1c0d1a
diff --git a/f5/bigip/resource.py b/f5/bigip/resource.py index <HASH>..<HASH> 100644 --- a/f5/bigip/resource.py +++ b/f5/bigip/resource.py @@ -84,6 +84,10 @@ from f5.bigip.mixins import ToDictMixin from requests.exceptions import HTTPError +class RequestParamKwargCollision(Exception): + pass + + class KindType...
Handle rp and kwargs collisions in general Only load and exists have a real chance of collision.
F5Networks_f5-common-python
train
aecf7819c923732825e1a29242012ff7afb263e2
diff --git a/org.jenetics/src/main/java/org/jenetics/internal/collection/ArrayProxyMSeq.java b/org.jenetics/src/main/java/org/jenetics/internal/collection/ArrayProxyMSeq.java index <HASH>..<HASH> 100644 --- a/org.jenetics/src/main/java/org/jenetics/internal/collection/ArrayProxyMSeq.java +++ b/org.jenetics/src/main/jav...
Reimplementation of MSeq.shuffle methtod.
jenetics_jenetics
train
71c6f36b752b5881e91b48e887602752d0e58d8a
diff --git a/lxd/migration/migration_volumes.go b/lxd/migration/migration_volumes.go index <HASH>..<HASH> 100644 --- a/lxd/migration/migration_volumes.go +++ b/lxd/migration/migration_volumes.go @@ -145,6 +145,8 @@ func MatchTypes(offer MigrationHeader, fallbackType MigrationFSType, ourTypes [] var offeredFeatures ...
lxd/migration/migration/volumes: Adds BTRFS feature support to MatchTypes
lxc_lxd
train
1a8c6cf1c79a3ec1a9692ccc9fa5385f473eb1c8
diff --git a/src/js/pannellum.js b/src/js/pannellum.js index <HASH>..<HASH> 100644 --- a/src/js/pannellum.js +++ b/src/js/pannellum.js @@ -362,6 +362,9 @@ function onDocumentMouseMove(event) { } function onDocumentMouseUp() { + if (!isUserInteracting) { + return; + } isUserInteracting = false; ...
Fix bug where inertia stops when mouse leaves iframe (Chrome specific).
mpetroff_pannellum
train
cb3bf713b5a48bb84ba39e96cd14c0d90eb807d1
diff --git a/components/header/services.js b/components/header/services.js index <HASH>..<HASH> 100644 --- a/components/header/services.js +++ b/components/header/services.js @@ -63,7 +63,7 @@ export default class Services extends PureComponent { ); } - const sortedServices = services.sort(Services.sor...
Header Services: Don't mutate props
JetBrains_ring-ui
train
7da97eb485eb0a57d56ed4e49faebd540129720a
diff --git a/ProviGen/project.properties b/ProviGen/project.properties index <HASH>..<HASH> 100644 --- a/ProviGen/project.properties +++ b/ProviGen/project.properties @@ -12,4 +12,4 @@ # Project target. target=android-16 -android.library=false +android.library=true diff --git a/ProviGen/src/com/tjeannin/provigen/an...
Added JavaDoc on annotations.
TimotheeJeannin_ProviGen
train
597125f42a436c038d50cd3a4f60301125f45922
diff --git a/pytelemetry/test/test_pure_decoding.py b/pytelemetry/test/test_pure_decoding.py index <HASH>..<HASH> 100644 --- a/pytelemetry/test/test_pure_decoding.py +++ b/pytelemetry/test/test_pure_decoding.py @@ -34,3 +34,74 @@ def test_some_frames(): assert t._decode_frame(bytearray.fromhex("0300636d70740029000...
Added tests to validate framing monitoring
Overdrivr_pytelemetry
train
7b8a159e62e2724c3fc552a4ce7b523ba51b8a9e
diff --git a/logbook-core/src/main/java/org/zalando/logbook/JsonHttpLogFormatter.java b/logbook-core/src/main/java/org/zalando/logbook/JsonHttpLogFormatter.java index <HASH>..<HASH> 100644 --- a/logbook-core/src/main/java/org/zalando/logbook/JsonHttpLogFormatter.java +++ b/logbook-core/src/main/java/org/zalando/logbook...
Exposed useful methods in JsonHttpLogFormatter This allows clients to utilize the capabilities of the class while being able to add additional properties. This fixes #<I>
zalando_logbook
train
4c1e061dbcd156c7e6a326b2ae7fd92ba0db3835
diff --git a/fsutil/fsutil.go b/fsutil/fsutil.go index <HASH>..<HASH> 100644 --- a/fsutil/fsutil.go +++ b/fsutil/fsutil.go @@ -10,6 +10,11 @@ import ( // CleanPath resolves common aliases in a path and cleans it as much as possible func CleanPath(path string) string { + if fi, err := os.Lstat(path); err == nil { + ...
Make gopass work if root password store directory is a symlink (#<I>) * Fixes #<I> * Going at this a different way... I should be doing symlink checking in fsutil.CleanPath, so I've moved it there. We now pass unit and integration tests.
gopasspw_gopass
train
0c4886d4ce58bdef9705461cc74e65bdaa8ead4d
diff --git a/store/src/main/java/com/buschmais/jqassistant/core/store/impl/EmbeddedGraphStore.java b/store/src/main/java/com/buschmais/jqassistant/core/store/impl/EmbeddedGraphStore.java index <HASH>..<HASH> 100644 --- a/store/src/main/java/com/buschmais/jqassistant/core/store/impl/EmbeddedGraphStore.java +++ b/store/s...
limit Neo4j page cache memory to <I>MB
buschmais_jqa-core-framework
train
bad164db403d378e15de738f8ac632f011575aaf
diff --git a/lib/stacked_config/layers/generic_layer.rb b/lib/stacked_config/layers/generic_layer.rb index <HASH>..<HASH> 100644 --- a/lib/stacked_config/layers/generic_layer.rb +++ b/lib/stacked_config/layers/generic_layer.rb @@ -13,6 +13,30 @@ module StackedConfig rescan end + private + + ...
Moved file setup to Generic layer
lbriais_stacked_config
train
ca191efd4d622e729fe3734943336a616d0c3b45
diff --git a/reformulation-core/src/main/java/it/unibz/krdb/obda/owlrefplatform/core/dagjgrapht/NamedDescriptionDAGImpl.java b/reformulation-core/src/main/java/it/unibz/krdb/obda/owlrefplatform/core/dagjgrapht/NamedDescriptionDAGImpl.java index <HASH>..<HASH> 100644 --- a/reformulation-core/src/main/java/it/unibz/krdb/...
changes in named descripton dag eqivalences
ontop_ontop
train
0cf637c6e2ff4ce8e6e58e5d43598ca04e9e7cf1
diff --git a/meshio/med_io.py b/meshio/med_io.py index <HASH>..<HASH> 100644 --- a/meshio/med_io.py +++ b/meshio/med_io.py @@ -9,73 +9,49 @@ I/O for MED/Salome, cf. import numpy +meshio_to_med_type = { + 'triangle': 'TR3', + 'tetra': 'TE4', + 'hexahedron': 'HE8', + 'quad': 'QU4', + 'vertex': 'PO1', ...
med: some cleanups in reading
nschloe_meshio
train
6f403667e06f981b63e6179a5fffa278511cc4ac
diff --git a/mangopay/fields.py b/mangopay/fields.py index <HASH>..<HASH> 100644 --- a/mangopay/fields.py +++ b/mangopay/fields.py @@ -295,7 +295,10 @@ class DisputeReasonField(Field): class RefundReasonField(Field): def python_value(self, value): if value is not None: - return Reason(type=val...
fix RefundReasonField to support payout refunds
Mangopay_mangopay2-python-sdk
train
d06b191990a57a9cad23f84b232f7f235923f3a5
diff --git a/__snapshots__/index.spec.js.snap b/__snapshots__/index.spec.js.snap index <HASH>..<HASH> 100644 --- a/__snapshots__/index.spec.js.snap +++ b/__snapshots__/index.spec.js.snap @@ -262,6 +262,21 @@ exports[`markdown-to-jsx compiler arbitrary HTML #181 handling of figure blocks `; +exports[`markdown-to-j...
fix detection of fenced code blocks inside arbitrary HTML
probablyup_markdown-to-jsx
train
becc61818fb0d311fccc97b7e1e8ae7f6e89a5ae
diff --git a/axes/tests/test_utils.py b/axes/tests/test_utils.py index <HASH>..<HASH> 100644 --- a/axes/tests/test_utils.py +++ b/axes/tests/test_utils.py @@ -187,6 +187,22 @@ class UtilsTest(TestCase): self.assertEqual(expected, actual) + @override_settings(AXES_USERNAME_FORM_FIELD='username') + @ov...
Add another test case for AXES_USERNAME_CALLABLE
jazzband_django-axes
train
62585f3a41ca04c411190780eb693a36b80bb9af
diff --git a/build-tools/gulp-tasks/build-styles/tests/basics/gulpfile.js b/build-tools/gulp-tasks/build-styles/tests/basics/gulpfile.js index <HASH>..<HASH> 100644 --- a/build-tools/gulp-tasks/build-styles/tests/basics/gulpfile.js +++ b/build-tools/gulp-tasks/build-styles/tests/basics/gulpfile.js @@ -10,6 +10,7 @@ con...
Ensuring Sass testing is consistent and not contingent on Production setting.
bolt-design-system_bolt
train
e31fe56010b4be075444c8b11f691bd84524a4db
diff --git a/_pydevd_bundle/pydevd_signature.py b/_pydevd_bundle/pydevd_signature.py index <HASH>..<HASH> 100644 --- a/_pydevd_bundle/pydevd_signature.py +++ b/_pydevd_bundle/pydevd_signature.py @@ -7,7 +7,7 @@ else: trace._warn = lambda *args: None # workaround for http://bugs.python.org/issue17143 (PY-8706) ...
Tests: fix import error (cherry picked from commit <I>dec<I>)
fabioz_PyDev.Debugger
train
50e9f9720446b5053b81e2b3223622a66816ed41
diff --git a/calligraphy/src/main/java/uk/co/chrisjenx/calligraphy/CalligraphyFactory.java b/calligraphy/src/main/java/uk/co/chrisjenx/calligraphy/CalligraphyFactory.java index <HASH>..<HASH> 100644 --- a/calligraphy/src/main/java/uk/co/chrisjenx/calligraphy/CalligraphyFactory.java +++ b/calligraphy/src/main/java/uk/co...
Catch Resources.NotFoundException in utils method instead of throwing it.
chrisjenx_Calligraphy
train
2cdba92f861427c2fde9797b03fb60f8a632ee9e
diff --git a/test/markers.test.js b/test/markers.test.js index <HASH>..<HASH> 100644 --- a/test/markers.test.js +++ b/test/markers.test.js @@ -61,8 +61,7 @@ it('correctly localizes zipped json', function(done) { "name": "polygons-zipped", "Datasource": { "file": pa...
Remove layer_by_index from expected results in tests
tilemill-project_millstone
train
0ec9f3351fb2463a811fa35512cbbb1f9aedac9f
diff --git a/src/Connection/Aggregate/SentinelReplication.php b/src/Connection/Aggregate/SentinelReplication.php index <HASH>..<HASH> 100644 --- a/src/Connection/Aggregate/SentinelReplication.php +++ b/src/Connection/Aggregate/SentinelReplication.php @@ -62,7 +62,7 @@ class SentinelReplication extends MasterSlaveReplic...
Cap the number of retries on connection failure. I think it is better to have a default limit to the number of attempts when trying to send a command after a connection failure, I am just not sure if <I> is a good value but we can adjust it later.
nrk_predis
train
21da489e74c7eb4c107e7fab183f0645e021d7fc
diff --git a/bbq/bbq.gemspec b/bbq/bbq.gemspec index <HASH>..<HASH> 100644 --- a/bbq/bbq.gemspec +++ b/bbq/bbq.gemspec @@ -26,7 +26,6 @@ Gem::Specification.new do |s| s.add_development_dependency "sqlite3", "~> 1.3.3" s.add_development_dependency "rdoc", "~> 3.7" s.add_development_dependency "devise...
Rack as a more general Sinatra test with less dependencies.
drugpl_bbq
train
428917f05640b3d546e511a2a25a26053713027a
diff --git a/sphinxcontrib/chapeldomain/__init__.py b/sphinxcontrib/chapeldomain/__init__.py index <HASH>..<HASH> 100644 --- a/sphinxcontrib/chapeldomain/__init__.py +++ b/sphinxcontrib/chapeldomain/__init__.py @@ -31,7 +31,7 @@ from sphinx.util.nodes import make_refnode from sphinxcontrib.chapeldomain.chapel import...
Update the version number for next release ahead of time ----
chapel-lang_sphinxcontrib-chapeldomain
train
c52520166be48299b589dbccd7d1ee22b1095ffb
diff --git a/activerecord/lib/active_record/test_case.rb b/activerecord/lib/active_record/test_case.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/test_case.rb +++ b/activerecord/lib/active_record/test_case.rb @@ -50,7 +50,11 @@ module ActiveRecord end def assert_no_queries(&block) + ...
Make assert_no_queries literally enforce that there are no queries. As in, not a single line of SQL should be sent to the database, not even stuff that is ignored by assert_queries. The argument being that if you write assert_no_queries, you really do not want there to be any queries.
rails_rails
train
d659d21a87e5f8326efa49c5851d050f4cbcc4ff
diff --git a/tests/minitest.py b/tests/minitest.py index <HASH>..<HASH> 100644 --- a/tests/minitest.py +++ b/tests/minitest.py @@ -21,10 +21,6 @@ def msg(message): return '{0}\n{1}\n{0}'.format('-' * 80, message) -class TimeOutException(Exception): - pass - - class ExtendedDict(dict): def __getattr__(...
Added and test and updated an extension flag.
FSX_misaka
train
f1b8551ce3505e8ba4d26af50c43a3962e16b344
diff --git a/main/core/Manager/UserManager.php b/main/core/Manager/UserManager.php index <HASH>..<HASH> 100644 --- a/main/core/Manager/UserManager.php +++ b/main/core/Manager/UserManager.php @@ -1572,22 +1572,43 @@ class UserManager */ public function bindUserToOrganization() { + $limit = 2000; +...
[CoreBundle] UserManager:bindUserToOrganization() method performance … (#<I>) * [CoreBundle] UserManager:bindUserToOrganization() method performance significantly increased for a large amount of users (it's probably over <I>x times faster when the number is over <I>k).
claroline_Distribution
train
1eaf30d55697db4df07729e44384b84645870378
diff --git a/flask_session_captcha/__init__.py b/flask_session_captcha/__init__.py index <HASH>..<HASH> 100644 --- a/flask_session_captcha/__init__.py +++ b/flask_session_captcha/__init__.py @@ -7,8 +7,12 @@ from flask import session, request, Markup class FlaskSessionCaptcha(object): - def __init__(self, app):...
Added support for init_app to follow the flask-ext standard better. Cleaned up the code a bit.
Tethik_flask-session-captcha
train
d3fd327d940eaad67ce8c123c70c1e7caf628e7f
diff --git a/ghost/admin/views/settings.js b/ghost/admin/views/settings.js index <HASH>..<HASH> 100644 --- a/ghost/admin/views/settings.js +++ b/ghost/admin/views/settings.js @@ -408,14 +408,16 @@ afterRender: function () { var self = this; + Countable.live(document.getElementById('...
Cache selector in afterRender function - cache selector in a variable to prevent recomputing it in the function.
TryGhost_Ghost
train
c0bf5778c9556fbfecce5800c07a85cebca00ec0
diff --git a/pkg/blobserver/blobpacked/blobpacked.go b/pkg/blobserver/blobpacked/blobpacked.go index <HASH>..<HASH> 100644 --- a/pkg/blobserver/blobpacked/blobpacked.go +++ b/pkg/blobserver/blobpacked/blobpacked.go @@ -92,6 +92,7 @@ import ( "fmt" "io" "log" + "os" "runtime" "strings" "sync" @@ -154,6 +155,...
blobpacked: add storage.Logf method; log to T in tests Also address the unnecessary goroutine TODO. Change-Id: I3a<I>f<I>df4bc0a<I>e<I>bc<I>ee9dc<I>c
perkeep_perkeep
train
f5f55fe173502ef78c9bd5601a17e6673f896aa3
diff --git a/src/file/formatter/File.php b/src/file/formatter/File.php index <HASH>..<HASH> 100644 --- a/src/file/formatter/File.php +++ b/src/file/formatter/File.php @@ -6,6 +6,7 @@ use League\Flysystem\FilesystemInterface; use tkanstantsin\fileupload\config\InvalidConfigException; use tkanstantsin\fileupload\format...
formatter - apply new method for generating models
t-kanstantsin_fileupload
train
c41959ef1af0d60e36039fc608fcfb060bf9a969
diff --git a/lib/mongoid/criteria.rb b/lib/mongoid/criteria.rb index <HASH>..<HASH> 100644 --- a/lib/mongoid/criteria.rb +++ b/lib/mongoid/criteria.rb @@ -103,7 +103,7 @@ module Mongoid #:nodoc: @count ||= @klass.collection.find(@selector, process_options).count end - # Translate the supplied argument ...
Updating Criteria#fuse and named scopes to accept method calls as hash keys
mongodb_mongoid
train
f4bf83d0df914c15a63f2362f0adc7485f2e709f
diff --git a/src/test/org/openscience/cdk/qsar/descriptors/molecular/BCUTDescriptorTest.java b/src/test/org/openscience/cdk/qsar/descriptors/molecular/BCUTDescriptorTest.java index <HASH>..<HASH> 100644 --- a/src/test/org/openscience/cdk/qsar/descriptors/molecular/BCUTDescriptorTest.java +++ b/src/test/org/openscience/...
Added a unit test (currently fails) to check that desc values for a molecule derived from different (kekule and aromatic) SMILES match. The reason it fails now is due to a problem in partial charge and polarizabilty calculations git-svn-id: <URL>
cdk_cdk
train
ff0a178376d336845d68eccf693ca0f1f4031993
diff --git a/param/__init__.py b/param/__init__.py index <HASH>..<HASH> 100644 --- a/param/__init__.py +++ b/param/__init__.py @@ -1017,10 +1017,14 @@ class Tuple(Parameter): @classmethod def serialize(cls, value): + if value is None: + return 'null' return list(value) # As JSON h...
Added None serialization for Date, CalendarDate, Tuple, Array, and DataFrame (#<I>)
pyviz_param
train
68a4f649a906fe58d10af0bc4718f28466f39c49
diff --git a/lib/query-builder.js b/lib/query-builder.js index <HASH>..<HASH> 100644 --- a/lib/query-builder.js +++ b/lib/query-builder.js @@ -14,11 +14,6 @@ function parseExpression (entp, sTypes, current_name, current_value, params, val processed: true } - if (operator.current_name) { - parseOperation(e...
refactored recursive call
senecajs-labs_seneca-standard-query
train
7df18ac27ddb28200b8d867dac638e4cd10b9521
diff --git a/AlgorithmManager.php b/AlgorithmManager.php index <HASH>..<HASH> 100644 --- a/AlgorithmManager.php +++ b/AlgorithmManager.php @@ -21,11 +21,9 @@ class AlgorithmManager private $algorithms = []; /** - * AlgorithmManager constructor. - * * @param Algorithm[] $algorithms */ - ...
Data collector messages (#<I>) * New colors + new template organization * DataCollector updated * JWE/JWS event collections * Header/Claim check events
web-token_jwt-core
train
345bab1ad2c9e8dce0247464e2da8190e49295e3
diff --git a/integration_test.py b/integration_test.py index <HASH>..<HASH> 100755 --- a/integration_test.py +++ b/integration_test.py @@ -97,7 +97,7 @@ class IntegrationTest(unittest.TestCase): '13.1.1-16714', '13.2.2-17585', '13.3.1-18130', -# '13.4.0-18334', + '13.4.0-18334',...
Try again with <I> in tested versions.
gocd-contrib_gomatic
train
58d53b72bf2d7fcb3f7ebfa19b2f22d5bae76268
diff --git a/plugins/ws.js b/plugins/ws.js index <HASH>..<HASH> 100644 --- a/plugins/ws.js +++ b/plugins/ws.js @@ -1,5 +1,6 @@ var WS = require('pull-ws') var URL = require('url') +var pull = require('pull-stream/pull') module.exports = function (opts) { opts = opts || {} @@ -27,6 +28,8 @@ module.exports = func...
force ws client to be buffers
ssbc_multiserver
train
a014c30c3e6c99813e020f45d5981546b863f0ba
diff --git a/src/elements/Map.php b/src/elements/Map.php index <HASH>..<HASH> 100644 --- a/src/elements/Map.php +++ b/src/elements/Map.php @@ -115,6 +115,11 @@ class Map extends Element return new MapQuery(static::class); } + public function isValueEmpty (): bool + { + return empty($this->lat) && empty($this->l...
Add isValueEmpty to field and Map element
ethercreative_simplemap
train
edb99c6250be288b729d298ca90f791e3dcc1d44
diff --git a/src/AssetFilter.php b/src/AssetFilter.php index <HASH>..<HASH> 100644 --- a/src/AssetFilter.php +++ b/src/AssetFilter.php @@ -11,7 +11,6 @@ use RuntimeException; */ class AssetFilter implements AssetFilterInterface { - /** * Settings * @@ -24,10 +23,14 @@ class AssetFilter implements A...
Make AssetFilter::settings() return the settings. This is helpful for doing testing.
markstory_asset_compress
train
d9655336e1939f2f5b112aeed9b8ca38c400080b
diff --git a/src/com/dtmilano/android/adb/adbclient.py b/src/com/dtmilano/android/adb/adbclient.py index <HASH>..<HASH> 100644 --- a/src/com/dtmilano/android/adb/adbclient.py +++ b/src/com/dtmilano/android/adb/adbclient.py @@ -16,11 +16,12 @@ limitations under the License. @author: Diego Torres Milano ''' +import s...
Added ImageMagick's compare helper method
dtmilano_AndroidViewClient
train
1a6bd8ae2d6b9f31ddae672d6af6ed6228cb00ee
diff --git a/lib/fog/rackspace/requests/storage/get_object_https_url.rb b/lib/fog/rackspace/requests/storage/get_object_https_url.rb index <HASH>..<HASH> 100644 --- a/lib/fog/rackspace/requests/storage/get_object_https_url.rb +++ b/lib/fog/rackspace/requests/storage/get_object_https_url.rb @@ -33,8 +33,22 @@ module Fog...
Allow Rackspace-specific options for get_object_https_url
fog_fog
train
ca5d71e0402598aacd49486d55f7a0161e8c6390
diff --git a/app/models/shipit/pull_request.rb b/app/models/shipit/pull_request.rb index <HASH>..<HASH> 100644 --- a/app/models/shipit/pull_request.rb +++ b/app/models/shipit/pull_request.rb @@ -90,14 +90,17 @@ module Shipit end before_transition %i(fetching rejected canceled) => :pending do |pr| + ...
Add logging inside the merge queue to debug ordering issue
Shopify_shipit-engine
train
002a7149ca71d931e061b42f5520458ac60262f0
diff --git a/packages/electron-builder/src/forge/forge-maker.ts b/packages/electron-builder/src/forge/forge-maker.ts index <HASH>..<HASH> 100644 --- a/packages/electron-builder/src/forge/forge-maker.ts +++ b/packages/electron-builder/src/forge/forge-maker.ts @@ -1,7 +1,12 @@ import * as path from "path" import { buil...
feat(forge): support electron-forge <I> API
electron-userland_electron-builder
train
ad993179eabe982aa74ed173dff19c813bdc09b7
diff --git a/src/ChildMe.php b/src/ChildMe.php index <HASH>..<HASH> 100644 --- a/src/ChildMe.php +++ b/src/ChildMe.php @@ -137,7 +137,6 @@ class ChildMe extends Plugin $data = [ 'entryTypes' => $entryTypesMap, 'sites' => $siteMap, - ...
Removes code for Craft <<I> compatibility
mmikkel_ChildMe-Craft
train
31a899164a3cecde009dde13133570e40a8a0ae0
diff --git a/packages/aragon-wrapper/src/index.js b/packages/aragon-wrapper/src/index.js index <HASH>..<HASH> 100644 --- a/packages/aragon-wrapper/src/index.js +++ b/packages/aragon-wrapper/src/index.js @@ -1340,10 +1340,11 @@ export default class Aragon { * @param {Object} [options] * @param {string} [option...
Wrapper: fix no path found for intent baskets (#<I>)
aragon_aragon.js
train
23feb37a982d97da25e2af96515bd474ab0207bc
diff --git a/src/Symfony/Component/Routing/CompiledRoute.php b/src/Symfony/Component/Routing/CompiledRoute.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Routing/CompiledRoute.php +++ b/src/Symfony/Component/Routing/CompiledRoute.php @@ -22,21 +22,33 @@ class CompiledRoute private $tokens; privat...
[Routing] added hostname matching support to CompiledRoute
symfony_symfony
train
f98b40402f197e21d3c49b450293bf21dffab3d6
diff --git a/lib/author.rb b/lib/author.rb index <HASH>..<HASH> 100644 --- a/lib/author.rb +++ b/lib/author.rb @@ -7,42 +7,57 @@ module Ronin # Name of author attr_reader :name - # Author's contact information - attr_reader :contact + # Author's + attr_reader :address - # Biography + # A...
* Updated Author class. * Simplified parse_xml method.
ronin-ruby_ronin
train
af2ed58fccebff06bfc028fa124c84b51fb01013
diff --git a/src/Entity/Ranking.php b/src/Entity/Ranking.php index <HASH>..<HASH> 100644 --- a/src/Entity/Ranking.php +++ b/src/Entity/Ranking.php @@ -18,13 +18,13 @@ abstract class Ranking extends MPNContentEntityBase implements MPNEntityInterfac ); } - public abstract function getBaseTable(); + abstract p...
refactoring - clean Ranking abstract entity
mespronos_mespronos
train
18d6f840935ac40aa4db41054da70dbebf50d022
diff --git a/lib/support/pathToFolder.js b/lib/support/pathToFolder.js index <HASH>..<HASH> 100644 --- a/lib/support/pathToFolder.js +++ b/lib/support/pathToFolder.js @@ -8,9 +8,15 @@ module.exports = function(url, useHash) { const parsedUrl = urlParser.parse(decodeURIComponent(url)), pathSegments = parsedUrl.p...
Smarter structure of URLs using hash Follow the same pattern as with request parameters. See <URL>
sitespeedio_browsertime
train
ad9a6c2f5b6e705796f2d1c248589fa206064d14
diff --git a/cnxpublishing/views/admin.py b/cnxpublishing/views/admin.py index <HASH>..<HASH> 100644 --- a/cnxpublishing/views/admin.py +++ b/cnxpublishing/views/admin.py @@ -13,7 +13,7 @@ from .api_keys import get_api_keys @view_config(route_name='admin-index', request_method='GET', - renderer="cnxpub...
:bug: Update template paths in views after templates are moved
openstax_cnx-publishing
train
2c60625d7e808fed7d7df9aacb34563350a32a88
diff --git a/trie/iter.py b/trie/iter.py index <HASH>..<HASH> 100644 --- a/trie/iter.py +++ b/trie/iter.py @@ -4,7 +4,6 @@ from typing import ( ) from trie.exceptions import ( - FullDirectionalVisibility, PerfectVisibility, ) from trie.fog import ( @@ -129,15 +128,34 @@ class NodeIterator: def all(...
Speed NodeIterator.all() up again, about <I>%
ethereum_py-trie
train
4fa563ba24b7dbaa29613092e8b8a5a32c90bd5f
diff --git a/src/ChipInput.js b/src/ChipInput.js index <HASH>..<HASH> 100644 --- a/src/ChipInput.js +++ b/src/ChipInput.js @@ -230,7 +230,7 @@ class ChipInput extends React.Component { } handleKeyDown = (event) => { - if (event.keyCode === 13) { // enter + if (event.keyCode === this.props.newChipKeyCode) ...
feat: add newChipKeyCode prop to ChipInput component The newChipKeyCode prop (default <I>) is compared against the event keyCode in the onKeyDownHandler, if they match then a new chip is rendered.
TeamWertarbyte_material-ui-chip-input
train
4ec4609ed0a4084aff40310e318d5ef639b201e5
diff --git a/sftpclone/t/test_sftpclone.py b/sftpclone/t/test_sftpclone.py index <HASH>..<HASH> 100644 --- a/sftpclone/t/test_sftpclone.py +++ b/sftpclone/t/test_sftpclone.py @@ -722,3 +722,19 @@ def test_long_unicode_file(): assert _u(long_file) in {_u(c) for c in remote_files} _sync() + +@with_setup(teard...
add test for creating a remote directory
unbit_sftpclone
train
091d1da3f4f378666b78a6204473c7315274b1bf
diff --git a/airflow/decorators/task_group.py b/airflow/decorators/task_group.py index <HASH>..<HASH> 100644 --- a/airflow/decorators/task_group.py +++ b/airflow/decorators/task_group.py @@ -29,7 +29,7 @@ import attr from airflow.utils.task_group import MappedTaskGroup, TaskGroup if TYPE_CHECKING: - from airflow...
Fix MyPy issues in ``airflow/decorators`` and ``airflow/models`` (#<I>) Fix MyPy issues in ``airflow/decorators`` and ``airflow/models``
apache_airflow
train
db90a9918d06c626aef527616f698cf79f9b652d
diff --git a/odinweb/data_structures.py b/odinweb/data_structures.py index <HASH>..<HASH> 100644 --- a/odinweb/data_structures.py +++ b/odinweb/data_structures.py @@ -1,6 +1,5 @@ from __future__ import absolute_import -import copy import re from collections import namedtuple @@ -545,7 +544,7 @@ class MultiValueD...
Corrected some warnings from landscape.io
python-odin_odinweb
train
334340425d7c238b259e7eca0ce1b92dfbfdce6a
diff --git a/src/FieldHandlers/ImagesFieldHandler.php b/src/FieldHandlers/ImagesFieldHandler.php index <HASH>..<HASH> 100644 --- a/src/FieldHandlers/ImagesFieldHandler.php +++ b/src/FieldHandlers/ImagesFieldHandler.php @@ -17,7 +17,7 @@ class ImagesFieldHandler extends BaseFileFieldHandler protected function setDe...
Fetch default thumbnail size from plugin's configuration (task #<I>)
QoboLtd_cakephp-csv-migrations
train
624f565bcf1455a4bf4a4439b1307a38a3af7520
diff --git a/src/path.js b/src/path.js index <HASH>..<HASH> 100644 --- a/src/path.js +++ b/src/path.js @@ -1140,7 +1140,7 @@ Snap.plugin(function (Snap, Element, Paper, glob) { ** * Utility method ** - * Find dot coordinates on the given cubic bezier curve at the given t. + * Find dot coordina...
EDIT: accented bezier
adobe-webplatform_Snap.svg
train
1bf024b383014eb7ba5dd88245d7321999d01ca0
diff --git a/src/ResizeSensor.js b/src/ResizeSensor.js index <HASH>..<HASH> 100644 --- a/src/ResizeSensor.js +++ b/src/ResizeSensor.js @@ -79,8 +79,8 @@ return; } - if ('onresize' in element) { - //internet explorer + if ('onresize' in element && 11 >...
Fixed #<I> - resize detection didn't work in chrome anymore. Chrome <I> introduced a new element property 'onresize' which doesn't work and blows up our 'onresize' detection.
marcj_css-element-queries
train
bade7fbe40dfe5c1af82bc4637f1f35bfcc03e19
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ - CHANGED: List.Select() is no longer exported. This was an experimental method and it's now kept private as the Find() implementation may change in the future. +- CHANGED: List.Find() now ret...
List.Find() now returns a pointer to a Rule, and not a Rule That's because Find() can actually return `nil` if the DefaultRule find option is set. This is useful if you need to avoid the fallback to the default rule "*".
weppos_publicsuffix-go
train
b4a61f048bc765537131157bc472f29196465178
diff --git a/src/Sylius/Bundle/AdminApiBundle/SyliusAdminApiBundle.php b/src/Sylius/Bundle/AdminApiBundle/SyliusAdminApiBundle.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Bundle/AdminApiBundle/SyliusAdminApiBundle.php +++ b/src/Sylius/Bundle/AdminApiBundle/SyliusAdminApiBundle.php @@ -27,12 +27,4 @@ final class Sy...
Try to auto-detect a bundle's model namespace by default
Sylius_Sylius
train
6bea2c27db3cbd518c497d90b8a262f43da348ff
diff --git a/src/Discord/Discord.php b/src/Discord/Discord.php index <HASH>..<HASH> 100644 --- a/src/Discord/Discord.php +++ b/src/Discord/Discord.php @@ -560,7 +560,7 @@ class Discord $this->heartbeatTimer->cancel(); $this->heartbeatTimer = null; } - + if (! is_null(...
Added the `Member->setNickname` function
teamreflex_DiscordPHP
train
970c59733611c6e2a346ce544723e7055843f57a
diff --git a/batteries/log.py b/batteries/log.py index <HASH>..<HASH> 100644 --- a/batteries/log.py +++ b/batteries/log.py @@ -26,7 +26,7 @@ DEFAULT_LOGGING = { 'batteries.server': { 'class': 'batteries.log.ColoredFormatter', 'format': '%(asctime)s %(message)s', - 'datefmt'...
Log new messages from the webhooks
rougeth_bottery
train
338d64d3c5def98edefc812534b64efeeb20f422
diff --git a/copy/encrypt.go b/copy/encrypt.go index <HASH>..<HASH> 100644 --- a/copy/encrypt.go +++ b/copy/encrypt.go @@ -36,7 +36,6 @@ type bpDecryptionStepData struct { // srcInfo is only used for error messages. // Returns data for other steps; the caller should eventually use updateCryptoOperation. func (c *cop...
Beautify blobPipelineDecryptionStep a bit Should not change behavior.
containers_image
train
d6516e4577d63579022c606cf6ae18cdb8120f15
diff --git a/history/src/main/java/com/groupon/lex/metrics/history/TSDataVersionDispatch.java b/history/src/main/java/com/groupon/lex/metrics/history/TSDataVersionDispatch.java index <HASH>..<HASH> 100644 --- a/history/src/main/java/com/groupon/lex/metrics/history/TSDataVersionDispatch.java +++ b/history/src/main/java/...
Fix gzip detection in TSDataVersionDispatch.
groupon_monsoon
train
fb3d5cb2ad5789367093b409855a3937d651b572
diff --git a/prometheus/doc.go b/prometheus/doc.go index <HASH>..<HASH> 100644 --- a/prometheus/doc.go +++ b/prometheus/doc.go @@ -122,8 +122,8 @@ // the Collect method. The Describe method has to return separate Desc // instances, representative of the “throw-away” metrics to be created later. // NewDesc comes in h...
Fix some spelling errors (#<I>) * Fix some spelling errors
prometheus_client_golang
train
92a828376cb5f63c5060d3ff367b1cb37db195e4
diff --git a/impl/src/main/java/org/jboss/seam/faces/status/MessagesAdapter.java b/impl/src/main/java/org/jboss/seam/faces/status/MessagesAdapter.java index <HASH>..<HASH> 100644 --- a/impl/src/main/java/org/jboss/seam/faces/status/MessagesAdapter.java +++ b/impl/src/main/java/org/jboss/seam/faces/status/MessagesAdapte...
Include detail message in MessagesAdapter
seam_faces
train
682d299fc8f36c16fca6328d96d33b6cb55a90b3
diff --git a/driver-sync/src/test/functional/com/mongodb/client/JsonPoweredCrudTestHelper.java b/driver-sync/src/test/functional/com/mongodb/client/JsonPoweredCrudTestHelper.java index <HASH>..<HASH> 100644 --- a/driver-sync/src/test/functional/com/mongodb/client/JsonPoweredCrudTestHelper.java +++ b/driver-sync/src/tes...
Fix JsonPoweredCrudTestHelper (#<I>) The change stream cursors were not being closed, which was causing problems in downstream tests JAVA-<I>
mongodb_mongo-java-driver
train
b7bad8ec539d52cd0535f9f25c764aae79f9a958
diff --git a/src/mg/Ding/Cache/Impl/FileCacheImpl.php b/src/mg/Ding/Cache/Impl/FileCacheImpl.php index <HASH>..<HASH> 100644 --- a/src/mg/Ding/Cache/Impl/FileCacheImpl.php +++ b/src/mg/Ding/Cache/Impl/FileCacheImpl.php @@ -68,6 +68,7 @@ class FileCacheImpl implements ICache { $result = false; $fi...
when hitting the file cache, the stat cache is cleared for the given path
marcelog_Ding
train
bb0ee34082e717179aa4821673c5e56077509751
diff --git a/system/config/system.yaml b/system/config/system.yaml index <HASH>..<HASH> 100644 --- a/system/config/system.yaml +++ b/system/config/system.yaml @@ -42,5 +42,6 @@ assets: # Configuration for Assets Manager (JS, C debugger: enabled: false # Enable ...
Tentatively added twig panel to debugbar - currently has issues with "processpage" twig calls used by modular
getgrav_grav
train
40eb67b06adc0c3605691063db49d76bb597e22a
diff --git a/client/state/jetpack-connect/reducer/jetpack-connect-authorize.js b/client/state/jetpack-connect/reducer/jetpack-connect-authorize.js index <HASH>..<HASH> 100644 --- a/client/state/jetpack-connect/reducer/jetpack-connect-authorize.js +++ b/client/state/jetpack-connect/reducer/jetpack-connect-authorize.js @...
Jetpack connect: Use authorize schema (#<I>) * Update and use jetpackConnectAuthorize persistence schema
Automattic_wp-calypso
train
d0418222830f42f4f0c770e406f71454ea50e56d
diff --git a/CHANGES b/CHANGES index <HASH>..<HASH> 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,9 @@ jsoup changelog * Fixed handling of null characters within comments. <https://github.com/jhy/jsoup/issues/121> + * Tweaked escaped entity detection in attributes to not treat &entity_... as an entity form. +...
Tweaked escaped entity detection in attributes to not treat &entity_... as an entity form.
jhy_jsoup
train
e5a8957632af6d63a11f2cede856d45bb753c5b0
diff --git a/src/utils/props.js b/src/utils/props.js index <HASH>..<HASH> 100644 --- a/src/utils/props.js +++ b/src/utils/props.js @@ -92,6 +92,8 @@ const filterProps = not(hasKey([...Object.keys(PROPS_RESERVED), ...eventHandlers * @param {Object} newProps */ export function applyDefaultProps(instance, oldProps, n...
`applyDefaultProps` now returns a changed boolean to determine if it needs to render
inlet_react-pixi
train
0609abd6869871ff17a12d4550b9c10f5edf7e3c
diff --git a/katharsis-core/src/main/java/io/katharsis/jackson/serializer/BaseResponseSerializer.java b/katharsis-core/src/main/java/io/katharsis/jackson/serializer/BaseResponseSerializer.java index <HASH>..<HASH> 100644 --- a/katharsis-core/src/main/java/io/katharsis/jackson/serializer/BaseResponseSerializer.java +++ ...
#<I> added errors to the response (#<I>)
katharsis-project_katharsis-framework
train
e2e43bc23d2a81eb9c9214fb64f5fff3b95e6590
diff --git a/lib/Connection.js b/lib/Connection.js index <HASH>..<HASH> 100644 --- a/lib/Connection.js +++ b/lib/Connection.js @@ -228,6 +228,7 @@ class CDPSession extends EventEmitter { callback.reject(rewriteError(callback.error, `Protocol error (${callback.method}): Target closed.`)); this._callbacks.cle...
fix(page): navigating <I> pages simultaneously should not throw warning (#<I>) NavigatorWatcher subscribes to Connection to get a `Disconnected` event, causing us to hit the default max of <I> listeners constraint. Technically we don't leak anything here and can safely bump the maxListenersCount to Infinity. H...
GoogleChrome_puppeteer
train
57b432776a35b991fcd8a383580e86db4e8578ae
diff --git a/lxd/storage/drivers/driver_cephfs_utils.go b/lxd/storage/drivers/driver_cephfs_utils.go index <HASH>..<HASH> 100644 --- a/lxd/storage/drivers/driver_cephfs_utils.go +++ b/lxd/storage/drivers/driver_cephfs_utils.go @@ -1,12 +1,7 @@ package drivers import ( - "bufio" "fmt" - "os" - "strings" - - "githu...
lxd/storage/cephfs: Use new ceph parsing funtions
lxc_lxd
train
5f8ef8d368ba289249d9abb00995f17a4e0bfd74
diff --git a/lib/bionode-bwa.js b/lib/bionode-bwa.js index <HASH>..<HASH> 100644 --- a/lib/bionode-bwa.js +++ b/lib/bionode-bwa.js @@ -114,7 +114,7 @@ function BWA(args) { var sai obj.forEach(function(filename) { var filenameLC = filename.toLowerCase() - if (filenameLC.match(/\.(fasta|fa$|...
Add fna to extension regex for FASTA
bionode_bionode-bwa
train
1b5b336fb2112205608c25c6acbc90c7b7d7df40
diff --git a/lib/linux_admin/dns.rb b/lib/linux_admin/dns.rb index <HASH>..<HASH> 100644 --- a/lib/linux_admin/dns.rb +++ b/lib/linux_admin/dns.rb @@ -23,9 +23,9 @@ module LinuxAdmin end def save - contents = "search #{@search_order.join(" ")}\n" - @nameservers.each { |ns| contents += "nameserver ...
Allow removing of lines using Dns class
ManageIQ_linux_admin
train
36575241f5d08c02ac6ebf49c7594fb52ff56387
diff --git a/modules/wyrl/examples/quantifiers/Quantifiers$native.java b/modules/wyrl/examples/quantifiers/Quantifiers$native.java index <HASH>..<HASH> 100644 --- a/modules/wyrl/examples/quantifiers/Quantifiers$native.java +++ b/modules/wyrl/examples/quantifiers/Quantifiers$native.java @@ -6,11 +6,73 @@ public class Qu...
WyRL: added simplistic mechanism for finding triggers.
Whiley_WhileyCompiler
train
e2979d1f9fd785b5d8689af5866ec8bd8c65556d
diff --git a/tests/unit/core/oxshoplistTest.php b/tests/unit/core/oxshoplistTest.php index <HASH>..<HASH> 100644 --- a/tests/unit/core/oxshoplistTest.php +++ b/tests/unit/core/oxshoplistTest.php @@ -37,8 +37,24 @@ class Unit_Core_oxshoplistTest extends OxidTestCase { parent::setUp(); + $oDb = oxD...
Revert change to add test data for tests.
OXID-eSales_oxideshop_ce
train