lion/packages/singleton-manager/CHANGELOG.md
github-actions[bot] 40ddf2c2d2
Version Packages (#2145)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-11-29 11:47:16 +01:00

3.2 KiB

Change Log

1.7.0

Minor Changes

1.6.1

Patch Changes

  • faa26f12: Keep the main entry in package.json for now, as it is still used by some tools.

1.6.0

Minor Changes

  • e08b6bec: Update to use package exports with a dedicated types entry. This means the package only supports node 16+ and TS 4.7+ with moduleResolution: Node16 or moduleResolution: NodeNext as described in the TS 4.7 Announcement.

1.5.0

Minor Changes

  • e7a4ca1d: Add "type":"module" to ESM packages so loaders like Vite will interpret the package as ESM properly.

1.4.3

Patch Changes

  • 30805edf: Replace deprecated node folder exports with wildcard exports for docs

1.4.2

Patch Changes

1.4.1

Patch Changes

  • 77a04245: add protected and private type info

1.4.0

Minor Changes

  • f3e54c56: Publish documentation with a format for Rocket

1.3.0

Minor Changes

  • b2f981db: Add exports field in package.json

    Note that some tools can break with this change as long as they respect the exports field. If that is the case, check that you always access the elements included in the exports field, with the same name which they are exported. Any item not exported is considered private to the package and should not be accessed from the outside.

1.2.1

Patch Changes

  • 98f1bb7e: Ensure all lit imports are imported from @lion/core. Remove devDependencies in all subpackages and move to root package.json. Add demo dependencies as real dependencies for users that extend our docs/demos.

1.2.0

Minor Changes

  • 39d5e767: Changed on how to handle multiple instances of the singleton manager

    • save the map instance on the window object so multiple singleton manager versions can share the data.
    • ignore subsequential set calls if the key is already set (did throw before)

1.1.2

Patch Changes

  • 3c61fd29: Add types to form-core, for everything except form-group, choice-group and validate. Also added index.d.ts (re-)export files to git so that interdependent packages can use their types locally.
  • 09d96759: Added basic JSDocs types to SingletonManager, in order for localize to be able to be typed correctly.

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

1.1.1 (2020-07-13)

Note: Version bump only for package singleton-manager

1.1.0 (2020-06-18)

Features

  • use markdown javascript (mdjs) for documentation (bcd074d)

1.0.0 (2020-05-18)

Features

  • manager to support single instances with nested npm installations (7f49f2c)

BREAKING CHANGES

  • add singleton-manager