Ben Limmer
Ben Limmer
When you have a Kinesis stream encrypted by a customer-managed KMS key, `aws-events-targets` does not give EventBridge permission to encrypt events using the key. ### Reproduction Steps ```ts import *...
### Describe the feature Today, NodejsFunction supports lockfiles from the following ecosystems: - NPM - Yarn - PNPM [`bun`](https://bun.sh/) is gaining in popularity and has its own lockfile, `bun.lockb`. It...
PR #1195 could cause problems with long many-to-many table names. For example: > CREATE INDEX "change_requests_related_to_change_requests_change_request_related_to_id_index" ON "change_requests_related_to_change_requests" ("change_request_related_to_id"); > error: relation "change_requests_related_to_change_requests_change_request_relat" already exists Postgres has a maximum index...
Joist makes use of `SELECT DISTINCT` in some cases. `SELECT DISTINCT` is often slow because it requires the database to remove duplicate rows, which can involve sorting or hashing large...
### What is the problem this feature will solve? When running tests concurrently (the default setting in the Node test runner), it's common practice to split concurrent test runs across...
According to the docs, [root hook plugins can export a function](https://mochajs.org/#root-hook-plugins-can-export-a-function).  However, anytime a function is exported, this plugin does not execute those hooks....
I'm working on migrating a project from `jest` to `mocha`. I needed a project just like this one to retain snapshot behaviors. Although this repo has more stars and downloads,...
https://github.com/intacct/intacct-sdk-js/blob/b9600ebd30f152ca43418e814b6531cff6948c96/src/Xml/OnlineResponse.ts#L20 The use of `util.isNullOrUndefined` and `util.isArray` logs errors on each call to Intacct using the SDK: ```console [DEP0044] DeprecationWarning: The `util.isArray` API is deprecated. Please use `Array.isArray()` instead. [DEP0051]...
### Version 28.1.1 ### Steps to reproduce 1. Clone my repo https://github.com/blimmer/jest-issue-repro 2. Run `npm ci` 3. Run `npm run test:jest-jasmine2`. You'll see that the error message from the test...
## Current Behavior Yarn accepts a `workspaces` key with a `./` prefix in `package.json`. ```json { "name": "my-monorepo", "workspaces": ["./packages/*"] } ``` ```shell > yarn workspaces list ➤ YN0000: ....