hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
931a92a3fed8d2879c12d3910cae1c5e5ffa4974
diff --git a/lib/bugsnag/middleware_stack.rb b/lib/bugsnag/middleware_stack.rb index <HASH>..<HASH> 100644 --- a/lib/bugsnag/middleware_stack.rb +++ b/lib/bugsnag/middleware_stack.rb @@ -3,46 +3,58 @@ module Bugsnag def initialize @middlewares = [] @disabled_middleware = [] + @mutex = Mutex.new ...
Make middleware deduplicative [Fixes #<I>]
bugsnag_bugsnag-ruby
train
2e868dc6f8751daab9d17207c983fadd27df22e5
diff --git a/client/lib/discounts/active-discounts.js b/client/lib/discounts/active-discounts.js index <HASH>..<HASH> 100644 --- a/client/lib/discounts/active-discounts.js +++ b/client/lib/discounts/active-discounts.js @@ -90,6 +90,27 @@ export default [ targetPlans: [ { type: TYPE_FREE }, { type: TYPE_PERSONAL }, {...
New nudges and banners for Black Friday and Cyber Monday sales (#<I>) * New nudges and banners for Black Friday and Cyber Monday sales * fixed indentation after merging a conflict * Move new_plans and default_plans_tab_business to the bottom
Automattic_wp-calypso
train
d277778ec895c253ee9beb3d08eb6d7df5e778ec
diff --git a/app/packages/gamejs/lib/gamejs.js b/app/packages/gamejs/lib/gamejs.js index <HASH>..<HASH> 100644 --- a/app/packages/gamejs/lib/gamejs.js +++ b/app/packages/gamejs/lib/gamejs.js @@ -130,6 +130,10 @@ objects.accessors(Rect.prototype, { 'bottom': { get: function() { return this.top + thi...
add setters for Rect.right and Rect.bottom
GameJs_gamejs
train
ae3b56f0fa4e418c897ee63b6aaab9d4c47b73c6
diff --git a/packages/chrysalis-focus/src/lib/chrysalis-focus.js b/packages/chrysalis-focus/src/lib/chrysalis-focus.js index <HASH>..<HASH> 100644 --- a/packages/chrysalis-focus/src/lib/chrysalis-focus.js +++ b/packages/chrysalis-focus/src/lib/chrysalis-focus.js @@ -1,5 +1,5 @@ /* chrysalis-focus -- Chrysalis Focus pr...
focus: Add a way to enable more debug logging When `focus.debug` is set, the library will log far more verbosely, including all outgoing and incoming data, with converting to string being the only processing done on them. This is to aid in debugging what's going on behind the scenes.
keyboardio_chrysalis-api
train
66d92475ee4361e8769e559dc56ac10e82829e1c
diff --git a/varyby_test.go b/varyby_test.go index <HASH>..<HASH> 100644 --- a/varyby_test.go +++ b/varyby_test.go @@ -20,7 +20,11 @@ func TestVaryBy(t *testing.T) { k string }{ 0: {nil, &http.Request{}, ""}, - 1: {&throttled.VaryBy{RemoteAddr: true}, &http.Request{RemoteAddr: "::"}, "::\n"}, + 1: { + &thr...
Introduce a more realistic value for the `RemoteAddr test case
throttled_throttled
train
892a624756bb85952272e3181357860abb187923
diff --git a/lib/vagrant/action/environment.rb b/lib/vagrant/action/environment.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/action/environment.rb +++ b/lib/vagrant/action/environment.rb @@ -49,6 +49,44 @@ module Vagrant def error? !error.nil? end + + #-----------------------------------...
Action environment hash has indifferent access
hashicorp_vagrant
train
30d9c8f835b2307f7c2f979d3bfc4a34f7c05bac
diff --git a/motion/ruby_motion_query/stylesheet.rb b/motion/ruby_motion_query/stylesheet.rb index <HASH>..<HASH> 100644 --- a/motion/ruby_motion_query/stylesheet.rb +++ b/motion/ruby_motion_query/stylesheet.rb @@ -59,6 +59,7 @@ module RubyMotionQuery selected.each do |view| view.rmq_data.styles = nil ...
Make sure remove_all_styles returns an RMQ object and test for it.
infinitered_rmq
train
8c37582f9261f2f9324a44a1a106266be3e0e485
diff --git a/src/Laiz/Template/Parser.php b/src/Laiz/Template/Parser.php index <HASH>..<HASH> 100644 --- a/src/Laiz/Template/Parser.php +++ b/src/Laiz/Template/Parser.php @@ -118,7 +118,8 @@ class Parser extends Template 'laiz:form' => null, 'type' => '', ...
support for parsing form used variables.
nishimura_laiz-template
train
a7f53516b31b49a841de2b67cfeb0027dfda5f71
diff --git a/xray/indexing.py b/xray/indexing.py index <HASH>..<HASH> 100644 --- a/xray/indexing.py +++ b/xray/indexing.py @@ -107,7 +107,7 @@ def orthogonal_indexer(key, shape): def convert_label_indexer(index, label, index_name=''): - """Given a pandas.Index (or xray.Index) and labels (e.g., from + """Give...
Fix two old references to xray.Index
pydata_xarray
train
b359570f6d5ae961c81d3d7b344cd467ae609994
diff --git a/docs/changes.rst b/docs/changes.rst index <HASH>..<HASH> 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -47,6 +47,8 @@ Released: not yet tests of the zhmcclient package itself. This change improves that support, mainly from a perspective of projects using zhmcclient. +* Improved the show_o...
Improved show_os_messages.py example Details: - Made the printing of message metadata optional by setting a module global variable PRINT_METADATA which now is by default off. - Added flush() calls after the print() calls due to the multi-threading that is used. - Moved the receiver.close() call from the except ...
zhmcclient_python-zhmcclient
train
ddd92caf18e829d45668e90b80bc5f031cb4d45d
diff --git a/cgroups/fs/memory.go b/cgroups/fs/memory.go index <HASH>..<HASH> 100644 --- a/cgroups/fs/memory.go +++ b/cgroups/fs/memory.go @@ -62,6 +62,11 @@ func (s *MemoryGroup) Set(path string, cgroup *configs.Cgroup) error { return err } } + if cgroup.MemorySwappiness >= 0 && cgroup.MemorySwappiness <= 100...
Add the memory swappiness tuning support to libcontainer
opencontainers_runc
train
539f7d3429b9715d19417bc2181b62fef565b333
diff --git a/LiSE/LiSE/rule.py b/LiSE/LiSE/rule.py index <HASH>..<HASH> 100644 --- a/LiSE/LiSE/rule.py +++ b/LiSE/LiSE/rule.py @@ -590,7 +590,7 @@ class AllRuleBooks(MutableMapping, Signal): rb.extend(value) def __delitem__(self, key): - raise NotImplementedError + self.engine._del_ruleboo...
Use the existing _del_rulebook method for AllRuleBooks.__delitem__ I'm not sure if it even works
LogicalDash_LiSE
train
efd3ec3c2e49e2be4ab42ba9d16f75df9cf41734
diff --git a/tasks/lib/compress.js b/tasks/lib/compress.js index <HASH>..<HASH> 100644 --- a/tasks/lib/compress.js +++ b/tasks/lib/compress.js @@ -121,17 +121,22 @@ module.exports = function(grunt) { files.forEach(function(file) { var isExpandedPair = file.orig.expand || false; - var src = file.src.f...
allow directories to pass-through to archiver. use `filter` property to filter them out. Closes gh-<I>.
gruntjs_grunt-contrib-compress
train
03d9d15f1cedefcb803016cb3281ba03b1a2fd72
diff --git a/modules/rtbhouseBidAdapter.js b/modules/rtbhouseBidAdapter.js index <HASH>..<HASH> 100644 --- a/modules/rtbhouseBidAdapter.js +++ b/modules/rtbhouseBidAdapter.js @@ -46,9 +46,7 @@ export const spec = { site: mapSite(validBidRequests, bidderRequest), cur: DEFAULT_CURRENCY_ARR, test: val...
[rtbhouse] Add schain support (#<I>)
prebid_Prebid.js
train
fd2f821ea76261256d9510525ee51792c81c09e4
diff --git a/www/tree/tree.js b/www/tree/tree.js index <HASH>..<HASH> 100644 --- a/www/tree/tree.js +++ b/www/tree/tree.js @@ -67,6 +67,7 @@ var SamsonCMS_InputMaterial = function(block) { // Bind all structures link s('.field_material_all', box).ajaxClick(function(response) { fieldMateri...
fixed bug on search (active structure was used even on all structures selection)
samsonos_cms_input_material
train
414f9c2e39722183696cfaf47822b76e01c59971
diff --git a/colormath/color_diff.py b/colormath/color_diff.py index <HASH>..<HASH> 100644 --- a/colormath/color_diff.py +++ b/colormath/color_diff.py @@ -43,7 +43,7 @@ def delta_e_cie1976(color1, color2): color1_vector = _get_lab_color1_vector(color1) color2_matrix = _get_lab_color2_matrix(color2) delta...
Fix DeprecationWarning np.asscalar(a) is deprecated since NumPy <I>, use a.item() instead
gtaylor_python-colormath
train
430439c2454e37717517b607ecfe3ffdb33d0bc9
diff --git a/spec/runner.rb b/spec/runner.rb index <HASH>..<HASH> 100755 --- a/spec/runner.rb +++ b/spec/runner.rb @@ -8,22 +8,22 @@ print 'Loading...' browser, options = case ENV['BROWSER'] when "chrome" - opts = Selenium::WebDriver::Chrome::Options.new(args: ['--no-sandbox', '--headless']) - [:chrome, options: ...
Further work on the CI. Remove the warning, note the user agent and make a screenshot of the entire page. (opal/opal-browser#<I>).
opal_opal-browser
train
b2526f0b4d600f7b3eb5cb186327b9ba635e6323
diff --git a/core/src/main/java/org/bitcoinj/crypto/DeterministicKey.java b/core/src/main/java/org/bitcoinj/crypto/DeterministicKey.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/bitcoinj/crypto/DeterministicKey.java +++ b/core/src/main/java/org/bitcoinj/crypto/DeterministicKey.java @@ -442,6 +442,18 @@ ...
Throw when trying to set creation time of a DeterministicKey that is a leaf in the hierarchy. It would be needlessly stored, but unreadable.
bitcoinj_bitcoinj
train
c83d60d381c0ef06c510d870f88e4c1a3da9490e
diff --git a/src/ParameterParser/ParameterClosure.php b/src/ParameterParser/ParameterClosure.php index <HASH>..<HASH> 100644 --- a/src/ParameterParser/ParameterClosure.php +++ b/src/ParameterParser/ParameterClosure.php @@ -31,4 +31,4 @@ class ParameterClosure $this->parameterName = $parameterName; $th...
Added new line to ParameterClosure.php'
nathan-fiscaletti_parameterparser
train
27dc2a6342b5e7abf4bc8b578d94532a35299265
diff --git a/openquake/hazardlib/gsim/yenier_atkinson_2015.py b/openquake/hazardlib/gsim/yenier_atkinson_2015.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/gsim/yenier_atkinson_2015.py +++ b/openquake/hazardlib/gsim/yenier_atkinson_2015.py @@ -175,48 +175,44 @@ def _get_f_z(C, imt, rrup, m): return np.l...
Ported more GMPEs to the compute API
gem_oq-engine
train
1124f69cf0d9be407e25d939d9fdbb7b02458f0b
diff --git a/app/classes/upload/index.php b/app/classes/upload/index.php index <HASH>..<HASH> 100755 --- a/app/classes/upload/index.php +++ b/app/classes/upload/index.php @@ -12,12 +12,8 @@ error_reporting(E_ALL | E_STRICT); -// Make sure Silex' session is instantiated -require_once __DIR__.'/../../../vendor/autol...
Bootstrap already loads the composer autoloader. Session is already started in bootstrap, so don't start new
bolt_bolt
train
734678f4be9e9a439b4391265d5f369ed1bab4b5
diff --git a/core/src/main/java/org/testcontainers/containers/ContainerState.java b/core/src/main/java/org/testcontainers/containers/ContainerState.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/testcontainers/containers/ContainerState.java +++ b/core/src/main/java/org/testcontainers/containers/Container...
Deperecate `getContainerIpAddress` (#<I>)
testcontainers_testcontainers-java
train
6e8a101af5e735feedcdae1f716bebc338b74525
diff --git a/lock.go b/lock.go index <HASH>..<HASH> 100644 --- a/lock.go +++ b/lock.go @@ -58,16 +58,13 @@ func (l SimpleLock) Projects() []LockedProject { // to simply dismiss that project. By creating a hard failure case via panic // instead, we are trying to avoid inflicting the resulting pain on the user by // i...
Made NewLockedProject() take a ProjectIdentifier There was really no point in splitting up the root and the url into two separate params, when ProjectIdentifier already exists and kinda literally is those two things.
sdboyer_gps
train
a5f0fa964534f9512050065eb09b848d997207b6
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/ba/CheckReturnAnnotationDatabase.java b/findbugs/src/java/edu/umd/cs/findbugs/ba/CheckReturnAnnotationDatabase.java index <HASH>..<HASH> 100644 --- a/findbugs/src/java/edu/umd/cs/findbugs/ba/CheckReturnAnnotationDatabase.java +++ b/findbugs/src/java/edu/umd/cs/findbugs...
have -Dfindbugs.ignoreBuiltinModels=false also turn off built in annotations git-svn-id: <URL>
spotbugs_spotbugs
train
211b692946825432b373e0d478504a7227350a52
diff --git a/benchexec/containerized_tool.py b/benchexec/containerized_tool.py index <HASH>..<HASH> 100644 --- a/benchexec/containerized_tool.py +++ b/benchexec/containerized_tool.py @@ -115,6 +115,11 @@ def _init_container_and_load_tool( container_tmpfs, # ignored, tmpfs is always used ): """Initialize con...
Set home directory correctly for containerized tool-info module ContainerExecutor by default uses a private home directory (/home/benchexec) and sets $HOME accordingly. Now the containerized_tool also does this. This should fix a problem with Ultimate's tool-info module. If the real user's home was in read-only mode,...
sosy-lab_benchexec
train
22a1395860cb236df0dfc36a12c61dd41f7a6a87
diff --git a/bundler.go b/bundler.go index <HASH>..<HASH> 100644 --- a/bundler.go +++ b/bundler.go @@ -358,6 +358,7 @@ func (b *Bundler) bundle(e ConfigurationEnvironment) (err error) { "GOARCH=" + e.Arch, "GOOS=" + e.OS, "GOPATH=" + os.Getenv("GOPATH"), + "PATH=" + os.Getenv("PATH"), } // Exec
Added PATH to cmd variable
asticode_go-astilectron-bundler
train
6865857fa6f60befd7c4201895a702485e8f32e4
diff --git a/examples/index.js b/examples/index.js index <HASH>..<HASH> 100644 --- a/examples/index.js +++ b/examples/index.js @@ -20,7 +20,7 @@ var myTemplateConfig = { } } }; -var myTemplate = new GitGraphTemplate( myTemplateConfig ); +var myTemplate = new GitGraph.Template( myTemplateConfig ); /*********...
Exposed classes under the GitGraph namespace. The following classes are now exposed: - GitGraph.Branch - GitGraph.Commit - GitGraph.Template This enables custom enhancements.
nicoespeon_gitgraph.js
train
694c9d8e81ece50d94a4fdc6abc1487bd48e39af
diff --git a/test/src/test/java/ghostdriver/CookieTest.java b/test/src/test/java/ghostdriver/CookieTest.java index <HASH>..<HASH> 100644 --- a/test/src/test/java/ghostdriver/CookieTest.java +++ b/test/src/test/java/ghostdriver/CookieTest.java @@ -3,20 +3,28 @@ package ghostdriver; import org.junit.Test; import java.u...
Expanded CookieTest to more intensively stress the Cookie API. This test covers latest fixed scenarios that can be found in PhantomJS "ghostdriver-dev" branch (by detro)
detro_ghostdriver
train
f1b0e8a20f27268aaaee63c04a2dea30d9db58e7
diff --git a/libkbfs/folder_branch_ops.go b/libkbfs/folder_branch_ops.go index <HASH>..<HASH> 100644 --- a/libkbfs/folder_branch_ops.go +++ b/libkbfs/folder_branch_ops.go @@ -4643,6 +4643,16 @@ func (fbo *folderBranchOps) notifyOneOpLocked(ctx context.Context, changes = append(changes, NodeChange{ Node: childNod...
folder_branch_ops: delete gcOp unrefs from the cache Issue: KBFS-<I>
keybase_client
train
b8f3b262e091ad31f2aa2859e58bed541eeca8ec
diff --git a/railties/test/application/rackup_test.rb b/railties/test/application/rackup_test.rb index <HASH>..<HASH> 100644 --- a/railties/test/application/rackup_test.rb +++ b/railties/test/application/rackup_test.rb @@ -31,13 +31,6 @@ module ApplicationTests assert_kind_of Rails::Application, Rails.applicatio...
Remove deprecated dispatch test.
rails_rails
train
a3fb4ff28531714f3dc74664c139a8f3a5bf5ef9
diff --git a/src/PeskyORMLaravel/Db/Column/Utils/FilesUploadingColumnClosures.php b/src/PeskyORMLaravel/Db/Column/Utils/FilesUploadingColumnClosures.php index <HASH>..<HASH> 100644 --- a/src/PeskyORMLaravel/Db/Column/Utils/FilesUploadingColumnClosures.php +++ b/src/PeskyORMLaravel/Db/Column/Utils/FilesUploadingColumnCl...
Updated php docs and added comments for formatters
swayok_peskyorm-laravel
train
c867996f65180be75a1597a3b3b6b540993199f9
diff --git a/examples/helloworld/pom.xml b/examples/helloworld/pom.xml index <HASH>..<HASH> 100644 --- a/examples/helloworld/pom.xml +++ b/examples/helloworld/pom.xml @@ -13,8 +13,8 @@ <java.version>1.6</java.version> <!-- dependencies versions --> - <slf4j.version>1.6.6</slf4j.version> - <uadetector-resource...
Updated HelloWorld example to last UADetector release <I>
before_uadetector
train
cf3318e2761e0b187513870ebe9de4442bad4f9a
diff --git a/Observer/MarkEsiPage.php b/Observer/MarkEsiPage.php index <HASH>..<HASH> 100644 --- a/Observer/MarkEsiPage.php +++ b/Observer/MarkEsiPage.php @@ -10,6 +10,7 @@ use Magento\Framework\View\Element\AbstractBlock; use Magento\Framework\Event\Observer; use Magento\Framework\App\ResponseInterface as Response; ...
Replaced varnish check with fastly check
fastly_fastly-magento2
train
4e03c286df917ca90f48b270c01c8ead6613b91f
diff --git a/third_party/java/src/org/apache/cassandra_voltpatches/GCInspector.java b/third_party/java/src/org/apache/cassandra_voltpatches/GCInspector.java index <HASH>..<HASH> 100644 --- a/third_party/java/src/org/apache/cassandra_voltpatches/GCInspector.java +++ b/third_party/java/src/org/apache/cassandra_voltpatche...
Tweak log message to include the total heap size
VoltDB_voltdb
train
3f475ca637ae6d738bd2e062cd6ca712cae0500e
diff --git a/jimfs/src/main/java/com/google/common/jimfs/FileTree.java b/jimfs/src/main/java/com/google/common/jimfs/FileTree.java index <HASH>..<HASH> 100644 --- a/jimfs/src/main/java/com/google/common/jimfs/FileTree.java +++ b/jimfs/src/main/java/com/google/common/jimfs/FileTree.java @@ -51,12 +51,12 @@ final class F...
Misc changes to FileTree. ------------- Created by MOE: <URL>
google_jimfs
train
7068e8e621e5000e65fa9eb31c602f36f57ff824
diff --git a/pyopenuv/client.py b/pyopenuv/client.py index <HASH>..<HASH> 100644 --- a/pyopenuv/client.py +++ b/pyopenuv/client.py @@ -83,6 +83,8 @@ class Client: if not use_running_session: await session.close() + _LOGGER.debug("Received data for %s: %s", endpoint, data) + retur...
Add debug-level logging for every request response payload
bachya_pyopenuv
train
caec131b8ab611d0c8858631eb80dc75229f9281
diff --git a/CHANGES b/CHANGES index <HASH>..<HASH> 100644 --- a/CHANGES +++ b/CHANGES @@ -6,9 +6,16 @@ during upgrade will be listed here. + API + Added cursor parameter to API.friends and API.followers methods. Note: page parameter is being deprecated by twitter on 10/26 + + Update parsing to handle c...
Update parsers to handle cursor responses. API.friends_ids and API.followers_ids now return a list of integers.
tweepy_tweepy
train
cff9b90cddc43ebc0d958eae06e0fecb31ce9af9
diff --git a/jdbc/src/main/java/jlibs/jdbc/DAO.java b/jdbc/src/main/java/jlibs/jdbc/DAO.java index <HASH>..<HASH> 100644 --- a/jdbc/src/main/java/jlibs/jdbc/DAO.java +++ b/jdbc/src/main/java/jlibs/jdbc/DAO.java @@ -279,9 +279,9 @@ public abstract class DAO<T>{ /*-------------------------------------------------[...
changed upsert(record) method to return int
santhosh-tekuri_jlibs
train
20ca7af82eb9fe2b1f4bac4be6603a21f2e2ee9a
diff --git a/core/codegen/src/main/java/org/overture/codegen/vdm2java/JavaCodeGen.java b/core/codegen/src/main/java/org/overture/codegen/vdm2java/JavaCodeGen.java index <HASH>..<HASH> 100644 --- a/core/codegen/src/main/java/org/overture/codegen/vdm2java/JavaCodeGen.java +++ b/core/codegen/src/main/java/org/overture/cod...
Added the pre/post condition transformations to the Java code generator and did some additional simplification of library classes before they are processed by the IR constructors
overturetool_overture
train
a1e31813400a978960ffb46242fad8d9ec45dcf4
diff --git a/src/printer-markdown.js b/src/printer-markdown.js index <HASH>..<HASH> 100644 --- a/src/printer-markdown.js +++ b/src/printer-markdown.js @@ -87,8 +87,8 @@ function genericPrint(path, options, print) { const index = parentNode.children.indexOf(node); const nextNode = parentNode.children[index...
refactor(markdown): simplify regex (#<I>) * refactor(markdown): simplify regex * fix: check exact string for heading
josephfrazier_prettier_d
train
e931146a827bdef7d492a21bc9ef45849c399c54
diff --git a/spec/rails/development_mode_system_spec.rb b/spec/rails/development_mode_system_spec.rb index <HASH>..<HASH> 100644 --- a/spec/rails/development_mode_system_spec.rb +++ b/spec/rails/development_mode_system_spec.rb @@ -14,7 +14,6 @@ describe "Rails development-mode support", :type => :rails do end i...
Don't skip the ".html.rb" test.
ageweke_fortitude
train
1f6ce05ef5d1c78619a154e4d39b2db12e03090c
diff --git a/tests/test_entities.py b/tests/test_entities.py index <HASH>..<HASH> 100644 --- a/tests/test_entities.py +++ b/tests/test_entities.py @@ -149,10 +149,9 @@ def test_entity_from_data_consistent(mock_plugin, entity_cls_name, @mark.parametrize('entity_cls_name', ['Work', 'Copyright', 'RightsAssignment']) @ma...
test: rename static/nonstatic entity type checks for clarity
COALAIP_pycoalaip
train
c1dd5149c1040eabe4be215c6402279ed45c221f
diff --git a/src/server/pkg/hashtree/db.go b/src/server/pkg/hashtree/db.go index <HASH>..<HASH> 100644 --- a/src/server/pkg/hashtree/db.go +++ b/src/server/pkg/hashtree/db.go @@ -37,6 +37,16 @@ func NewDBHashTree() (OpenHashTree, error) { if err != nil { return nil, err } + if err := db.Batch(func(tx *bolt.Tx) e...
Fix a couple of bugs tests uncovered.
pachyderm_pachyderm
train
a30eae10e4669dbea2a0aa878105b37cd115b41b
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/time_with_zone.rb +++ b/activesupport/lib/active_support/time_with_zone.rb @@ -80,7 +80,7 @@ module ActiveSupport end alias_me...
copy edits [ci skip]
rails_rails
train
dce8a736e31656cc1b13fe9efacaeff071fd83f7
diff --git a/examples/plotting/file/lorenz.py b/examples/plotting/file/lorenz.py index <HASH>..<HASH> 100644 --- a/examples/plotting/file/lorenz.py +++ b/examples/plotting/file/lorenz.py @@ -33,7 +33,7 @@ def lorenz_example(): multi_line(np.array_split(xprime, 7), np.array_split(z, 7), line_color...
added a name to all of the plots so that the embedjs files have stable names
bokeh_bokeh
train
48da9a221752b9947a6db33389ab00fdeac237e9
diff --git a/imhotep/main.py b/imhotep/main.py index <HASH>..<HASH> 100644 --- a/imhotep/main.py +++ b/imhotep/main.py @@ -105,7 +105,7 @@ def apply_commit(repo, commit, compare_point="HEAD^"): def run_analysis(repo, filenames=set()): results = {} - for tool in repo.get_tools(): + for tool in repo.tools: ...
<I>% coverage on repositories
justinabrahms_imhotep
train
4f298e04128cc1c9e903c5dfc6c89bc55a39578d
diff --git a/java-grafeas/synth.py b/java-grafeas/synth.py index <HASH>..<HASH> 100644 --- a/java-grafeas/synth.py +++ b/java-grafeas/synth.py @@ -95,4 +95,5 @@ java.format_code('./src') java.common_templates(excludes=[ 'README.md', 'samples/*', + '.github/workflows/samples.yaml', ])
chore: skip samples presubmits (#<I>)
googleapis_google-cloud-java
train
6684afb3bb18ae8d5377da0bdecb3ce6bc9e2c46
diff --git a/tests/core/console/CommandTest.php b/tests/core/console/CommandTest.php index <HASH>..<HASH> 100644 --- a/tests/core/console/CommandTest.php +++ b/tests/core/console/CommandTest.php @@ -23,14 +23,10 @@ class CommandTest extends LuyaConsoleTestCase $this->assertEquals('FooActiveWindow', $cmd->creat...
remove deprecated method from tests.
luyadev_luya
train
c45fadb7f3120a19d52e099304504373229c763d
diff --git a/law/sandbox/base.py b/law/sandbox/base.py index <HASH>..<HASH> 100644 --- a/law/sandbox/base.py +++ b/law/sandbox/base.py @@ -190,6 +190,10 @@ class SandboxTask(Task): def fallback_sandbox(self, sandbox): return None + @property + def sandbox_user(self): + return ("$USER", "$UI...
Make docker sandbox user configurable.
riga_law
train
598017a58476fdc5ab264761eb07333135ed337a
diff --git a/views/js/qtiCreator/model/PortableInfoControl.js b/views/js/qtiCreator/model/PortableInfoControl.js index <HASH>..<HASH> 100755 --- a/views/js/qtiCreator/model/PortableInfoControl.js +++ b/views/js/qtiCreator/model/PortableInfoControl.js @@ -61,7 +61,10 @@ define([ //set pci namespace to ite...
added mendatory title attribute + saving item with pic ok
oat-sa_extension-tao-itemqti
train
70377aa5de616a6aeab3a82fca28621b130ab02c
diff --git a/lessc.inc.php b/lessc.inc.php index <HASH>..<HASH> 100644 --- a/lessc.inc.php +++ b/lessc.inc.php @@ -63,16 +63,9 @@ class lessc{ } public function parse($buffer, $presets = array()){ - $options = array(); $this->setVariables($presets); - switch($this->formatterName){ - case 'compressed': - ...
fix(compress) pass formatter option to Less_Parser, closes #<I>
oyejorge_less.php
train
c187722c1f3d1fcfb02cc3810fa2f036f6d5c6f8
diff --git a/webservice/lib.php b/webservice/lib.php index <HASH>..<HASH> 100644 --- a/webservice/lib.php +++ b/webservice/lib.php @@ -96,6 +96,12 @@ abstract class webservice_zend_server implements webservice_server { /** @property string $wsname name of the web server plugin */ protected $wsname = null; +...
MDL-<I> improved zend base class
moodle_moodle
train
67cf79647fc4b4ae3b709c03fc0aea65fa140624
diff --git a/stun/__init__.py b/stun/__init__.py index <HASH>..<HASH> 100644 --- a/stun/__init__.py +++ b/stun/__init__.py @@ -14,16 +14,11 @@ def enable_logging(): log.setLevel(logging.DEBUG) stun_servers_list = ( - 'stun.xten.com', # 0 - 'stun01.sipphone.com', # 1 - 'stunserver.org', # ...
stun: remove dead hosts from stun server list
jtriley_pystun
train
93bdcd8fcb8a9f6c073106b6795d0647d27f92b1
diff --git a/tests.py b/tests.py index <HASH>..<HASH> 100644 --- a/tests.py +++ b/tests.py @@ -102,11 +102,6 @@ class TestColorSquare(BaseWidgetTest): self.window.update() cs._draw((60, 100, 100)) self.window.update() - self.assertFalse(cs.bg.get(0, 0)) - self.assertLess(len(cs....
Add compatibility with more tk/tkinter versions. This commit catches errors raised in some tk / python versions because `PhotoImage.get` returns a string 'r g b' instead of a tuple (r, g, b).
j4321_tkColorPicker
train
a5c2498ff5439e2c4ee69812033c59ffb656aec8
diff --git a/temper/cli.py b/temper/cli.py index <HASH>..<HASH> 100644 --- a/temper/cli.py +++ b/temper/cli.py @@ -1,9 +1,28 @@ # encoding: utf-8 from __future__ import print_function from temper import TemperHandler +import getopt, sys, os.path +def usage(): + print("%s [-p] [-h|--help]" % os.path.basename(sys...
Add bus-port info output to frontend. Add -h option to temper/cli.py for usage help. Add -p option to temper/cli.py for bus-port output.
padelt_temper-python
train
a04d14c4e43d02bdcb9dbf3715aaf5d2a3d3feb5
diff --git a/bpc8583/ISO8583.py b/bpc8583/ISO8583.py index <HASH>..<HASH> 100644 --- a/bpc8583/ISO8583.py +++ b/bpc8583/ISO8583.py @@ -439,6 +439,12 @@ class ISO8583: self.__MTI = MTI + def get_MTI(self): + """ + """ + return self.__MTI + + def Description(self, field, Desc...
isoHost Process xx1x response for xx0x codes (e.g. <I> for <I>)
timgabets_bpc8583
train
d3c3b984140eac76329f475ff1e2a527d0b4dfaf
diff --git a/test/components/Tabs_spec.js b/test/components/Tabs_spec.js index <HASH>..<HASH> 100644 --- a/test/components/Tabs_spec.js +++ b/test/components/Tabs_spec.js @@ -32,6 +32,7 @@ describe('Test of Tabs', () => { expect(component.props.tabsClassNames.tabCloseIcon).to.be.equal(''); expect(component.pr...
Added tests for the new disableDrag prop
georgeOsdDev_react-draggable-tab
train
a2bfff3665b45eee5dbd764faa9e1423ead2ff01
diff --git a/presto-main/src/main/java/com/facebook/presto/sql/planner/Planner.java b/presto-main/src/main/java/com/facebook/presto/sql/planner/Planner.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/sql/planner/Planner.java +++ b/presto-main/src/main/java/com/facebook/presto/sql/pl...
Remove unnecessary symbol allocation for group by expressions
prestodb_presto
train
7924e12a8dd739881b158c840c257543e3979861
diff --git a/data/data.json b/data/data.json index <HASH>..<HASH> 100644 --- a/data/data.json +++ b/data/data.json @@ -299,6 +299,16 @@ "title":"NextId", "url":"/news2", "description":"hn next id news2 " - } + }, + { + "title": "Ask HN: Who is hiring? (January 2013)"...
Added action to open comments link of post Press 'D' to launch a browser tab for HN comments link of post @ciaranarcher also tidied up tests, and split header with commands into two lines.
ciaranarcher_hacker_term
train
d803eb07f757f40f026cfbf15a59e6c5998511f0
diff --git a/lib/devp2p/discovery/protocol.rb b/lib/devp2p/discovery/protocol.rb index <HASH>..<HASH> 100644 --- a/lib/devp2p/discovery/protocol.rb +++ b/lib/devp2p/discovery/protocol.rb @@ -317,7 +317,7 @@ module DEVp2p private def logger - @logger ||= Logger.new('p2p.discovery').tap {|l| l.leve...
better logs for debugging, show app port
cryptape_ruby-devp2p
train
e8798c4dd4d0f52bbc88a858545389260cf9c941
diff --git a/test/support/configs.js b/test/support/configs.js index <HASH>..<HASH> 100644 --- a/test/support/configs.js +++ b/test/support/configs.js @@ -118,4 +118,4 @@ module.exports.merged = { }, target2 : passedin.task2.target2 } -} \ No newline at end of file +}; \ No newline at end of file
chore: jshint complains about missing ;
creynders_load-grunt-configs
train
398b0d24110ce963074c7dacdccaf31370637b14
diff --git a/opbeat/base.py b/opbeat/base.py index <HASH>..<HASH> 100644 --- a/opbeat/base.py +++ b/opbeat/base.py @@ -416,9 +416,11 @@ class Client(object): return message def _get_transport(self, parsed_url): - if is_master_process(): + if self.async_mode and is_master_process(): ...
added log message when we send synchronously in the master process
elastic_apm-agent-python
train
7e8331f980192fc6d3a3c12a2a8b6a1bba676b21
diff --git a/test/roomMessaging.js b/test/roomMessaging.js index <HASH>..<HASH> 100644 --- a/test/roomMessaging.js +++ b/test/roomMessaging.js @@ -753,4 +753,58 @@ module.exports = function () { }) }) }) + + it('should not send notifications on duplicate joins', function (done) { + this.timeout(4000)...
test: add join/leave notifications tests
an-sh_chat-service
train
8c057e0c96825224bcd7320ee01861e62abd96f3
diff --git a/Branch-SDK/androidTest/io/branch/referral/BranchEventTest.java b/Branch-SDK/androidTest/io/branch/referral/BranchEventTest.java index <HASH>..<HASH> 100644 --- a/Branch-SDK/androidTest/io/branch/referral/BranchEventTest.java +++ b/Branch-SDK/androidTest/io/branch/referral/BranchEventTest.java @@ -34,15 +34...
update customer_event_alias to be correctly displayed as a field on a standard event
BranchMetrics_android-branch-deep-linking
train
44114119d54d206b5b223b2eeed8c7defe64dbad
diff --git a/test/erv/discrete_uniform_distribution_test.rb b/test/erv/discrete_uniform_distribution_test.rb index <HASH>..<HASH> 100644 --- a/test/erv/discrete_uniform_distribution_test.rb +++ b/test/erv/discrete_uniform_distribution_test.rb @@ -4,7 +4,7 @@ require 'erv/discrete_uniform_distribution' describe ERV::...
Fixed let-related syntax issue in tests.
mtortonesi_ruby-erv
train
5a177ec0f661f73c0afa902a90e63a41adc67472
diff --git a/pkg/clients/logging/logger.go b/pkg/clients/logging/logger.go index <HASH>..<HASH> 100644 --- a/pkg/clients/logging/logger.go +++ b/pkg/clients/logging/logger.go @@ -97,7 +97,7 @@ func NewClient(owningServiceName string, isRemote bool, logTarget string, logLev } lc.rootLogger = log.WithPrefix(lc.root...
Added service name to logging output
edgexfoundry_edgex-go
train
ed0829fed1772968d323319d575d3ea3a59e6137
diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index <HASH>..<HASH> 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -168,17 +168,12 @@ EOT if (empty($package)) { $options = $input->getOption...
Simplify code and fix path to composer.json, refs #<I>
composer_composer
train
fbe02a253ad9d1f585f241229ddb228cdd03c35b
diff --git a/kmsgparser/kmsgparser_test.go b/kmsgparser/kmsgparser_test.go index <HASH>..<HASH> 100644 --- a/kmsgparser/kmsgparser_test.go +++ b/kmsgparser/kmsgparser_test.go @@ -36,10 +36,10 @@ type warningAndErrorTestLogger struct { func (warningAndErrorTestLogger) Infof(string, ...interface{}) {} func (w warning...
Fix missing ... in args forwarded to printf-like function
euank_go-kmsg-parser
train
146fd168028cf3c28b6b051b50a66d729ee876d8
diff --git a/examples/_django/settings.py b/examples/_django/settings.py index <HASH>..<HASH> 100644 --- a/examples/_django/settings.py +++ b/examples/_django/settings.py @@ -65,8 +65,7 @@ TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', ) -MIDDLEWARE_CLASSES = ( -) +MIDDLEWARE_CLASSES = () ...
created a logger for pyws
stepank_pyws
train
44e29eda198b741b84376313b6914d6f0eed443a
diff --git a/ravel.py b/ravel.py index <HASH>..<HASH> 100644 --- a/ravel.py +++ b/ravel.py @@ -197,7 +197,7 @@ def _signal_rule(path, fallback, interface, name) : class _DispatchNode : - __slots__ = ("children", "interfaces", "signal_listeners") + __slots__ = ("children", "interfaces", "signal_listeners", "u...
add facilities for attaching custom user data to object tree
ldo_dbussy
train
c653c54ed2837241da3dff125d7f32087e9a23d0
diff --git a/Documentation/conf.py b/Documentation/conf.py index <HASH>..<HASH> 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -19,6 +19,7 @@ import os # import sys import re +import subprocess # sys.path.insert(0, os.path.abspath('.')) @@ -64,11 +65,7 @@ author = u'Cilium Authors' release =...
Documentation: Embed full branch name in all SCM_WEB links Fixes: #<I>
cilium_cilium
train
18c343ae170b2d09595f1c9850510cc609db12b4
diff --git a/goatools/rpt_lev_depth.py b/goatools/rpt_lev_depth.py index <HASH>..<HASH> 100755 --- a/goatools/rpt_lev_depth.py +++ b/goatools/rpt_lev_depth.py @@ -57,7 +57,7 @@ class RptLevDepth(object): """Write counts of GO terms at all levels and depths.""" from goatools.wr_tbl import wr_xlsx ...
Update for title being a data member, not a function
tanghaibao_goatools
train
78f5a0e50e3a365468c1aa07c71be9612a9b8240
diff --git a/lib/apicasso/version.rb b/lib/apicasso/version.rb index <HASH>..<HASH> 100644 --- a/lib/apicasso/version.rb +++ b/lib/apicasso/version.rb @@ -1,3 +1,3 @@ module Apicasso - VERSION = '0.4.0'.freeze + VERSION = '0.4.1'.freeze end diff --git a/lib/generators/apicasso/install/templates/create_apicasso_tabl...
Adding explict uuid extension initializer
autoforce_APIcasso
train
2f59a027a28ef50aeedb7753420a7605a2036aaa
diff --git a/pandas/tests/test_format.py b/pandas/tests/test_format.py index <HASH>..<HASH> 100644 --- a/pandas/tests/test_format.py +++ b/pandas/tests/test_format.py @@ -900,6 +900,7 @@ class TestDataFrameFormatting(tm.TestCase): def test_to_html_truncate(self): + raise nose.SkipTest("unreliable on tra...
TST: skip some unreliable html truncations tests on travis
pandas-dev_pandas
train
ece4a8b1a22a829cb8f1737fb092b67652da62e6
diff --git a/js/kucoin2.js b/js/kucoin2.js index <HASH>..<HASH> 100644 --- a/js/kucoin2.js +++ b/js/kucoin2.js @@ -144,6 +144,7 @@ module.exports = class kucoin2 extends Exchange { '411100': AccountSuspended, '500000': ExchangeError, 'order_not_exist': OrderNotFound, ...
Added kucoin2 cancel order exception
ccxt_ccxt
train
c8aa2fa12b510e090d6ebaf2d39590b6a55965ce
diff --git a/scopus/scopus_affiliation.py b/scopus/scopus_affiliation.py index <HASH>..<HASH> 100644 --- a/scopus/scopus_affiliation.py +++ b/scopus/scopus_affiliation.py @@ -1,6 +1,8 @@ import os import xml.etree.ElementTree as ET +import warnings +from scopus import config from scopus.utils import get_content, g...
Insert DeprecationWarnings in old classes
scopus-api_scopus
train
baf93abc850a8b0ca4c123b0d99f40adb69472cc
diff --git a/lib/influxdb.js b/lib/influxdb.js index <HASH>..<HASH> 100644 --- a/lib/influxdb.js +++ b/lib/influxdb.js @@ -192,7 +192,7 @@ InfluxdbBackend.prototype.processFlush = function (timestamp, metrics) { for (key in gauges) { /* Do not include statsd gauges. */ - if (!self.includeStatsdMetrics && k...
add missing parens from conditional
bernd_statsd-influxdb-backend
train
506544f9b343dae8ddc1bddedbfe386add8c89ea
diff --git a/lib/Pheasant.php b/lib/Pheasant.php index <HASH>..<HASH> 100755 --- a/lib/Pheasant.php +++ b/lib/Pheasant.php @@ -52,7 +52,7 @@ class Pheasant */ public function initialize($subject, $callback=null) { - $class = is_string($subject) ? $subject : get_class($subject); + $class = ...
Ensure classnames are canonical, trim leading backslash
lox_pheasant
train
6bf3010a34c8466e091c18ee85da59ef059f09e0
diff --git a/object/src/main/java/com/orientechnologies/orient/object/db/OObjectDatabaseTx.java b/object/src/main/java/com/orientechnologies/orient/object/db/OObjectDatabaseTx.java index <HASH>..<HASH> 100644 --- a/object/src/main/java/com/orientechnologies/orient/object/db/OObjectDatabaseTx.java +++ b/object/src/main/...
Fix in ObjectDatabase in case of loading of an entity with already loaded collections.
orientechnologies_orientdb
train
d8117c15e95853b5796193c3bc37462df29fe7fd
diff --git a/blueprints/ember-cli-lazy-load/files/config/bundles.js b/blueprints/ember-cli-lazy-load/files/config/bundles.js index <HASH>..<HASH> 100644 --- a/blueprints/ember-cli-lazy-load/files/config/bundles.js +++ b/blueprints/ember-cli-lazy-load/files/config/bundles.js @@ -10,13 +10,13 @@ module.exports = function...
- add some comments for the options
duizendnegen_ember-cli-lazy-load
train
58d2a8a8b28e6f45ca98729952870de92184cf05
diff --git a/mode/yaml/yaml.js b/mode/yaml/yaml.js index <HASH>..<HASH> 100644 --- a/mode/yaml/yaml.js +++ b/mode/yaml/yaml.js @@ -80,7 +80,7 @@ CodeMirror.defineMode("yaml", function() { } /* pairs (associative arrays) -> key */ - if (!state.pair && stream.match(/^\s*\S+(?=\s*:($|\s))/i)) { + ...
[yaml mode] Be less restrictive about keys in front of colons Issue #<I>
codemirror_CodeMirror
train
4db2bb366f1f9f86b91fb38ff250a56a0f07ce96
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -96,9 +96,11 @@ var publicAgent = { } config.projectId = project; }); + } else if (typeof config.projectId === 'number') { + config.projectId = config.projectId.toString(); } else if (type...
accept numeric project ids in config
keymetrics_trassingue
train
946ef89be2455832b9bdd521d54a35698a6ea0f0
diff --git a/src/Records/Relations/Relation.php b/src/Records/Relations/Relation.php index <HASH>..<HASH> 100644 --- a/src/Records/Relations/Relation.php +++ b/src/Records/Relations/Relation.php @@ -141,11 +141,12 @@ abstract class Relation */ public function setWithClass($name) { - $object = cal...
add check for initWith in relation
bytic_framework
train
ddb55d57f44d80f9195ebc0e6de46a1ef68068de
diff --git a/src/base/utils.js b/src/base/utils.js index <HASH>..<HASH> 100644 --- a/src/base/utils.js +++ b/src/base/utils.js @@ -53,7 +53,7 @@ var Fullscreen = { el.mozRequestFullScreen() } else if(el.msRequestFullscreen) { el.msRequestFullscreen() - } else if (el.querySelector && el.querySelect...
requestFullscreen function fix for when video tag not present
clappr_clappr
train
9d618d38cfd117a7d68b7b893e17a4b306086316
diff --git a/src/main/java/com/google/devtools/j2objc/gen/ObjectiveCHeaderGenerator.java b/src/main/java/com/google/devtools/j2objc/gen/ObjectiveCHeaderGenerator.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/google/devtools/j2objc/gen/ObjectiveCHeaderGenerator.java +++ b/src/main/java/com/google/devtools/j2o...
Allow methods and properties beginning with "init".
google_j2objc
train
db0c586a740fb7262d29cbf225d1099a0e823c69
diff --git a/respite/serializers/base.py b/respite/serializers/base.py index <HASH>..<HASH> 100644 --- a/respite/serializers/base.py +++ b/respite/serializers/base.py @@ -166,7 +166,7 @@ class Serializer(object): if isinstance(anything, dict): return serialize_dictionary(anything) - ...
Add support for set-serialization
jgorset_django-respite
train
1f19316dd1d978f851fde61bc9de46cfeab36270
diff --git a/spec/adapter/ms_uia/button_spec.rb b/spec/adapter/ms_uia/button_spec.rb index <HASH>..<HASH> 100644 --- a/spec/adapter/ms_uia/button_spec.rb +++ b/spec/adapter/ms_uia/button_spec.rb @@ -30,12 +30,12 @@ describe "MsUia::Button", :if => SpecHelper.adapter == :ms_uia do it "cannot click disabled button" ...
prefer expect {}.to over lambda {}.should
jarmo_RAutomation
train
8f63e8db1385d69e9e139ef80e44dae5a1c90501
diff --git a/src/org/opencms/ui/editors/messagebundle/CmsMessageBundleEditorTypes.java b/src/org/opencms/ui/editors/messagebundle/CmsMessageBundleEditorTypes.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/ui/editors/messagebundle/CmsMessageBundleEditorTypes.java +++ b/src/org/opencms/ui/editors/messagebundle/Cm...
Switched to auto-growing text areas.
alkacon_opencms-core
train
3bc5e63486bb5fe6e8ddf881d718ae211005e89a
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/measures/Metrics.java b/sonar-plugin-api/src/main/java/org/sonar/api/measures/Metrics.java index <HASH>..<HASH> 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/measures/Metrics.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/measures/Metrics.ja...
SONAR-<I> Metrics should be instanciated once per batch * my previous revert was not complete
SonarSource_sonarqube
train
45d322d8e8b0b20a49a861c40d2e98e92e92db48
diff --git a/release.config.js b/release.config.js index <HASH>..<HASH> 100644 --- a/release.config.js +++ b/release.config.js @@ -15,7 +15,9 @@ module.exports = { ] } , releaseRules: [ - {type: 'build', release: 'patch'} + {breaking: true, release: 'major'} + , {revert: true, re...
fix: correct release rules for semantic-release configure all breaking changes as a major release and all reverts as patch releases
esatterwhite_node-seeli
train
d24604a22a9b82f9e795d981948374538fd8b253
diff --git a/gffutils/interface.py b/gffutils/interface.py index <HASH>..<HASH> 100644 --- a/gffutils/interface.py +++ b/gffutils/interface.py @@ -406,10 +406,98 @@ class FeatureDB(object): for i in c: yield _feature.Feature(i, dialect=self.dialect) + @classmethod + def interfeatures(self,...
add FeatureDB.interfeatures and doctest
daler_gffutils
train
231d8a1cbe119b498c0f5004cc8d8ab7151e81a7
diff --git a/src/main/java/org/ucmtwine/proxy/ScriptProxy.java b/src/main/java/org/ucmtwine/proxy/ScriptProxy.java index <HASH>..<HASH> 100755 --- a/src/main/java/org/ucmtwine/proxy/ScriptProxy.java +++ b/src/main/java/org/ucmtwine/proxy/ScriptProxy.java @@ -14,8 +14,8 @@ import java.lang.reflect.InvocationTargetExcept...
Updated ScriptProxy to return vars and functions alphabetically to be a little more predictable
tstirrat_ucm-twine
train
756bec8088acf50c74c3cfc47c727c235f3bbcec
diff --git a/src/configure.js b/src/configure.js index <HASH>..<HASH> 100644 --- a/src/configure.js +++ b/src/configure.js @@ -329,7 +329,9 @@ export class Configure { let pathClosure = path.toString(); let xhr = new XMLHttpRequest(); - xhr.overrideMimeType('application/json'); + ...
Checks for existence of overrideMimeType function on XMLHttpRequest. This function does not exist in <IE<I>, which breaks Aurelia application on IE<I> browsers. Initial checks seem to indicate that it works fine with this code change. (#<I>)
Vheissu_aurelia-configuration
train
c3cf7ca439bed5b88664ce6b42eb9521250fb6a7
diff --git a/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb b/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb index <HASH>..<HASH> 100644 --- a/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +++ b/lib/active_admin/orm/active_record/comme...
fix build_comment_form method
activeadmin_activeadmin
train
9efa12073ab2164c5319c4ef81ab926762eb1bbb
diff --git a/robolectric-shadows/shadows-core/src/main/java/org/robolectric/shadows/ShadowSystemClock.java b/robolectric-shadows/shadows-core/src/main/java/org/robolectric/shadows/ShadowSystemClock.java index <HASH>..<HASH> 100644 --- a/robolectric-shadows/shadows-core/src/main/java/org/robolectric/shadows/ShadowSystem...
issue #<I> : System clock should not fail when application is not ready yet.
robolectric_robolectric
train
c15e04193aac3b54f426b07049d9261385fdfde8
diff --git a/admin/classes/local/entities/task_log.php b/admin/classes/local/entities/task_log.php index <HASH>..<HASH> 100644 --- a/admin/classes/local/entities/task_log.php +++ b/admin/classes/local/entities/task_log.php @@ -249,6 +249,20 @@ class task_log extends base { )) ->add_joins($this->ge...
MDL-<I> task: Add type filter to task logs system report Adding 'type' filter to be able to filter between Ad hoc and Scheduled tasks
moodle_moodle
train
b41b1ba89cf54933a5ad926b70c8d90e0f136a4b
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -17,8 +17,6 @@ var items = [ require('./build/npm/navigation-react/package.json')), Object.assign({ globals: { knockout: 'ko' } }, require('./build/npm/navigation-knockout/package.json')), - ...
Removed navigation angular build entry
grahammendick_navigation
train
5aaab1f569333e7c75c58482c3fee18884be2ac4
diff --git a/lib/origami/annotations.rb b/lib/origami/annotations.rb index <HASH>..<HASH> 100644 --- a/lib/origami/annotations.rb +++ b/lib/origami/annotations.rb @@ -106,91 +106,51 @@ module Origami module Triggerable def onMouseOver(action) - unless action.is_a...
annotations: remove type check on event actions
gdelugre_origami
train
accacb1badbfe500a4383c45bf8e56945b458040
diff --git a/lib/rake-pipeline-web-filters/handlebars_filter.rb b/lib/rake-pipeline-web-filters/handlebars_filter.rb index <HASH>..<HASH> 100644 --- a/lib/rake-pipeline-web-filters/handlebars_filter.rb +++ b/lib/rake-pipeline-web-filters/handlebars_filter.rb @@ -35,7 +35,7 @@ module Rake::Pipeline::Web::Filters ...
use name key_name_proc, other options end in proc so following that standard
wycats_rake-pipeline-web-filters
train
986ce86beab638a3086fb14d38d9273ee47d56ea
diff --git a/actions/MediaImport.php b/actions/MediaImport.php index <HASH>..<HASH> 100755 --- a/actions/MediaImport.php +++ b/actions/MediaImport.php @@ -31,6 +31,8 @@ use oat\taoMediaManager\model\ZipImporter; */ class MediaImport extends \tao_actions_Import { + private $importHandlers; + public function...
modify file importer and media service to edit an instance on upload image
oat-sa_extension-tao-mediamanager
train