Skip to content

Releases: CrowdStrike/ember-velcro

[email protected]

09 Apr 14:19
2df918a
Compare
Choose a tag to compare

Minor Changes

[email protected]

24 Aug 12:16
1343d06
Compare
Choose a tag to compare

Patch Changes

[email protected]

23 Aug 19:14
6dc9ac9
Compare
Choose a tag to compare

Patch Changes

[email protected]

04 Aug 12:58
1d8f77e
Compare
Choose a tag to compare

Patch Changes

Minor Changes

  • #85 f53b03f Thanks @ynotdraw! - A template-registry is now exported from ember-velcro to use with Glint. To use it in your apps and addons, add the following to your existing registry:

    import type EmberVelcroRegistry from "ember-velcro/template-registry";
    
    declare module "@glint/environment-ember-loose/registry" {
      export default interface Registry extends EmberVelcroRegistry {
        // Other items here
      }
    }

Patch Changes

  • #84 5b49970 Thanks @ynotdraw! - (internal): swap semantic-release for Changesets so that we can have more granular control over releases, and batch breaking changes together without massive PRs

[email protected]

30 May 18:46
2cdd2e5
Compare
Choose a tag to compare

Minor Changes

  • #85 f53b03f Thanks @ynotdraw! - A template-registry is now exported from ember-velcro to use with Glint. To use it in your apps and addons, add the following to your existing registry:

    import type EmberVelcroRegistry from "ember-velcro/template-registry";
    
    declare module "@glint/environment-ember-loose/registry" {
      export default interface Registry extends EmberVelcroRegistry {
        // Other items here
      }
    }

Patch Changes

  • #84 5b49970 Thanks @ynotdraw! - (internal): swap semantic-release for Changesets so that we can have more granular control over releases, and batch breaking changes together without massive PRs

Bug Fixes

v2.0.1

28 May 13:06
Compare
Choose a tag to compare

2.0.1 (2023-05-28)

Bug Fixes

v2.0.0

25 May 14:52
Compare
Choose a tag to compare

2.0.0 (2023-05-25)

  • breaking-change: Fix main branch typescript errors (#83) (a732f56), closes #83

BREAKING CHANGES

  • Removing types and updating TypeScript version to support Glint properly. The main branch build is currently red due to the Glint dependency updates. This gets things back on track. We are making a breaking change as updating underlying TypeScript changes is considered as such (CrowdStrike/ember-headless-table#176).

  • chore: Upgrade glint dependencies

  • chore: Allow any ember-source + typescript

  • chore: Glint only supports TSv4.8+

  • chore: Upgrade ember-source + resolver

Started getting type errors with resolver:

"Module '"@ember/owner"' has no exported member 'Resolver'. Did you mean to use 'import Resolver from "@ember/owner"' instead?"

ember-resolver now ships with their own types rather than the types namespace

  • chore: Remove commitlint

  • chore: Update babel/core + qunit deps

  • chore: Add @types/ember__owner dependency

  • chore: Add ember/string as a dependency for tests

  • chore: Ignore glint errors for now

  • chore: Convert tests to gts

  • fix: Remove unneeded peerDependencies

  • fix: Remove unneeded types/ember packages

These libraries now ship with their own types, so we no longer need the ones coming from the types namespace anymore.

v1.1.0

14 Oct 19:42
Compare
Choose a tag to compare

1.1.0 (2022-10-14)

Bug Fixes

  • ts, glint: address the majority of the glint issues (9d2a494)
  • ts, glint: remaining glint errors are resolved (ef24cfd)

Features

  • add types to addon and add glint registry augmentation for loose mode (ad33ab9)

v1.0.1

02 Oct 19:31
Compare
Choose a tag to compare

1.0.1 (2022-10-02)

Bug Fixes

  • modifier: support SVGElement (abab33b)

v1.0.0

27 Sep 17:46
Compare
Choose a tag to compare

1.0.0 (2022-09-27)

Bug Fixes

  • cleanup popper (da193d9)

  • cleanup ResizeObserver (5a05ff2)

  • release: add semantic release config to package.json (e3f9ccb)

  • remove unused dependency (3fa4854)

  • rename offset args (8fdf4e1)

  • update readme and package details (21dd7f6)

  • update to Ember v4.6.0 (a529ef0)

  • feat!: add velcro modifier (4724a30)

Features

  • add modifiers, strategy, and onFirstUpdate to args (0a12c39)
  • add offsetX, offsetY, and placement to args (0dfa444)
  • add options for flip and shift middleware (2229496)
  • add velcro component (b5e6f31)
  • basic demo (1484983)
  • create popper and yield modifiers (50cc8bc)
  • handle targetElement or popoverElement resize (1398f89)
  • migrate from popperjs to floating-ui (06d6e90)

BREAKING CHANGES

  • arguments to middleware are now composed of the
    middleware name + 'Options'.

eg @offset -> @offsetOptions