Skip to content

Commit ceac7a1

Browse files
TD-SAMPLE002: Refresh sample-app artifact lock tuple (#324)
1 parent 3477382 commit ceac7a1

3 files changed

Lines changed: 17 additions & 17 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
pinned_server_image="durableworkflow/server:0.2.545"
4+
pinned_server_image="durableworkflow/server:0.2.546"
55
pinned_cli_version="0.1.85"
66
pinned_python_sdk_version="0.4.93"
77
pinned_workflow_version="2.0.0-alpha.244"
8-
pinned_waterline_version="2.0.0-alpha.114"
8+
pinned_waterline_version="2.0.0-alpha.116"
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}"
1111

tests/Unit/PolyglotComposeContractTest.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -420,11 +420,11 @@ public function test_polyglot_smoke_installs_published_cli_and_configures_waterl
420420
);
421421
$this->assertIsArray($lockedPackages['durable-workflow/waterline'] ?? null);
422422
$this->assertSame(
423-
'2.0.0-alpha.114',
423+
'2.0.0-alpha.116',
424424
$lockedPackages['durable-workflow/waterline']['version'] ?? null,
425425
);
426426
$this->assertSame(
427-
'd90c172baff0f2371f2b58778553f1679b4ef89b',
427+
'c8901f84afd45bfbc3e9752234dafb60b2a46325',
428428
$lockedPackages['durable-workflow/waterline']['source']['reference'] ?? null,
429429
);
430430

@@ -624,12 +624,12 @@ public function test_polyglot_artifact_resolver_keeps_default_current_tuple_at_c
624624
'DURABLE_WORKFLOW_WATERLINE_CATALOG_URL' => 'file://'.$this->repoPath('tests/Fixtures/lagging-waterline-catalog.json'),
625625
], false);
626626

627-
$this->assertSame('durableworkflow/server:0.2.545', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
628-
$this->assertSame('0.2.545', $assignments['DURABLE_SERVER_VERSION'] ?? null);
627+
$this->assertSame('durableworkflow/server:0.2.546', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
628+
$this->assertSame('0.2.546', $assignments['DURABLE_SERVER_VERSION'] ?? null);
629629
$this->assertSame('0.1.85', $assignments['DURABLE_WORKFLOW_CLI_VERSION'] ?? null);
630630
$this->assertSame('0.4.93', $assignments['DURABLE_WORKFLOW_PYTHON_SDK_VERSION'] ?? null);
631631
$this->assertSame('2.0.0-alpha.244', $assignments['DURABLE_WORKFLOW_PHP_SDK_VERSION'] ?? null);
632-
$this->assertSame('2.0.0-alpha.114', $assignments['DURABLE_WORKFLOW_WATERLINE_VERSION'] ?? null);
632+
$this->assertSame('2.0.0-alpha.116', $assignments['DURABLE_WORKFLOW_WATERLINE_VERSION'] ?? null);
633633
}
634634

635635
public function test_polyglot_artifact_resolver_keeps_pinned_tuple_explicit(): void
@@ -638,8 +638,8 @@ public function test_polyglot_artifact_resolver_keeps_pinned_tuple_explicit(): v
638638
'DURABLE_WORKFLOW_ARTIFACT_SOURCE' => 'pinned',
639639
]);
640640

641-
$this->assertSame('durableworkflow/server:0.2.545', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
642-
$this->assertSame('0.2.545', $assignments['DURABLE_SERVER_VERSION'] ?? null);
641+
$this->assertSame('durableworkflow/server:0.2.546', $assignments['DURABLE_SERVER_IMAGE'] ?? null);
642+
$this->assertSame('0.2.546', $assignments['DURABLE_SERVER_VERSION'] ?? null);
643643
$this->assertSame('0.1.85', $assignments['DURABLE_WORKFLOW_CLI_VERSION'] ?? null);
644644
$this->assertSame('dw==0.1.85', $assignments['DURABLE_WORKFLOW_CLI_PIN'] ?? null);
645645
$this->assertSame('0.4.93', $assignments['DURABLE_WORKFLOW_PYTHON_SDK_VERSION'] ?? null);
@@ -648,9 +648,9 @@ public function test_polyglot_artifact_resolver_keeps_pinned_tuple_explicit(): v
648648
'durable-workflow/workflow:2.0.0-alpha.244',
649649
$assignments['DURABLE_WORKFLOW_PHP_SDK_PIN'] ?? null,
650650
);
651-
$this->assertSame('2.0.0-alpha.114', $assignments['DURABLE_WORKFLOW_WATERLINE_VERSION'] ?? null);
651+
$this->assertSame('2.0.0-alpha.116', $assignments['DURABLE_WORKFLOW_WATERLINE_VERSION'] ?? null);
652652
$this->assertSame(
653-
'durable-workflow/waterline:2.0.0-alpha.114',
653+
'durable-workflow/waterline:2.0.0-alpha.116',
654654
$assignments['DURABLE_WORKFLOW_WATERLINE_PIN'] ?? null,
655655
);
656656
}

0 commit comments

Comments
 (0)