Releases: guardian/csnx
@guardian/[email protected]
Patch Changes
- Updates eslint to v9.14.0 as it updates
@eslint/plugin-kit
v0.2.3 with a security fix.
@guardian/[email protected]
@guardian/react-crossword
2.0.2
Patch Changes
- dd9390a: Remove bean and update fastdom usages
2.0.1
Patch Changes
- e272e51: Tackled all remaining dependabot issues
- 0a5d815: Swap sass-lint for stylelint to remove a critical vulnerability
2.0.0
Major Changes
- cc1e576: Makes Fastdom work again and makes a styling change that may break non Edition styling
1.3.1
Patch Changes
- 1573a38: add quick-cryptic grid size value
- 7544959: Display multiline instructions on multiple lines
- 3142d50: Support formatted instructions
- 1ecbf7f: Fix SVG import and ref usage
1.3.0
Minor Changes
- 91dec91: Run build script before publishing
1.2.0
Minor Changes
- c18ce10: Update to all dependencies
Patch Changes
- c298d6a: Fixing the release process
1.1.0
Minor Changes
- 6f71ddc: Update to all dependencies and moving across to Parcel from Webpack
@guardian/[email protected]
Patch Changes
- 298da58: Testing the deletion of local storage
@guardian/[email protected]
Patch Changes
- db73c76: Noop to force release.
@guardian/[email protected]
Patch Changes
- Updated dependencies
- @guardian/[email protected]
@guardian/[email protected]
Major Changes
- 42358e6: Now needs
@types/react@^18.2.79
if you use this package with TypeScript.
@guardian/[email protected]
Major Changes
- 42358e6: Now needs
@types/react@^18.2.79
if you use this package with TypeScript.
@guardian/[email protected]
Major Changes
- 42358e6: Now needs
@types/react@^18.2.79
if you use this package with TypeScript.
Patch Changes
- Updated dependencies [42358e6]
- Updated dependencies [cb19d46]
- Updated dependencies [a559720]
- @guardian/[email protected]
- @guardian/[email protected]
@guardian/[email protected]
Major Changes
- 42358e6: Now needs
@types/react@^18.2.79
if you use this package with TypeScript.
Patch Changes
- Updated dependencies [42358e6]
- Updated dependencies [cb19d46]
- Updated dependencies [a559720]
- @guardian/[email protected]
- @guardian/[email protected]
@guardian/[email protected]
Major Changes
-
cb19d46: Removes
ArticleDesign.PrintShop
, as we no longer intend to handle this as a separateArticleDesign
.This is a breaking change because it removes this member from the
enum
. Therefore any code the depends on this member will need to be updated.For example, in a
switch
thecase
will need to be removed:switch (design) { case ArticleDesign.Standard: // Other code case ArticleDesign.PrintShop: // This case will need to be removed }
Any code that stores the enum members directly, such as a fixture, will also need to be updated:
{ ... format: { // With PrintShop removed, 20 will now refer to Obituary design: 20, ... } }
Consideration will need to be given to what
ArticleDesign
will now be used for articles that were previouslyPrintShop
. This is handled in the CAPI client for frontend/DCAR, and in AR itself for AR. -
a559720: CMP: Implement Multi-State Privacy Agreement for US Compliance
This release introduces support for the Global Privacy Platform (GPP) for third-party vendors who have completed migration. The legacy **uspapi will remain available temporarily for vendors still in transition.
Key updates:
Added window.__gpp stub function for the US region. Updated the US framework to use "usnat" instead of "ccpa". Migrated CCPA-related types and functions to the "aus" namespace. The ConsentState type, returned by getConsentFor, onConsentChange, and onConsent, now includes a usnat property, replacing the previous ccpa property.