Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the ember group in /ember with 11 updates #133

Merged
merged 2 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions ember/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,34 +47,34 @@
"ember-changeset-validations": "^4.1.1",
"ember-cli": "^5.3.0",
"ember-cli-app-version": "^6.0.1",
"ember-cli-babel": "^7.26.11",
"ember-cli-clean-css": "^2.0.0",
"ember-cli-babel": "^8.2.0",
"ember-cli-clean-css": "^3.0.0",
"ember-cli-code-coverage": "^2.0.0",
"ember-cli-dependency-checker": "^3.3.2",
"ember-cli-htmlbars": "^6.2.0",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-mirage": "^3.0.2",
"ember-cli-sass": "^11.0.1",
"ember-composable-helpers": "^5.0.0",
"ember-concurrency": "^3.0.0",
"ember-concurrency": "^3.1.1",
"ember-data": "^5.3.0",
"ember-fetch": "^8.1.2",
"ember-flatpickr": "^4.0.0",
"ember-focus-trap": "^1.1.0",
"ember-intl": "^5.7.2",
"ember-intl": "^6.1.1",
"ember-load-initializers": "^2.1.2",
"ember-modifier": "^4.1.0",
"ember-page-title": "^7.0.0",
"ember-power-select": "^7.1.0",
"ember-qunit": "^7.0.0",
"ember-resolver": "^10.1.1",
"ember-simple-auth": "^6.0.0-rc.1",
"ember-simple-auth-oidc": "^5.1.0",
"ember-page-title": "^8.0.0",
"ember-power-select": "^7.1.2",
"ember-qunit": "^8.0.1",
"ember-resolver": "^11.0.1",
"ember-simple-auth": "^6.0.0",
"ember-simple-auth-oidc": "^6.0.0",
"ember-source": "^5.3.0",
"ember-template-lint": "^5.11.2",
"ember-template-lint-plugin-prettier": "^5.0.0",
"ember-toggle": "^9.0.3",
"ember-truth-helpers": "^3.1.1",
"ember-truth-helpers": "^4.0.3",
"ember-uikit": "^9.0.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
import { setupMirage } from 'ember-cli-mirage/test-support';
import { setupIntl } from 'ember-intl/test-support';
import { module, test } from 'qunit';

import { setupRenderingTest } from 'outdated/tests/helpers';
module('Integration | Component | dependency-compact', function (hooks) {
setupRenderingTest(hooks);
setupMirage(hooks);
setupIntl(hooks);

test('it renders correctly with a version', async function (assert) {
const store = this.owner.lookup('service:store');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
import { setupMirage } from 'ember-cli-mirage/test-support';
import { setupIntl } from 'ember-intl/test-support';
import { module, test } from 'qunit';

import { setupRenderingTest } from 'outdated/tests/helpers';
module('Integration | Component | dependency-detailed', function (hooks) {
setupRenderingTest(hooks);
setupMirage(hooks);
setupIntl(hooks);
test('it renders correctly', async function (assert) {
const store = this.owner.lookup('service:store');
this.version = await store.findRecord(
Expand Down
2 changes: 2 additions & 0 deletions ember/tests/integration/components/project-compact-test.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import { render, settled } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
import { setupMirage } from 'ember-cli-mirage/test-support';
import { setupIntl } from 'ember-intl/test-support';
import { module, test } from 'qunit';

import { setupRenderingTest } from 'outdated/tests/helpers';

module('Integration | Component | project-compact', function (hooks) {
setupRenderingTest(hooks);
setupMirage(hooks);
setupIntl(hooks);

test('it renders correctly', async function (assert) {
const project = this.server.create('project', 'withVersions');
Expand Down
2 changes: 2 additions & 0 deletions ember/tests/integration/components/project-detailed-test.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { render, settled } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
import { setupMirage } from 'ember-cli-mirage/test-support';
import { setupIntl } from 'ember-intl/test-support';
import { module, test } from 'qunit';

import { setupRenderingTest } from 'outdated/tests/helpers';
module('Integration | Component | project-detailed', function (hooks) {
setupRenderingTest(hooks);
setupMirage(hooks);
setupIntl(hooks);

test('it renders correctly', async function (assert) {
const project = await this.server.create('project', 'withVersions');
Expand Down
Loading