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

Bump node to active (12 -> 14) #1711

Merged
merged 1 commit into from Jan 27, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
push:
branches:
master
- master
tags:
- '*'

Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x' # min node version
node-version: '14.x' # min node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x' # min node version
node-version: '14.x' # min node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test
Expand All @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x' # min node version
node-version: '14.x' # min node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test:performance-app
Expand All @@ -82,7 +82,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [12.x, 14.x, 16.x] # Active and Current LTS
node: [14.x, 16.x, 18.x] # Active and Current LTS
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -105,7 +105,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: yarn install
run: yarn --frozen-lockfile --install
- name: try ${{matrix.try-scenario}}
Expand All @@ -119,7 +119,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14.x' # preferred node version
node-version: '16.x' # preferred node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test
Expand Down
16 changes: 3 additions & 13 deletions README.md
Expand Up @@ -779,19 +779,9 @@ this.store.findRecord('com.example.bookstore.book', 1, { url: '/book/from/surpri

## Requirements

ember-m3 supports three Ember.js and Ember Data versions

- The [latest release](https://emberjs.com/releases/release/)
- The [previous release](https://emberjs.com/releases/release/)
- The current LTS version

As of 30 April 2020 this means:

- 3.18.x (the latest release)
- 3.17.x (the previous release)
- 3.16.x (the current LTS)

On the build side, an [active version of node](https://nodejs.org/en/about/releases/) is required.
* Ember >= 3.16.x < 4.x
* Ember Data >= 3.16.x < 4.x
* Node >= 14.x (i.e. an [active version](https://nodejs.org/en/about/releases/))

## Utilizing less of EmberData

Expand Down