Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# 1.0.0 (2022-09-27)

### Bug Fixes

* cleanup popper ([da193d9](da193d9))
* cleanup ResizeObserver ([5a05ff2](5a05ff2))
* **release:** add semantic release config to package.json ([e3f9ccb](e3f9ccb))
* remove unused dependency ([3fa4854](3fa4854))
* rename offset args ([8fdf4e1](8fdf4e1))
* update readme and package details ([21dd7f6](21dd7f6))
* update to Ember v4.6.0 ([a529ef0](a529ef0))

* feat!: add velcro modifier ([4724a30](4724a30))

### Features

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

### BREAKING CHANGES

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

eg `@offset` -> `@offsetOptions`
* https://floating-ui.com/docs/migration
  • Loading branch information
semantic-release-bot committed Sep 27, 2022
1 parent c9f96ad commit a2c3cc5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# 1.0.0 (2022-09-27)


### Bug Fixes

* cleanup popper ([da193d9](https://github.com/camskene/ember-velcro/commit/da193d97e696d12a2c5ba44f63d1c7a1d09e926c))
* cleanup ResizeObserver ([5a05ff2](https://github.com/camskene/ember-velcro/commit/5a05ff26fb8981a1ba28401dc66cb80508ffb834))
* **release:** add semantic release config to package.json ([e3f9ccb](https://github.com/camskene/ember-velcro/commit/e3f9ccbb412d37c095e654fa3857b9b648227709))
* remove unused dependency ([3fa4854](https://github.com/camskene/ember-velcro/commit/3fa4854505d7309d4f9615eb8281cf05299a5f21))
* rename offset args ([8fdf4e1](https://github.com/camskene/ember-velcro/commit/8fdf4e18a5737f44211b4ee9a6f09f73678f4dca))
* update readme and package details ([21dd7f6](https://github.com/camskene/ember-velcro/commit/21dd7f6744be5efa5708c8e476e9266b1eb1f5d6))
* update to Ember v4.6.0 ([a529ef0](https://github.com/camskene/ember-velcro/commit/a529ef09a9370f974304b8e9debf1880eb5ffe7b))


* feat!: add velcro modifier ([4724a30](https://github.com/camskene/ember-velcro/commit/4724a30e4f3326a3909efede31124cc3cced2862))


### Features

* add modifiers, strategy, and onFirstUpdate to args ([0a12c39](https://github.com/camskene/ember-velcro/commit/0a12c3948fdebe59388d1c25b129a1b199efc465))
* add offsetX, offsetY, and placement to args ([0dfa444](https://github.com/camskene/ember-velcro/commit/0dfa4440063a0e2d6ee74fd0ceb42879c92630ce))
* add options for flip and shift middleware ([2229496](https://github.com/camskene/ember-velcro/commit/2229496be892572a0953ab113541f0eda490787d))
* add velcro component ([b5e6f31](https://github.com/camskene/ember-velcro/commit/b5e6f313a38b0eb359bdc7d5d6ce96d38295c6f1))
* basic demo ([1484983](https://github.com/camskene/ember-velcro/commit/148498338e5eac273eb2f16da0f7a72e68152a1e))
* create popper and yield modifiers ([50cc8bc](https://github.com/camskene/ember-velcro/commit/50cc8bc2118ea1202ad24f200b957d728fab2b51))
* handle targetElement or popoverElement resize ([1398f89](https://github.com/camskene/ember-velcro/commit/1398f89a9586b901248e85490a6427df67a4e50c))
* migrate from popperjs to floating-ui ([06d6e90](https://github.com/camskene/ember-velcro/commit/06d6e90cd706159b6b189d644d0bc8a65229c5c4))


### BREAKING CHANGES

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

eg `@offset` -> `@offsetOptions`
* https://floating-ui.com/docs/migration
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-velcro",
"version": "0.0.0",
"version": "1.0.0",
"description": "Ember Velcro sticks one element to another with Floating UI.",
"keywords": [
"ember-addon"
Expand Down

0 comments on commit a2c3cc5

Please sign in to comment.