Unverified Commit 0f5c486a authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge pull request #318 from nyeong/feature/sqlite-kv

parents 5cddd681 df65498e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -183,11 +183,11 @@ labels:
        - Routing or middleware support

  - component/kv:
      description: "Key-value storage layer"
      description: "keyvalue storage layer"
      instructions: |
        Use for:
        - Persistence changes
        - Data modeling for key-value store
        - Data modeling for keyvalue store

  - component/mq:
      description: "Message queue infrastructure"
+3 −0
Original line number Diff line number Diff line
@@ -426,6 +426,7 @@ jobs:
          | @fedify/nestjs   | ${{ steps.versioning.outputs.version }} |                             | [npm][npm:@fedify/nestjs]   |
          | @fedify/postgres | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/postgres] | [npm][npm:@fedify/postgres] |
          | @fedify/redis    | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/redis]    | [npm][npm:@fedify/redis]    |
          | @fedify/sqlite   | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/sqlite]   | [npm][npm:@fedify/sqlite]   |
          | @fedify/testing  | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/testing]  | [npm][npm:@fedify/testing]  |

          [jsr:@fedify/fedify]: https://jsr.io/@fedify/fedify@${{ steps.versioning.outputs.version }}
@@ -442,6 +443,8 @@ jobs:
          [npm:@fedify/postgres]: https://www.npmjs.com/package/@fedify/postgres/v/${{ steps.versioning.outputs.short_version }}
          [jsr:@fedify/redis]: https://jsr.io/@fedify/redis@${{ steps.versioning.outputs.version }}
          [npm:@fedify/redis]: https://www.npmjs.com/package/@fedify/redis/v/${{ steps.versioning.outputs.short_version }}
          [jsr:@fedify/sqlite]: https://jsr.io/@fedify/sqlite@${{ steps.versioning.outputs.version }}
          [npm:@fedify/sqlite]: https://www.npmjs.com/package/@fedify/sqlite/v/${{ steps.versioning.outputs.short_version }}
          [jsr:@fedify/testing]: https://jsr.io/@fedify/testing@${{ steps.versioning.outputs.version }}
          [npm:@fedify/testing]: https://www.npmjs.com/package/@fedify/testing/v/${{ steps.versioning.outputs.short_version }}
        pr-number: ${{ github.event.pull_request.number }}
+10 −0
Original line number Diff line number Diff line
@@ -91,6 +91,13 @@ the versioning.
     -  Added `@fedify/nestjs` package.
     -  Added `FedifyModule` for integrating Fedify into NestJS applications.

 -  Added `SqliteKvStore`, implementing `KvStore` using SQLite with the
    `@fedify/sqlite` package. Compatible with Bun, Deno, and Node.js.
    [[#274], [#318] by An Subin]

     -  Added `@fedify/sqlite` package.
     -  Added `SqliteKvStore`, a SQLite implementation of `KvStore`.

 -  Added `-o`/`--output` option to `fedify lookup` command. This option allows
    users to save retrieved lookup results to specified path.
    [[#261], [#321] by Jiwon Kwon]
@@ -140,6 +147,8 @@ the versioning.
[#298]: https://github.com/fedify-dev/fedify/pull/298
[#304]: https://github.com/fedify-dev/fedify/issues/304
[#309]: https://github.com/fedify-dev/fedify/pull/309
[#274]: https://github.com/fedify-dev/fedify/issues/274
[#318]: https://github.com/fedify-dev/fedify/pull/318
[#310]: https://github.com/fedify-dev/fedify/issues/310
[#311]: https://github.com/fedify-dev/fedify/issues/311
[#321]: https://github.com/fedify-dev/fedify/pull/321
@@ -168,6 +177,7 @@ Released on July 28, 2025.
[#335]: https://github.com/fedify-dev/fedify/pull/335



Version 1.7.6
-------------

+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@
    "./postgres",
    "./redis",
    "./testing",
    "./sqlite",
    "./examples/blog",
    "./examples/cloudflare-workers",
    "./examples/hono-sample"
+1 −0
Original line number Diff line number Diff line
@@ -236,6 +236,7 @@ export default withMermaid(defineConfig({
              "dom",
              "dom.iterable",
              "esnext",
              "node",
              "@teidesu/deno-types/full",
              "@cloudflare/workers-types/experimental",
            ],
Loading