hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
928a95b281e1d56659e83fc0a2fcb864716ba5eb
diff --git a/apollo-query.js b/apollo-query.js index <HASH>..<HASH> 100644 --- a/apollo-query.js +++ b/apollo-query.js @@ -204,7 +204,7 @@ export class ApolloQuery extends ApolloElement { async subscribe({ query = this.query, variables = this.variables }) { if (!hasAllVariables({ query, variables })) return; ...
Fixes a bug in ApolloQuery's error handling
apollo-elements_apollo-elements
train
js
139645aabf16e1b507a0f0f340a4f87f89275a9c
diff --git a/classes/PodsAdmin.php b/classes/PodsAdmin.php index <HASH>..<HASH> 100644 --- a/classes/PodsAdmin.php +++ b/classes/PodsAdmin.php @@ -156,6 +156,11 @@ class PodsAdmin { $old_pods = get_option( 'pods_version' ); $upgraded = get_option( 'pods_framework_upgraded_1_x' ); + if ( empty...
If no old Pods version detected, force Pods to not see the 1.x > <I> upgrade screen
pods-framework_pods
train
php
ea0bf81cd2b31bd44bf36ea0c2237c92c3448e87
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -26,9 +26,7 @@ function Client(uri, options) { return new Client(uri, options); } - assert.ok(options, 'Invalid options supplied'); - - this._options = options; + this._options = options || {};...
remove assertion for options since they are optional now
StorjOld_bridge-client-javascript
train
js
ed3c0675ddb7744b9ccc9dc15c55820c9e07d19a
diff --git a/config/config.php b/config/config.php index <HASH>..<HASH> 100644 --- a/config/config.php +++ b/config/config.php @@ -210,6 +210,9 @@ return [ * Execution middlewares */ 'execution_middleware' => [ - //\Rebing\GraphQL\Support\ExecutionMiddleware\UnusedVariablesMiddleware::class, + ...
Define the default set of execution middlewares
rebing_graphql-laravel
train
php
95c89e7e2250a32e2053b3d66628a5d2b414f9a5
diff --git a/src/commerce.js b/src/commerce.js index <HASH>..<HASH> 100644 --- a/src/commerce.js +++ b/src/commerce.js @@ -39,8 +39,11 @@ export function commerceItems (accountData) { return [] } + const buys = accountData.commerce.buys || [] + const sells = accountData.commerce.sells || [] + return [].c...
Fix commerce failing if the keys themselves are set but not populated
gw2efficiency_account-value
train
js,js
7b47692ec0daa1802d265fa1dd408a45a3a5872c
diff --git a/build.go b/build.go index <HASH>..<HASH> 100644 --- a/build.go +++ b/build.go @@ -239,8 +239,6 @@ func main() { // might have installed during "build.go setup". os.Setenv("PATH", fmt.Sprintf("%s%cbin%c%s", os.Getenv("GOPATH"), os.PathSeparator, os.PathListSeparator, os.Getenv("PATH"))) - checkArchite...
build: MacOS X is now macOS; don't presume to know all possible goarchs
syncthing_syncthing
train
go
4de6e2bd90392fbcf70804aa2347af7b80b5cd89
diff --git a/lib/ruby_odata/class_builder.rb b/lib/ruby_odata/class_builder.rb index <HASH>..<HASH> 100644 --- a/lib/ruby_odata/class_builder.rb +++ b/lib/ruby_odata/class_builder.rb @@ -110,6 +110,14 @@ module OData end end + props = self.class.properties + + # Convert a Int64 to a ...
Edm.Int<I> should be string formatted according to odata json spec
visoft_ruby_odata
train
rb
e87a4e322b4b1c2e89fedf709d1748aec4cfb7ba
diff --git a/p2p/net/upgrader/upgrader.go b/p2p/net/upgrader/upgrader.go index <HASH>..<HASH> 100644 --- a/p2p/net/upgrader/upgrader.go +++ b/p2p/net/upgrader/upgrader.go @@ -89,7 +89,7 @@ func (u *Upgrader) upgrade(ctx context.Context, t transport.Transport, maconn ma } smconn, err := u.setupMuxer(ctx, sconn, p) ...
improve correctness of closing connections on failure may be related to <URL>
libp2p_go-libp2p
train
go
a78f3849d14a3c6a5f2f457a5f17ec2a8ec401c9
diff --git a/aws/resource_aws_db_instance_test.go b/aws/resource_aws_db_instance_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_db_instance_test.go +++ b/aws/resource_aws_db_instance_test.go @@ -4,6 +4,7 @@ import ( "fmt" "log" "math/rand" + "os" "regexp" "strings" "testing" @@ -472,6 +473,11 @@...
tests/resource/aws_db_instance: Always run TestAccAWSDBInstance_ec2Classic in us-east-1
terraform-providers_terraform-provider-aws
train
go
361cda973eec96f5e40a4be4987b38f4d5c86309
diff --git a/pypika/queries.py b/pypika/queries.py index <HASH>..<HASH> 100644 --- a/pypika/queries.py +++ b/pypika/queries.py @@ -307,7 +307,7 @@ class QueryBuilder(Selectable, Term): self._from.append(Table(selectable) if isinstance(selectable, str) else selectable) - if isinstance(selectable, (Qu...
Fixed the subquery in FROM clause to not overwrite the alias
kayak_pypika
train
py
e78fd0858632d7ccd98c8245f85b5201b5d16ac0
diff --git a/app/models/shipit/rollback.rb b/app/models/shipit/rollback.rb index <HASH>..<HASH> 100644 --- a/app/models/shipit/rollback.rb +++ b/app/models/shipit/rollback.rb @@ -27,5 +27,15 @@ module Shipit def to_partial_path 'deploys/deploy' end + + private + + def create_commit_deployments + ...
Do not create CommitDeployment for rollbacks
Shopify_shipit-engine
train
rb
6b9cdd41743edd24a929074d62a57b84e7b2dd97
diff --git a/flink-optimizer/src/main/java/org/apache/flink/optimizer/plan/PlanNode.java b/flink-optimizer/src/main/java/org/apache/flink/optimizer/plan/PlanNode.java index <HASH>..<HASH> 100644 --- a/flink-optimizer/src/main/java/org/apache/flink/optimizer/plan/PlanNode.java +++ b/flink-optimizer/src/main/java/org/apa...
[hotfix] fix typo in the javadoc This closes #<I>
apache_flink
train
java
66e5229f826c5c4bcecca5daada4bee9bfeeeb5a
diff --git a/project_generator/tools/iar.py b/project_generator/tools/iar.py index <HASH>..<HASH> 100644 --- a/project_generator/tools/iar.py +++ b/project_generator/tools/iar.py @@ -135,11 +135,11 @@ class IAREmbeddedWorkbenchProject: self._set_option(ewp_dic[index_ilink]['data']['option'][index_option], proj...
IAR - fix lib, obj addition They are as list ,therefore we need to extract them.
project-generator_project_generator
train
py
6cfe0949d2d4ab089387d7ae1e27f21f271fe1f4
diff --git a/lib/database_cleaner/configuration.rb b/lib/database_cleaner/configuration.rb index <HASH>..<HASH> 100644 --- a/lib/database_cleaner/configuration.rb +++ b/lib/database_cleaner/configuration.rb @@ -42,7 +42,7 @@ module DatabaseCleaner def connections # double yuck.. can't wait to deprecate th...
Ensure @cleaners has been defined before reading
DatabaseCleaner_database_cleaner
train
rb
627ea5ee11a5714b45943726ba80ea91cf29305a
diff --git a/ceam/framework/engine.py b/ceam/framework/engine.py index <HASH>..<HASH> 100644 --- a/ceam/framework/engine.py +++ b/ceam/framework/engine.py @@ -64,7 +64,7 @@ class SimulationContext: post_processor=joint_value_post_processor, source=lambda index: NullValue(index)) - ...
fiddle declaration of value. This should really live in ceam_public_health
ihmeuw_vivarium
train
py
298437ab8654bf1d0bfb7931e1b4fdcfefc70107
diff --git a/lib/dicom/DObject.rb b/lib/dicom/DObject.rb index <HASH>..<HASH> 100644 --- a/lib/dicom/DObject.rb +++ b/lib/dicom/DObject.rb @@ -880,14 +880,9 @@ module DICOM # Removes all private data elements from the DICOM object. def remove_private - # Private data elemements have a group tag that i...
Simplified the remove_private method in the DObject class.
dicom_ruby-dicom
train
rb
63dcbc15c0893750baaf56f5ca735cd27e785fbd
diff --git a/greenwich/io.py b/greenwich/io.py index <HASH>..<HASH> 100644 --- a/greenwich/io.py +++ b/greenwich/io.py @@ -62,8 +62,8 @@ class VSIFile(object): def close(self): if not self.closed: - gdal.VSIFCloseL(self._vsif) self.closed = True + gdal.VSIFCloseL(self....
Add MemFileIO delete flag to free on close by default
bkg_greenwich
train
py
add0956ee6be58fe30271fc41f3a8bd1610cff9a
diff --git a/build-support/bin/_release_helper.py b/build-support/bin/_release_helper.py index <HASH>..<HASH> 100644 --- a/build-support/bin/_release_helper.py +++ b/build-support/bin/_release_helper.py @@ -794,7 +794,7 @@ def build_pex(fetch: bool) -> None: "CPython>=3.7,<3.10", *( ...
Bump release requirements to macos <I> (#<I>) <URL>
pantsbuild_pants
train
py
928886476c6cdd65fbb4c6edd240d4eda6775f9b
diff --git a/clickatell/http/__init__.py b/clickatell/http/__init__.py index <HASH>..<HASH> 100755 --- a/clickatell/http/__init__.py +++ b/clickatell/http/__init__.py @@ -57,8 +57,8 @@ class Http(Transport): # that could not be delivered is different from a failed request...so errors are returned # pe...
Sending multiple messages should result in the destination parameter containing the correct number in relation to the message.
arcturial_clickatell-python
train
py
dd41525d6a09027329251540bf1a6cd72f573693
diff --git a/proj/__init__.py b/proj/__init__.py index <HASH>..<HASH> 100755 --- a/proj/__init__.py +++ b/proj/__init__.py @@ -132,7 +132,7 @@ def _compress_and_archive(src_folder, dst_folder): try: shutil.make_archive(dst_folder, COMPRESS_FORMAT, src_folder) except Exception as e: - shutil.rm...
Fix the delete-on-failure case
larsyencken_proj
train
py
bcb33e15801d11c0e99a57f0d9a6d23bb340d2fe
diff --git a/ella/newman/media/js/related_lookup.js b/ella/newman/media/js/related_lookup.js index <HASH>..<HASH> 100644 --- a/ella/newman/media/js/related_lookup.js +++ b/ella/newman/media/js/related_lookup.js @@ -46,7 +46,7 @@ // FIXME: Filters still bogus! $('#filters').one('content_added',...
Filters in lupicka work. Yeah!
ella_ella
train
js
9d90891d806fca63d3d95d43d5175e574d6de779
diff --git a/hazelcast/src/main/java/com/hazelcast/core/IMap.java b/hazelcast/src/main/java/com/hazelcast/core/IMap.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/core/IMap.java +++ b/hazelcast/src/main/java/com/hazelcast/core/IMap.java @@ -401,14 +401,9 @@ public interface IMap<K, V> exte...
Correct javadoc for no-timeout setAsync
hazelcast_hazelcast
train
java
76fb3cbd536f6bc30d3a7f14b6865ffd5330b599
diff --git a/client/lib/react-helpers/index.js b/client/lib/react-helpers/index.js index <HASH>..<HASH> 100644 --- a/client/lib/react-helpers/index.js +++ b/client/lib/react-helpers/index.js @@ -5,15 +5,13 @@ import ReactDom from 'react-dom'; import React from 'react'; import { Provider as ReduxProvider } from 'react...
Refactor renderWithReduxStore to use named exports
Automattic_wp-calypso
train
js
24ac36be7150f97ac0a61cf7cbe7d212097ef1a6
diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/relation/finder_methods.rb +++ b/activerecord/lib/active_record/relation/finder_methods.rb @@ -383,7 +383,7 @@ module Active...
exclude ORDER BY clause for exists? (#<I>)
rails_rails
train
rb,rb
92f90278a409ef31918b12647990c13f8025d43c
diff --git a/packages/bonde-admin/src/components/post-donation/finish-post-donation.js b/packages/bonde-admin/src/components/post-donation/finish-post-donation.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin/src/components/post-donation/finish-post-donation.js +++ b/packages/bonde-admin/src/components/post-do...
feat(admin): refactor preview component
nossas_bonde-client
train
js
7c4eeae7ea7ac996c56a25a512132fb5f41d130f
diff --git a/tests/test_blob.py b/tests/test_blob.py index <HASH>..<HASH> 100644 --- a/tests/test_blob.py +++ b/tests/test_blob.py @@ -18,6 +18,9 @@ def test_pack(): x = np.int16(np.random.randn(1, 2, 3)) assert_array_equal(x, unpack(pack(x)), "Arrays do not match!") + x = {'name': 'Anonymous', 'age': 15...
Add simple test for packing and unpacking dict to/from blob
datajoint_datajoint-python
train
py
b2829b2573331da082958bd0c4734ec85128f5a0
diff --git a/tasks/simple_include.js b/tasks/simple_include.js index <HASH>..<HASH> 100644 --- a/tasks/simple_include.js +++ b/tasks/simple_include.js @@ -15,7 +15,10 @@ module.exports = function(grunt) { var dest = this.data.dest, options = this.options({ includeRegex: '{%.*?incl...
Added option to set a cutstom path resolver
lohmander_grunt-simple-include
train
js
5d1d378f61e4f614e8b7c2fdcd37c3b98dbacd0d
diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/CpeUpdater.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/CpeUpdater.java index <HASH>..<HASH> 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/CpeUpdater.java +...
Shouldn't CPE Updater use the CPE_MODIFIED_VALID_FOR_DAYS setting (not CVE)?
jeremylong_DependencyCheck
train
java
f711fae1e122bda0cf563d1194670bf3dcaa96f1
diff --git a/lib/solargraph/source.rb b/lib/solargraph/source.rb index <HASH>..<HASH> 100644 --- a/lib/solargraph/source.rb +++ b/lib/solargraph/source.rb @@ -93,7 +93,7 @@ module Solargraph # @param fqns [String] The namespace (nil for all) # @return [Array<Solargraph::Pin::Method>] def method_pins fqns...
Include attributes in Source method pins.
castwide_solargraph
train
rb
af51cbee5cea827ede54d6a6ec32af26b88c5056
diff --git a/process_isolation.py b/process_isolation.py index <HASH>..<HASH> 100644 --- a/process_isolation.py +++ b/process_isolation.py @@ -914,17 +914,6 @@ class IsolationContext(object): # Create a client to talk to the server self._client = Client(server_process, request_queue, response_queue) ...
Remove IsolationContext.restart because it is confusing to restart a context yet have all the existing referencs be invalid. Better to just create a new IsolationContext.
alexflint_process-isolation
train
py
1a1def37affdfb8cdefd2a187e66e2669deb1986
diff --git a/mailchimp3/helpers.py b/mailchimp3/helpers.py index <HASH>..<HASH> 100644 --- a/mailchimp3/helpers.py +++ b/mailchimp3/helpers.py @@ -52,13 +52,14 @@ def check_email(email): """ Function that verifies that the string passed is a valid email address. - Regex for email validation from http://e...
Switch back to regex matching Mailchimp's documentation, and update docstring.
VingtCinq_python-mailchimp
train
py
435f7368245cf9a957602ad65097248e66619db7
diff --git a/facepy/graph_api.py b/facepy/graph_api.py index <HASH>..<HASH> 100755 --- a/facepy/graph_api.py +++ b/facepy/graph_api.py @@ -111,7 +111,7 @@ class GraphAPI(object): ) for response, request in zip(responses, requests): - if 'body' in response: + if response: ...
Ah, of course, can't perform 'in' on None
jgorset_facepy
train
py
b52c9bea2a410cd7d9179344eb76358cd6d9ea0c
diff --git a/client/utils/auth.py b/client/utils/auth.py index <HASH>..<HASH> 100755 --- a/client/utils/auth.py +++ b/client/utils/auth.py @@ -40,8 +40,8 @@ highlight the URL, right-click, and select "Copy". """.strip() PASTE_MESSAGE = """ -After logging in, copy the code from the web page and paste it below. -To p...
Tell users to press Enter when pasting code (#<I>)
okpy_ok-client
train
py
45d5a4ac44aac2b0023239bcc5c1100ab4a6fcb1
diff --git a/tweepy/binder.py b/tweepy/binder.py index <HASH>..<HASH> 100644 --- a/tweepy/binder.py +++ b/tweepy/binder.py @@ -57,6 +57,12 @@ def bind_api(**config): else: self.host = api.host + # Manually set Host header to fix an issue in python 2.5 + # or older w...
Fix a bug that would result in a <I> redirect with python <I> or older using secure HTTPS. These versions of python include the port number in the host header. Twitter will send us a <I> when a host is provided in this manner. To avoid this redirect this patch manually sets the host w/o the port number. Fixes issue #...
tweepy_tweepy
train
py
abba89bd466c2f45ad5e2387001f8cd3bcb41bfe
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -34,11 +34,9 @@ setup(name='lettuce', author=u'Gabriel Falcao', author_email='gabriel@nacaolivre.org', url='http://github.com/gabrielfalcao/lettuce', - scripts = ['lettuce/lettuce'], packages=get_package...
Removed "scripts" entry from setup.py file. Using only "console_scripts", that also generates an executable file on Windows
aloetesting_aloe_django
train
py
849f36ab69986391ae551eaee49236b3f59a8fb2
diff --git a/src/greplin/scales/__init__.py b/src/greplin/scales/__init__.py index <HASH>..<HASH> 100644 --- a/src/greplin/scales/__init__.py +++ b/src/greplin/scales/__init__.py @@ -697,8 +697,13 @@ def collection(path, *stats): """Init method for the underlying stat object's class.""" init(self, path) - ...
ensure default values are included in status view
Cue_scales
train
py
4e864f5b42a22a03b710aa8c2c4faabca0884d9a
diff --git a/src/Ekreative/RedmineLoginBundle/Security/RedmineSimplePreAuthenticator.php b/src/Ekreative/RedmineLoginBundle/Security/RedmineSimplePreAuthenticator.php index <HASH>..<HASH> 100644 --- a/src/Ekreative/RedmineLoginBundle/Security/RedmineSimplePreAuthenticator.php +++ b/src/Ekreative/RedmineLoginBundle/Secu...
Allow both authenticators to work on the same firewall
ekreative_redmine-login
train
php
4814cd376a8d90bcfcbe3a33b5d991a12101e08a
diff --git a/src/main.js b/src/main.js index <HASH>..<HASH> 100644 --- a/src/main.js +++ b/src/main.js @@ -146,6 +146,7 @@ var extendCmInstance = function(yasqe) { yasqe.enableCompleter = function(name) { addCompleterToSettings(yasqe.options, name); + if (YASQE.Autocompleters[name]) yasqe.autocompleters.init(n...
enabling an autocompleter re-initializes it as well
OpenTriply_YASGUI.YASQE
train
js
fbd9fc8fee0636c8e7722afa77b75f267786997b
diff --git a/lib/VeresOneDriver.js b/lib/VeresOneDriver.js index <HASH>..<HASH> 100644 --- a/lib/VeresOneDriver.js +++ b/lib/VeresOneDriver.js @@ -306,8 +306,8 @@ class VeresOneDriver { // wrap DID Document in a web ledger operation const operation = await this.client.wrap( {didDocument, operationType:...
Fix attachment of capabilityAction during invocation.
veres-one_did-veres-one
train
js,js
8fe66ded421c6e0a80384437e82082d5cdb4867e
diff --git a/route.go b/route.go index <HASH>..<HASH> 100644 --- a/route.go +++ b/route.go @@ -12,6 +12,7 @@ type IRoute interface { SetBody(string) IRoute Log(string) IRoute Body() string + Header() Header } // Route is the struct that execute flow @@ -63,11 +64,16 @@ func (r *Route) Processor(p Processor) I...
:construction: add Body and Header methods
PMoneda_flow
train
go
c0b0ce7b1a0cd3d5001507ad0a7258d9d2345401
diff --git a/routers/repo/repo.go b/routers/repo/repo.go index <HASH>..<HASH> 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -203,9 +203,9 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) { } } - if strings.Contains(err.Error(), "Authentication failed") || - strings.Conta...
#<I> more general rule to detect error
gogs_gogs
train
go
574fcf5b1e32d7b0445a132854e3c5b1fd0d866d
diff --git a/kafka_scanner/tests/__init__.py b/kafka_scanner/tests/__init__.py index <HASH>..<HASH> 100644 --- a/kafka_scanner/tests/__init__.py +++ b/kafka_scanner/tests/__init__.py @@ -125,18 +125,20 @@ class FakeKafkaConsumer(FakeConsumer): def seek(self, partition, offset): self.offsets[partition.pa...
reinitialize iterator after seek
scrapinghub_kafka-scanner
train
py
9cf0d1f61854621e4df37d54e48c931e6fc9b821
diff --git a/scikitplot/plotters.py b/scikitplot/plotters.py index <HASH>..<HASH> 100644 --- a/scikitplot/plotters.py +++ b/scikitplot/plotters.py @@ -90,6 +90,7 @@ def plot_confusion_matrix(y_true, y_pred, labels=None, title=None, normalize=Fal if normalize: cm = cm.astype('float') / cm.sum(axis=1)[:, np...
Fix bug with nan values in confusion matrices (#<I>) Fix an issue where confusion matrices that contined rows with no entries would yield nan values when normalized.
reiinakano_scikit-plot
train
py
08e8e048c427d2a0acdb27fb0199776856037c99
diff --git a/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/it/ITSystemTest.java b/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/it/ITSystemTest.java index <HASH>..<HASH> 100644 --- a/java-container/google-cloud-container/src/test/java/com/google/cl...
fix: change the default node image to cos_containerd (#<I>)
googleapis_google-cloud-java
train
java
b97cdded81ad20e563b91c42f6fda65aa43963ca
diff --git a/lib/puppet/environments.rb b/lib/puppet/environments.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/environments.rb +++ b/lib/puppet/environments.rb @@ -49,6 +49,13 @@ module Puppet::Environments root.instance_variable_set(:@rich_data, nil) end end + + # The base implementation is ...
(PUP-<I>) Implement guard methods in base loader module Trying to compile a catalog using a DirectoryLoader failed because it didn't implement the guard/unguard methods. Add them to the base EnvironmentLoader module that is mixed into various environment loaders and is overriden in the Cached loader.
puppetlabs_puppet
train
rb,rb
26622c678f37e9692a77369e25e2b787dcf98886
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 @@ -2385,12 +2385,10 @@ class Editor(SpyderPluginWidget): """Debug current script""" self.run_file(debug=True) # Fixes 2034 - # ...
Debugging: Restore moving to first breakpoint by default There's no problem doing this now with the new approach to update the Variable Explorer from Pdb.
spyder-ide_spyder
train
py
47dbc57f3d009bfd069572bfd059ffb2f11385d0
diff --git a/uncompyle6/scanners/scanner3.py b/uncompyle6/scanners/scanner3.py index <HASH>..<HASH> 100644 --- a/uncompyle6/scanners/scanner3.py +++ b/uncompyle6/scanners/scanner3.py @@ -894,7 +894,7 @@ class Scanner3(Scanner): return pass ...
Reduce adding RETURN_END_IF in <I>+ The whole control flow determination has to be redone in a less haphazard way using real flow-control analysis. Hopefully that's on the way. In the meantime we have this hack.
rocky_python-uncompyle6
train
py
b9a02693ee8273b597689484e37d312bb8107d6f
diff --git a/src/Yaml/ParametersMerger.php b/src/Yaml/ParametersMerger.php index <HASH>..<HASH> 100644 --- a/src/Yaml/ParametersMerger.php +++ b/src/Yaml/ParametersMerger.php @@ -80,6 +80,7 @@ final class ParametersMerger if (isset($right[$key])) { $val = $mergeCallback($val, $righ...
[PHPStanRules] Rename NoTwigMissingMethodCallRule to TwigCompleteCheckRule (#<I>)
Symplify_PackageBuilder
train
php
1f301ef74381d51166b7d0312849cb514917953c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -250,7 +250,8 @@ setup( # # And include any *.csv files found in the 'ITER' package, too: # 'ITER': ['*.csv'], #}, - package_data={'tofu.tests.tests01_geom.tests03core_data':['*.py','*.txt']}, + pack...
Added *.txt data file from tf.geom.inputs in setup.py
ToFuProject_tofu
train
py,py
3bc65107354027637d16977312901e39c472d9d7
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/ba/Hierarchy.java b/findbugs/src/java/edu/umd/cs/findbugs/ba/Hierarchy.java index <HASH>..<HASH> 100644 --- a/findbugs/src/java/edu/umd/cs/findbugs/ba/Hierarchy.java +++ b/findbugs/src/java/edu/umd/cs/findbugs/ba/Hierarchy.java @@ -806,7 +806,7 @@ public class Hierarch...
in some very rare cases, field could in fact be null here git-svn-id: <URL>
spotbugs_spotbugs
train
java
4ea000c1d05da1ee5f55bd0c9ef9dfe8308505c6
diff --git a/src/components/inplace/Inplace.js b/src/components/inplace/Inplace.js index <HASH>..<HASH> 100644 --- a/src/components/inplace/Inplace.js +++ b/src/components/inplace/Inplace.js @@ -155,7 +155,7 @@ export class Inplace extends Component { } render() { - const className = classNames('ui-i...
Add separate class for closable case
primefaces_primereact
train
js
dcf872edbf2b50622c49128aad5a7bb50141e60f
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -50,21 +50,6 @@ if sys.argv[-1] == 'readme': sys.exit() -class PyTest(Command): - user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] - - def initialize_options(self): - self.pytest_arg...
Remove Pytest command from setup.py
audreyr_cookiecutter
train
py
5508edc0a0088bbbfc7afd8faf0c6597067e6f21
diff --git a/wfdb/io/download.py b/wfdb/io/download.py index <HASH>..<HASH> 100644 --- a/wfdb/io/download.py +++ b/wfdb/io/download.py @@ -49,29 +49,6 @@ def set_db_index_url(db_index_url=PN_INDEX_URL): config.db_index_url = db_index_url -def _get_url(url): - """ - Retrieve an entire remote file as bytes...
wfdb.io.download: remove _get_url function. This temporary function is no longer needed.
MIT-LCP_wfdb-python
train
py
5a934e56e798a2c8807e496099fade028d074012
diff --git a/drools-core/src/main/java/org/drools/base/DefaultKnowledgeHelper.java b/drools-core/src/main/java/org/drools/base/DefaultKnowledgeHelper.java index <HASH>..<HASH> 100644 --- a/drools-core/src/main/java/org/drools/base/DefaultKnowledgeHelper.java +++ b/drools-core/src/main/java/org/drools/base/DefaultKnowle...
JBRULES-<I> column fact handle used in consequences even for field bindings -handle is reset to null if its a bound field, knowledgehelper attempts to lookup the handle from the working memory if its null. git-svn-id: <URL>
kiegroup_drools
train
java
38b9e935f037cdf2ac7ec3016c99762ad8b37997
diff --git a/select2.js b/select2.js index <HASH>..<HASH> 100755 --- a/select2.js +++ b/select2.js @@ -1700,7 +1700,7 @@ this.parent.enable.apply(this, arguments); - this.search.show(); + this.search.removeAttr("disabled"); }, // multi @@ -1709,7 +1709,7 @@ ...
do not hide search field when disabled because it also hides the placeholder. fixes #<I>
select2_select2
train
js
87c011255b6a1e497ce647964ff0ad81e6589077
diff --git a/trepan/lib/deparse.py b/trepan/lib/deparse.py index <HASH>..<HASH> 100644 --- a/trepan/lib/deparse.py +++ b/trepan/lib/deparse.py @@ -7,8 +7,12 @@ from hashlib import sha1 from xdis import PYTHON_VERSION if 3.7 <= PYTHON_VERSION <= 3.8: - from decompyle3.semantics.linemap import code_deparse_with_ma...
Use uncompyle6 if decompyle3 is not around
rocky_python3-trepan
train
py
eda1617d601bcb32f809e702dc21237f054845d9
diff --git a/mockito/mocking.py b/mockito/mocking.py index <HASH>..<HASH> 100644 --- a/mockito/mocking.py +++ b/mockito/mocking.py @@ -185,6 +185,8 @@ class Mock(object): while self.original_methods: method_name, original_method = self.original_methods.popitem() self.restore_method(me...
Clear internal state when unstubbing See #<I> For plain `mock`s unstubbing did not reset their state. It works for patched objects because we first restore the old method away the mock object ("unregister"), hence there is no way to further access old recorded invocations. A mock is usually assigned to local variab...
kaste_mockito-python
train
py,py
5b29a985ae86f46fa33e761146b9114564e5ffed
diff --git a/commands/command_status.go b/commands/command_status.go index <HASH>..<HASH> 100644 --- a/commands/command_status.go +++ b/commands/command_status.go @@ -17,7 +17,7 @@ var ( func statusCommand(cmd *cobra.Command, args []string) { ref, err := gitmedia.CurrentRef() if err != nil { - Panic(err, "Could n...
I totally didn't copy and paste that ...
git-lfs_git-lfs
train
go
42b2b5a0e56e6c6e57da8ab0ddf5ced8541323ef
diff --git a/cmd_prove.go b/cmd_prove.go index <HASH>..<HASH> 100644 --- a/cmd_prove.go +++ b/cmd_prove.go @@ -153,6 +153,7 @@ func (v *CmdProve) PostProofToServer() (err error) { Id: *v.sigId, Supersede: v.supersede, RemoteUsername: v.usernameNormalized, + RemoteKey: v.st.GetApiArgKey()...
further fixes for dns proofs
keybase_client
train
go
a0b5f22dbd2cebff2d67a27ec4f6e952234e758e
diff --git a/quart/app.py b/quart/app.py index <HASH>..<HASH> 100644 --- a/quart/app.py +++ b/quart/app.py @@ -1156,7 +1156,7 @@ class Quart(PackageStatic): status = status_or_headers if not isinstance(value, Response): - response = self.response_class(value, content_type='text/html')...
Bugfix stop setting the content-type in make_response It should be using the defaults or set explicitly in the ResponseReturnValue.
pgjones_quart
train
py
56684482517296c9f696fe65100cd71a9b85130f
diff --git a/src/components/ebay-icon/component-browser.js b/src/components/ebay-icon/component-browser.js index <HASH>..<HASH> 100644 --- a/src/components/ebay-icon/component-browser.js +++ b/src/components/ebay-icon/component-browser.js @@ -5,8 +5,10 @@ module.exports = { // Create a hidden svg to store all ...
Added hidden div wrapper to Icons (#<I>)
eBay_ebayui-core
train
js
d678513f602ba93d2195bebbf7a3261e673b9cb3
diff --git a/daemon/cmd/daemon.go b/daemon/cmd/daemon.go index <HASH>..<HASH> 100644 --- a/daemon/cmd/daemon.go +++ b/daemon/cmd/daemon.go @@ -547,6 +547,11 @@ func NewDaemon(ctx context.Context, epMgr *endpointmanager.EndpointManager, dp d } } else if option.Config.EnableIPMasqAgent { log.Fatalf("BPF ip-masq-a...
cilium: auto-disable bpf masq if v4 masq is not enabled Given the former is a more specific subflag of the latter for the agent, we should auto-disable it and log an info message in the agent. This needs to be adapted when we also implement v6 BPF-based masq.
cilium_cilium
train
go
c4051ad1d3cdd7f787027cd754d805a25383a142
diff --git a/lib/public_activity/common.rb b/lib/public_activity/common.rb index <HASH>..<HASH> 100644 --- a/lib/public_activity/common.rb +++ b/lib/public_activity/common.rb @@ -18,7 +18,7 @@ module PublicActivity # Hash with parameters passed directly into i18n.translate method - *optional* # def crea...
Removed unncessary assignments and a return statement
chaps-io_public_activity
train
rb
18a66427868c421c2198ade0acfc643b5511fdfe
diff --git a/toml/decoder.py b/toml/decoder.py index <HASH>..<HASH> 100644 --- a/toml/decoder.py +++ b/toml/decoder.py @@ -120,7 +120,7 @@ def load(f, _dict=dict, decoder=None): "existing file.") raise FNFError(error_msg) if decoder is None: - decoder = TomlDe...
Fix #<I>: _dict not passed to TomlDecoder in load
uiri_toml
train
py
0d2c6a67a5ac1b1be7c7aa8b39b55683a82465f3
diff --git a/salt/netapi/rest_cherrypy/app.py b/salt/netapi/rest_cherrypy/app.py index <HASH>..<HASH> 100644 --- a/salt/netapi/rest_cherrypy/app.py +++ b/salt/netapi/rest_cherrypy/app.py @@ -1432,19 +1432,18 @@ class Login(LowDataAdapter): try: eauth = self.opts.get('external_auth', {}).get(token[...
Return all relevant perms on login If the requesting user was in a group specified in the eauth config, then the return would only have the permissions allowed by their group memberships, even if there were specific permissions for that user or permissions for '*'. A user without any group permissions, but with user-...
saltstack_salt
train
py
d370a4e840c4125ee635508b14f6dbe3b0651473
diff --git a/core/server/api/canary/members.js b/core/server/api/canary/members.js index <HASH>..<HASH> 100644 --- a/core/server/api/canary/members.js +++ b/core/server/api/canary/members.js @@ -119,6 +119,9 @@ const members = { }, exportCSV: { + options: [ + 'limit' + ], h...
🐛 Fixed members export limiting to <I> members only (#<I>) refs <URL>
TryGhost_Ghost
train
js
eff50fa6246c8b9eae916fe7cf67a2211a89f252
diff --git a/lib/autoversion.rb b/lib/autoversion.rb index <HASH>..<HASH> 100644 --- a/lib/autoversion.rb +++ b/lib/autoversion.rb @@ -1,3 +1,7 @@ module Autoversion -end \ No newline at end of file +end + +require_relative 'autoversion/semver' +require_relative 'autoversion/dsl' +require_relative 'autoversion/versi...
Importing the DSL, Versioner and SemVer class into the lib
jpettersson_autoversion
train
rb
bb7b18f0a717282c9352185bc6285e38161f8e3a
diff --git a/docs/src/modules/components/AppSearch.js b/docs/src/modules/components/AppSearch.js index <HASH>..<HASH> 100644 --- a/docs/src/modules/components/AppSearch.js +++ b/docs/src/modules/components/AppSearch.js @@ -28,7 +28,7 @@ const SearchButton = styled('button')(({ theme }) => { padding: 0, mi...
[docs] Fix warnings in AppSearch (#<I>)
mui-org_material-ui
train
js
863dfb6900d90de1a096d6e98a3293d1e3db00fa
diff --git a/config/initializers/clearance.rb b/config/initializers/clearance.rb index <HASH>..<HASH> 100644 --- a/config/initializers/clearance.rb +++ b/config/initializers/clearance.rb @@ -2,7 +2,7 @@ Clearance.configure do |config| config.allow_sign_up = (ENV['DISABLE_SIGNUP'].to_s == 'true') ? false : true co...
set Clearance password strategy to BCrypt
rubygems_rubygems.org
train
rb
f96c0c426597a8c4cfa883c5af4d0ae4c8d88ea1
diff --git a/lib/amq/protocol/version.rb b/lib/amq/protocol/version.rb index <HASH>..<HASH> 100644 --- a/lib/amq/protocol/version.rb +++ b/lib/amq/protocol/version.rb @@ -1,5 +1,5 @@ module AMQ module Protocol - VERSION = "0.7.0.alpha7" + VERSION = "0.7.0.alpha8.pre" end # Protocol end # AMQ
Now working on <I>.alpha8.pre
ruby-amqp_amq-protocol
train
rb
22902dbe03a35a21b05d1056d80d92af3975dbb0
diff --git a/container/docker/importer.py b/container/docker/importer.py index <HASH>..<HASH> 100644 --- a/container/docker/importer.py +++ b/container/docker/importer.py @@ -268,7 +268,7 @@ class DockerfileParser(object): if '=' in label: k, v = label.split('=', 1) elif ' ' i...
Fixes #<I> - ADD fails for directory (#<I>) * Adding fixes self.base_path and parse_ADD * Isolated fix to #<I>
ansible_ansible-container
train
py
4b1dd0880dbd220712d5048e8e5edddd259503c4
diff --git a/lib/sequent/core/helpers/message_handler.rb b/lib/sequent/core/helpers/message_handler.rb index <HASH>..<HASH> 100644 --- a/lib/sequent/core/helpers/message_handler.rb +++ b/lib/sequent/core/helpers/message_handler.rb @@ -87,11 +87,13 @@ module Sequent end class OnArgumentCoercer + ...
Re-use class_equals DSL method
zilverline_sequent
train
rb
ec86d1e0288ee750560595890d5a83a37b3bcc86
diff --git a/src/bundle/app-bundle-prelude.js b/src/bundle/app-bundle-prelude.js index <HASH>..<HASH> 100644 --- a/src/bundle/app-bundle-prelude.js +++ b/src/bundle/app-bundle-prelude.js @@ -27,12 +27,27 @@ module.exports = function (moduleMap, entries) { return function getDependency(name) { const id = dep...
added logic to handle circular references across bundles
MiguelCastillo_bit-bundler
train
js
876de738ac98b80157bdcf503ae85ec71256ecc0
diff --git a/django_airavata/apps/api/serializers.py b/django_airavata/apps/api/serializers.py index <HASH>..<HASH> 100644 --- a/django_airavata/apps/api/serializers.py +++ b/django_airavata/apps/api/serializers.py @@ -457,7 +457,11 @@ class ExperimentSerializer( ResourcePermissionType.WRITE) def ge...
AIRAVATA-<I> moved get_rel_experiment_dir to user_storage in SDK
apache_airavata-django-portal
train
py
2f056fe603c4eeb0d5065f7bb9cd990d0b7591b6
diff --git a/generators/server/files.js b/generators/server/files.js index <HASH>..<HASH> 100644 --- a/generators/server/files.js +++ b/generators/server/files.js @@ -629,8 +629,13 @@ const serverFiles = { serverMicroservice: [ { condition: generator => - (generator.application...
removed unused pageable encoder class
jhipster_generator-jhipster
train
js
94a054b50396371c20c20c3e2455abaa4d8a1d73
diff --git a/lib/fog/google/examples/launch_micro_instance.rb b/lib/fog/google/examples/launch_micro_instance.rb index <HASH>..<HASH> 100755 --- a/lib/fog/google/examples/launch_micro_instance.rb +++ b/lib/fog/google/examples/launch_micro_instance.rb @@ -5,7 +5,7 @@ def test :name => 'foggydisk', :size_gb => ...
[google|compute] Use a valid image for v1 in example
fog_fog
train
rb
695cb698c17ffd5b3269a886aec89a59beba18f3
diff --git a/test/textbringer/commands/test_windows.rb b/test/textbringer/commands/test_windows.rb index <HASH>..<HASH> 100644 --- a/test/textbringer/commands/test_windows.rb +++ b/test/textbringer/commands/test_windows.rb @@ -429,7 +429,6 @@ EOF *scratch* foo bar - *Buffer List* EOF e...
*Buffer List* need not to be included in *Buffer List*
shugo_textbringer
train
rb
bd11b9145e6bacbf42e97b6b157048d8c6a618fb
diff --git a/lib/mongoid/persistence.rb b/lib/mongoid/persistence.rb index <HASH>..<HASH> 100644 --- a/lib/mongoid/persistence.rb +++ b/lib/mongoid/persistence.rb @@ -129,7 +129,7 @@ module Mongoid _root.collection.find(selector).update(positionally(selector, touches)) end run_callbacks(:touch, :...
Remove move_changes call from touch Removing move_changes from touch method, so next callbacks dont lose them. [ fixes #<I> ]
mongodb_mongoid
train
rb,rb
18e8dadbc3deb416a6f544c0d5732afed0d278fb
diff --git a/aws/resource_aws_qldb_stream_test.go b/aws/resource_aws_qldb_stream_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_qldb_stream_test.go +++ b/aws/resource_aws_qldb_stream_test.go @@ -23,7 +23,6 @@ func init() { testAccProviders = map[string]*schema.Provider{ ProviderNameAws: testAccProvider...
Simplified config; only need time provider
terraform-providers_terraform-provider-aws
train
go
1e9dfb66e41b887e3ddeac39ba34afb3ceb345da
diff --git a/generators/generator-constants.js b/generators/generator-constants.js index <HASH>..<HASH> 100644 --- a/generators/generator-constants.js +++ b/generators/generator-constants.js @@ -75,7 +75,7 @@ const DOCKER_KAFKA = `confluentinc/cp-kafka:${KAFKA_VERSION}`; const DOCKER_ZOOKEEPER = `confluentinc/cp-zooke...
Update consul docker image version to <I>
jhipster_generator-jhipster
train
js
954f3ddd05382ee43f35d22047c943146362dea5
diff --git a/pyatv/core/__init__.py b/pyatv/core/__init__.py index <HASH>..<HASH> 100644 --- a/pyatv/core/__init__.py +++ b/pyatv/core/__init__.py @@ -2,13 +2,11 @@ import asyncio from typing import Any, Awaitable, Callable, Dict, Mapping, NamedTuple, Optional, Set -from mypy_extensions import VarArg - from pyatv....
core: Remove need for mypy_extensions I find mypy_extensions to be an unnecessary dependency and not adding it as one breaks Log4HTML.
postlund_pyatv
train
py
b3f9a238a171b47276dcea83b726c4b7b1aafb75
diff --git a/webview/winforms.py b/webview/winforms.py index <HASH>..<HASH> 100644 --- a/webview/winforms.py +++ b/webview/winforms.py @@ -248,7 +248,8 @@ class BrowserView: document = self.browser.web_browser.Document script_element = document.CreateElement('script') function_nam...
[WinForms] Return a value from evaluated JS code by the means of eval
r0x0r_pywebview
train
py
e7453533b4f9c29bcff34cd11525aca0423775ee
diff --git a/pyzotero/zotero.py b/pyzotero/zotero.py index <HASH>..<HASH> 100644 --- a/pyzotero/zotero.py +++ b/pyzotero/zotero.py @@ -396,15 +396,15 @@ class Zotero(object): group_title = [t['title'] for t in retrieved.entries] group_items = [i['zapi_numitems'] for i in retrieved.entries] gr...
Stop mixing up id/uid
urschrei_pyzotero
train
py
933848a92c45e0668bde1429ab93cb6a0721250d
diff --git a/lib/Thulium/Tests/ControllerTestCase.php b/lib/Thulium/Tests/ControllerTestCase.php index <HASH>..<HASH> 100644 --- a/lib/Thulium/Tests/ControllerTestCase.php +++ b/lib/Thulium/Tests/ControllerTestCase.php @@ -78,6 +78,7 @@ class ControllerTestCase extends DbTransactionalTestCase public function asser...
ControllerTestCase.assertRenders check also responseStatus='show'.
letsdrink_ouzo
train
php
ea6c8c0e7f8df80b285e3b2255250358883b2e9f
diff --git a/Listener/Resource/FileListener.php b/Listener/Resource/FileListener.php index <HASH>..<HASH> 100644 --- a/Listener/Resource/FileListener.php +++ b/Listener/Resource/FileListener.php @@ -407,7 +407,7 @@ class FileListener implements ContainerAwareInterface private function uploadFile(\DirectoryIterator...
[CoreBundle] Fixing unzipping error on special chars.
claroline_Distribution
train
php
a4b72a7726fbe9fec0cb779ff32f22a19759c629
diff --git a/pyam_analysis/core.py b/pyam_analysis/core.py index <HASH>..<HASH> 100644 --- a/pyam_analysis/core.py +++ b/pyam_analysis/core.py @@ -587,8 +587,8 @@ def return_index(df, idx_cols): def keep_col_match(col, strings, pseudo_regex=False): """ - matching of model/scenario names and variables to pseu...
updating docstring for auxiliary function for filtering
IAMconsortium_pyam
train
py
ac311bb4c8c91da09a2f32b4f554d68ad7b65672
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -351,8 +351,7 @@ exports.generateAddress = function (from, nonce) { nonce = new Buffer(nonce.toArray()) } - var hash = exports.sha3(rlp.encode([new Buffer(from, 'hex'), nonce])) - return hash.slice(12) + return ex...
Simplify generateAddress ('from' is already ensured to be a Buffer)
ethereumjs_ethereumjs-vm
train
js
7dd25afff8b8e698135430aef7da742f01907148
diff --git a/src/basis/net/ajax.js b/src/basis/net/ajax.js index <HASH>..<HASH> 100644 --- a/src/basis/net/ajax.js +++ b/src/basis/net/ajax.js @@ -37,8 +37,8 @@ var STATE = require('basis.data').STATE; var METHODS = 'HEAD GET POST PUT PATCH DELETE TRACE LINK UNLINK CONNECT'.split(' '); - var IS_POST_REGEXP = /...
basis.net.ajax: method could be set at the url beginning, overrides method setting than, i.e. `transport.request({ url: 'POST /some/url' })`
basisjs_basisjs
train
js
c2075a3e930a9e109e15f267ca6e05bb98073437
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 @@ -544,12 +544,8 @@ class Cli: @activeWallet.setter def activeWallet(self, wallet): self._activeWallet = wallet - self.postActiveWalletChange() self.print('A...
refactored wallet setter logic
hyperledger_indy-plenum
train
py
7032e401a824459cfdc181adde4508ef2f13caec
diff --git a/src/main/java/io/github/jhipster/config/apidoc/SwaggerConfiguration.java b/src/main/java/io/github/jhipster/config/apidoc/SwaggerConfiguration.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/github/jhipster/config/apidoc/SwaggerConfiguration.java +++ b/src/main/java/io/github/jhipster/config/apidoc...
Update to the new Spring Boot <I> configuration
jhipster_jhipster
train
java
3d906de4710d39c0b046f6f1637556bea9c09f70
diff --git a/src/legacy.js b/src/legacy.js index <HASH>..<HASH> 100644 --- a/src/legacy.js +++ b/src/legacy.js @@ -18,8 +18,8 @@ export function Trail({ items, children, ...props }) { export function Transition({ items, keys = null, children, ...props }) { const transitions = useTransition(items, keys, props) - ...
fix: incorrect property usage in Transition component
react-spring_react-spring
train
js
15950f8fa91a22abfbfcc63603fa01663f4deb40
diff --git a/src/main/java/fluent/api/processors/EndProcessor.java b/src/main/java/fluent/api/processors/EndProcessor.java index <HASH>..<HASH> 100755 --- a/src/main/java/fluent/api/processors/EndProcessor.java +++ b/src/main/java/fluent/api/processors/EndProcessor.java @@ -31,7 +31,6 @@ package fluent.api.processors; ...
Drop system dependencies needed for Java 8. Add the dependencies for Java 8 projects. Default mainstream is now Java 9+
c0stra_fluent-api-end-check
train
java
ebe108c024ebd451e69ac51d85f587a51d212228
diff --git a/test/space.spec.js b/test/space.spec.js index <HASH>..<HASH> 100644 --- a/test/space.spec.js +++ b/test/space.spec.js @@ -728,3 +728,35 @@ test('space supports circular dependencies as long as it is delayed, case2', t = } ).then(t.end); }); + +test('space supports above surface module id', t => { ...
test: add test coverage on above surface module
dumberjs_dumber-module-loader
train
js
b12547aa2e0eebbf6c2d2655bef6788ce302fa07
diff --git a/zzk/service/service_test.go b/zzk/service/service_test.go index <HASH>..<HASH> 100644 --- a/zzk/service/service_test.go +++ b/zzk/service/service_test.go @@ -39,6 +39,7 @@ func (handler *TestServiceHandler) SelectHost(svc *service.Service) (*host.Host, } func (t *ZZKTest) TestServiceListener_NoHostStat...
skipping test I am going to delete anyway
control-center_serviced
train
go
209669da317a6e709879788a0a97a801e1f71c28
diff --git a/cli/lib/cli/version.rb b/cli/lib/cli/version.rb index <HASH>..<HASH> 100644 --- a/cli/lib/cli/version.rb +++ b/cli/lib/cli/version.rb @@ -1,5 +1,5 @@ module Bosh module Cli - VERSION = "0.4.12" + VERSION = "0.4.13" end end
CLI -> <I> (dev releases are marked as such in release manifest)
cloudfoundry_bosh
train
rb
d7d70010bac0494a5902e92a3bd7e124611cd6c1
diff --git a/aws_google_auth/google.py b/aws_google_auth/google.py index <HASH>..<HASH> 100644 --- a/aws_google_auth/google.py +++ b/aws_google_auth/google.py @@ -264,6 +264,10 @@ class Google: # Update the payload payload['Passwd'] = self.config.password + # Set bg_response in request payloa...
Fix bg_response in request payload to passwd challenge
cevoaustralia_aws-google-auth
train
py
d0246a0369dc5024b4fd87c21f81f246947fc5e8
diff --git a/lib/bolt/transport/local.rb b/lib/bolt/transport/local.rb index <HASH>..<HASH> 100644 --- a/lib/bolt/transport/local.rb +++ b/lib/bolt/transport/local.rb @@ -15,7 +15,11 @@ module Bolt end def provided_features - ['shell'] + if Bolt::Util.windows? + ['powershell'] + ...
(BOLT-<I>) Set provided features for local transport When using the local transport set `provided_features` to `shell` or `powershell` to reflect running on a windows or POSIX system.
puppetlabs_bolt
train
rb,rb
f68ea69ef8c666d0c11fed17ada093c712ca066d
diff --git a/lib/omnibus/cli.rb b/lib/omnibus/cli.rb index <HASH>..<HASH> 100644 --- a/lib/omnibus/cli.rb +++ b/lib/omnibus/cli.rb @@ -40,7 +40,7 @@ module Omnibus Omnibus::CLI.start(@argv) @kernel.exit(0) - rescue => e + rescue Omnibus::Error => e error = Omnibus.ui.set_color(e.m...
Only rescue Omnibus:Error in the CLI
chef_omnibus
train
rb
4afc7dce643e5d9bf932c12099b19e0b0079481c
diff --git a/lib/gollum/frontend/public/javascript/gollum.js b/lib/gollum/frontend/public/javascript/gollum.js index <HASH>..<HASH> 100644 --- a/lib/gollum/frontend/public/javascript/gollum.js +++ b/lib/gollum/frontend/public/javascript/gollum.js @@ -100,13 +100,13 @@ var nodeSelector = { } } els...
Fix nodeSelector bug where out-of-range node is selected
gollum_gollum-lib
train
js
5b8cd0b2c87e075ddb873c27f58c68ec8d3b5f0d
diff --git a/src/Traits/JobTracker.php b/src/Traits/JobTracker.php index <HASH>..<HASH> 100644 --- a/src/Traits/JobTracker.php +++ b/src/Traits/JobTracker.php @@ -132,6 +132,11 @@ trait JobTracker $key_disabled_workers = $job->owner_id == 0 ? [] : json_decode(EveApiKey::find($job->owner_id)->disab...
Prevent an array_merge() attempt on NULL
eveseat_eveapi
train
php