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

.Net: Bump DocumentFormat.OpenXml from 2.20.0 to 3.0.0 in /dotnet #4178

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2023

Bumps DocumentFormat.OpenXml from 2.20.0 to 3.0.0.

Release notes

Sourced from DocumentFormat.OpenXml's releases.

[3.0.0]

Added

  • Packages can now be saved on .NET Core and .NET 5+ if constructed with a path or stream (#1307).
  • Packages can now support malformed URIs (such as relationships with a URI such as mailto:person@)
  • Introduce equality comparers for OpenXmlElement (#1476)
  • IFeatureCollection can now be enumerated and has a helpful debug view to see what features are registered (#1452)
  • Add mime types to part creation (#1488)
  • DocumentFormat.OpenXml.Office.PowerPoint.Y2023.M02.Main namespace
  • DocumentFormat.OpenXml.Office.PowerPoint.Y2022.M03.Main namespace
  • DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021 namespace

Changed

  • When validation finds incorrect part, it will now include the relationship type rather than a class name
  • IDisposableFeature is now a part of the framework package and is available by default on a package or part.

Breaking Changes

  • .NET Standard 1.3 is no longer a supported platform. .NET Standard 2.0 is the lowest .NET Standard supported.
  • Core infrastructure is now contained in a new package DocumentFormat.OpenXml.Framework. Typed classes are still in DocumentFormat.OpenXml. This means that you may reference DocumentFormat.OpenXml and still compile the same types, but if you want a smaller package, you may rely on just the framework package.
  • Changed type of OpenXmlPackage.Package to DocumentFormat.OpenXml.Packaging.IPackage instead of System.IO.Packaging.Package with a similar API surface
  • EnumValue<T> now is used to box a struct rather than a System.Enum. This allows us to enable behavior on it without resorting to reflection
  • Methods on parts to add child parts (i.e. AddImagePart) are now implemented as extension methods off of a new marker interface ISupportedRelationship<T>
  • Part type info enums (i.e. ImagePartType) is no longer an enum, but a static class to expose well-known part types as structs. Now any method to define a new content-type/extension pair can be called with the new PartTypeInfo struct that will contain the necessary information.
  • OpenXmlPackage.CanSave is now an instance property (#1307)
  • Removed OpenXmlSettings.RelationshipErrorHandlerFactory and associated types and replaced with a built-in mechanism to enable this
  • IdPartPair is now a readonly struct rather than a class
  • Renamed PartExtensionProvider to IPartExtensionFeature and reduced its surface area to only two methods (instead of a full Dictionary<,>). The property to access this off of OpenXmlPackage has been removed, but may be accessed via Features.Get<IPartExtensionFeature>() if needed.
  • OpenXmlPart/OpenXmlContainer/OpenXmlPackage and derived types now have internal constructors (these had internal abstract methods so most likely weren't subclassed externally)
  • OpenXmlElementList is now a struct that implements IEnumerable<OpenXmlElement> and IReadOnlyList<OpenXmlElement> where available (#1429)
  • Individual implementations of OpenXmlPartReader are available now for each package type (i.e. WordprocessingDocumentPartReader, SpreadsheetDocumentPartReader, PresentationDocumentPartReader), and the previous TypedOpenXmlPartReader has been removed. (#1403)
  • Reduced unnecessary target frameworks for packages besides DocumentFormat.OpenXml.Framework (#1471)
  • Changed some spelling issues for property names (#1463, #1444)
  • Model3D now represents the modified xml element tag name am3d.model3d (Previously am3d.model3D)
  • Removed DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.PivotCacheHasRichValuePivotCacheRichInfo
  • Removed DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.RichDataPivotCacheGuid
  • Removed unused SchemaAttrAttribute (#1316)
  • Removed unused ChildElementInfoAttribute (#1316)
  • Removed OpenXmlSimpleType.TextValue. This property was never meant to be used externally (#1316)
  • Removed obsolete validation logic from v1 of the SDK (#1316)
  • Removed obsoleted methods from 2.x (#1316)
  • Removed mutable properties on OpenXmlAttribute and marked as readonly (#1282)
  • Removed OpenXmlPackage.Close in favor of Dispose (#1373)
  • Removed OpenXmlPackage.SaveAs in favor of Clone (#1376)

[3.0.0-beta3]

Added

  • Introduce equality comparers for OpenXmlElement (#1476)
  • IFeatureCollection can now be enumerated and has a helpful debug view to see what features are registered (#1452)
  • Add mime types to part creation (#1488)

... (truncated)

Changelog

Sourced from DocumentFormat.OpenXml's changelog.

[3.0.0] - 2023-11-15

Added

  • DocumentFormat.OpenXml.Office.PowerPoint.Y2023.M02.Main namespace
  • DocumentFormat.OpenXml.Office.PowerPoint.Y2022.M03.Main namespace
  • DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021 namespace

Breaking Changes

  • Model3D now represents the modified xml element tag name am3d.model3d (Previously am3d.model3D)
  • Removed DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.PivotCacheHasRichValuePivotCacheRichInfo
  • Removed DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.RichDataPivotCacheGuid

[3.0.0 Beta 3]

Added

  • Introduce equality comparers for OpenXmlElement (#1476)
  • IFeatureCollection can now be enumerated and has a helpful debug view to see what features are registered (#1452)
  • Add mime types to part creation (#1488)

Breaking Changes

  • Reduced unnecessary target frameworks for packages besides DocumentFormat.OpenXml.Framework (#1471)
  • Changed some spelling issues for property names (#1463, #1444)

[3.0.0 Beta 2]

Breaking Changes

  • OpenXmlElementList is now a struct that implements IEnumerable<OpenXmlElement> and IReadOnlyList<OpenXmlElement> where available (#1429)
  • Individual implementations of OpenXmlPartReader are available now for each package type (i.e. WordprocessingDocumentPartReader, SpreadsheetDocumentPartReader, PresentationDocumentPartReader), and the previous TypedOpenXmlPartReader has been removed. (#1403)

[3.0.0 Beta 1]

Added

  • Packages can now be saved on .NET Core and .NET 5+ if constructed with a path or stream (#1307).
  • Packages can now support malformed URIs (such as relationships with a URI such as mailto:person@)

Changed

  • When validation finds incorrect part, it will now include the relationship type rather than a class name

Removed

  • .NET Standard 1.3 is no longer a supported platform. .NET Standard 2.0 is the lowest .NET Standard supported.
  • Removed unused SchemaAttrAttribute (#1316)
  • Removed unused ChildElementInfoAttribute (#1316)
  • Removed OpenXmlSimpleType.TextValue. This property was never meant to be used externally (#1316)
  • Removed obsolete validation logic from v1 of the SDK (#1316)
  • Removed obsoleted methods from 2.x (#1316)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [DocumentFormat.OpenXml](https://github.com/dotnet/Open-XML-SDK) from 2.20.0 to 3.0.0.
- [Release notes](https://github.com/dotnet/Open-XML-SDK/releases)
- [Changelog](https://github.com/dotnet/Open-XML-SDK/blob/main/CHANGELOG.md)
- [Commits](dotnet/Open-XML-SDK@v2.20.0...v3.0.0)

---
updated-dependencies:
- dependency-name: DocumentFormat.OpenXml
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner December 11, 2023 22:19
@dependabot dependabot bot added .NET Issue or Pull requests regarding .NET code dependencies Pull requests that update a dependency file. Used by Dependabot. labels Dec 11, 2023
@github-actions github-actions bot changed the title Bump DocumentFormat.OpenXml from 2.20.0 to 3.0.0 in /dotnet .Net: Bump DocumentFormat.OpenXml from 2.20.0 to 3.0.0 in /dotnet Dec 11, 2023
@dmytrostruk dmytrostruk added this pull request to the merge queue Dec 19, 2023
Merged via the queue into main with commit f419e5e Dec 19, 2023
@dmytrostruk dmytrostruk deleted the dependabot/nuget/dotnet/DocumentFormat.OpenXml-3.0.0 branch December 19, 2023 10:28
Bryan-Roe pushed a commit to Bryan-Roe-ai/semantic-kernel that referenced this pull request Oct 6, 2024
…crosoft#4178)

Bumps [DocumentFormat.OpenXml](https://github.com/dotnet/Open-XML-SDK)
from 2.20.0 to 3.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dotnet/Open-XML-SDK/releases">DocumentFormat.OpenXml's
releases</a>.</em></p>
<blockquote>
<h2>[3.0.0]</h2>
<h3>Added</h3>
<ul>
<li>Packages can now be saved on .NET Core and .NET 5+ if constructed
with a path or stream (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1307">#1307</a>).</li>
<li>Packages can now support malformed URIs (such as relationships with
a URI such as <code>mailto:person@</code>)</li>
<li>Introduce equality comparers for <code>OpenXmlElement</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1476">#1476</a>)</li>
<li><code>IFeatureCollection</code> can now be enumerated and has a
helpful debug view to see what features are registered (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1452">#1452</a>)</li>
<li>Add mime types to part creation (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1488">#1488</a>)</li>

<li><code>DocumentFormat.OpenXml.Office.PowerPoint.Y2023.M02.Main</code>
namespace</li>

<li><code>DocumentFormat.OpenXml.Office.PowerPoint.Y2022.M03.Main</code>
namespace</li>

<li><code>DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021</code>
namespace</li>
</ul>
<h3>Changed</h3>
<ul>
<li>When validation finds incorrect part, it will now include the
relationship type rather than a class name</li>
<li><code>IDisposableFeature</code> is now a part of the framework
package and is available by default on a package or part.</li>
</ul>
<h3>Breaking Changes</h3>
<ul>
<li>.NET Standard 1.3 is no longer a supported platform. .NET Standard
2.0 is the lowest .NET Standard supported.</li>
<li>Core infrastructure is now contained in a new package
DocumentFormat.OpenXml.Framework. Typed classes are still in
DocumentFormat.OpenXml. This means that you may reference
DocumentFormat.OpenXml and still compile the same types, but if you want
a smaller package, you may rely on just the framework package.</li>
<li>Changed type of <code>OpenXmlPackage.Package</code> to
<code>DocumentFormat.OpenXml.Packaging.IPackage</code> instead of
<code>System.IO.Packaging.Package</code> with a similar API surface</li>
<li><code>EnumValue&lt;T&gt;</code> now is used to box a struct rather
than a <code>System.Enum</code>. This allows us to enable behavior on it
without resorting to reflection</li>
<li>Methods on parts to add child parts (i.e. <code>AddImagePart</code>)
are now implemented as extension methods off of a new marker interface
<code>ISupportedRelationship&lt;T&gt;</code></li>
<li>Part type info enums (i.e. <code>ImagePartType</code>) is no longer
an enum, but a static class to expose well-known part types as structs.
Now any method to define a new content-type/extension pair can be called
with the new <code>PartTypeInfo</code> struct that will contain the
necessary information.</li>
<li><code>OpenXmlPackage.CanSave</code> is now an instance property (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1307">#1307</a>)</li>
<li>Removed <code>OpenXmlSettings.RelationshipErrorHandlerFactory</code>
and associated types and replaced with a built-in mechanism to enable
this</li>
<li><code>IdPartPair</code> is now a readonly struct rather than a
class</li>
<li>Renamed <code>PartExtensionProvider</code> to
<code>IPartExtensionFeature</code> and reduced its surface area to only
two methods (instead of a full <code>Dictionary&lt;,&gt;</code>). The
property to access this off of <code>OpenXmlPackage</code> has been
removed, but may be accessed via
<code>Features.Get&lt;IPartExtensionFeature&gt;()</code> if needed.</li>

<li><code>OpenXmlPart</code>/<code>OpenXmlContainer</code>/<code>OpenXmlPackage</code>
and derived types now have internal constructors (these had internal
abstract methods so most likely weren't subclassed externally)</li>
<li><code>OpenXmlElementList</code> is now a struct that implements
<code>IEnumerable&lt;OpenXmlElement&gt;</code> and
<code>IReadOnlyList&lt;OpenXmlElement&gt;</code> where available (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1429">#1429</a>)</li>
<li>Individual implementations of <code>OpenXmlPartReader</code> are
available now for each package type (i.e.
<code>WordprocessingDocumentPartReader</code>,
<code>SpreadsheetDocumentPartReader</code>,
<code>PresentationDocumentPartReader</code>), and the previous
<code>TypedOpenXmlPartReader</code> has been removed. (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1403">#1403</a>)</li>
<li>Reduced unnecessary target frameworks for packages besides
DocumentFormat.OpenXml.Framework (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1471">#1471</a>)</li>
<li>Changed some spelling issues for property names (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1463">#1463</a>,
<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1444">#1444</a>)</li>
<li><code>Model3D</code> now represents the modified xml element tag
name <code>am3d.model3d</code> (Previously
<code>am3d.model3D</code>)</li>
<li>Removed
<code>DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.PivotCacheHasRichValuePivotCacheRichInfo</code></li>
<li>Removed
<code>DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.RichDataPivotCacheGuid</code></li>
<li>Removed unused <code>SchemaAttrAttribute</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed unused <code>ChildElementInfoAttribute</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed <code>OpenXmlSimpleType.TextValue</code>. This property was
never meant to be used externally (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed obsolete validation logic from v1 of the SDK (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed obsoleted methods from 2.x (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed mutable properties on OpenXmlAttribute and marked as
<code>readonly</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1282">#1282</a>)</li>
<li>Removed <code>OpenXmlPackage.Close</code> in favor of
<code>Dispose</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1373">#1373</a>)</li>
<li>Removed <code>OpenXmlPackage.SaveAs</code> in favor of
<code>Clone</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1376">#1376</a>)</li>
</ul>
<h2>[3.0.0-beta3]</h2>
<h3>Added</h3>
<ul>
<li>Introduce equality comparers for OpenXmlElement (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1476">#1476</a>)</li>
<li>IFeatureCollection can now be enumerated and has a helpful debug
view to see what features are registered (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1452">#1452</a>)</li>
<li>Add mime types to part creation (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1488">#1488</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/dotnet/Open-XML-SDK/blob/main/CHANGELOG.md">DocumentFormat.OpenXml's
changelog</a>.</em></p>
<blockquote>
<h2>[3.0.0] - 2023-11-15</h2>
<h2>Added</h2>
<ul>

<li><code>DocumentFormat.OpenXml.Office.PowerPoint.Y2023.M02.Main</code>
namespace</li>

<li><code>DocumentFormat.OpenXml.Office.PowerPoint.Y2022.M03.Main</code>
namespace</li>

<li><code>DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021</code>
namespace</li>
</ul>
<h3>Breaking Changes</h3>
<ul>
<li><code>Model3D</code> now represents the modified xml element tag
name <code>am3d.model3d</code> (Previously
<code>am3d.model3D</code>)</li>
<li>Removed
<code>DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.PivotCacheHasRichValuePivotCacheRichInfo</code></li>
<li>Removed
<code>DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.RichDataPivotCacheGuid</code></li>
</ul>
<h2>[3.0.0 Beta 3]</h2>
<h3>Added</h3>
<ul>
<li>Introduce equality comparers for <code>OpenXmlElement</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1476">#1476</a>)</li>
<li><code>IFeatureCollection</code> can now be enumerated and has a
helpful debug view to see what features are registered (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1452">#1452</a>)</li>
<li>Add mime types to part creation (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1488">#1488</a>)</li>
</ul>
<h3>Breaking Changes</h3>
<ul>
<li>Reduced unnecessary target frameworks for packages besides
DocumentFormat.OpenXml.Framework (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1471">#1471</a>)</li>
<li>Changed some spelling issues for property names (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1463">#1463</a>,
<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1444">#1444</a>)</li>
</ul>
<h2>[3.0.0 Beta 2]</h2>
<h3>Breaking Changes</h3>
<ul>
<li><code>OpenXmlElementList</code> is now a struct that implements
<code>IEnumerable&lt;OpenXmlElement&gt;</code> and
<code>IReadOnlyList&lt;OpenXmlElement&gt;</code> where available (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1429">#1429</a>)</li>
<li>Individual implementations of <code>OpenXmlPartReader</code> are
available now for each package type (i.e.
<code>WordprocessingDocumentPartReader</code>,
<code>SpreadsheetDocumentPartReader</code>,
<code>PresentationDocumentPartReader</code>), and the previous
<code>TypedOpenXmlPartReader</code> has been removed. (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1403">#1403</a>)</li>
</ul>
<h2>[3.0.0 Beta 1]</h2>
<h3>Added</h3>
<ul>
<li>Packages can now be saved on .NET Core and .NET 5+ if constructed
with a path or stream (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1307">#1307</a>).</li>
<li>Packages can now support malformed URIs (such as relationships with
a URI such as <code>mailto:person@</code>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>When validation finds incorrect part, it will now include the
relationship type rather than a class name</li>
</ul>
<h3>Removed</h3>
<ul>
<li>.NET Standard 1.3 is no longer a supported platform. .NET Standard
2.0 is the lowest .NET Standard supported.</li>
<li>Removed unused <code>SchemaAttrAttribute</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed unused <code>ChildElementInfoAttribute</code> (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed <code>OpenXmlSimpleType.TextValue</code>. This property was
never meant to be used externally (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed obsolete validation logic from v1 of the SDK (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
<li>Removed obsoleted methods from 2.x (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1316">#1316</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/82564b4aed103d83d9d407f817956963a13b384c"><code>82564b4</code></a>
Push to CI feed (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1585">#1585</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/81ffb7cbfd8b61d53d1cee0bb35277b64352a110"><code>81ffb7c</code></a>
Update README.md (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1583">#1583</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/0e021956b9b416756b075938b3ff3de4807fcf40"><code>0e02195</code></a>
Update release pipeline (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1582">#1582</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/32d96796a4bb7e6f5a6c2eabbfd5ea82b3b6916f"><code>32d9679</code></a>
Update packaging to 8.0 version (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1575">#1575</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/8fd4a9c69ce5c0e66bfe220fba284f21befc3f01"><code>8fd4a9c</code></a>
Use aka.ms link for diagnostics (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1574">#1574</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/0495374c3520c8bf50fe3c0ef05400e4252e77a9"><code>0495374</code></a>
Add type forward for IDisposableFeature (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1572">#1572</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/6128029de8d6dad67791ef9e94d2bf411c175f6b"><code>6128029</code></a>
Update to rc2 of System.IO.Packaging (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1555">#1555</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/a4bccf260ba7cb1adea9a9feb70504cf5c4aac38"><code>a4bccf2</code></a>
allow access to part from elements (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1543">#1543</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/f697af4926159b67e63c93a0f8feec602dc84e9d"><code>f697af4</code></a>
Update to latest checkout and build actions (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1536">#1536</a>)</li>
<li><a
href="https://github.com/dotnet/Open-XML-SDK/commit/23a160c62ba0db148e3a032dc3e10f7bc0da9122"><code>23a160c</code></a>
August 2023 Microsoft 365 update (<a
href="https://redirect.github.com/dotnet/Open-XML-SDK/issues/1531">#1531</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/dotnet/Open-XML-SDK/compare/v2.20.0...v3.0.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=DocumentFormat.OpenXml&package-manager=nuget&previous-version=2.20.0&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file. Used by Dependabot. .NET Issue or Pull requests regarding .NET code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants