Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #336 from tighten/v9.45.1-changes
Browse files Browse the repository at this point in the history
v9.45.1 changes
  • Loading branch information
jamisonvalenta authored Jan 13, 2023
2 parents 4f94320 + 8aefb71 commit e815cac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Support/SupportLazyCollectionIsLazyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ public function testWhereInstanceOfIsLazy()
$data = $this->make(['a' => 0])->concat(
$this->make([['a' => 1], ['a' => 2], ['a' => 3], ['a' => 4]])
->mapInto(stdClass::class)
);
);

$this->assertDoesNotEnumerateCollection($data, function ($collection) {
$collection->whereInstanceOf(stdClass::class);
Expand Down
2 changes: 1 addition & 1 deletion upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ function getCurrentVersionFromGitHub()
echo Getting current version from $repository...

if [ -z "$requestedVersion" ]; then
collectionVersion=$(git ls-remote $repository --tags v9.44\* | grep tags/ | grep -v {} | cut -d \/ -f 3 | cut -d v -f 2 | grep -v RC | grep -vi beta | sort -t. -k 1,1n -k 2,2n -k 3,3n| tail -1)
collectionVersion=$(git ls-remote $repository --tags v9.45\* | grep tags/ | grep -v {} | cut -d \/ -f 3 | cut -d v -f 2 | grep -v RC | grep -vi beta | sort -t. -k 1,1n -k 2,2n -k 3,3n| tail -1)
else
collectionVersion=$requestedVersion
fi
Expand Down

0 comments on commit e815cac

Please sign in to comment.