[PR #943] [MERGED] ZStandard tar support #1361

Closed
opened 2026-01-29 22:20:11 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/943
Author: @mitchcapper
Created: 9/23/2025
Status: Merged
Merged: 9/23/2025
Merged by: @adamhathcock

Base: masterHead: zstandard_reading_pr


📝 Commits (1)

📊 Changes

10 files changed (+150 additions, -4 deletions)

View changed files

📝 FORMATS.md (+2 -0)
📝 README.md (+5 -2)
src/SharpCompress/Compressors/ZStandard/ZStandardStream.cs (+65 -0)
src/SharpCompress/Compressors/ZStandard/ZstandardConstants.cs (+15 -0)
📝 src/SharpCompress/Factories/TarFactory.cs (+17 -1)
src/SharpCompress/Factories/ZStandardFactory.cs (+28 -0)
📝 src/SharpCompress/Readers/ReaderFactory.cs (+1 -1)
📝 src/SharpCompress/Readers/Tar/TarReader.cs (+14 -0)
📝 tests/SharpCompress.Test/Tar/TarReaderTests.cs (+3 -0)
tests/TestArchives/Archives/Tar.tar.zst (+0 -0)

📄 Description

Closes #941 looked at implementing ireader but would have to use some of the much more low level Zstandard classes to read the frames directly and it didn't look conducive to that.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/adamhathcock/sharpcompress/pull/943 **Author:** [@mitchcapper](https://github.com/mitchcapper) **Created:** 9/23/2025 **Status:** ✅ Merged **Merged:** 9/23/2025 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `zstandard_reading_pr` --- ### 📝 Commits (1) - [`553c533`](https://github.com/adamhathcock/sharpcompress/commit/553c533ada90f10a40009c8582d04eb4b383e16e) ZStandard tar support ### 📊 Changes **10 files changed** (+150 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `FORMATS.md` (+2 -0) 📝 `README.md` (+5 -2) ➕ `src/SharpCompress/Compressors/ZStandard/ZStandardStream.cs` (+65 -0) ➕ `src/SharpCompress/Compressors/ZStandard/ZstandardConstants.cs` (+15 -0) 📝 `src/SharpCompress/Factories/TarFactory.cs` (+17 -1) ➕ `src/SharpCompress/Factories/ZStandardFactory.cs` (+28 -0) 📝 `src/SharpCompress/Readers/ReaderFactory.cs` (+1 -1) 📝 `src/SharpCompress/Readers/Tar/TarReader.cs` (+14 -0) 📝 `tests/SharpCompress.Test/Tar/TarReaderTests.cs` (+3 -0) ➕ `tests/TestArchives/Archives/Tar.tar.zst` (+0 -0) </details> ### 📄 Description Closes #941 looked at implementing ireader but would have to use some of the much more low level Zstandard classes to read the frames directly and it didn't look conducive to that. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 22:20:11 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1361