Skip to content

v0.2.15

Choose a tag to compare

@github-actions github-actions released this 04 Sep 04:21
· 2 commits to main since this release
15412cc

Patch Changes

  • #107 1c26fa8 Thanks @jxom! - Added named instances to Vitest server and pool setup with worker isolation and independent server lifecycle controls.

    import { Instance } from "prool";
    import { Server } from "prool/vitest";
    
    export default Server.setup({
      instances: { l1: Instance.anvil(), l2: Instance.anvil() },
      setup(chains, project) {
        project.provide("chains", chains);
      },
    });
  • #107 1c26fa8 Thanks @jxom! - Fixed IPv4 pool port allocation, process restart races, and startup rejection when a child exits before becoming ready.