- First commit to issue fork.
- last update
almost 2 years ago 13 pass - Status changed to Needs review
almost 2 years ago 2:56pm 4 May 2023 - ๐ซ๐ทFrance andypost
There's new patch after RTBC and MR
Can we make it configurable?
- ๐ฎ๐ณIndia rajeshreeputra Pune
sure, will test this again and post the results
- First commit to issue fork.
- last update
over 1 year ago 13 pass - Status changed to RTBC
over 1 year ago 10:59am 19 September 2023 - ๐ณ๐ฟNew Zealand xurizaemon ลtepoti, Aotearoa ๐
AFAICT the proposed changes here are identical to the changes proposed as of #5, at which point there was test coverage and the behaviour was more consistent. I think this is good to merge.
This appears to work as it says on the tin, which is good - it eliminates a "round trip" issue where executing
drush dcim example
will generate a new filename for any files which already exist in the destination location, after which adrush dcem example
will update the default content exports to append a_0
suffix ... then_1
, then ...๐
- Open on Drupal.org โCore: 9.5.x + Environment: PHP 8.1 & MySQL 5.7last update
9 months ago Not currently mergeable. - last update
9 months ago 5 pass, 5 fail - Status changed to Needs work
7 months ago 10:10pm 23 August 2024 - First commit to issue fork.
- ๐ซ๐ทFrance Grimreaper France ๐ซ๐ท
Hi,
MR rebased to have a patch appliable on the 2.0.0-alpha3.
- ๐ซ๐ทFrance Grimreaper France ๐ซ๐ท
grimreaper โ changed the visibility of the branch 3200212-rebased-2.0.0-alpha3 to hidden.
- ๐ซ๐ทFrance Grimreaper France ๐ซ๐ท
grimreaper โ changed the visibility of the branch 3200212-rebased-2.0.0-alpha3 to active.
- ๐ซ๐ทFrance Grimreaper France ๐ซ๐ท
Hum, strange, MR is rebased, I also tried another one with only one commit. But patch is not applicable
Idea, I think it is because of changes in .info.yml
- ๐บ๐ธUnited States byrond
I don't think this sufficiently tests that additional files were not created:
// Assert the files, since a file already existed at that location, one has // been overwritten. $files = \Drupal::entityTypeManager()->getStorage('file')->loadByProperties(['filename' => 'test-file.txt']); $this->assertCount(1, $files);
The file is created during the test with
file_put_contents()
, so an entity for it won't exist in the database. To confirm this, I removed all but the test from the patch, and it didn't fail.