ember-attacher 2.0.8 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/README.md +1 -1
- package/package.json +5 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
## v3.0.0 (2024-03-06)
|
|
5
|
+
|
|
6
|
+
#### :rocket: Enhancement
|
|
7
|
+
* [#820](https://github.com/tylerturdenpants/ember-attacher/pull/820) Fix the "cancelAnimationFrame is not defined" error in fastboot ([@pzubar](https://github.com/pzubar))
|
|
8
|
+
* [#790](https://github.com/tylerturdenpants/ember-attacher/pull/790) Bump ember-maybe-in-element to supress build-time warning ([@pzubar](https://github.com/pzubar))
|
|
9
|
+
* [#784](https://github.com/tylerturdenpants/ember-attacher/pull/784) Prevent overflow by default ([@pzubar](https://github.com/pzubar))
|
|
10
|
+
|
|
11
|
+
#### :bug: Bug Fix
|
|
12
|
+
* [#820](https://github.com/tylerturdenpants/ember-attacher/pull/820) Fix the "cancelAnimationFrame is not defined" error in fastboot ([@pzubar](https://github.com/pzubar))
|
|
13
|
+
* [#807](https://github.com/tylerturdenpants/ember-attacher/pull/807) Fix the stripInProduction for the apps and the runtime error ([@pzubar](https://github.com/pzubar))
|
|
14
|
+
* [#794](https://github.com/tylerturdenpants/ember-attacher/pull/794) Fix test error caused by wrong endAsync call ([@pzubar](https://github.com/pzubar))
|
|
15
|
+
* [#784](https://github.com/tylerturdenpants/ember-attacher/pull/784) Prevent overflow by default ([@pzubar](https://github.com/pzubar))
|
|
16
|
+
|
|
17
|
+
#### :house: Internal
|
|
18
|
+
* [#827](https://github.com/tylerturdenpants/ember-attacher/pull/827) [chore]: Bump @ember/test-helpers from 2.9.3 to 2.9.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
19
|
+
* [#786](https://github.com/tylerturdenpants/ember-attacher/pull/786) [chore]: Bump @ember/string from 3.0.1 to 3.1.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
20
|
+
* [#833](https://github.com/tylerturdenpants/ember-attacher/pull/833) [chore]: Bump ember-source from 4.12.0 to 4.12.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
21
|
+
* [#834](https://github.com/tylerturdenpants/ember-attacher/pull/834) [chore]: Bump eslint-plugin-ember from 11.5.2 to 11.10.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
22
|
+
* [#835](https://github.com/tylerturdenpants/ember-attacher/pull/835) [chore]: Bump semver from 5.7.1 to 5.7.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
23
|
+
* [#819](https://github.com/tylerturdenpants/ember-attacher/pull/819) [chore]: Bump eslint from 8.40.0 to 8.43.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
24
|
+
* [#811](https://github.com/tylerturdenpants/ember-attacher/pull/811) Remove the "beyond ember 3.24" support note ([@pzubar](https://github.com/pzubar))
|
|
25
|
+
* [#783](https://github.com/tylerturdenpants/ember-attacher/pull/783) Upgrade Ember to v4 ([@pzubar](https://github.com/pzubar))
|
|
26
|
+
|
|
27
|
+
#### Committers: 1
|
|
28
|
+
- Petro Zubar ([@pzubar](https://github.com/pzubar))
|
|
29
|
+
|
|
3
30
|
## v2.0.8 (2024-01-16)
|
|
4
31
|
|
|
5
32
|
#### :rocket: Enhancement
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-attacher",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Tooltips and popovers for Ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -29,20 +29,19 @@
|
|
|
29
29
|
"test:all": "ember try:each"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@floating-ui/dom": "^1.
|
|
32
|
+
"@floating-ui/dom": "^1.6.3",
|
|
33
33
|
"babel-plugin-filter-imports": "^4.0.0",
|
|
34
34
|
"broccoli-funnel": "~3.0.8",
|
|
35
35
|
"ember-auto-import": "^2.7.0",
|
|
36
36
|
"ember-cli-babel": "^7.26.11",
|
|
37
37
|
"ember-cli-htmlbars": "^6.3.0",
|
|
38
38
|
"ember-cli-sass": "^11.0.1",
|
|
39
|
-
"ember-in-element
|
|
40
|
-
"
|
|
41
|
-
"sass": "^1.69.5"
|
|
39
|
+
"ember-maybe-in-element": "^2.1.0",
|
|
40
|
+
"sass": "^1.71.1"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|
|
44
43
|
"@babel/core": "^7.23.7",
|
|
45
|
-
"@babel/eslint-parser": "^7.
|
|
44
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
46
45
|
"@babel/helper-get-function-arity": "^7.16.7",
|
|
47
46
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
48
47
|
"@ember/optional-features": "^2.0.0",
|
|
@@ -82,9 +81,6 @@
|
|
|
82
81
|
"release-it": "~15.11.0",
|
|
83
82
|
"webpack": "~5.89.0"
|
|
84
83
|
},
|
|
85
|
-
"resolutions": {
|
|
86
|
-
"ember-in-element-polyfill": "^1.0.1"
|
|
87
|
-
},
|
|
88
84
|
"engines": {
|
|
89
85
|
"node": "16.* || >= 18"
|
|
90
86
|
},
|