-
Notifications
You must be signed in to change notification settings - Fork 850
Add CHANGELOG.md files for Microsoft.Extensions.DataIngestion* projects #7072
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
8e8f547
Initial plan
Copilot cb6dd50
Add CHANGELOG.md files for Microsoft.Extensions.DataIngestion* projects
Copilot 321b1b4
Remove internal types from CHANGELOGs (MarkdownParser and ElementsChu…
Copilot 4c94b4d
Simplify CHANGELOGs to just "Initial preview release" for 10.0.0-prev…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/Libraries/Microsoft.Extensions.DataIngestion.Abstractions/CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Release History | ||
|
|
||
| ## 10.0.0-preview.1 | ||
|
|
||
| - Initial preview release of Microsoft.Extensions.DataIngestion.Abstractions | ||
| - Introduced `IngestionDocument` class for representing format-agnostic document containers | ||
| - Introduced `IngestionDocumentElement` abstract base class for document elements | ||
| - Introduced document element types: | ||
| - `IngestionDocumentSection` - Represents a section or page in a document | ||
| - `IngestionDocumentParagraph` - Represents a paragraph | ||
| - `IngestionDocumentHeader` - Represents a header with optional level | ||
| - `IngestionDocumentFooter` - Represents a footer | ||
| - `IngestionDocumentTable` - Represents a table with 2D cell array | ||
| - `IngestionDocumentImage` - Represents an image with optional binary content and alternative text | ||
| - Introduced `IngestionChunk<T>` class for representing content chunks | ||
| - Introduced `IngestionChunker<T>` abstract base class for splitting documents into chunks | ||
| - Introduced `IngestionDocumentReader` abstract base class for reading source content and converting to documents | ||
| - Introduced `IngestionDocumentProcessor` abstract base class for processing documents | ||
| - Introduced `IngestionChunkProcessor<T>` abstract base class for processing chunks | ||
| - Introduced `IngestionChunkWriter<T>` abstract base class for writing chunks to storage | ||
adamsitnik marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
7 changes: 7 additions & 0 deletions
7
src/Libraries/Microsoft.Extensions.DataIngestion.MarkItDown/CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # Release History | ||
|
|
||
| ## 10.0.0-preview.1 | ||
|
|
||
| - Initial preview release of Microsoft.Extensions.DataIngestion.MarkItDown | ||
| - Introduced `MarkItDownReader` class for converting documents to markdown using the MarkItDown CLI | ||
| - Introduced `MarkItDownMcpReader` class for converting documents using MarkItDown Model Context Protocol (MCP) server | ||
adamsitnik marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
6 changes: 6 additions & 0 deletions
6
src/Libraries/Microsoft.Extensions.DataIngestion.Markdig/CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # Release History | ||
|
|
||
| ## 10.0.0-preview.1 | ||
|
|
||
| - Initial preview release of Microsoft.Extensions.DataIngestion.Markdig | ||
| - Introduced `MarkdownReader` class for reading markdown documents and converting them to `IngestionDocument` | ||
adamsitnik marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
25 changes: 25 additions & 0 deletions
25
src/Libraries/Microsoft.Extensions.DataIngestion/CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # Release History | ||
|
|
||
| ## 10.1.0-preview.1 | ||
|
|
||
| - Introduced `SectionChunker` class for treating each document section as a separate entity (https://github.com/dotnet/extensions/pull/7015) | ||
|
|
||
| ## 10.0.0-preview.1 | ||
|
|
||
| - Initial preview release of Microsoft.Extensions.DataIngestion | ||
| - Introduced `IngestionPipeline<T>` class for orchestrating document ingestion workflows | ||
| - Introduced `IngestionPipelineOptions` class for configuring pipeline behavior | ||
| - Introduced `IngestionResult` class for representing ingestion operation results | ||
| - Introduced chunker implementations: | ||
| - `HeaderChunker` - Splits documents based on headers and their levels | ||
| - `SemanticSimilarityChunker` - Splits documents based on semantic similarity using embeddings | ||
| - Introduced `IngestionChunkerOptions` class for configuring chunker behavior (token limits, overlap, etc.) | ||
| - Introduced document processors/enrichers: | ||
| - `ClassificationEnricher` - Enriches document metadata with classifications | ||
| - `KeywordEnricher` - Enriches document metadata with keywords | ||
| - `SentimentEnricher` - Enriches document metadata with sentiment analysis | ||
| - `SummaryEnricher` - Enriches document metadata with summaries | ||
| - `ImageAlternativeTextEnricher` - Enriches images with alternative text descriptions | ||
| - Introduced `EnricherOptions` class for configuring enricher behavior | ||
| - Introduced `VectorStoreWriter<T>` class for writing chunks to vector stores | ||
| - Introduced `VectorStoreWriterOptions<T>` class for configuring vector store writing behavior | ||
adamsitnik marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.