Skip to content

Releases: seek-oss/sku

v11.3.1

12 Apr 04:33
b3bdec8
Compare
Choose a tag to compare

Patch Changes

  • test: Run Jest using the CI flag when in CI environment (#678)

    Tests run in CI should fail if a new snapshot is written, this was not the case and needed to be opted into manually by passing the --ci flag to Jest.

v11.3.0

08 Apr 05:16
a415a6a
Compare
Choose a tag to compare

Minor Changes

  • Any app that configures languages will automatically have the en-PSEUDO language generated for them. (#675)
    en-PSEUDO is a generated language created by pseudo-localizing existing en translation messages in your app.
    An explanation of the pseudo-localization process, as well as possible use cases for this language, can be found in the Vocab docs.

    en-PSEUDO can be consumed just like any other language in your app:

    const App = () => <VocabProvider language="en-PSEUDO">...</VocabProvider>;

    NB: Statically-rendered apps will not be able to render an en-PSEUDO version of their app at build time.
    If this is a use case that you would find useful, please reach out in #sku-support.

v11.2.8

28 Mar 01:06
32b1d7f
Compare
Choose a tag to compare

Patch Changes

  • Force upgrade @vocab/core to ^1.0.4 to fix a language hierarchy bug that can result in incorrect translation messages being used for a language. (#672)

v11.2.7

22 Feb 03:08
bca5891
Compare
Choose a tag to compare

Patch Changes

  • Support static rendering for routes using ':language' (#670)

v11.2.6

07 Feb 23:56
3d6b6a8
Compare
Choose a tag to compare

Patch Changes

  • Add "extends" to languages type definition (#668)

v11.2.5

09 Dec 01:53
2355842
Compare
Choose a tag to compare

Patch Changes

  • Fix missing import for resolve modules (#666)

v11.2.4

09 Dec 00:47
a380f78
Compare
Choose a tag to compare

Patch Changes

  • Ensure compile packages within nested node_modules are transformed in jest (#664)

  • Include @babel/runtime in render builds to ensure it is importable (#664)

v11.2.3

01 Dec 04:09
bbeedcf
Compare
Choose a tag to compare

Patch Changes

  • Prevents typescript from being upgraded to 4.5.x (#662)

    Typescript 4.5 has caused a lot of issues with packages included with sku (braid, vanilla-extract) that are caused by a regression that's been introduced in the type checker.
    It seems to be fixed in 4.6.0-dev, but that won't be available until late February.

    To prevent things blowing up in the meantime, the version of typescript has been update to keep it below 4.5, at least until a patch is released in 4.5

v11.2.2

01 Dec 00:16
18b9d4e
Compare
Choose a tag to compare

Patch Changes

  • The autogenerated tsconfig.json no longer explicitly excludes node_modules (#660)

v11.2.1

30 Nov 02:38
bfc82ef
Compare
Choose a tag to compare

Patch Changes

  • Fix loading of TS config files that use node builtins or external dependencies. (#657)