Small updates for Sandstorm release.

This commit is contained in:
James Cole 2018-10-08 19:54:37 +02:00
parent 8088c28235
commit 7f9b5e1e5e
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 126 additions and 2 deletions

View File

@ -553,6 +553,8 @@ opt/app/app/Import/Converter/RabobankDebitCredit.php
opt/app/app/Import/JobConfiguration/BunqJobConfiguration.php
opt/app/app/Import/JobConfiguration/FakeJobConfiguration.php
opt/app/app/Import/JobConfiguration/FileJobConfiguration.php
opt/app/app/Import/JobConfiguration/FinTSConfigurationSteps.php
opt/app/app/Import/JobConfiguration/FinTSJobConfiguration.php
opt/app/app/Import/JobConfiguration/JobConfigurationInterface.php
opt/app/app/Import/JobConfiguration/SpectreJobConfiguration.php
opt/app/app/Import/JobConfiguration/YnabJobConfiguration.php
@ -578,6 +580,7 @@ opt/app/app/Import/Prerequisites/YnabPrerequisites.php
opt/app/app/Import/Routine/BunqRoutine.php
opt/app/app/Import/Routine/FakeRoutine.php
opt/app/app/Import/Routine/FileRoutine.php
opt/app/app/Import/Routine/FinTSRoutine.php
opt/app/app/Import/Routine/RoutineInterface.php
opt/app/app/Import/Routine/SpectreRoutine.php
opt/app/app/Import/Routine/YnabRoutine.php
@ -782,6 +785,7 @@ opt/app/app/Support/Facades/FireflyConfig.php
opt/app/app/Support/Facades/Navigation.php
opt/app/app/Support/Facades/Preferences.php
opt/app/app/Support/Facades/Steam.php
opt/app/app/Support/FinTS/FinTS.php
opt/app/app/Support/FireflyConfig.php
opt/app/app/Support/Http/Controllers/AugumentData.php
opt/app/app/Support/Http/Controllers/BasicDataSupport.php
@ -805,6 +809,9 @@ opt/app/app/Support/Import/JobConfiguration/File/ConfigureRolesHandler.php
opt/app/app/Support/Import/JobConfiguration/File/ConfigureUploadHandler.php
opt/app/app/Support/Import/JobConfiguration/File/FileConfigurationInterface.php
opt/app/app/Support/Import/JobConfiguration/File/NewFileJobHandler.php
opt/app/app/Support/Import/JobConfiguration/FinTS/ChooseAccountHandler.php
opt/app/app/Support/Import/JobConfiguration/FinTS/FinTSConfigurationInterface.php
opt/app/app/Support/Import/JobConfiguration/FinTS/NewFinTSJobHandler.php
opt/app/app/Support/Import/JobConfiguration/Spectre/AuthenticatedHandler.php
opt/app/app/Support/Import/JobConfiguration/Spectre/ChooseAccountsHandler.php
opt/app/app/Support/Import/JobConfiguration/Spectre/ChooseLoginHandler.php
@ -833,6 +840,7 @@ opt/app/app/Support/Import/Routine/File/MappedValuesValidator.php
opt/app/app/Support/Import/Routine/File/MappingConverger.php
opt/app/app/Support/Import/Routine/File/OFXProcessor.php
opt/app/app/Support/Import/Routine/File/OpposingAccountMapper.php
opt/app/app/Support/Import/Routine/FinTS/StageImportDataHandler.php
opt/app/app/Support/Import/Routine/Spectre/StageAuthenticatedHandler.php
opt/app/app/Support/Import/Routine/Spectre/StageImportDataHandler.php
opt/app/app/Support/Import/Routine/Spectre/StageNewHandler.php
@ -1201,6 +1209,7 @@ opt/app/public/images/logos/bunq.png
opt/app/public/images/logos/csv.png
opt/app/public/images/logos/fake.png
opt/app/public/images/logos/file.png
opt/app/public/images/logos/fints.png
opt/app/public/images/logos/plaid.png
opt/app/public/images/logos/quovo.png
opt/app/public/images/logos/spectre.png
@ -1718,6 +1727,8 @@ opt/app/resources/views/import/file/configure-upload.twig
opt/app/resources/views/import/file/map.twig
opt/app/resources/views/import/file/new.twig
opt/app/resources/views/import/file/roles.twig
opt/app/resources/views/import/fints/choose_account.twig
opt/app/resources/views/import/fints/new.twig
opt/app/resources/views/import/index.twig
opt/app/resources/views/import/spectre/accounts.twig
opt/app/resources/views/import/spectre/choose-login.twig
@ -3030,6 +3041,7 @@ opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/MessageBag.php
opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/MessageProvider.php
opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/Renderable.php
opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/Responsable.php
opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Translation/HasLocalePreference.php
opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Translation/Loader.php
opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Translation/Translator.php
opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Validation/Factory.php
@ -3099,6 +3111,7 @@ opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/QueueEntityRes
opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/RelationNotFoundException.php
opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php
opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php
opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/AsPivot.php
opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php
opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php
opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasMany.php
@ -3485,6 +3498,7 @@ opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/PipelineServiceProvider.php
opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/composer.json
opt/app/vendor/laravel/framework/src/Illuminate/Queue/BeanstalkdQueue.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedClosure.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/Capsule/Manager.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/BeanstalkdConnector.php
@ -3537,6 +3551,7 @@ opt/app/vendor/laravel/framework/src/Illuminate/Queue/QueueManager.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/QueueServiceProvider.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/README.md
opt/app/vendor/laravel/framework/src/Illuminate/Queue/RedisQueue.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/SerializableClosure.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/SerializesAndRestoresModelIdentifiers.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/SerializesModels.php
opt/app/vendor/laravel/framework/src/Illuminate/Queue/SqsQueue.php
@ -4373,6 +4388,94 @@ opt/app/vendor/monolog/monolog/tests/Monolog/Processor/WebProcessorTest.php
opt/app/vendor/monolog/monolog/tests/Monolog/PsrLogCompatTest.php
opt/app/vendor/monolog/monolog/tests/Monolog/RegistryTest.php
opt/app/vendor/monolog/monolog/tests/Monolog/TestCase.php
opt/app/vendor/mschindler83/fints-hbci-php/COMPATIBILITY.md
opt/app/vendor/mschindler83/fints-hbci-php/LICENSE
opt/app/vendor/mschindler83/fints-hbci-php/README.md
opt/app/vendor/mschindler83/fints-hbci-php/Samples/saldo.php
opt/app/vendor/mschindler83/fints-hbci-php/Samples/statement_of_account.php
opt/app/vendor/mschindler83/fints-hbci-php/composer.json
opt/app/vendor/mschindler83/fints-hbci-php/composer.lock
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/AdapterInterface.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Curl.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Debug.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/AdapterException.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/CurlException.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Connection.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/EncryptionAlgorithm.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/HashAlgorithm.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/KeyName.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityDateTime.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityIdentificationDetails.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityProfile.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SignatureAlgorithm.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Bin.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Dat.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kik.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kti.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Ktv.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Deg.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Dialog.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Exception/FailedRequestException.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/FinTs.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/AbstractMessage.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/Message.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Account.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/SEPAAccount.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Saldo.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Statement.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/StatementOfAccount.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Transaction.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/Exception/MT940Exception.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/MT940.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetAccounts.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSEPAAccounts.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSaldo.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetStatementOfAccount.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Initialization.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Response.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/AbstractSegment.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKEND.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKIDN.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKKAZ.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSAL.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSPA.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSYN.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKVVB.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNHBK.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNHBS.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNSHA.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNSHK.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSD.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSK.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/NameMapping.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/Segment.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/SegmentInterface.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ConnectionTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/EncryptionAlgorithmTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/HashAlgorithmTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/KeyNameTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityDateTimeTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityIdentificationDetailsTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityProfileTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SignatureAlgorithmTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/BinTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/DatTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KikTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtiTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtvTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DegTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/FinTsTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Message/MessageTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/AccountTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SEPAAccountTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SaldoTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementOfAccountTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/TransactionTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ResponseTest/ResponseTest.php
opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/TestInit.php
opt/app/vendor/mschindler83/fints-hbci-php/phplint.sh
opt/app/vendor/mschindler83/fints-hbci-php/phpunit.xml.dist
opt/app/vendor/nesbot/carbon/LICENSE
opt/app/vendor/nesbot/carbon/composer.json
opt/app/vendor/nesbot/carbon/readme.md
@ -4456,6 +4559,23 @@ opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php
opt/app/vendor/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php
opt/app/vendor/nesbot/carbon/src/Carbon/Translator.php
opt/app/vendor/nesbot/carbon/src/JsonSerializable.php
opt/app/vendor/opis/closure/CHANGELOG.md
opt/app/vendor/opis/closure/LICENSE
opt/app/vendor/opis/closure/NOTICE
opt/app/vendor/opis/closure/README.md
opt/app/vendor/opis/closure/autoload.php
opt/app/vendor/opis/closure/composer.json
opt/app/vendor/opis/closure/functions.php
opt/app/vendor/opis/closure/src/Analyzer.php
opt/app/vendor/opis/closure/src/ClosureContext.php
opt/app/vendor/opis/closure/src/ClosureScope.php
opt/app/vendor/opis/closure/src/ClosureStream.php
opt/app/vendor/opis/closure/src/ISecurityProvider.php
opt/app/vendor/opis/closure/src/ReflectionClosure.php
opt/app/vendor/opis/closure/src/SecurityException.php
opt/app/vendor/opis/closure/src/SecurityProvider.php
opt/app/vendor/opis/closure/src/SelfReference.php
opt/app/vendor/opis/closure/src/SerializableClosure.php
opt/app/vendor/paragonie/constant_time_encoding/LICENSE.txt
opt/app/vendor/paragonie/constant_time_encoding/README.md
opt/app/vendor/paragonie/constant_time_encoding/composer.json
@ -5458,6 +5578,7 @@ opt/app/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php
opt/app/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php
opt/app/vendor/symfony/debug/Tests/Fixtures/FinalClass.php
opt/app/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php
opt/app/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php
opt/app/vendor/symfony/debug/Tests/Fixtures/InternalClass.php
opt/app/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php
opt/app/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php
@ -5466,6 +5587,7 @@ opt/app/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php
opt/app/vendor/symfony/debug/Tests/Fixtures/PEARClass.php
opt/app/vendor/symfony/debug/Tests/Fixtures/Throwing.php
opt/app/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php
opt/app/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php
opt/app/vendor/symfony/debug/Tests/Fixtures/casemismatch.php
opt/app/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php
opt/app/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php
@ -6539,6 +6661,7 @@ opt/app/vendor/symfony/var-dumper/Tests/Caster/XmlReaderCasterTest.php
opt/app/vendor/symfony/var-dumper/Tests/Cloner/DataTest.php
opt/app/vendor/symfony/var-dumper/Tests/Cloner/VarClonerTest.php
opt/app/vendor/symfony/var-dumper/Tests/Dumper/CliDumperTest.php
opt/app/vendor/symfony/var-dumper/Tests/Dumper/FunctionsTest.php
opt/app/vendor/symfony/var-dumper/Tests/Dumper/HtmlDumperTest.php
opt/app/vendor/symfony/var-dumper/Tests/Dumper/ServerDumperTest.php
opt/app/vendor/symfony/var-dumper/Tests/Fixtures/FooInterface.php

5
composer.lock generated
View File

@ -5678,6 +5678,7 @@
"propel/propel": ">=2.0.0-alpha1,<=2.0.0-alpha7",
"propel/propel1": ">=1,<=1.7.1",
"pusher/pusher-php-server": "<2.2.1",
"robrichards/xmlseclibs": ">=1,<3.0.2",
"sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9",
"sensiolabs/connect": "<4.2.3",
"serluck/phpwhois": "<=4.2.6",
@ -5718,7 +5719,7 @@
"symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
"symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
"thelia/backoffice-default-template": ">=2.1,<2.1.2",
"thelia/thelia": ">=2.1.0-beta1,<2.1.3|>=2.1,<2.1.2",
"thelia/thelia": ">=2.1,<2.1.2|>=2.1.0-beta1,<2.1.3",
"theonedemon/phpwhois": "<=4.2.5",
"titon/framework": ">=0,<9.9.99",
"truckersmp/phpwhois": "<=4.3.1",
@ -5774,7 +5775,7 @@
}
],
"description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
"time": "2018-10-02T16:19:22+00:00"
"time": "2018-10-05T18:14:02+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",