Skip to content

Commit 7860099

Browse files
Update sample-app lockfile for workflow 2.0.0-alpha.250 (#340)
1 parent fd24293 commit 7860099

3 files changed

Lines changed: 20 additions & 20 deletions

File tree

composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/resolve-current-artifacts.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
pinned_server_image="durableworkflow/server:0.2.574"
4+
pinned_server_image="durableworkflow/server:0.2.589"
55
pinned_cli_version="0.1.86"
6-
pinned_python_sdk_version="0.4.94"
7-
pinned_workflow_version="2.0.0-alpha.249"
6+
pinned_python_sdk_version="0.4.95"
7+
pinned_workflow_version="2.0.0-alpha.250"
88
pinned_waterline_version="2.0.0-alpha.120"
99
current_artifact_tuple_url="${DURABLE_WORKFLOW_CURRENT_ARTIFACT_TUPLE_URL:-https://durable-workflow.com/docs-page-release-audit.json}"
1010
waterline_catalog_url="${DURABLE_WORKFLOW_WATERLINE_CATALOG_URL:-https://repo.packagist.org/p2/durable-workflow/waterline.json}"

tests/Unit/PolyglotComposeContractTest.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -414,11 +414,11 @@ public function test_polyglot_smoke_installs_published_cli_and_configures_waterl
414414
$this->assertStringNotContainsString('DURABLE_WORKFLOW_WATERLINE_VERSION:=2.0.0-', $smokeShell);
415415
$this->assertIsArray($lockedPackages['durable-workflow/workflow'] ?? null);
416416
$this->assertSame(
417-
'2.0.0-alpha.249',
417+
'2.0.0-alpha.250',
418418
$lockedPackages['durable-workflow/workflow']['version'] ?? null,
419419
);
420420
$this->assertSame(
421-
'913413449a5c56bf8aaa4c254f8346cdd5ac673b',
421+
'cdb59bc5e27401be6749c893b28636a24b1f6530',
422422
$lockedPackages['durable-workflow/workflow']['source']['reference'] ?? null,
423423
);
424424
$this->assertIsArray($lockedPackages['durable-workflow/waterline'] ?? null);
@@ -628,11 +628,11 @@ public function test_polyglot_artifact_resolver_keeps_default_current_tuple_at_c
628628
'DURABLE_WORKFLOW_WATERLINE_CATALOG_URL' => 'file://'.$this->repoPath('tests/Fixtures/lagging-waterline-catalog.json'),
629629
], false);
630630

631-
$this->assertSame('durableworkflow/server:0.2.574', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
632-
$this->assertSame('0.2.574', $assignments['DURABLE_SERVER_VERSION'] ?? null);
631+
$this->assertSame('durableworkflow/server:0.2.589', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
632+
$this->assertSame('0.2.589', $assignments['DURABLE_SERVER_VERSION'] ?? null);
633633
$this->assertSame('0.1.86', $assignments['DURABLE_WORKFLOW_CLI_VERSION'] ?? null);
634-
$this->assertSame('0.4.94', $assignments['DURABLE_WORKFLOW_PYTHON_SDK_VERSION'] ?? null);
635-
$this->assertSame('2.0.0-alpha.249', $assignments['DURABLE_WORKFLOW_PHP_SDK_VERSION'] ?? null);
634+
$this->assertSame('0.4.95', $assignments['DURABLE_WORKFLOW_PYTHON_SDK_VERSION'] ?? null);
635+
$this->assertSame('2.0.0-alpha.250', $assignments['DURABLE_WORKFLOW_PHP_SDK_VERSION'] ?? null);
636636
$this->assertSame('2.0.0-alpha.120', $assignments['DURABLE_WORKFLOW_WATERLINE_VERSION'] ?? null);
637637
}
638638

@@ -642,14 +642,14 @@ public function test_polyglot_artifact_resolver_keeps_pinned_tuple_explicit(): v
642642
'DURABLE_WORKFLOW_ARTIFACT_SOURCE' => 'pinned',
643643
]);
644644

645-
$this->assertSame('durableworkflow/server:0.2.574', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
646-
$this->assertSame('0.2.574', $assignments['DURABLE_SERVER_VERSION'] ?? null);
645+
$this->assertSame('durableworkflow/server:0.2.589', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
646+
$this->assertSame('0.2.589', $assignments['DURABLE_SERVER_VERSION'] ?? null);
647647
$this->assertSame('0.1.86', $assignments['DURABLE_WORKFLOW_CLI_VERSION'] ?? null);
648648
$this->assertSame('dw==0.1.86', $assignments['DURABLE_WORKFLOW_CLI_PIN'] ?? null);
649-
$this->assertSame('0.4.94', $assignments['DURABLE_WORKFLOW_PYTHON_SDK_VERSION'] ?? null);
650-
$this->assertSame('2.0.0-alpha.249', $assignments['DURABLE_WORKFLOW_PHP_SDK_VERSION'] ?? null);
649+
$this->assertSame('0.4.95', $assignments['DURABLE_WORKFLOW_PYTHON_SDK_VERSION'] ?? null);
650+
$this->assertSame('2.0.0-alpha.250', $assignments['DURABLE_WORKFLOW_PHP_SDK_VERSION'] ?? null);
651651
$this->assertSame(
652-
'durable-workflow/workflow:2.0.0-alpha.249',
652+
'durable-workflow/workflow:2.0.0-alpha.250',
653653
$assignments['DURABLE_WORKFLOW_PHP_SDK_PIN'] ?? null,
654654
);
655655
$this->assertSame('2.0.0-alpha.120', $assignments['DURABLE_WORKFLOW_WATERLINE_VERSION'] ?? null);

0 commit comments

Comments
 (0)