Skip to content

Commit d79c1c0

Browse files
committed
Merge branch 'master' into stable
2 parents 2bc5b38 + f8376ed commit d79c1c0

File tree

131 files changed

+3096
-823
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+3096
-823
lines changed

.bowerrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ module.exports = {
1414
env: {
1515
browser: true
1616
},
17+
globals: {
18+
basicContext: false
19+
},
1720
rules: {
1821
/* Possible Errors */
1922

@@ -122,6 +125,8 @@ module.exports = {
122125
'require-yield': 2,
123126
'template-curly-spacing': 2,
124127

128+
'ember/no-jquery': 'error',
129+
125130
// Temporarily turn these off
126131
'ember/avoid-leaking-state-in-ember-objects': 'off',
127132
'ember/closure-actions': 'off',

.github_changelog_generator

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
since-tag=v2.3.1

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,9 @@ jobs:
4747
before_install:
4848
- curl -o- -L https://yarnpkg.com/install.sh | bash
4949
- export PATH=$HOME/.yarn/bin:$PATH
50-
- yarn global add bower
5150

5251
install:
5352
- yarn install --ignore-engines
54-
- bower install
5553

5654
script:
5755
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup=true --- node_modules/.bin/ember test --filter="Ember Debug"

CHANGELOG.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,65 @@
1+
# Change Log
2+
3+
## [Unreleased](https://github.com/emberjs/ember-inspector/tree/HEAD)
4+
5+
[Full Changelog](https://github.com/emberjs/ember-inspector/compare/v3.0.0...HEAD)
6+
7+
**Fixed bugs:**
8+
9+
- "Cannot read property 'outlets' of undefined" On Ember 3.1-beta.1 [\#770](https://github.com/emberjs/ember-inspector/issues/770)
10+
- Data tab not working [\#739](https://github.com/emberjs/ember-inspector/issues/739)
11+
12+
**Merged pull requests:**
13+
14+
- Bump minor version to 3.1.0 [\#769](https://github.com/emberjs/ember-inspector/pull/769) ([teddyzeenny](https://github.com/teddyzeenny))
15+
- Remove jQuery from app [\#768](https://github.com/emberjs/ember-inspector/pull/768) ([rwwagner90](https://github.com/rwwagner90))
16+
17+
## [v3.0.0](https://github.com/emberjs/ember-inspector/tree/v3.0.0) (2018-03-08)
18+
[Full Changelog](https://github.com/emberjs/ember-inspector/compare/v2.3.1...v3.0.0)
19+
20+
**Implemented enhancements:**
21+
22+
- Test against all supported Ember versions with ember-try [\#763](https://github.com/emberjs/ember-inspector/issues/763)
23+
24+
**Fixed bugs:**
25+
26+
- Empty mixins break component selector [\#752](https://github.com/emberjs/ember-inspector/issues/752)
27+
- Make View Tree support Glimmer components [\#750](https://github.com/emberjs/ember-inspector/issues/750)
28+
- Not visible in Chromium 62 or Vivaldi 1.12 [\#734](https://github.com/emberjs/ember-inspector/issues/734)
29+
30+
**Closed issues:**
31+
32+
- Remove ember\_debug/addons/ember-new-computed [\#758](https://github.com/emberjs/ember-inspector/issues/758)
33+
- Consider dropping Ember 1.x support / `ember-new-computed` [\#745](https://github.com/emberjs/ember-inspector/issues/745)
34+
- \[feature discussion\] ability to configure value for "Hide Empty Model Types" [\#741](https://github.com/emberjs/ember-inspector/issues/741)
35+
- Can not build current master [\#736](https://github.com/emberjs/ember-inspector/issues/736)
36+
- Support Firefox 57.0 \("Quantum"\) [\#735](https://github.com/emberjs/ember-inspector/issues/735)
37+
- Illegal invocation when using View tree. [\#718](https://github.com/emberjs/ember-inspector/issues/718)
38+
- Compatibility with new modules API \(Ember 2.16\) [\#707](https://github.com/emberjs/ember-inspector/issues/707)
39+
40+
**Merged pull requests:**
41+
42+
- Fix text field assertion [\#767](https://github.com/emberjs/ember-inspector/pull/767) ([rwwagner90](https://github.com/rwwagner90))
43+
- Add branches to build in Travis CI [\#766](https://github.com/emberjs/ember-inspector/pull/766) ([teddyzeenny](https://github.com/teddyzeenny))
44+
- Fix inspector reset on client app's reset and destroy [\#765](https://github.com/emberjs/ember-inspector/pull/765) ([teddyzeenny](https://github.com/teddyzeenny))
45+
- Bump version to 3.0.0 [\#764](https://github.com/emberjs/ember-inspector/pull/764) ([teddyzeenny](https://github.com/teddyzeenny))
46+
- Ember 3.0, dep updates, testing updates, and codemods [\#762](https://github.com/emberjs/ember-inspector/pull/762) ([rwwagner90](https://github.com/rwwagner90))
47+
- Remove computedPolyfill [\#761](https://github.com/emberjs/ember-inspector/pull/761) ([rwwagner90](https://github.com/rwwagner90))
48+
- Remove getTemplate stuff [\#760](https://github.com/emberjs/ember-inspector/pull/760) ([rwwagner90](https://github.com/rwwagner90))
49+
- WIP [\#759](https://github.com/emberjs/ember-inspector/pull/759) ([rwwagner90](https://github.com/rwwagner90))
50+
- Fix file paths displayed in the Routes tab [\#757](https://github.com/emberjs/ember-inspector/pull/757) ([omarhamdan](https://github.com/omarhamdan))
51+
- Add Documentation + Minor Cleanup [\#755](https://github.com/emberjs/ember-inspector/pull/755) ([omarhamdan](https://github.com/omarhamdan))
52+
- Allow for empty mixins [\#753](https://github.com/emberjs/ember-inspector/pull/753) ([XuluWarrior](https://github.com/XuluWarrior))
53+
- ember-qunit-codemod [\#751](https://github.com/emberjs/ember-inspector/pull/751) ([rwwagner90](https://github.com/rwwagner90))
54+
- Start converting to module imports [\#749](https://github.com/emberjs/ember-inspector/pull/749) ([rwwagner90](https://github.com/rwwagner90))
55+
- Fix loading main outlet [\#748](https://github.com/emberjs/ember-inspector/pull/748) ([rwwagner90](https://github.com/rwwagner90))
56+
- Drop ember-new-computed [\#746](https://github.com/emberjs/ember-inspector/pull/746) ([jacobq](https://github.com/jacobq))
57+
- UI Tweaks to Match Latest Inspectors [\#744](https://github.com/emberjs/ember-inspector/pull/744) ([nummi](https://github.com/nummi))
58+
- Update Inspect Views Icon [\#743](https://github.com/emberjs/ember-inspector/pull/743) ([nummi](https://github.com/nummi))
59+
- preserve model type hiding [\#742](https://github.com/emberjs/ember-inspector/pull/742) ([efx](https://github.com/efx))
60+
- Bump patch version to 2.3.1 [\#738](https://github.com/emberjs/ember-inspector/pull/738) ([teddyzeenny](https://github.com/teddyzeenny))
61+
- Avoid error in some environments [\#638](https://github.com/emberjs/ember-inspector/pull/638) ([pablobm](https://github.com/pablobm))
62+
163
# Ember Inspector Changelog
264

365
## Ember Inspector 2.3.1
@@ -285,3 +347,6 @@
285347
* Added a hint to refresh the page when the Inspector is open after a few promises were created and uncaught.
286348
* [BUGFIX] Error message about file:// protocol should only be shown on Chrome
287349
* [BUGFIX] Add missing ember.prod.js file in vendors
350+
351+
352+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

0 commit comments

Comments
 (0)