From f308be2db22283d855d889556b9ee9947408e6e7 Mon Sep 17 00:00:00 2001 From: Alisue Date: Thu, 25 Dec 2025 22:23:34 +0900 Subject: [PATCH 1/3] chore: Update Nix environment --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 00237c9..396a6fc 100644 --- a/flake.lock +++ b/flake.lock @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1764474957, - "narHash": "sha256-RCNYRb7zHt+qycQwfTD/Zxnbd4Sxi2fgvkeAljtLEOs=", + "lastModified": 1766624085, + "narHash": "sha256-ruzNOGQR0HKynAarKRhAYwIZc79IkDqui4ovQmkZPQI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "890f57fde071de281cd0e950cd80ea3e1ab55e75", + "rev": "b72f284b1be41575c3e36cd777a191c29a7adf6a", "type": "github" }, "original": { From 1b4ce3e8f92a4d8b1b56663887dd3ca6e6f2440d Mon Sep 17 00:00:00 2001 From: Alisue Date: Thu, 25 Dec 2025 22:25:21 +0900 Subject: [PATCH 2/3] refactor(*): Rename organization from jsr-probitas to probitas-test --- .github/workflows/test.yml | 10 +++++----- README.md | 10 +++++----- compose.yaml | 8 ++++---- packages/probitas-client-connectrpc/mod.ts | 6 +++--- packages/probitas-client-deno-kv/mod.ts | 6 +++--- packages/probitas-client-graphql/mod.ts | 6 +++--- packages/probitas-client-grpc/mod.ts | 6 +++--- packages/probitas-client-grpc/testdata/echo.proto | 2 +- packages/probitas-client-http/mod.ts | 6 +++--- packages/probitas-client-mongodb/mod.ts | 6 +++--- packages/probitas-client-rabbitmq/mod.ts | 6 +++--- packages/probitas-client-redis/mod.ts | 6 +++--- packages/probitas-client-sql-duckdb/mod.ts | 6 +++--- packages/probitas-client-sql-mysql/mod.ts | 6 +++--- packages/probitas-client-sql-postgres/mod.ts | 6 +++--- packages/probitas-client-sql-sqlite/mod.ts | 6 +++--- packages/probitas-client-sql/mod.ts | 6 +++--- packages/probitas-client-sqs/mod.ts | 6 +++--- packages/probitas-client/mod.ts | 4 ++-- 19 files changed, 59 insertions(+), 59 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4e9ed3e..b9ab525 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,19 +26,19 @@ jobs: runs-on: ubuntu-latest services: echo-http: - image: ghcr.io/jsr-probitas/echo-http:latest + image: ghcr.io/probitas-test/echo-http:latest ports: - 18080:80 echo-grpc: - image: ghcr.io/jsr-probitas/echo-grpc:latest + image: ghcr.io/probitas-test/echo-grpc:latest ports: - 50051:50051 echo-connectrpc: - image: ghcr.io/jsr-probitas/echo-connectrpc:latest + image: ghcr.io/probitas-test/echo-connectrpc:latest ports: - 18082:8080 echo-graphql: - image: ghcr.io/jsr-probitas/echo-graphql:latest + image: ghcr.io/probitas-test/echo-graphql:latest ports: - 14000:8080 postgres: @@ -136,4 +136,4 @@ jobs: with: files: ./coverage.lcov token: ${{ secrets.CODECOV_TOKEN }} - slug: jsr-probitas/probitas-client + slug: probitas-test/probitas-client diff --git a/README.md b/README.md index 40212cd..143e55d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Probitas Client -[![Test](https://github.com/jsr-probitas/probitas-client/actions/workflows/test.yml/badge.svg)](https://github.com/jsr-probitas/probitas-client/actions/workflows/test.yml) -[![Publish](https://github.com/jsr-probitas/probitas-client/actions/workflows/publish.yml/badge.svg)](https://github.com/jsr-probitas/probitas-client/actions/workflows/publish.yml) -[![codecov](https://codecov.io/gh/jsr-probitas/probitas-client/graph/badge.svg)](https://codecov.io/gh/jsr-probitas/probitas-client) +[![Test](https://github.com/probitas-test/probitas-client/actions/workflows/test.yml/badge.svg)](https://github.com/probitas-test/probitas-client/actions/workflows/test.yml) +[![Publish](https://github.com/probitas-test/probitas-client/actions/workflows/publish.yml/badge.svg)](https://github.com/probitas-test/probitas-client/actions/workflows/publish.yml) +[![codecov](https://codecov.io/gh/probitas-test/probitas-client/graph/badge.svg)](https://codecov.io/gh/probitas-test/probitas-client) Client library collection for exercising Probitas scenarios against real services. Each protocol-specific client shares the same ergonomics and error @@ -73,7 +73,7 @@ export default scenario("example http request") ``` Refer to `docs/clients.md` for package-specific usage notes and to the -[Probitas framework](https://github.com/jsr-probitas/probitas) for scenario +[Probitas framework](https://github.com/probitas-test/probitas) for scenario authoring. ## Development @@ -85,7 +85,7 @@ authoring. - Integration services: `compose.yaml` starts local dependencies (HTTP/ConnectRPC/gRPC/GraphQL echo servers, Postgres/MySQL, Redis, MongoDB, RabbitMQ, LocalStack, Deno KV). Echo server images are published to - `ghcr.io/jsr-probitas/`. + `ghcr.io/probitas-test/`. - Specs: Detailed protocol expectations are tracked in [`docs/specs/00-overview.md`](docs/specs/00-overview.md). diff --git a/compose.yaml b/compose.yaml index 3a941d9..173d0ca 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,25 +1,25 @@ services: # HTTP echo server for integration testing echo-http: - image: ghcr.io/jsr-probitas/echo-http:latest + image: ghcr.io/probitas-test/echo-http:latest ports: - "18080:80" # gRPC echo server with reflection support for integration testing echo-grpc: - image: ghcr.io/jsr-probitas/echo-grpc:latest + image: ghcr.io/probitas-test/echo-grpc:latest ports: - "50051:50051" # ConnectRPC echo server for integration testing echo-connectrpc: - image: ghcr.io/jsr-probitas/echo-connectrpc:latest + image: ghcr.io/probitas-test/echo-connectrpc:latest ports: - "18082:8080" # GraphQL echo server for integration testing echo-graphql: - image: ghcr.io/jsr-probitas/echo-graphql:latest + image: ghcr.io/probitas-test/echo-graphql:latest ports: - "14000:8080" diff --git a/packages/probitas-client-connectrpc/mod.ts b/packages/probitas-client-connectrpc/mod.ts index 43379ac..e7f1034 100644 --- a/packages/probitas-client-connectrpc/mod.ts +++ b/packages/probitas-client-connectrpc/mod.ts @@ -1,5 +1,5 @@ /** - * ConnectRPC client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * ConnectRPC client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a ConnectRPC-based client with Server Reflection support, * designed for integration testing of gRPC and Connect protocol services. @@ -90,8 +90,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [ConnectRPC](https://connectrpc.com/) * * @module diff --git a/packages/probitas-client-deno-kv/mod.ts b/packages/probitas-client-deno-kv/mod.ts index d5fb107..180336c 100644 --- a/packages/probitas-client-deno-kv/mod.ts +++ b/packages/probitas-client-deno-kv/mod.ts @@ -1,5 +1,5 @@ /** - * Deno KV client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * Deno KV client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a Deno KV client designed for integration testing of applications using Deno KV storage. * @@ -84,8 +84,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [Deno KV](https://deno.land/manual/runtime/kv) * * @module diff --git a/packages/probitas-client-graphql/mod.ts b/packages/probitas-client-graphql/mod.ts index a142925..49a046c 100644 --- a/packages/probitas-client-graphql/mod.ts +++ b/packages/probitas-client-graphql/mod.ts @@ -1,5 +1,5 @@ /** - * GraphQL client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * GraphQL client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a GraphQL client designed for integration testing of GraphQL APIs. * @@ -65,8 +65,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * * @module */ diff --git a/packages/probitas-client-grpc/mod.ts b/packages/probitas-client-grpc/mod.ts index 428defb..82cb550 100644 --- a/packages/probitas-client-grpc/mod.ts +++ b/packages/probitas-client-grpc/mod.ts @@ -1,5 +1,5 @@ /** - * gRPC client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * gRPC client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a gRPC client with Server Reflection support, designed for * integration testing of gRPC services. It is a thin wrapper around @@ -114,8 +114,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [gRPC](https://grpc.io/) * * @module diff --git a/packages/probitas-client-grpc/testdata/echo.proto b/packages/probitas-client-grpc/testdata/echo.proto index 4e84622..d1fe028 100644 --- a/packages/probitas-client-grpc/testdata/echo.proto +++ b/packages/probitas-client-grpc/testdata/echo.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package echo.v1; -option go_package = "github.com/jsr-probitas/dockerfiles/echo-grpc/proto"; +option go_package = "github.com/probitas-test/dockerfiles/echo-grpc/proto"; // Echo service with various RPC patterns service Echo { diff --git a/packages/probitas-client-http/mod.ts b/packages/probitas-client-http/mod.ts index e39eed4..396a319 100644 --- a/packages/probitas-client-http/mod.ts +++ b/packages/probitas-client-http/mod.ts @@ -1,5 +1,5 @@ /** - * HTTP client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * HTTP client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides an HTTP client designed for integration testing of HTTP APIs. * @@ -66,8 +66,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * * @module */ diff --git a/packages/probitas-client-mongodb/mod.ts b/packages/probitas-client-mongodb/mod.ts index 208b72d..12939bc 100644 --- a/packages/probitas-client-mongodb/mod.ts +++ b/packages/probitas-client-mongodb/mod.ts @@ -1,5 +1,5 @@ /** - * MongoDB client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * MongoDB client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a MongoDB client designed for integration testing of applications using MongoDB. * @@ -101,8 +101,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [MongoDB](https://www.mongodb.com/) * * @module diff --git a/packages/probitas-client-rabbitmq/mod.ts b/packages/probitas-client-rabbitmq/mod.ts index 171bc1c..5ab108c 100644 --- a/packages/probitas-client-rabbitmq/mod.ts +++ b/packages/probitas-client-rabbitmq/mod.ts @@ -1,5 +1,5 @@ /** - * RabbitMQ client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * RabbitMQ client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a RabbitMQ client designed for integration testing of message-driven applications. * @@ -106,8 +106,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [RabbitMQ](https://www.rabbitmq.com/) * * @module diff --git a/packages/probitas-client-redis/mod.ts b/packages/probitas-client-redis/mod.ts index 8ee5291..dc29931 100644 --- a/packages/probitas-client-redis/mod.ts +++ b/packages/probitas-client-redis/mod.ts @@ -1,5 +1,5 @@ /** - * Redis client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * Redis client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a Redis client designed for integration testing of applications using Redis. * @@ -123,8 +123,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [Redis](https://redis.io/) * * @module diff --git a/packages/probitas-client-sql-duckdb/mod.ts b/packages/probitas-client-sql-duckdb/mod.ts index e9427a0..433350b 100644 --- a/packages/probitas-client-sql-duckdb/mod.ts +++ b/packages/probitas-client-sql-duckdb/mod.ts @@ -1,5 +1,5 @@ /** - * DuckDB client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * DuckDB client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a DuckDB client designed for integration testing, * with analytical query capabilities and Parquet/CSV file support. @@ -87,8 +87,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [DuckDB](https://duckdb.org/) * * @module diff --git a/packages/probitas-client-sql-mysql/mod.ts b/packages/probitas-client-sql-mysql/mod.ts index 804b927..6642d14 100644 --- a/packages/probitas-client-sql-mysql/mod.ts +++ b/packages/probitas-client-sql-mysql/mod.ts @@ -1,5 +1,5 @@ /** - * MySQL client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * MySQL client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a MySQL client designed for integration testing, * with transaction support and prepared statement capabilities. @@ -88,8 +88,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [MySQL](https://www.mysql.com/) * * @module diff --git a/packages/probitas-client-sql-postgres/mod.ts b/packages/probitas-client-sql-postgres/mod.ts index 7b67a93..016ca82 100644 --- a/packages/probitas-client-sql-postgres/mod.ts +++ b/packages/probitas-client-sql-postgres/mod.ts @@ -1,5 +1,5 @@ /** - * PostgreSQL client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * PostgreSQL client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a PostgreSQL client designed for integration testing, * with transaction support and LISTEN/NOTIFY capabilities. @@ -109,8 +109,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [PostgreSQL](https://www.postgresql.org/) * * @module diff --git a/packages/probitas-client-sql-sqlite/mod.ts b/packages/probitas-client-sql-sqlite/mod.ts index 5209e78..a55e7c2 100644 --- a/packages/probitas-client-sql-sqlite/mod.ts +++ b/packages/probitas-client-sql-sqlite/mod.ts @@ -1,5 +1,5 @@ /** - * SQLite client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * SQLite client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides a SQLite client designed for integration testing, * with transaction support and in-memory database capabilities. @@ -86,8 +86,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [SQLite](https://www.sqlite.org/) * * @module diff --git a/packages/probitas-client-sql/mod.ts b/packages/probitas-client-sql/mod.ts index 7c01bb2..92504eb 100644 --- a/packages/probitas-client-sql/mod.ts +++ b/packages/probitas-client-sql/mod.ts @@ -1,5 +1,5 @@ /** - * Common SQL types and utilities for [Probitas](https://github.com/jsr-probitas/probitas) SQL client packages. + * Common SQL types and utilities for [Probitas](https://github.com/probitas-test/probitas) SQL client packages. * * This package provides shared types, result classes, and errors used across * all SQL-related client packages. @@ -46,8 +46,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * * @module */ diff --git a/packages/probitas-client-sqs/mod.ts b/packages/probitas-client-sqs/mod.ts index 4108893..84a17fd 100644 --- a/packages/probitas-client-sqs/mod.ts +++ b/packages/probitas-client-sqs/mod.ts @@ -1,5 +1,5 @@ /** - * AWS SQS client for [Probitas](https://github.com/jsr-probitas/probitas) scenario testing framework. + * AWS SQS client for [Probitas](https://github.com/probitas-test/probitas) scenario testing framework. * * This package provides an AWS SQS client designed for integration testing of message-driven applications using Amazon Simple Queue Service. * @@ -115,8 +115,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * - [AWS SQS](https://aws.amazon.com/sqs/) * - [LocalStack](https://localstack.cloud/) * diff --git a/packages/probitas-client/mod.ts b/packages/probitas-client/mod.ts index f169b6d..2e78bbf 100644 --- a/packages/probitas-client/mod.ts +++ b/packages/probitas-client/mod.ts @@ -61,8 +61,8 @@ * * ## Links * - * - [GitHub Repository](https://github.com/jsr-probitas/probitas-client) - * - [Probitas Framework](https://github.com/jsr-probitas/probitas) + * - [GitHub Repository](https://github.com/probitas-test/probitas-client) + * - [Probitas Framework](https://github.com/probitas-test/probitas) * * @module */ From e86b2ec11d5e47548b854b53adb0cef0d78cab44 Mon Sep 17 00:00:00 2001 From: Alisue Date: Thu, 25 Dec 2025 22:26:38 +0900 Subject: [PATCH 3/3] deps: Update dependencies --- deno.jsonc | 2 +- deno.lock | 113 ++++++++++++----------------------------------------- 2 files changed, 25 insertions(+), 90 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 8260eeb..2ea1e73 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -41,7 +41,7 @@ "@logtape/logtape": "jsr:@logtape/logtape@^1.3.5", "@std/assert": "jsr:@std/assert@^1.0.16", "@std/jsonc": "jsr:@std/jsonc@^1.0.2", - "@std/path": "jsr:@std/path@^1.1.3", + "@std/path": "jsr:@std/path@^1.1.4", "@std/semver": "jsr:@std/semver@^1.0.7", "@std/testing": "jsr:@std/testing@^1.0.16", "jsr:@probitas/client@^0": "./packages/probitas-client/mod.ts", diff --git a/deno.lock b/deno.lock index ace20f9..6205582 100644 --- a/deno.lock +++ b/deno.lock @@ -7,30 +7,23 @@ "jsr:@db/sqlite@0.12": "0.12.0", "jsr:@denosaurs/plug@1": "1.1.0", "jsr:@logtape/logtape@1": "1.3.5", - "jsr:@probitas/builder@~0.3.2": "0.3.2", - "jsr:@probitas/core@~0.1.2": "0.1.2", - "jsr:@probitas/expect@~0.2.4": "0.2.6", - "jsr:@probitas/probitas@*": "0.5.5", - "jsr:@probitas/runner@~0.3.3": "0.3.3", + "jsr:@logtape/logtape@^1.3.5": "1.3.5", "jsr:@std/assert@0.217": "0.217.0", - "jsr:@std/assert@^1.0.14": "1.0.16", "jsr:@std/assert@^1.0.15": "1.0.16", "jsr:@std/assert@^1.0.16": "1.0.16", - "jsr:@std/async@^1.0.15": "1.0.15", - "jsr:@std/collections@^1.1.3": "1.1.3", + "jsr:@std/async@^1.0.15": "1.0.16", "jsr:@std/data-structures@^1.0.9": "1.0.9", "jsr:@std/encoding@1": "1.0.10", - "jsr:@std/expect@^1.0.17": "1.0.17", "jsr:@std/fmt@1": "1.0.8", - "jsr:@std/fmt@^1.0.6": "1.0.8", - "jsr:@std/fs@1": "1.0.20", - "jsr:@std/internal@^1.0.10": "1.0.12", + "jsr:@std/fs@1": "1.0.21", + "jsr:@std/fs@^1.0.19": "1.0.21", "jsr:@std/internal@^1.0.12": "1.0.12", "jsr:@std/json@^1.0.2": "1.0.2", "jsr:@std/jsonc@^1.0.2": "1.0.2", "jsr:@std/path@0.217": "0.217.0", - "jsr:@std/path@1": "1.1.3", - "jsr:@std/path@^1.1.3": "1.1.3", + "jsr:@std/path@1": "1.1.4", + "jsr:@std/path@^1.1.2": "1.1.4", + "jsr:@std/path@^1.1.4": "1.1.4", "jsr:@std/semver@^1.0.7": "1.0.7", "jsr:@std/testing@^1.0.16": "1.0.16", "npm:@aws-sdk/client-sqs@^3.700.0": "3.955.0", @@ -38,10 +31,8 @@ "npm:@connectrpc/connect-node@^2.1.1": "2.1.1_@bufbuild+protobuf@2.10.2_@connectrpc+connect@2.1.1__@bufbuild+protobuf@2.10.2", "npm:@connectrpc/connect@^2.1.1": "2.1.1_@bufbuild+protobuf@2.10.2", "npm:@duckdb/node-api@1.4.2-r.1": "1.4.2-r.1", - "npm:@faker-js/faker@9": "9.9.0", "npm:@lambdalisue/connectrpc-grpcreflect@0.5": "0.5.0_@bufbuild+protobuf@2.10.2", "npm:amqplib@~0.10.5": "0.10.9", - "npm:diff@^8.0.2": "8.0.2", "npm:ioredis@^5.4.1": "5.8.2", "npm:mongodb@^6.12.0": "6.21.0", "npm:mysql2@^3.11.0": "3.16.0", @@ -71,70 +62,25 @@ "integrity": "eb2f0b7546c7bca2000d8b0282c54d50d91cf6d75cb26a80df25a6de8c4bc044", "dependencies": [ "jsr:@std/encoding", - "jsr:@std/fmt@1", - "jsr:@std/fs", + "jsr:@std/fmt", + "jsr:@std/fs@1", "jsr:@std/path@1" ] }, "@logtape/logtape@1.3.5": { "integrity": "a5cdb130daf1a9d384006b0f850cc4443bfc2e163dadc6fa667875e79770beb3" }, - "@probitas/builder@0.3.2": { - "integrity": "553bd4d67a78461f6a6db0f3b2083a9ca8c6b00e0c64a30ba1c8f656be0a5438", - "dependencies": [ - "jsr:@probitas/core" - ] - }, - "@probitas/core@0.1.2": { - "integrity": "60ab8a98d26e5955715f3c7bde95ecfbeecae37ca2594b1eb2b41132610aa8df", - "dependencies": [ - "jsr:@std/fmt@^1.0.6", - "jsr:@std/path@^1.1.3" - ] - }, - "@probitas/expect@0.2.6": { - "integrity": "810ece65692dbeb8a07f7f6ff71973d5af1c194d1b4e3ba9afcf296078c11b66", - "dependencies": [ - "jsr:@core/errorutil", - "jsr:@probitas/core", - "jsr:@std/expect", - "npm:diff" - ] - }, - "@probitas/probitas@0.5.5": { - "integrity": "c3596772471a82fd414c4f2d2d0b797b8e1d7dfefcdfc43d33797d8040a5bcc8", - "dependencies": [ - "jsr:@core/errorutil", - "jsr:@cspotcode/outdent", - "jsr:@probitas/builder", - "jsr:@probitas/expect", - "jsr:@probitas/runner", - "jsr:@std/testing", - "npm:@faker-js/faker" - ] - }, - "@probitas/runner@0.3.3": { - "integrity": "e851a42a17b4eb22fbe593d3a513fdcd8c1439ab3aa48417456e294966272ad9", - "dependencies": [ - "jsr:@probitas/core", - "jsr:@std/async", - "jsr:@std/collections" - ] - }, "@std/assert@0.217.0": { "integrity": "c98e279362ca6982d5285c3b89517b757c1e3477ee9f14eb2fdf80a45aaa9642" }, "@std/assert@1.0.16": { "integrity": "6a7272ed1eaa77defe76e5ff63ca705d9c495077e2d5fd0126d2b53fc5bd6532", "dependencies": [ - "jsr:@std/internal@^1.0.12" + "jsr:@std/internal" ] }, - "@std/async@1.0.15": { - "integrity": "55d1d9d04f99403fe5730ab16bdcc3c47f658a6bf054cafb38a50f046238116e" - }, - "@std/collections@1.1.3": { - "integrity": "bf8b0818886df6a32b64c7d3b037a425111f28278d69fd0995aeb62777c986b0" + "@std/async@1.0.16": { + "integrity": "6c9e43035313b67b5de43e2b3ee3eadb39a488a0a0a3143097f112e025d3ee9a" }, "@std/data-structures@1.0.9": { "integrity": "033d6e17e64bf1f84a614e647c1b015fa2576ae3312305821e1a4cb20674bb4d" @@ -142,21 +88,14 @@ "@std/encoding@1.0.10": { "integrity": "8783c6384a2d13abd5e9e87a7ae0520a30e9f56aeeaa3bdf910a3eaaf5c811a1" }, - "@std/expect@1.0.17": { - "integrity": "316b47dd65c33e3151344eb3267bf42efba17d1415425f07ed96185d67fc04d9", - "dependencies": [ - "jsr:@std/assert@^1.0.14", - "jsr:@std/internal@^1.0.10" - ] - }, "@std/fmt@1.0.8": { "integrity": "71e1fc498787e4434d213647a6e43e794af4fd393ef8f52062246e06f7e372b7" }, - "@std/fs@1.0.20": { - "integrity": "e953206aae48d46ee65e8783ded459f23bec7dd1f3879512911c35e5484ea187", + "@std/fs@1.0.21": { + "integrity": "d720fe1056d78d43065a4d6e0eeb2b19f34adb8a0bc7caf3a4dbf1d4178252cd", "dependencies": [ - "jsr:@std/internal@^1.0.12", - "jsr:@std/path@^1.1.3" + "jsr:@std/internal", + "jsr:@std/path@^1.1.4" ] }, "@std/internal@1.0.12": { @@ -177,10 +116,10 @@ "jsr:@std/assert@0.217" ] }, - "@std/path@1.1.3": { - "integrity": "b015962d82a5e6daea980c32b82d2c40142149639968549c649031a230b1afb3", + "@std/path@1.1.4": { + "integrity": "1d2d43f39efb1b42f0b1882a25486647cb851481862dc7313390b2bb044314b5", "dependencies": [ - "jsr:@std/internal@^1.0.12" + "jsr:@std/internal" ] }, "@std/semver@1.0.7": { @@ -190,8 +129,10 @@ "integrity": "a917ffdeb5924c9be436dc78bc32e511760e14d3a96e49c607fc5ecca86d0092", "dependencies": [ "jsr:@std/assert@^1.0.15", - "jsr:@std/async", - "jsr:@std/data-structures" + "jsr:@std/data-structures", + "jsr:@std/fs@^1.0.19", + "jsr:@std/internal", + "jsr:@std/path@^1.1.2" ] } }, @@ -672,9 +613,6 @@ "@duckdb/node-bindings-win32-x64" ] }, - "@faker-js/faker@9.9.0": { - "integrity": "sha512-OEl393iCOoo/z8bMezRlJu+GlRGlsKbUAN7jKB6LhnKoqKve5DXRpalbItIIcwnCjs1k/FOPjFzcA6Qn+H+YbA==" - }, "@ioredis/commands@1.4.0": { "integrity": "sha512-aFT2yemJJo+TZCmieA7qnYGQooOS7QfNmYrzGtsYd3g9j5iDP8AimYYAesf79ohjbLG12XxC4nG5DyEnC88AsQ==" }, @@ -1099,9 +1037,6 @@ "denque@2.1.0": { "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" }, - "diff@8.0.2": { - "integrity": "sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==" - }, "fast-xml-parser@5.2.5": { "integrity": "sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==", "dependencies": [ @@ -1265,7 +1200,7 @@ "jsr:@logtape/logtape@^1.3.5", "jsr:@std/assert@^1.0.16", "jsr:@std/jsonc@^1.0.2", - "jsr:@std/path@^1.1.3", + "jsr:@std/path@^1.1.4", "jsr:@std/semver@^1.0.7", "jsr:@std/testing@^1.0.16" ],