Skip to content

Commit

Permalink
Merge branch 'release-3.8.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 8, 2024
2 parents 0924880 + 6af7e7f commit 4157149
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 8 deletions.
34 changes: 34 additions & 0 deletions migrations/Version202402071602394106_pciSamples.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

declare(strict_types=1);

namespace oat\pciSamples\migrations;

use Doctrine\DBAL\Schema\Schema;
use oat\pciSamples\scripts\install\RegisterPciTextReaderIMS;
use oat\pciSamples\scripts\install\RegisterPciTextReaderOAT;
use oat\tao\scripts\tools\migrations\AbstractMigration;

/**
* Auto-generated Migration: Please modify to your needs!
*
* phpcs:disable Squiz.Classes.ValidClassName
*/
final class Version202402071602394106_pciSamples extends AbstractMigration
{
public function getDescription(): string
{
return 'Update TextReader OAT & IMS PCIs to work with lodash 4';
}

public function up(Schema $schema): void
{
$this->runAction(new RegisterPciTextReaderOAT(), ['0.9.1']);
$this->runAction(new RegisterPciTextReaderIMS(), ['1.1.3']);
}

public function down(Schema $schema): void
{
$this->throwIrreversibleMigrationException('In order to undo this migration, restore the pre-lodash-4 versions of TextReader PCIs and run their registration scripts');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"typeIdentifier": "textReaderInteraction",
"label": "Text reader",
"description": "The Paging widget combines a scrolling widget with additional paging controls.",
"version": "0.9.0",
"version": "0.9.1",
"author": "Aleh Hutnikau",
"email": "contact@taotesting.com",
"tags": [
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"typeIdentifier": "textReaderInteraction",
"label": "Text reader",
"description": "The Paging widget combines a scrolling widget with additional paging controls.",
"version": "1.1.2",
"version": "1.1.3",
"author": "Aleh Hutnikau",
"email": "contact@taotesting.com",
"tags": [
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 4157149

Please sign in to comment.