Bump kstore from 0.8.0 to 0.9.1 #10

Merged
dependabot[bot] merged 1 commits from dependabot/gradle/kstore-0.9.1 into master 2024-12-14 13:23:29 +03:00
dependabot[bot] commented 2024-12-14 12:47:54 +03:00 (Migrated from github.com)

Bumps kstore from 0.8.0 to 0.9.1.
Updates io.github.xxfast:kstore from 0.8.0 to 0.9.1

Release notes

Sourced from io.github.xxfast:kstore's releases.

0.9.1

What's Changed

New Contributors

Full Changelog: https://github.com/xxfast/KStore/compare/0.9.0...0.9.1

0.9.0

What's Changed

New Contributors

Full Changelog: https://github.com/xxfast/KStore/compare/0.8.0...0.9.0

⚠️ Breaking Changes

  1. Bump kstore to 0.9.0 and remove okio from your dependencies from your libs.version.toml
[versions]
-  kstore = "0.8.0"
+  kstore = "0.9.0"
-  okio = "3.6.0"
  1. If you are using kstore-file, migrate to kotlinx-io's Path from okio's .toPath()
-  import okio.Path.Companion.toPath
+  import kotlinx.io.files.Path 
  • val store: KStore<Pet> = storeOf(file = "saved.json".toPath())
  • val store: KStore<Pet> = storeOf(file = Path("saved.json"))
  1. On iOS - Remove the use of experimental DocumentDirectory API, and use NSFileManager directly
-  val filesDir: String = NSFileManager.defaultManager.DocumentDirectory?.relativePath
+  val filesUrl: NSURL? = fileManager.URLForDirectory(
+    directory = NSDocumentDirectory,
+    appropriateForURL = null,
+    create = false,
+    inDomain = NSUserDomainMask,
+    error = null
</tr></table> 

... (truncated)

Commits

Updates io.github.xxfast:kstore-file from 0.8.0 to 0.9.1

Release notes

Sourced from io.github.xxfast:kstore-file's releases.

0.9.1

What's Changed

New Contributors

Full Changelog: https://github.com/xxfast/KStore/compare/0.9.0...0.9.1

0.9.0

What's Changed

New Contributors

Full Changelog: https://github.com/xxfast/KStore/compare/0.8.0...0.9.0

⚠️ Breaking Changes

  1. Bump kstore to 0.9.0 and remove okio from your dependencies from your libs.version.toml
[versions]
-  kstore = "0.8.0"
+  kstore = "0.9.0"
-  okio = "3.6.0"
  1. If you are using kstore-file, migrate to kotlinx-io's Path from okio's .toPath()
-  import okio.Path.Companion.toPath
+  import kotlinx.io.files.Path 
  • val store: KStore<Pet> = storeOf(file = "saved.json".toPath())
  • val store: KStore<Pet> = storeOf(file = Path("saved.json"))
  1. On iOS - Remove the use of experimental DocumentDirectory API, and use NSFileManager directly
-  val filesDir: String = NSFileManager.defaultManager.DocumentDirectory?.relativePath
+  val filesUrl: NSURL? = fileManager.URLForDirectory(
+    directory = NSDocumentDirectory,
+    appropriateForURL = null,
+    create = false,
+    inDomain = NSUserDomainMask,
+    error = null
</tr></table> 

... (truncated)

Commits

Updates io.github.xxfast:kstore-storage from 0.8.0 to 0.9.1

Release notes

Sourced from io.github.xxfast:kstore-storage's releases.

0.9.1

What's Changed

New Contributors

Full Changelog: https://github.com/xxfast/KStore/compare/0.9.0...0.9.1

0.9.0

What's Changed

New Contributors

Full Changelog: https://github.com/xxfast/KStore/compare/0.8.0...0.9.0

⚠️ Breaking Changes

  1. Bump kstore to 0.9.0 and remove okio from your dependencies from your libs.version.toml
[versions]
-  kstore = "0.8.0"
+  kstore = "0.9.0"
-  okio = "3.6.0"
  1. If you are using kstore-file, migrate to kotlinx-io's Path from okio's .toPath()
-  import okio.Path.Companion.toPath
+  import kotlinx.io.files.Path 
  • val store: KStore<Pet> = storeOf(file = "saved.json".toPath())
  • val store: KStore<Pet> = storeOf(file = Path("saved.json"))
  1. On iOS - Remove the use of experimental DocumentDirectory API, and use NSFileManager directly
-  val filesDir: String = NSFileManager.defaultManager.DocumentDirectory?.relativePath
+  val filesUrl: NSURL? = fileManager.URLForDirectory(
+    directory = NSDocumentDirectory,
+    appropriateForURL = null,
+    create = false,
+    inDomain = NSUserDomainMask,
+    error = null
</tr></table> 

... (truncated)

Commits

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)
Bumps `kstore` from 0.8.0 to 0.9.1. Updates `io.github.xxfast:kstore` from 0.8.0 to 0.9.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/xxfast/KStore/releases">io.github.xxfast:kstore's releases</a>.</em></p> <blockquote> <h2>0.9.1</h2> <h2>What's Changed</h2> <ul> <li>Fix .temp file not found issue while deleting. by <a href="https://github.com/SultanArshad"><code>@​SultanArshad</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/135">xxfast/KStore#135</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/SultanArshad"><code>@​SultanArshad</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/135">xxfast/KStore#135</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/xxfast/KStore/compare/0.9.0...0.9.1">https://github.com/xxfast/KStore/compare/0.9.0...0.9.1</a></p> <h2>0.9.0</h2> <h2>What's Changed</h2> <ul> <li>Migrate to kotlinx-io by <a href="https://github.com/mani1232"><code>@​mani1232</code></a> &amp; <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/112">xxfast/KStore#112</a> &amp; <a href="https://redirect.github.com/xxfast/KStore/pull/116">xxfast/KStore#116</a></li> <li>Add transactions to file writes and restore files to previous state when transactions fail by <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/100">xxfast/KStore#100</a></li> <li><del>Add directories initialiser and tests by <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/132">xxfast/KStore#132</a></del></li> <li>Fix FileCodec by <a href="https://github.com/forhad013"><code>@​forhad013</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/133">xxfast/KStore#133</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mani1232"><code>@​mani1232</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/112">xxfast/KStore#112</a></li> <li><a href="https://github.com/forhad013"><code>@​forhad013</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/133">xxfast/KStore#133</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/xxfast/KStore/compare/0.8.0...0.9.0">https://github.com/xxfast/KStore/compare/0.8.0...0.9.0</a></p> <h2>⚠️ Breaking Changes</h2> <ol> <li>Bump kstore to <code>0.9.0</code> and remove <code>okio</code> from your dependencies from your <code>libs.version.toml</code></li> </ol> <pre lang="diff"><code>[versions] - kstore = &quot;0.8.0&quot; + kstore = &quot;0.9.0&quot; - okio = &quot;3.6.0&quot; </code></pre> <ol start="2"> <li>If you are using <code>kstore-file</code>, migrate to <code>kotlinx-io</code>'s <code>Path</code> from <code>okio</code>'s <code>.toPath()</code></li> </ol> <pre lang="diff"><code>- import okio.Path.Companion.toPath + import kotlinx.io.files.Path <ul> <li>val store: KStore&lt;Pet&gt; = storeOf(file = &quot;saved.json&quot;.toPath())</li> </ul> <ul> <li>val store: KStore&lt;Pet&gt; = storeOf(file = Path(&quot;saved.json&quot;)) </code></pre></li> </ul> <ol start="3"> <li>On iOS - Remove the use of experimental <code>DocumentDirectory</code> API, and use NSFileManager directly</li> </ol> <pre lang="diff"><code>- val filesDir: String = NSFileManager.defaultManager.DocumentDirectory?.relativePath + val filesUrl: NSURL? = fileManager.URLForDirectory( + directory = NSDocumentDirectory, + appropriateForURL = null, + create = false, + inDomain = NSUserDomainMask, + error = null &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/xxfast/KStore/commit/0a98397bdb3f44c93e5216fcd0261fa6979bb046"><code>0a98397</code></a> Prepare for release 0.9.1</li> <li><a href="https://github.com/xxfast/KStore/commit/211141fef79113f6bf6993e730f1c929bff1711e"><code>211141f</code></a> Fix .temp file not found when deleting store (<a href="https://redirect.github.com/xxfast/KStore/issues/135">#135</a>)</li> <li><a href="https://github.com/xxfast/KStore/commit/1fc00055f9cc6e538073222a7e2c6675ae50d9a4"><code>1fc0005</code></a> Prepare for snapshot 0.9.1</li> <li><a href="https://github.com/xxfast/KStore/commit/d537b83134c532918fed01e68ba1fa24a4326243"><code>d537b83</code></a> Prepare for snapshot 1.0.0</li> <li><a href="https://github.com/xxfast/KStore/commit/02a379fc311cb48fcf9ca4d7ad719a9062429ce9"><code>02a379f</code></a> Prepare for release 0.9.0</li> <li><a href="https://github.com/xxfast/KStore/commit/e96846e45f4038f3f55b95bc079a019e7847a7c4"><code>e96846e</code></a> Update documentation for desktop paths</li> <li><a href="https://github.com/xxfast/KStore/commit/3a46de5845c211f5bf0f6ca6c1176cdd9b8efe63"><code>3a46de5</code></a> Update documentation for platform paths</li> <li><a href="https://github.com/xxfast/KStore/commit/a110fcce19122b42d45afda40aa7f3ac09243ad7"><code>a110fcc</code></a> Revert &quot;Add directories initialiser and tests (<a href="https://redirect.github.com/xxfast/KStore/issues/132">#132</a>)&quot;</li> <li><a href="https://github.com/xxfast/KStore/commit/187d0d2262a3850c1b7e68ac36554ac2271f538e"><code>187d0d2</code></a> Fix FileCodec (<a href="https://redirect.github.com/xxfast/KStore/issues/133">#133</a>)</li> <li><a href="https://github.com/xxfast/KStore/commit/9a439c3798d44d45aedd47f91437ffec828f84fe"><code>9a439c3</code></a> Add directories initialiser and tests (<a href="https://redirect.github.com/xxfast/KStore/issues/132">#132</a>)</li> <li>Additional commits viewable in <a href="https://github.com/xxfast/KStore/compare/0.8.0...0.9.1">compare view</a></li> </ul> </details> <br /> Updates `io.github.xxfast:kstore-file` from 0.8.0 to 0.9.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/xxfast/KStore/releases">io.github.xxfast:kstore-file's releases</a>.</em></p> <blockquote> <h2>0.9.1</h2> <h2>What's Changed</h2> <ul> <li>Fix .temp file not found issue while deleting. by <a href="https://github.com/SultanArshad"><code>@​SultanArshad</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/135">xxfast/KStore#135</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/SultanArshad"><code>@​SultanArshad</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/135">xxfast/KStore#135</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/xxfast/KStore/compare/0.9.0...0.9.1">https://github.com/xxfast/KStore/compare/0.9.0...0.9.1</a></p> <h2>0.9.0</h2> <h2>What's Changed</h2> <ul> <li>Migrate to kotlinx-io by <a href="https://github.com/mani1232"><code>@​mani1232</code></a> &amp; <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/112">xxfast/KStore#112</a> &amp; <a href="https://redirect.github.com/xxfast/KStore/pull/116">xxfast/KStore#116</a></li> <li>Add transactions to file writes and restore files to previous state when transactions fail by <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/100">xxfast/KStore#100</a></li> <li><del>Add directories initialiser and tests by <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/132">xxfast/KStore#132</a></del></li> <li>Fix FileCodec by <a href="https://github.com/forhad013"><code>@​forhad013</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/133">xxfast/KStore#133</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mani1232"><code>@​mani1232</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/112">xxfast/KStore#112</a></li> <li><a href="https://github.com/forhad013"><code>@​forhad013</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/133">xxfast/KStore#133</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/xxfast/KStore/compare/0.8.0...0.9.0">https://github.com/xxfast/KStore/compare/0.8.0...0.9.0</a></p> <h2>⚠️ Breaking Changes</h2> <ol> <li>Bump kstore to <code>0.9.0</code> and remove <code>okio</code> from your dependencies from your <code>libs.version.toml</code></li> </ol> <pre lang="diff"><code>[versions] - kstore = &quot;0.8.0&quot; + kstore = &quot;0.9.0&quot; - okio = &quot;3.6.0&quot; </code></pre> <ol start="2"> <li>If you are using <code>kstore-file</code>, migrate to <code>kotlinx-io</code>'s <code>Path</code> from <code>okio</code>'s <code>.toPath()</code></li> </ol> <pre lang="diff"><code>- import okio.Path.Companion.toPath + import kotlinx.io.files.Path <ul> <li>val store: KStore&lt;Pet&gt; = storeOf(file = &quot;saved.json&quot;.toPath())</li> </ul> <ul> <li>val store: KStore&lt;Pet&gt; = storeOf(file = Path(&quot;saved.json&quot;)) </code></pre></li> </ul> <ol start="3"> <li>On iOS - Remove the use of experimental <code>DocumentDirectory</code> API, and use NSFileManager directly</li> </ol> <pre lang="diff"><code>- val filesDir: String = NSFileManager.defaultManager.DocumentDirectory?.relativePath + val filesUrl: NSURL? = fileManager.URLForDirectory( + directory = NSDocumentDirectory, + appropriateForURL = null, + create = false, + inDomain = NSUserDomainMask, + error = null &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/xxfast/KStore/commit/0a98397bdb3f44c93e5216fcd0261fa6979bb046"><code>0a98397</code></a> Prepare for release 0.9.1</li> <li><a href="https://github.com/xxfast/KStore/commit/211141fef79113f6bf6993e730f1c929bff1711e"><code>211141f</code></a> Fix .temp file not found when deleting store (<a href="https://redirect.github.com/xxfast/KStore/issues/135">#135</a>)</li> <li><a href="https://github.com/xxfast/KStore/commit/1fc00055f9cc6e538073222a7e2c6675ae50d9a4"><code>1fc0005</code></a> Prepare for snapshot 0.9.1</li> <li><a href="https://github.com/xxfast/KStore/commit/d537b83134c532918fed01e68ba1fa24a4326243"><code>d537b83</code></a> Prepare for snapshot 1.0.0</li> <li><a href="https://github.com/xxfast/KStore/commit/02a379fc311cb48fcf9ca4d7ad719a9062429ce9"><code>02a379f</code></a> Prepare for release 0.9.0</li> <li><a href="https://github.com/xxfast/KStore/commit/e96846e45f4038f3f55b95bc079a019e7847a7c4"><code>e96846e</code></a> Update documentation for desktop paths</li> <li><a href="https://github.com/xxfast/KStore/commit/3a46de5845c211f5bf0f6ca6c1176cdd9b8efe63"><code>3a46de5</code></a> Update documentation for platform paths</li> <li><a href="https://github.com/xxfast/KStore/commit/a110fcce19122b42d45afda40aa7f3ac09243ad7"><code>a110fcc</code></a> Revert &quot;Add directories initialiser and tests (<a href="https://redirect.github.com/xxfast/KStore/issues/132">#132</a>)&quot;</li> <li><a href="https://github.com/xxfast/KStore/commit/187d0d2262a3850c1b7e68ac36554ac2271f538e"><code>187d0d2</code></a> Fix FileCodec (<a href="https://redirect.github.com/xxfast/KStore/issues/133">#133</a>)</li> <li><a href="https://github.com/xxfast/KStore/commit/9a439c3798d44d45aedd47f91437ffec828f84fe"><code>9a439c3</code></a> Add directories initialiser and tests (<a href="https://redirect.github.com/xxfast/KStore/issues/132">#132</a>)</li> <li>Additional commits viewable in <a href="https://github.com/xxfast/KStore/compare/0.8.0...0.9.1">compare view</a></li> </ul> </details> <br /> Updates `io.github.xxfast:kstore-storage` from 0.8.0 to 0.9.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/xxfast/KStore/releases">io.github.xxfast:kstore-storage's releases</a>.</em></p> <blockquote> <h2>0.9.1</h2> <h2>What's Changed</h2> <ul> <li>Fix .temp file not found issue while deleting. by <a href="https://github.com/SultanArshad"><code>@​SultanArshad</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/135">xxfast/KStore#135</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/SultanArshad"><code>@​SultanArshad</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/135">xxfast/KStore#135</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/xxfast/KStore/compare/0.9.0...0.9.1">https://github.com/xxfast/KStore/compare/0.9.0...0.9.1</a></p> <h2>0.9.0</h2> <h2>What's Changed</h2> <ul> <li>Migrate to kotlinx-io by <a href="https://github.com/mani1232"><code>@​mani1232</code></a> &amp; <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/112">xxfast/KStore#112</a> &amp; <a href="https://redirect.github.com/xxfast/KStore/pull/116">xxfast/KStore#116</a></li> <li>Add transactions to file writes and restore files to previous state when transactions fail by <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/100">xxfast/KStore#100</a></li> <li><del>Add directories initialiser and tests by <a href="https://github.com/xxfast"><code>@​xxfast</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/132">xxfast/KStore#132</a></del></li> <li>Fix FileCodec by <a href="https://github.com/forhad013"><code>@​forhad013</code></a> in <a href="https://redirect.github.com/xxfast/KStore/pull/133">xxfast/KStore#133</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mani1232"><code>@​mani1232</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/112">xxfast/KStore#112</a></li> <li><a href="https://github.com/forhad013"><code>@​forhad013</code></a> made their first contribution in <a href="https://redirect.github.com/xxfast/KStore/pull/133">xxfast/KStore#133</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/xxfast/KStore/compare/0.8.0...0.9.0">https://github.com/xxfast/KStore/compare/0.8.0...0.9.0</a></p> <h2>⚠️ Breaking Changes</h2> <ol> <li>Bump kstore to <code>0.9.0</code> and remove <code>okio</code> from your dependencies from your <code>libs.version.toml</code></li> </ol> <pre lang="diff"><code>[versions] - kstore = &quot;0.8.0&quot; + kstore = &quot;0.9.0&quot; - okio = &quot;3.6.0&quot; </code></pre> <ol start="2"> <li>If you are using <code>kstore-file</code>, migrate to <code>kotlinx-io</code>'s <code>Path</code> from <code>okio</code>'s <code>.toPath()</code></li> </ol> <pre lang="diff"><code>- import okio.Path.Companion.toPath + import kotlinx.io.files.Path <ul> <li>val store: KStore&lt;Pet&gt; = storeOf(file = &quot;saved.json&quot;.toPath())</li> </ul> <ul> <li>val store: KStore&lt;Pet&gt; = storeOf(file = Path(&quot;saved.json&quot;)) </code></pre></li> </ul> <ol start="3"> <li>On iOS - Remove the use of experimental <code>DocumentDirectory</code> API, and use NSFileManager directly</li> </ol> <pre lang="diff"><code>- val filesDir: String = NSFileManager.defaultManager.DocumentDirectory?.relativePath + val filesUrl: NSURL? = fileManager.URLForDirectory( + directory = NSDocumentDirectory, + appropriateForURL = null, + create = false, + inDomain = NSUserDomainMask, + error = null &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/xxfast/KStore/commit/0a98397bdb3f44c93e5216fcd0261fa6979bb046"><code>0a98397</code></a> Prepare for release 0.9.1</li> <li><a href="https://github.com/xxfast/KStore/commit/211141fef79113f6bf6993e730f1c929bff1711e"><code>211141f</code></a> Fix .temp file not found when deleting store (<a href="https://redirect.github.com/xxfast/KStore/issues/135">#135</a>)</li> <li><a href="https://github.com/xxfast/KStore/commit/1fc00055f9cc6e538073222a7e2c6675ae50d9a4"><code>1fc0005</code></a> Prepare for snapshot 0.9.1</li> <li><a href="https://github.com/xxfast/KStore/commit/d537b83134c532918fed01e68ba1fa24a4326243"><code>d537b83</code></a> Prepare for snapshot 1.0.0</li> <li><a href="https://github.com/xxfast/KStore/commit/02a379fc311cb48fcf9ca4d7ad719a9062429ce9"><code>02a379f</code></a> Prepare for release 0.9.0</li> <li><a href="https://github.com/xxfast/KStore/commit/e96846e45f4038f3f55b95bc079a019e7847a7c4"><code>e96846e</code></a> Update documentation for desktop paths</li> <li><a href="https://github.com/xxfast/KStore/commit/3a46de5845c211f5bf0f6ca6c1176cdd9b8efe63"><code>3a46de5</code></a> Update documentation for platform paths</li> <li><a href="https://github.com/xxfast/KStore/commit/a110fcce19122b42d45afda40aa7f3ac09243ad7"><code>a110fcc</code></a> Revert &quot;Add directories initialiser and tests (<a href="https://redirect.github.com/xxfast/KStore/issues/132">#132</a>)&quot;</li> <li><a href="https://github.com/xxfast/KStore/commit/187d0d2262a3850c1b7e68ac36554ac2271f538e"><code>187d0d2</code></a> Fix FileCodec (<a href="https://redirect.github.com/xxfast/KStore/issues/133">#133</a>)</li> <li><a href="https://github.com/xxfast/KStore/commit/9a439c3798d44d45aedd47f91437ffec828f84fe"><code>9a439c3</code></a> Add directories initialiser and tests (<a href="https://redirect.github.com/xxfast/KStore/issues/132">#132</a>)</li> <li>Additional commits viewable in <a href="https://github.com/xxfast/KStore/compare/0.8.0...0.9.1">compare view</a></li> </ul> </details> <br /> 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>
melod1n commented 2024-12-14 13:23:27 +03:00 (Migrated from github.com)

@dependabot squash and merge

@dependabot squash and merge
Sign in to join this conversation.