Skip to content

Releases: guardian/csnx

@guardian/[email protected]

18 Nov 14:43
c111cc0
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • Updates eslint to v9.14.0 as it updates @eslint/plugin-kit v0.2.3 with a security fix.

@guardian/[email protected]

05 Nov 17:28
159878d
Compare
Choose a tag to compare
Pre-release

@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]

04 Nov 08:32
797db2c
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • 298da58: Testing the deletion of local storage

@guardian/[email protected]

01 Nov 13:14
78fa8cb
Compare
Choose a tag to compare

Patch Changes

@guardian/[email protected]

01 Nov 13:14
78fa8cb
Compare
Choose a tag to compare

Patch Changes

@guardian/[email protected]

17 Sep 08:30
281382e
Compare
Choose a tag to compare
Pre-release

Major Changes

  • 42358e6: Now needs @types/react@^18.2.79 if you use this package with TypeScript.

@guardian/[email protected]

17 Sep 08:17
fb2f818
Compare
Choose a tag to compare
Pre-release

Major Changes

  • 42358e6: Now needs @types/react@^18.2.79 if you use this package with TypeScript.

@guardian/[email protected]

17 Sep 08:30
281382e
Compare
Choose a tag to compare
Pre-release

Major Changes

  • 42358e6: Now needs @types/react@^18.2.79 if you use this package with TypeScript.

Patch Changes

@guardian/[email protected]

17 Sep 08:18
fb2f818
Compare
Choose a tag to compare
Pre-release

Major Changes

  • 42358e6: Now needs @types/react@^18.2.79 if you use this package with TypeScript.

Patch Changes

@guardian/[email protected]

17 Sep 08:30
281382e
Compare
Choose a tag to compare
Pre-release

Major Changes

  • cb19d46: Removes ArticleDesign.PrintShop, as we no longer intend to handle this as a separate ArticleDesign.

    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 the case 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 previously PrintShop. 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.