From 60dd24993271dac64fbffc95702152a10adfb54b Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Fri, 8 Nov 2024 13:19:13 -0700 Subject: [PATCH] pr updates --- cli/CHANGELOG.md | 2 +- npm/svelte/rollup.config.mjs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index d7144e9e411c..d0caebc88432 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -21,7 +21,7 @@ _Released 12/3/2024 (PENDING)_ - Cypress Component Testing no longer supports `Vue` version 2. Addresses [#30295](https://github.com/cypress-io/cypress/issues/30295). - Cypress Component Testing no longer supports `Next.js` versions 10, 11, 12, and 13. Addresses [#29583](https://github.com/cypress-io/cypress/issues/29583). - Cypress Component Testing no longer supports `Angular` versions 13, 14, 15, and 16. The minimum supported version is now `17.2.0` in order to fully support Angular [signals](https://angular.dev/guide/signals). Addresses [#29582](https://github.com/cypress-io/cypress/issues/29582). Addressed in [#30539](https://github.com/cypress-io/cypress/pull/30539). -- Cypress Component Testing no longer support `Svelte` version 3. Addresses [#30492](https://github.com/cypress-io/cypress/issues/30492) +- Cypress Component Testing no longer supports `Svelte` version 3. Addresses [#30492](https://github.com/cypress-io/cypress/issues/30492). - The `cypress/angular-signals` test harness is no longer included in the Cypress binary. Instead, signals support is now shipped with `cypress/angular`! This requires `rxjs` to be installed as a `peerDependency`. Addresses [#29606](https://github.com/cypress-io/cypress/issues/29606). - Cypress Component Testing no longer supports `create-react-app`. Addresses [#30028](https://github.com/cypress-io/cypress/issues/30028). diff --git a/npm/svelte/rollup.config.mjs b/npm/svelte/rollup.config.mjs index d931c0b0e231..27c9adc61822 100644 --- a/npm/svelte/rollup.config.mjs +++ b/npm/svelte/rollup.config.mjs @@ -1,3 +1,4 @@ import { createEntries } from '@cypress/mount-utils/create-rollup-entry.mjs' +// updated respectExternal to false due to this issue: https://github.com/Swatinem/rollup-plugin-dts/issues/162#issuecomment-1702374232 export default createEntries({ formats: ['es', 'cjs'], input: 'src/index.ts', dtsOptions: { respectExternal: false } })