Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): Bump to version 0.5.0 #6035

Merged
merged 35 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2dd91d5
feat(sqlite): Use SQLite for caching apps to speed up local search (#…
niheaven Apr 19, 2024
eac5840
fix(sqlite): Skip `use_sqlite_cache` config on ARM64 platform (#5918)
niheaven Apr 25, 2024
bb88dfb
Sync 'master' branch
niheaven Apr 25, 2024
3b34497
fix(json): Serialize jsonpath return (#5921)
chawyehsu Apr 26, 2024
36026f1
feat(core): New cache filename format (#5929)
chawyehsu Apr 29, 2024
23d55ce
fix(scoop-search): Catch error of parsing invalid manifest (#5930)
chawyehsu Apr 30, 2024
b8580aa
fix(autoupdate): Copy `PSCustomObject`-type properties within `autoup…
amorphobia May 1, 2024
5b86c30
fix(system): Fix argument passing to `Split-PathLikeEnvVar()` in depr…
Capella87 May 6, 2024
cc86335
fix(scoop-cache): Fix regression in 36026f18 (#5944)
chawyehsu May 8, 2024
776135e
fix(database): Update cache when adding bucket (#5946)
niheaven May 8, 2024
edaae8d
fix(database): Skip caching 'deprecated' dir (#5949)
niheaven May 9, 2024
1752050
fix(core): Fix "Invoke-ExternalCommand" quoting rules (#5945)
niheaven May 11, 2024
1dd479f
fix(database): Use 'Find-BucketDirectory()' to locate bucket dir (#5955)
niheaven May 11, 2024
b710ff6
fix(scoop-info): Fix download size estimating (#5958)
niheaven May 11, 2024
a5bd229
refactor(install): Separate archive extraction from downloader (#5951)
niheaven May 12, 2024
4dd2cfd
fix(core): Add 'PSObject.Copy()' to 'substitute()' (#5962)
niheaven May 13, 2024
f6f46f6
fix(sqlite): Dispose all command to release database file handle (#5966)
niheaven May 14, 2024
2d50a02
fix(scoop-download|install|update): Use consistent options (#5956)
lewis-yeung May 14, 2024
5ce70c4
fix(sqlite): Update cache after removing bucket or manifests (#5967)
niheaven May 15, 2024
2544745
refactor(install): Replace 'run_(un)installer()' with 'Invoke-Install…
niheaven May 15, 2024
8ea3738
fix(install): Add back arg `$Name` in `Invoke-Installer()` (#5971)
niheaven May 15, 2024
5c896e9
refactor(decompress): Use 7zip to extract Zstd archive (#5973)
niheaven May 17, 2024
c9048ad
fix(sqlite): Fix generic class error in PS5 (#5981)
niheaven May 20, 2024
700a2f4
feat(install): Added the ability to specify @ version when installing…
insertokname May 23, 2024
fa1b42b
fix(checkver): Correct variable 'regex' to 'regexp' (#5993)
chawyehsu May 26, 2024
dec4232
fix(decompress): Match `extract_dir`/`extract_to` and archives (#5983)
lewis-yeung May 26, 2024
d20819e
fix(core): Search for Git executable instead of any cmdlet (#5998)
MatejKafka Jun 7, 2024
a9ca75c
fix(core): Use correct path in 'bash' (#6006)
niheaven Jun 11, 2024
3a39ba0
fix(core): Limit the number of commands to get (#6013)
qwertyhjklxyz Jun 13, 2024
9239c26
feat(decompress): Use `innounp-unicode` as default Inno Setup Unpacke…
niheaven Jun 24, 2024
d8b3cc8
fix(checkver): Correct error messages (#6024)
lewis-yeung Jun 25, 2024
93359a4
fix(shim): Restore original path for JAR cmd (#6030)
niheaven Jun 26, 2024
2d02483
Merge branch 'master' into develop
niheaven Jun 30, 2024
7e0a2a2
Update chglog
niheaven Jun 30, 2024
ade7aa4
(chore): Update changelog (#6036)
niheaven Jun 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(core): Limit the number of commands to get (#6013)
  • Loading branch information
qwertyhjklxyz committed Jun 13, 2024
commit 3a39ba048f473bceb1f3f572d9f3c003f881732d
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- **checkver:** Correct variable 'regex' to 'regexp' ([#5993](https://github.com/ScoopInstaller/Scoop/issues/5993))
- **core:** Search for Git executable instead of any cmdlet ([#5998](https://github.com/ScoopInstaller/Scoop/issues/5998))
- **core:** Use correct path in 'bash' ([#6006](https://github.com/ScoopInstaller/Scoop/issues/6006))
- **core:** Limit the number of commands to get when search for git executable ([#6013](https://github.com/ScoopInstaller/Scoop/pull/6013))

### Code Refactoring

Expand Down
2 changes: 1 addition & 1 deletion lib/core.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ function Get-HelperPath {
if ($internalgit) {
$HelperPath = $internalgit
} else {
$HelperPath = (Get-Command git -CommandType Application -ErrorAction Ignore).Source
$HelperPath = (Get-Command git -CommandType Application -TotalCount 1 -ErrorAction Ignore).Source
}
}
'7zip' { $HelperPath = Get-AppFilePath '7zip' '7z.exe' }
Expand Down