hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
924c5224b053cee6eb5fa94a29b0626550eb97fc
diff --git a/Parts/Table.php b/Parts/Table.php index <HASH>..<HASH> 100644 --- a/Parts/Table.php +++ b/Parts/Table.php @@ -2,26 +2,9 @@ /** * This file is part of the Miny framework. + * (c) Dániel Buga <daniel@bugadani.hu> * - * This program is free software: you can redistribute it and/or modify - * it under t...
Update an old header. Minor changes preparing to implement inserting/deleting/updating related data
bugadani_ORMiny
train
b7e8607bbbf8b56d0e188ca99354717a4c4be408
diff --git a/CHANGELOG b/CHANGELOG index <HASH>..<HASH> 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -13,6 +13,8 @@ Release 4.0.46 The fact that this was not done previously caused a lot of confusion amongst Python users, who wondered why their `passenger_wsgi.py` could not import any modules from the same dir...
Require a parameter to start WSGI socket hijacking. This works around a compatibility problem with Django. Closes GH-<I>.
phusion_passenger
train
840bc14295427d02897b53f1add395a0f974394a
diff --git a/src/Probability/Distribution/Discrete/NegativeBinomial.php b/src/Probability/Distribution/Discrete/NegativeBinomial.php index <HASH>..<HASH> 100644 --- a/src/Probability/Distribution/Discrete/NegativeBinomial.php +++ b/src/Probability/Distribution/Discrete/NegativeBinomial.php @@ -2,43 +2,46 @@ namespace ...
Minor improvement to NegativeBinomial.
markrogoyski_math-php
train
2ec9b33f074b1061c15caa3482911c2142c7909d
diff --git a/src/Sulu/Bundle/AdminBundle/Resources/js/services/ResourceRequester/registries/resourceRouteRegistry.js b/src/Sulu/Bundle/AdminBundle/Resources/js/services/ResourceRequester/registries/resourceRouteRegistry.js index <HASH>..<HASH> 100644 --- a/src/Sulu/Bundle/AdminBundle/Resources/js/services/ResourceReque...
Fix ResourceRouteRegistry to accept boxed observable inside of parameters (#<I>)
sulu_sulu
train
9583427da1434c690a7a25a6526d3b2b8bfde315
diff --git a/backtrader/strategy.py b/backtrader/strategy.py index <HASH>..<HASH> 100644 --- a/backtrader/strategy.py +++ b/backtrader/strategy.py @@ -497,11 +497,13 @@ class Strategy(with_metaclass(MetaStrategy, StrategyBase)): size = abs(size or possize) if possize > 0: - return self.se...
Correct method close of strategy by using kwargs which was not taking into account the existence of a plimit parameter in methods buy/sell and would pass the execution type as plimit
backtrader_backtrader
train
645aeb953886ce0ccb8d426351671e5c0bcdf0d6
diff --git a/extract.js b/extract.js index <HASH>..<HASH> 100644 --- a/extract.js +++ b/extract.js @@ -3,7 +3,7 @@ var util = require('util'); var bl = require('bl'); var headers = require('./headers'); -var Writable = stream.Writable; +var Writable = stream.Writable || require('readable-stream').Writable; var Pas...
add readable-stream fallback for readable and writable.
mafintosh_tar-stream
train
43d2d00a44875dbebc884262e4dd3f03c8b465e7
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [10.1.0](https://pypi.org/project/directory-cms-client/10.0.1/) (2019-05-31) +[Full Changelog](https://github.com/uktrade/directory-cms-client/pull/44/files) + +**Implemented en...
Added limit and offset optional params to list by page type
uktrade_directory-cms-client
train
7269bdbe27c9106ea8a81043065301d007349c7d
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -79,6 +79,12 @@ const ( TLSImplicit TLSMode = 1 ) +// for testing +type stubResponse struct { + code int + msg string +} + // Config contains configuration for a Client object. type Config struct { // User name. ...
Fix PASV mode. If EPSV mode didn't work, it was trying to fall back to PASV mode, but it wasn't saving the return value of the PASV command properly. To test it, I added a "stubResponses" field on Config that tests can use to stub out responses from the server.
secsy_goftp
train
42699e3014ac4d194f696780bc5f4b43c9fe7416
diff --git a/ask-sdk-core/src/com/amazon/ask/response/ResponseBuilder.java b/ask-sdk-core/src/com/amazon/ask/response/ResponseBuilder.java index <HASH>..<HASH> 100644 --- a/ask-sdk-core/src/com/amazon/ask/response/ResponseBuilder.java +++ b/ask-sdk-core/src/com/amazon/ask/response/ResponseBuilder.java @@ -249,11 +249,2...
Check if text is null in reprompt
alexa_alexa-skills-kit-sdk-for-java
train
f128dd0b7b230e6dd92c0dd65c0615b14cdb67e9
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -96,3 +96,46 @@ test('encoder should decode to the same object that was encoded', (t) => { t.deepEqual(testObj, decoded) t.end() }) + +test('multitest: encoder should encode/decode to the same object', (t) => { + let numTe...
randomly generate objects/configs to test
rolyatmax_encode-object
train
ee22ae137b561eca3421a946c6327a9d1b708b71
diff --git a/qtpy/QtWidgets.py b/qtpy/QtWidgets.py index <HASH>..<HASH> 100644 --- a/qtpy/QtWidgets.py +++ b/qtpy/QtWidgets.py @@ -63,7 +63,8 @@ elif os.environ[QT_API] in PYQT4_API: QPrintPreviewDialog, QPrintPreviewWidget, QPrinter, QPrinterInfo) # These objects belong to QtCore - del (QItemSelect...
QtWidgets: Remove QItemSelectionModel for PyQt4 and PySide - It belongs to QtCore in PyQt5 - This finishes PR #<I>
spyder-ide_qtpy
train
61f817d172160d8e33a5766e0a5c68ad6131cabd
diff --git a/salt/modules/win_certutil.py b/salt/modules/win_certutil.py index <HASH>..<HASH> 100644 --- a/salt/modules/win_certutil.py +++ b/salt/modules/win_certutil.py @@ -44,7 +44,8 @@ def get_cert_serial(cert_file): ''' cmd = "certutil.exe -verify {0}".format(cert_file) out = __salt__['cmd.run'](cmd...
Match serials based on output position (fix for non-English languages)
saltstack_salt
train
220c828a65a3b7b22971f7fad85ab7278b3398a8
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,10 @@ "version": "2.0.0", "description": "K-means in Javascript", "main": "src/kmeans.js", - "directories": { - "lib": "src", - "test": "test" - }, + "files": [ + "src", + "toni...
feat: when maxIterations is 0, iterates until converge
mljs_kmeans
train
504e20c704a736580a861cb36c4d1bf2367bb400
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/profiles_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/profiles_controller.rb index <HASH>..<HASH> 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/profiles_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/...
SONAR-<I> Filter disable rules in "Compare Profiles"
SonarSource_sonarqube
train
0b3b681f9a9df5d975f77b7928572f3739655fd4
diff --git a/staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go b/staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go index <HASH>..<HASH> 100644 --- a/staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go +++ b/staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go @@ -57,7 +57,7 @@ type Encoder in...
fix typo in runtime/interfaces.go
kubernetes_kubernetes
train
91cd2d5f2a273a0ff118ca85968aa409c45f1312
diff --git a/GestureHandler.js b/GestureHandler.js index <HASH>..<HASH> 100644 --- a/GestureHandler.js +++ b/GestureHandler.js @@ -341,11 +341,6 @@ const btnStyles = StyleSheet.create({ top: 0, }, borderlessContainer: { - position: 'absolute', - left: 0, - right: 0, - bottom: 0, - top: 0, }...
Remove absolute positioning from BorderlessButton Animated container
kmagiera_react-native-gesture-handler
train
be5b906b115ec0034ec8b6d32e544e0862fc8ce1
diff --git a/src/test/java/net/orfjackal/nestedjunit/NestedJUnit4.java b/src/test/java/net/orfjackal/nestedjunit/NestedJUnit4.java index <HASH>..<HASH> 100644 --- a/src/test/java/net/orfjackal/nestedjunit/NestedJUnit4.java +++ b/src/test/java/net/orfjackal/nestedjunit/NestedJUnit4.java @@ -16,11 +16,12 @@ package ne...
NestedJUnit4: enable @Before and @After in the surrounding parent class
luontola_nestedjunit
train
3cf9a3cefcfdd84bef303368da06565f94da9cae
diff --git a/bika/lims/skins/bika/guard_sample_transition.py b/bika/lims/skins/bika/guard_sample_transition.py index <HASH>..<HASH> 100644 --- a/bika/lims/skins/bika/guard_sample_transition.py +++ b/bika/lims/skins/bika/guard_sample_transition.py @@ -17,15 +17,12 @@ if workflow.getInfoFor(context, 'cancellation_state',...
Prevent future dated samples from causing workflow errors
senaite_senaite.core
train
cbffb766f3f5d45da856e8bf8a4467b1fc82cf18
diff --git a/lib/BasicResolver.php b/lib/BasicResolver.php index <HASH>..<HASH> 100644 --- a/lib/BasicResolver.php +++ b/lib/BasicResolver.php @@ -223,9 +223,10 @@ final class BasicResolver implements Resolver { /** @var \LibDNS\Records\Resource $record */ foreach ($answers as ...
Restrict caching to max one day
amphp_dns
train
b41508838fc01e41d87f5a8d62bb6f12970476f6
diff --git a/tests/rkt_auth_test.go b/tests/rkt_auth_test.go index <HASH>..<HASH> 100644 --- a/tests/rkt_auth_test.go +++ b/tests/rkt_auth_test.go @@ -23,8 +23,8 @@ import ( "testing" "github.com/coreos/rkt/Godeps/_workspace/src/github.com/ThomasRooney/gexpect" - taas "github.com/coreos/rkt/Godeps/_workspace/src/...
functional tests: Fix imports and formatting
rkt_rkt
train
2220b27e0b5d14904e166b6bb2afc03b7dcb1ce0
diff --git a/lib/navigator/tag.rb b/lib/navigator/tag.rb index <HASH>..<HASH> 100644 --- a/lib/navigator/tag.rb +++ b/lib/navigator/tag.rb @@ -40,6 +40,7 @@ module Navigator def expand_data_attributes! attrs return unless attrs.key? :data + attrs.delete(:data).each { |key, value| attrs["data-#{key}...
Fixed Layout/EmptyLineAfterGuardClause cop issues. Resolves issues where spaces were missing after guard clauses.
bkuhlmann_navigator
train
e29556a35312ecc9382c15628929377ff834dfb5
diff --git a/nion/swift/DocumentController.py b/nion/swift/DocumentController.py index <HASH>..<HASH> 100644 --- a/nion/swift/DocumentController.py +++ b/nion/swift/DocumentController.py @@ -80,7 +80,9 @@ class DocumentController: self.document_window.on_about_to_show = self.about_to_show self.documen...
Make DocumentController work when there is no workspace_dir.
nion-software_nionswift
train
089ef9085a472fbb740ee462775420204d93eda7
diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/DatabaseLookupTests.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/DatabaseLookupTests.java index <HASH>..<HASH> 100644 --- a/spring-...
Polish "Add HANA to the lookup of well-known databases" Closes gh-<I>
spring-projects_spring-boot
train
d92cd5ebebb3e6ffca1ecbc5e9818c0be72980cd
diff --git a/internal/service/rds/cluster_role_association.go b/internal/service/rds/cluster_role_association.go index <HASH>..<HASH> 100644 --- a/internal/service/rds/cluster_role_association.go +++ b/internal/service/rds/cluster_role_association.go @@ -7,6 +7,7 @@ import ( "github.com/aws/aws-sdk-go/aws" "github....
Adds Retry for IAM propagation and extends timeout for DB Cluster Role Association
terraform-providers_terraform-provider-aws
train
4683a4d5223f20c20b0b3cee0447376bf8d47eb9
diff --git a/chroma/core.py b/chroma/core.py index <HASH>..<HASH> 100644 --- a/chroma/core.py +++ b/chroma/core.py @@ -36,6 +36,8 @@ class Color(object): self.hls = color_value elif format.upper() == 'HSV': self.hsv = color_value + elif format.upper() == 'CMYK': + se...
Add support for CMYK (property, setter, tests, coord)
seenaburns_Chroma
train
8b4ac28a53099fc341903c63513dee318ab63f3e
diff --git a/MesoPy.py b/MesoPy.py index <HASH>..<HASH> 100755 --- a/MesoPy.py +++ b/MesoPy.py @@ -199,9 +199,9 @@ class Meso(object): US state, 2-letter ID e.g. state='CO'. country: string, optional Single or comma separated list of abbreviated 2 or 3 character countries e.g. country...
Changed two comment lines from "string" to "list" to accurately reflect what input type is needed
mesowx_MesoPy
train
014fe56b118fd79f65d1466a96e6a5bef26e5bec
diff --git a/JMapper Framework/src/main/java/com/googlecode/jmapper/util/FilesManager.java b/JMapper Framework/src/main/java/com/googlecode/jmapper/util/FilesManager.java index <HASH>..<HASH> 100644 --- a/JMapper Framework/src/main/java/com/googlecode/jmapper/util/FilesManager.java +++ b/JMapper Framework/src/main/java...
in XStream root element: added encoding and xml namespace
jmapper-framework_jmapper-core
train
40fedc3c7adcd5052cffde3a1770b51302301942
diff --git a/lib/celluloid/supervision_group.rb b/lib/celluloid/supervision_group.rb index <HASH>..<HASH> 100644 --- a/lib/celluloid/supervision_group.rb +++ b/lib/celluloid/supervision_group.rb @@ -87,6 +87,11 @@ module Celluloid def actors @members.map(&:actor) end + + def [](actor_name) + ...
Add ability to access actors by name actors being supervised can now be accessed by name similar to how the global registry Use the internal registry instead of the actor list to
celluloid_celluloid
train
9b72972d16ce06fa0de672ce16248a245ab045e1
diff --git a/config/initializers/honeybadger.rb b/config/initializers/honeybadger.rb index <HASH>..<HASH> 100644 --- a/config/initializers/honeybadger.rb +++ b/config/initializers/honeybadger.rb @@ -1,4 +1,5 @@ Honeybadger.configure do |config| config.api_key = ENV['HONEYBADGER_API_KEY'] + config.unwrap_exceptions...
Dont unwrap exceptions before sending to honeybadger We actually wanna see the top level error so we can track it better, and ignore a few top-level ones. see the conversation in here <URL>
rubygems_rubygems.org
train
5deb455955d3b2f27c371d7b50fb0e167ad79568
diff --git a/ember-cli-build.js b/ember-cli-build.js index <HASH>..<HASH> 100644 --- a/ember-cli-build.js +++ b/ember-cli-build.js @@ -9,7 +9,6 @@ const path = require('path'); const typescript = require('broccoli-typescript-compiler').default; const buble = require('rollup-plugin-buble'); const fs = require('fs'); ...
Remove unused variable in ember-cli-build.js
BackburnerJS_backburner.js
train
755442241af0d5c57e25a93d0c37d51ec05c3217
diff --git a/editquality/__init__.py b/editquality/__init__.py index <HASH>..<HASH> 100644 --- a/editquality/__init__.py +++ b/editquality/__init__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ de...
Increments version to <I>
wikimedia_editquality
train
828279e6c0e31561b21f8b209f5c3a96deac2642
diff --git a/GruntTasks/Targets/concat.orchestra_js.js b/GruntTasks/Targets/concat.orchestra_js.js index <HASH>..<HASH> 100644 --- a/GruntTasks/Targets/concat.orchestra_js.js +++ b/GruntTasks/Targets/concat.orchestra_js.js @@ -121,15 +121,7 @@ module.exports = { //--[ USER ]--// 'web/built/openorchestrabackof...
refraich page after site creation
open-orchestra_open-orchestra-cms-bundle
train
1284690cf983f8f4044604936665fc07dce6231a
diff --git a/src/js/core/core.js b/src/js/core/core.js index <HASH>..<HASH> 100644 --- a/src/js/core/core.js +++ b/src/js/core/core.js @@ -3,7 +3,7 @@ // Export a global module. var tangelo = {}; -(function ($) { +(function () { "use strict"; // Tangelo version number. @@ -22,16 +22,6 @@ var tangelo = {...
Removed JQuery dependence from core.js.
Kitware_tangelo
train
afe91b5e68a61798cc507f62a64c7daadbb7d943
diff --git a/scapy/arch/bpf/supersocket.py b/scapy/arch/bpf/supersocket.py index <HASH>..<HASH> 100644 --- a/scapy/arch/bpf/supersocket.py +++ b/scapy/arch/bpf/supersocket.py @@ -108,7 +108,7 @@ class _L2bpfSocket(SuperSocket): try: fcntl.ioctl(self.ins, BIOCPROMISC, struct.pack('i', value)) ...
Add docstrings to _load() and load_*() (@guedou)
secdev_scapy
train
381930b165d84cdc38a24407503be7f9f853b7ff
diff --git a/tests/Probability/CombinatoricsTest.php b/tests/Probability/CombinatoricsTest.php index <HASH>..<HASH> 100644 --- a/tests/Probability/CombinatoricsTest.php +++ b/tests/Probability/CombinatoricsTest.php @@ -271,26 +271,26 @@ class CombinatoricsTest extends \PHPUnit\Framework\TestCase public function da...
t Simplify test data provider formatting.
markrogoyski_math-php
train
da6bfa3305a1d73fe016c9a8c0cc52576ed6f85e
diff --git a/cassandra/cluster.py b/cassandra/cluster.py index <HASH>..<HASH> 100644 --- a/cassandra/cluster.py +++ b/cassandra/cluster.py @@ -1846,6 +1846,9 @@ class ResponseFuture(object): Handle the response to our attempt to prepare a statement. If it succeeded, run the original query again agains...
Handle connection failure in between preparing and executing
datastax_python-driver
train
0f06fbab7c5b5aa92a075e872962f21f179d0609
diff --git a/nonblock/BackgroundWrite.py b/nonblock/BackgroundWrite.py index <HASH>..<HASH> 100644 --- a/nonblock/BackgroundWrite.py +++ b/nonblock/BackgroundWrite.py @@ -258,8 +258,9 @@ class BackgroundWriteProcess(threading.Thread): doFlush(fileObj) dataWritten += len(nextData)...
Test for now having charityPeriod = 1 block
kata198_python-nonblock
train
65ce2ba57d749c4d03a4785d793dafd149264dd9
diff --git a/Task/File/Csv/CsvWriterTask.php b/Task/File/Csv/CsvWriterTask.php index <HASH>..<HASH> 100644 --- a/Task/File/Csv/CsvWriterTask.php +++ b/Task/File/Csv/CsvWriterTask.php @@ -76,14 +76,13 @@ class CsvWriterTask extends AbstractCsvTask implements BlockingTaskInterface $resolver->setNormalizer( ...
Minor refactoring CsvWriterTask
cleverage_process-bundle
train
ac01a6e05492d4eda884a42a1a08e98a3debcd74
diff --git a/lib/meta_where/utility.rb b/lib/meta_where/utility.rb index <HASH>..<HASH> 100644 --- a/lib/meta_where/utility.rb +++ b/lib/meta_where/utility.rb @@ -20,8 +20,12 @@ module MetaWhere def args_for_predicate(value) case value - when ActiveRecord::Associations::AssociationCollection, ActiveR...
Fix for Lighthouse ticket #<I>, port of similar fix in Rails <I>.
activerecord-hackery_meta_where
train
d24ee5a155ca924367fb87bfe18c9191ef904b4f
diff --git a/ecs-init/docker/docker.go b/ecs-init/docker/docker.go index <HASH>..<HASH> 100644 --- a/ecs-init/docker/docker.go +++ b/ecs-init/docker/docker.go @@ -94,6 +94,10 @@ const ( // iptablesExecutableHostDir specifies the location of the iptable // executable inside container. iptablesExecutableContainerDi...
docker: add '/etc/alternatives' to mounts In some circumstances, /sbin/iptables may be a symlink to a binary in /etc/alternatives. In order to handle this case, its imperative that agent is also able to access the /etc/alternatives folder.
aws_amazon-ecs-agent
train
123092f0a45ed6da944148a350dc3f1165e549ef
diff --git a/bot/action/standard/logger.py b/bot/action/standard/logger.py index <HASH>..<HASH> 100644 --- a/bot/action/standard/logger.py +++ b/bot/action/standard/logger.py @@ -39,7 +39,8 @@ class LoggerAction(IntermediateAction): if async is None: async = self.async if async: - ...
Replace all workers with worker pools to avoid having inactive threads when not needed, saving memory
alvarogzp_telegram-bot-framework
train
4232881110d39fb24252f87088e8866bf51c7487
diff --git a/java-wrapper/src/main/java/com/codedisaster/steamworks/SteamSharedLibraryLoader.java b/java-wrapper/src/main/java/com/codedisaster/steamworks/SteamSharedLibraryLoader.java index <HASH>..<HASH> 100644 --- a/java-wrapper/src/main/java/com/codedisaster/steamworks/SteamSharedLibraryLoader.java +++ b/java-wrapp...
Attempt to fix shared library loading on Linux.
code-disaster_steamworks4j
train
5eb0ed167b303feed594b9dfff6491abffcca1af
diff --git a/log_sender/fake/fake_log_sender.go b/log_sender/fake/fake_log_sender.go index <HASH>..<HASH> 100644 --- a/log_sender/fake/fake_log_sender.go +++ b/log_sender/fake/fake_log_sender.go @@ -57,13 +57,12 @@ func (fls *FakeLogSender) SendAppErrorLog(appId, message, sourceType, sourceInst func (fls *FakeLogSende...
Change locking mechanism to be finer grained Use a read lock when reading and only lock for the actual writing
cloudfoundry_dropsonde
train
d402758b8b5b833cafdf400659772370e9a422bd
diff --git a/sqlbridge/__init__.py b/sqlbridge/__init__.py index <HASH>..<HASH> 100644 --- a/sqlbridge/__init__.py +++ b/sqlbridge/__init__.py @@ -16,4 +16,4 @@ ## ############################################################################### -__version__ = "0.1.63" +__version__ = "0.1.64" diff --git a/sqlbridge/t...
sync with pypi version: <I>
lgfausak_sqlbridge
train
49f244b50974d8f307b52e03c25c5f457740af1e
diff --git a/common.go b/common.go index <HASH>..<HASH> 100644 --- a/common.go +++ b/common.go @@ -1,7 +1,6 @@ package gorpc import ( - "encoding/gob" "log" "time" ) @@ -34,22 +33,6 @@ func SetErrorLogger(f LoggerFunc) { errorLogger = f } -// RegisterType registers the given type to send via rpc. -// -// ...
Moved RegisterType() from common.go to more appropriate encoding.go
valyala_gorpc
train
831fc9f72afd51e3b6808c88400f83eed2fa5e7a
diff --git a/psiturk/dashboard.py b/psiturk/dashboard.py index <HASH>..<HASH> 100644 --- a/psiturk/dashboard.py +++ b/psiturk/dashboard.py @@ -76,7 +76,8 @@ class MTurkServices: host=host) self.mtc = MTurkConnection(**mturkparams) - #TODO(): This should probably be moved to a sepa...
separating configuration of the hit parameters from connecting to the AWS server
NYUCCL_psiTurk
train
e39b8eade1f42503b6b7217e72eff4c8fdc13cb6
diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index <HASH>..<HASH> 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -960,3 +960,14 @@ func TestRootWorkdir(t *testing.T) { logDone("run - workdir /") } + +func TestAllow...
Allow / as source of -v We discussed this at the docker plumbers meetup and for tools and working on the system for things like boot2docker and coreos this is needed. You can already bypass this check so we felt it is ok to start allowing this feature. Docker-DCO-<I>-
containers_storage
train
14dfb8282aeb57aca352c61410ecf44b2e6e61ce
diff --git a/server/apps/xmlrpc/receiver.py b/server/apps/xmlrpc/receiver.py index <HASH>..<HASH> 100644 --- a/server/apps/xmlrpc/receiver.py +++ b/server/apps/xmlrpc/receiver.py @@ -18,6 +18,9 @@ log = logging.getLogger(__name__) def call(sender, action, instance, **kwargs): name = sender.__name__ + if not ...
skip creating action when istance doesn't exist
Pajinek_vhm
train
4febb58f71b7ba527e8959ed6282cc03dd97d6d5
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -1351,15 +1351,16 @@ function require_login($courseid=0, $autologinguest=true, $cm=null) { * the forcelogin option is turned on. * * @uses $CFG - * @param int $courseid The course in q...
Slightly more correct version ;-)
moodle_moodle
train
bc0459851a12e754de03a787ae42ada389072dbd
diff --git a/activerecord/test/cases/migration/compatibility_test.rb b/activerecord/test/cases/migration/compatibility_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/migration/compatibility_test.rb +++ b/activerecord/test/cases/migration/compatibility_test.rb @@ -479,48 +479,56 @@ module ActiveRecord...
Add missing tests for reference column types when migration version is <I>
rails_rails
train
137902f2f31d6b8234054a2efe1a6ca3728767aa
diff --git a/proxy/round_tripper/proxy_round_tripper.go b/proxy/round_tripper/proxy_round_tripper.go index <HASH>..<HASH> 100644 --- a/proxy/round_tripper/proxy_round_tripper.go +++ b/proxy/round_tripper/proxy_round_tripper.go @@ -159,9 +159,11 @@ func (rt *roundTripper) RoundTrip(originalRequest *http.Request) (*http....
When a backend fails, log if another attempt can be made
cloudfoundry_gorouter
train
7760bf1d19b2e04617e30675d13449eca4a808ef
diff --git a/glue/ligolw/dbtables.py b/glue/ligolw/dbtables.py index <HASH>..<HASH> 100644 --- a/glue/ligolw/dbtables.py +++ b/glue/ligolw/dbtables.py @@ -464,7 +464,7 @@ def idmap_create(connection): This function is for internal use, it forms part of the code used to re-map row IDs when merging multiple documents...
glue.ligolw: disallow null row IDs in ID remapping - found that ligolw_sqlite lobotomizes documents when null IDs are encountered. don't know about ligolw_add. won't fix at this time, will just make this explicitly disallowed in both programs
gwastro_pycbc-glue
train
05ee399884bf9b081ada955d1d663245177a897d
diff --git a/java/src/com/google/template/soy/plugin/java/internal/ValidatorErrorReporter.java b/java/src/com/google/template/soy/plugin/java/internal/ValidatorErrorReporter.java index <HASH>..<HASH> 100644 --- a/java/src/com/google/template/soy/plugin/java/internal/ValidatorErrorReporter.java +++ b/java/src/com/google...
The method is actually called create(). GITHUB_BREAKING_CHANGES=n/a ------------- Created by MOE: <URL>
google_closure-templates
train
9377700ca1bf7d7e23b1bdde36411580cc6cd14a
diff --git a/demo_admin_tools_zinnia/urls.py b/demo_admin_tools_zinnia/urls.py index <HASH>..<HASH> 100644 --- a/demo_admin_tools_zinnia/urls.py +++ b/demo_admin_tools_zinnia/urls.py @@ -1,9 +1,9 @@ """Urls for the admin_tools_zinnia demo""" from django.conf import settings from django.contrib import admin -from dja...
Update the urls for the demo
django-blog-zinnia_admin-tools-zinnia
train
839b1fc6c2b2e846ddac787256b8aa02d83ade34
diff --git a/src/Bibs.php b/src/Bibs.php index <HASH>..<HASH> 100644 --- a/src/Bibs.php +++ b/src/Bibs.php @@ -2,8 +2,6 @@ namespace Scriptotek\Alma; -use Scriptotek\Alma\Models\Bib; - class Bibs extends ResourceList implements ResourceListInterface { @@ -19,17 +17,6 @@ class Bibs extends ResourceList implemen...
refactor: move some logic into ResourceList
scriptotek_php-alma-client
train
5a537ddc8c01bb79a2b4e23a78493044279de69f
diff --git a/data/src/main/java/org/xillium/data/DataBinder.java b/data/src/main/java/org/xillium/data/DataBinder.java index <HASH>..<HASH> 100644 --- a/data/src/main/java/org/xillium/data/DataBinder.java +++ b/data/src/main/java/org/xillium/data/DataBinder.java @@ -52,9 +52,11 @@ public class DataBinder extends HashMa...
Fix: use an Iterator to delete auto-values
brianwhu_xillium
train
37313c52eab8d30dc1630907df68ef9016116789
diff --git a/DependencyInjection/AvanzuAdminThemeExtension.php b/DependencyInjection/AvanzuAdminThemeExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/AvanzuAdminThemeExtension.php +++ b/DependencyInjection/AvanzuAdminThemeExtension.php @@ -9,7 +9,7 @@ use Symfony\Component\HttpKernel\DependencyInject...
Improve configuration invalid messages. Issue #<I>
avanzu_AdminThemeBundle
train
4abf45d715bc795726ef25af84a3988ef4b3fc6b
diff --git a/openquake/engine/calculators/risk/event_based_fr/core.py b/openquake/engine/calculators/risk/event_based_fr/core.py index <HASH>..<HASH> 100644 --- a/openquake/engine/calculators/risk/event_based_fr/core.py +++ b/openquake/engine/calculators/risk/event_based_fr/core.py @@ -55,6 +55,17 @@ class AssetSiteAss...
Various improvements to event_based_fr
gem_oq-engine
train
5a4367d5621f48e942cefe48192f87b0953847a4
diff --git a/lib/engine_http.js b/lib/engine_http.js index <HASH>..<HASH> 100644 --- a/lib/engine_http.js +++ b/lib/engine_http.js @@ -85,7 +85,7 @@ HttpEngine.prototype.step = function step(requestSpec, ee, opts) { let params = requestSpec[method.toLowerCase()]; let uri = maybePrependBase(template(params.url...
Add ability to set default HTTP timeout with config.http.timeout config.timeout is to be deprecated in <I>
artilleryio_artillery
train
6464fc69f13f259ed813a922af42089de45354c8
diff --git a/test/integration/test-runner.js b/test/integration/test-runner.js index <HASH>..<HASH> 100644 --- a/test/integration/test-runner.js +++ b/test/integration/test-runner.js @@ -25,6 +25,8 @@ const assert = require('assert') const semver = require('semver') const helper = require('./helper') const deepEqual...
Wrap inside array ndjson bodies in integration test (#<I>) * Wrap inside array ndjson bodies * Fix path * Use orignal api name
elastic_elasticsearch-js
train
21a2b465a1738af0b96e9893b6df86a2d5d4a083
diff --git a/Grid/Source/Source.php b/Grid/Source/Source.php index <HASH>..<HASH> 100755 --- a/Grid/Source/Source.php +++ b/Grid/Source/Source.php @@ -210,7 +210,7 @@ abstract class Source implements DriverInterface } else { throw new PropertyAccessDeniedException(sprintf('...
Update Grid/Source/Source.php
APY_APYDataGridBundle
train
68fe41edbe2dcb490a4b8b0da13fdabe38e2ac02
diff --git a/skeleton/public/javascripts/common.js b/skeleton/public/javascripts/common.js index <HASH>..<HASH> 100644 --- a/skeleton/public/javascripts/common.js +++ b/skeleton/public/javascripts/common.js @@ -151,7 +151,7 @@ $(function () { }) function tag(tags) { - tags = tags.split(/,\s*/); + tags = tags.spli...
split tag by full-width strings
tnantoka_LooseLeaf
train
07f8c4356a283077a6dcabac38f6167740b98cc0
diff --git a/consume.php b/consume.php index <HASH>..<HASH> 100644 --- a/consume.php +++ b/consume.php @@ -1,14 +1,13 @@ <?php - error_reporting(E_ALL); + error_reporting(E_ALL); require 'settings.php'; require 'lib/onelogin/saml.php'; - $samlresponse = new SamlResponse($_POST['SAMLResponse']); - $s...
Update SamlResponse to use the SamlSettings in its constructor. Re-namespace the settings for consistency and safety.
onelogin_php-saml
train
cbab1165cbf3085f32668fc01a12be0b826593fd
diff --git a/tests/Query/BuilderTest.php b/tests/Query/BuilderTest.php index <HASH>..<HASH> 100644 --- a/tests/Query/BuilderTest.php +++ b/tests/Query/BuilderTest.php @@ -540,4 +540,33 @@ class BuilderTest extends UnitTestCase $this->assertEquals($rawEntries[0]['dn'], $model->getDn()); } } + ...
Added tests for addBinding method
Adldap2_Adldap2
train
29d9d600350aef8e1cd86dc46c23fca34816f64d
diff --git a/holoviews/operation/element.py b/holoviews/operation/element.py index <HASH>..<HASH> 100644 --- a/holoviews/operation/element.py +++ b/holoviews/operation/element.py @@ -433,9 +433,10 @@ class contours(ElementOperation): contours = NdOverlay(None, kdims=['Levels']) for level, cset in zi...
Fixed bug contours operation Didn't respect Path MOVETO commands resulting in malformed output
pyviz_holoviews
train
08851356cc1267b80ba88a26ff720dd591a68c93
diff --git a/src/medium-editor-md.js b/src/medium-editor-md.js index <HASH>..<HASH> 100644 --- a/src/medium-editor-md.js +++ b/src/medium-editor-md.js @@ -72,6 +72,9 @@ module.exports = function (options, callback) { // Element(s) that this instance of medium-editor is attached to is/are stored in .elements ...
Replace trimRight with regex replace. #<I>
IonicaBizau_medium-editor-markdown
train
b5a121e25fa2d3513f9da974e9da5d47ee5e7ea9
diff --git a/src/core/scene/a-scene.js b/src/core/scene/a-scene.js index <HASH>..<HASH> 100644 --- a/src/core/scene/a-scene.js +++ b/src/core/scene/a-scene.js @@ -386,7 +386,8 @@ module.exports.AScene = registerElement('a-scene', { vrDisplay = utils.device.getVRDisplay(); if (this.hasWebXR) { ...
Capture xrSession.end() promise to prevent errors
aframevr_aframe
train
c02b805499a16a0cd3d745734d59ec70d76e1293
diff --git a/xarray/core/dataset.py b/xarray/core/dataset.py index <HASH>..<HASH> 100644 --- a/xarray/core/dataset.py +++ b/xarray/core/dataset.py @@ -2900,7 +2900,6 @@ class Dataset(Mapping, ImplementsDatasetReduce, DataWithCoords): def rename( self, name_dict: Mapping[Hashable, Hashable] = None...
rm inplace arg to rename (#<I>) * rm inplace arg to rename * rm _check_inplace * rm test_rename_inplace
pydata_xarray
train
84098def5f12003b406b0970be19186c3fc8a320
diff --git a/lib/transforms/compressJavaScript.js b/lib/transforms/compressJavaScript.js index <HASH>..<HASH> 100644 --- a/lib/transforms/compressJavaScript.js +++ b/lib/transforms/compressJavaScript.js @@ -8,11 +8,7 @@ var compressorByName = {}; compressorByName.uglifyJs = function (assetGraph, javaScript, compressor...
compressJavaScript: Re-enable collapse_vars and cascade The problem was fixed in UglifyJS <I>: <URL>
assetgraph_assetgraph
train
e7c48c4c77563e2bfc8f5208ea373babcfc15c77
diff --git a/keyboard/keyboard.py b/keyboard/keyboard.py index <HASH>..<HASH> 100644 --- a/keyboard/keyboard.py +++ b/keyboard/keyboard.py @@ -396,9 +396,19 @@ def write(text, delay=0, restore_state_after=True): def send(combination, do_press=True, do_release=True): """ - Performs a given hotkey combination....
Update docs for low level functions
boppreh_keyboard
train
5f34a2a3d66a6795b3517f96382881e80b907478
diff --git a/theme/anomaly/renderers.php b/theme/anomaly/renderers.php index <HASH>..<HASH> 100644 --- a/theme/anomaly/renderers.php +++ b/theme/anomaly/renderers.php @@ -13,22 +13,27 @@ class theme_anomaly_core_renderer extends core_renderer { * @return string the HTML to be output. */ function block(...
theme-anomaly MDL-<I> Fixed regressions after recent block changes
moodle_moodle
train
3722ee20b5278c18dd39d8d216a02ea7e70eedbb
diff --git a/js/uex.js b/js/uex.js index <HASH>..<HASH> 100644 --- a/js/uex.js +++ b/js/uex.js @@ -83,6 +83,7 @@ module.exports = class uex extends Exchange { 'exceptions': { // descriptions from ↓ exchange // '0': 'no error', // succeed + '4': Insufficien...
uex handling for {"msg":"System maintenance!","code":"-<I>","data":null}
ccxt_ccxt
train
b56a8561a9e4ce4dffa78d58f1e0d285616a5c98
diff --git a/extensions/testlib/test/com/google/inject/testing/throwingproviders/CheckedProviderSubjectTest.java b/extensions/testlib/test/com/google/inject/testing/throwingproviders/CheckedProviderSubjectTest.java index <HASH>..<HASH> 100644 --- a/extensions/testlib/test/com/google/inject/testing/throwingproviders/Che...
Update tests for when withMessage() messages are displayed on separate lines from the main failure message. Before: some messsage: the main message After: some message the main message ------------- Created by MOE: <URL>
google_guice
train
e9d98734829b347d4efe55924252355ad2394f56
diff --git a/plumbum.py b/plumbum.py index <HASH>..<HASH> 100644 --- a/plumbum.py +++ b/plumbum.py @@ -56,30 +56,32 @@ def lookup(instances, filter_by=None): return instances -def get_options(input_args): - filter_by_kwargs = {} - for arg in input_args: - if arg.startswith('-'): - # ign...
refactor so options are all in the same func
crccheck_cloudwatch-to-graphite
train
d3ab51c2f8f02d8b6454ef92de7db03495272caf
diff --git a/Lib/fontbakery/reporters/terminal.py b/Lib/fontbakery/reporters/terminal.py index <HASH>..<HASH> 100644 --- a/Lib/fontbakery/reporters/terminal.py +++ b/Lib/fontbakery/reporters/terminal.py @@ -1,4 +1,4 @@ -# -*- coding: <encoding name> -*- +# -*- coding: utf-8 -*- from __future__ import absolute_import, ...
FIX: change code encoding header to 'utf-8'
googlefonts_fontbakery
train
3b210539164117d1292211c2cce5b0e5852043c6
diff --git a/udata/models/__init__.py b/udata/models/__init__.py index <HASH>..<HASH> 100644 --- a/udata/models/__init__.py +++ b/udata/models/__init__.py @@ -165,6 +165,31 @@ from udata.core.jobs.models import * from udata.features.transfer.models import * +def resolve(model): + ''' + Resolve a model given ...
Added models.resolve helper
opendatateam_udata
train
a79b868af4b72b3b6add86978fa152e1c4c420ca
diff --git a/python/tensorflowjs/converters/converter.py b/python/tensorflowjs/converters/converter.py index <HASH>..<HASH> 100644 --- a/python/tensorflowjs/converters/converter.py +++ b/python/tensorflowjs/converters/converter.py @@ -238,8 +238,8 @@ def setup_arugments(): required=False, default='tf_save...
remove the session_bundle and frozen_graph as valid input_format entries (#<I>) INTERNAL UX
tensorflow_tfjs
train
0984a12d36311b9d1cd94c7afd2add9d77ce78c8
diff --git a/SonataCoreBundle.php b/SonataCoreBundle.php index <HASH>..<HASH> 100644 --- a/SonataCoreBundle.php +++ b/SonataCoreBundle.php @@ -94,6 +94,7 @@ class SonataCoreBundle extends Bundle 'sonata_type_date_range_picker' => 'Sonata\CoreBundle\Form\Type\DateRangePickerType', 'sonata_type_...
Register sonata_type_color in form mapping (#<I>)
sonata-project_SonataCoreBundle
train
657539629e43dc9ee70fc03807ae28f574322205
diff --git a/src/directives/desktopgeolocation.js b/src/directives/desktopgeolocation.js index <HASH>..<HASH> 100644 --- a/src/directives/desktopgeolocation.js +++ b/src/directives/desktopgeolocation.js @@ -92,7 +92,7 @@ ngeo.DesktopGeolocationController = function($scope, $element, * @type {ol.Feature} * @priv...
Display position feature only when a valid position is found
camptocamp_ngeo
train
a696fe5e3155238fd8e9ec65224f94f6f25bb72b
diff --git a/redis/commands/core.py b/redis/commands/core.py index <HASH>..<HASH> 100644 --- a/redis/commands/core.py +++ b/redis/commands/core.py @@ -900,7 +900,9 @@ class ManagementCommands(CommandsProtocol): """ return self.execute_command("SELECT", index, **kwargs) - def info(self, section: U...
INFO - add support for taking multiple section arguments (#<I>) * add support for taking multiple section arguments * skip test
andymccurdy_redis-py
train
0c671a948e8f1b8273f3010cf4a2ea4ed8e810db
diff --git a/spec/factories/tools.rb b/spec/factories/tools.rb index <HASH>..<HASH> 100644 --- a/spec/factories/tools.rb +++ b/spec/factories/tools.rb @@ -17,7 +17,8 @@ FactoryBot.define do # keys COULD be in a different order from the given class # # Usable in context '#to_h' (keys) - keys([:gemspec_...
tools (spec/factories) console added
SwagDevOps_kamaze-project
train
3e1c79a88a33a2f1f8e1e70e4ba76e30ed699247
diff --git a/tests/test_models.py b/tests/test_models.py index <HASH>..<HASH> 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -11,6 +11,9 @@ from pgallery.models import Gallery, Photo class UserFactory(factory.django.DjangoModelFactory): + username = factory.Sequence(lambda n: 'user_%d' % n) + ...
Fixed IntegrityErrors regarding users.
zsiciarz_django-pgallery
train
97cbc2594f4b60c4a4c39959709177ef44c8fcb0
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ CHANGELOG - Test suite has been refactored and now features Database (SQLite) tests too ### Changed +- Made the following classes _abstract_: `Support\Field`, `Support\InterfceType`, `Suppo...
Mark utility classes abstract Also complete a few more type declarations
rebing_graphql-laravel
train
c097cf2604c81b8515e4c69a7b77e75c1b997d40
diff --git a/src/main/java/com/cronutils/model/time/SingleExecutionTime.java b/src/main/java/com/cronutils/model/time/SingleExecutionTime.java index <HASH>..<HASH> 100755 --- a/src/main/java/com/cronutils/model/time/SingleExecutionTime.java +++ b/src/main/java/com/cronutils/model/time/SingleExecutionTime.java @@ -18,6 ...
#<I> solve daylight saving issue.
jmrozanec_cron-utils
train
c623962fabb8425a02dc2dbe097f4e4f87c4e3ed
diff --git a/lib/snapshot.js b/lib/snapshot.js index <HASH>..<HASH> 100644 --- a/lib/snapshot.js +++ b/lib/snapshot.js @@ -19,7 +19,7 @@ var Snapshot = function () { _classCallCheck(this, Snapshot); - this.css = css.clone(); + this.css = css.toString(); this.timestamp = Date.now(); this.prevPlu...
Work-around for postcss/postcss#<I>. Fixes #<I> Don't save clone of current CSS AST in Snapshot, but just the textual representation.
andywer_postcss-debug
train
a3dc8c577ea0b5d1d510c870ccd97b58d1d99a7c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ install_requires = [ 'Werkzeug~=0.0,>=0.12.2', 'elasticsearch-dsl~=2.0,>=2.2.0', 'elasticsearch~=2.0,>=2.4.1', - 'inspire-json-merger~=2.0,>=2.0.0', + 'inspire-json-merger~=5.0,>=5.0.0', ...
setup: bump inspire-json-merger to version ~<I> Sem-ver: breaks compatibility
inspirehep_inspire-matcher
train
783a6ae190fad68b909d55b42a3958d5944fb249
diff --git a/tests/unit/modules/test_chocolatey.py b/tests/unit/modules/test_chocolatey.py index <HASH>..<HASH> 100644 --- a/tests/unit/modules/test_chocolatey.py +++ b/tests/unit/modules/test_chocolatey.py @@ -16,15 +16,6 @@ from tests.support.mixins import LoaderModuleMockMixin from tests.support.unit import TestCas...
Move globals vars into class
saltstack_salt
train
bf6d8cb0ac529911f038beadef17b8dbd8bfdf46
diff --git a/gui.js b/gui.js index <HASH>..<HASH> 100644 --- a/gui.js +++ b/gui.js @@ -36,7 +36,7 @@ var GUI = new function() { // Do we know how to deal with this data type? if (handler == undefined) { - error("Cannot create controller for data type \"" + object + "\""); + error("Cannot create controller...
Small fix to gui.js
dataarts_dat.gui
train
1183c938a73619d53defd3e7af017b85f448e1f0
diff --git a/src/Hprose/Filter/JSONRPC/ClientFilter.php b/src/Hprose/Filter/JSONRPC/ClientFilter.php index <HASH>..<HASH> 100644 --- a/src/Hprose/Filter/JSONRPC/ClientFilter.php +++ b/src/Hprose/Filter/JSONRPC/ClientFilter.php @@ -14,7 +14,7 @@ * * * json rpc c...
Improved JSONRPC/ClientFilter
hprose_hprose-php
train
521d94841709a330d8b836b078e33c18e308879a
diff --git a/lib/ddr/index/fields.rb b/lib/ddr/index/fields.rb index <HASH>..<HASH> 100644 --- a/lib/ddr/index/fields.rb +++ b/lib/ddr/index/fields.rb @@ -2,16 +2,6 @@ module Ddr::Index module Fields extend Deprecation - def self.get(name) - const_get(name.to_s.upcase, false) - end - - def self....
Adds Ddr::Index::Fields.descmd Returns an array of Field instances for all descriptive metadata fields.
duke-libraries_ddr-models
train
2f8b6bfc7033f10de3a75eac7f979d37031ff61b
diff --git a/lenstronomy/Workflow/fitting_sequence.py b/lenstronomy/Workflow/fitting_sequence.py index <HASH>..<HASH> 100644 --- a/lenstronomy/Workflow/fitting_sequence.py +++ b/lenstronomy/Workflow/fitting_sequence.py @@ -343,7 +343,8 @@ class FittingSequence(object): return output def psf_iteration(se...
added 'symmetry_error' in fitting sequence
sibirrer_lenstronomy
train
ea393aa61178fad1a4ce7127b8c1d08535855bd0
diff --git a/src/Version.php b/src/Version.php index <HASH>..<HASH> 100644 --- a/src/Version.php +++ b/src/Version.php @@ -19,7 +19,7 @@ final class Version * Stable — 3.0.0 * Development — 3.1.0 alpha 1 */ - const VERSION = '3.6.0 beta 5'; + const VERSION = '3.6.0 beta 6'; /** ...
Prepare release Bolt <I> beta 6
bolt_bolt
train
b3c50b8693e08b61ed8f21c45c4e24eb5b568f93
diff --git a/werkzeug/contrib/sessions.py b/werkzeug/contrib/sessions.py index <HASH>..<HASH> 100644 --- a/werkzeug/contrib/sessions.py +++ b/werkzeug/contrib/sessions.py @@ -126,7 +126,7 @@ class Session(ModificationTrackingDict): def should_save(self): """True if the session should be saved.""" - ...
sessions save on new sessions too whereas secure cookies only save on modified sessions per default. Additionally expires is now set automatically if max_age is specified and sync_expires is not False. --HG-- branch : trunk
pallets_werkzeug
train
4c415e9bda38d06e0f1ddc40f6e17adb4a06a289
diff --git a/src/Config/Defaults.php b/src/Config/Defaults.php index <HASH>..<HASH> 100644 --- a/src/Config/Defaults.php +++ b/src/Config/Defaults.php @@ -28,8 +28,8 @@ class Defaults ), 'PATCH' => array( 'bin' => 'which patch', - 'check' => '[[b...
enforce "POSIX" behaviour to prevent partially applied patches.
vaimo_composer-patches
train
ff514e3db44eac4ffdf8a8a25b93854d75e7f519
diff --git a/src/ORM/EagerLoader.php b/src/ORM/EagerLoader.php index <HASH>..<HASH> 100644 --- a/src/ORM/EagerLoader.php +++ b/src/ORM/EagerLoader.php @@ -809,7 +809,7 @@ class EagerLoader protected function _groupKeys(BufferedStatement $statement, array $collectKeys): array { $keys = []; - wh...
Improve performance in eagerloader When loading external associations we need to enumerate all the records in the statement. Using fetchAll() results in fewer lines of code running and fewer allocations as the buffered results are not resized multiple times.
cakephp_cakephp
train
cac6ee1f96eb5d78b5d60ca79668ea9f3339974a
diff --git a/aws/resource_aws_pinpoint_sms_channel.go b/aws/resource_aws_pinpoint_sms_channel.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_pinpoint_sms_channel.go +++ b/aws/resource_aws_pinpoint_sms_channel.go @@ -57,9 +57,7 @@ func resourceAwsPinpointSMSChannelUpsert(d *schema.ResourceData, meta interface{ ...
aws_pinpoint_sms_channel => update doesn't preserve enabled param
terraform-providers_terraform-provider-aws
train
c4e6a53dfe3f6d921397164065369caf5e7a7bec
diff --git a/discord/voice_client.py b/discord/voice_client.py index <HASH>..<HASH> 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -399,7 +399,72 @@ class VoiceClient: raise ClientException('Popen failed: {0.__name__} {1}'.format(type(e), str(e))) - return StreamPlayer(pro...
Add experimental ytdl player.
Rapptz_discord.py
train
2933fec4da45efcdf17109498d27eaec4ebc79f1
diff --git a/hcl/hclsyntax/walk.go b/hcl/hclsyntax/walk.go index <HASH>..<HASH> 100644 --- a/hcl/hclsyntax/walk.go +++ b/hcl/hclsyntax/walk.go @@ -37,6 +37,8 @@ func Walk(node Node, w Walker) hcl.Diagnostics { diags = append(diags, Walk(node, w)...) return node }) + moreDiags := w.Exit(node) + diags = append(di...
hclsyntax: Walk must call Walker.Exit before returning
hashicorp_hcl
train
f8668356f62ce2bc6af7f17f00b9af483c9fdc37
diff --git a/openquake/hazard/opensha.py b/openquake/hazard/opensha.py index <HASH>..<HASH> 100644 --- a/openquake/hazard/opensha.py +++ b/openquake/hazard/opensha.py @@ -18,6 +18,7 @@ from openquake.hazard import tasks from openquake import kvs from openquake import settings from openquake.output import geotiff +fr...
added GMF NRML output to MonteCarloMixin (hazard)
gem_oq-engine
train
a1fbdff6cf0659d643c44f5723bd3c88b98d0c39
diff --git a/src/Controller/Backend/General.php b/src/Controller/Backend/General.php index <HASH>..<HASH> 100644 --- a/src/Controller/Backend/General.php +++ b/src/Controller/Backend/General.php @@ -2,7 +2,7 @@ namespace Bolt\Controller\Backend; -use Bolt\Collection\Bag; +use Bolt\Collection\MutableBag; use Bolt\...
Swap Bag for MutableBag
bolt_bolt
train