Compare commits
11 Commits
Author | SHA1 | Date |
---|---|---|
|
13371fd2a1 | |
|
1316be55c5 | |
|
a22d4f9197 | |
|
223dd5d58e | |
|
fbd9783e47 | |
|
6f04b61f88 | |
|
ab3e159fed | |
|
5b61efb855 | |
|
e457e2651d | |
|
ab2e462ca6 | |
|
f2f7332916 |
|
@ -2,7 +2,12 @@ blank_issues_enabled: false
|
|||
contact_links:
|
||||
- name: Report a security vulnerability
|
||||
url: https://loopback.io/doc/en/contrib/Reporting-issues.html#security-issues
|
||||
about: Do not report security vulnerabilities using GitHub issues. Please send an email to `reachsl@us.ibm.com` instead.
|
||||
about: >
|
||||
LoopBack 3 has reached End-of-Life. No new security fixes will be provided
|
||||
or accepted.
|
||||
|
||||
Do not report security vulnerabilities using GitHub issues. Please send an
|
||||
email to `reachsl@us.ibm.com` instead.
|
||||
- name: Get help on StackOverflow
|
||||
url: https://stackoverflow.com/tags/loopbackjs
|
||||
about: Please ask and answer questions on StackOverflow.
|
||||
|
|
|
@ -7,8 +7,6 @@ exemptLabels:
|
|||
- pinned
|
||||
- security
|
||||
- critical
|
||||
- p1
|
||||
- major
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: stale
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
|
|
|
@ -4,6 +4,7 @@ node_js:
|
|||
- "8"
|
||||
- "10"
|
||||
- "12"
|
||||
- "14"
|
||||
|
||||
addons:
|
||||
chrome: stable
|
||||
|
|
12
CHANGES.md
12
CHANGES.md
|
@ -1,3 +1,15 @@
|
|||
2020-11-25, Version 3.28.0
|
||||
==========================
|
||||
|
||||
* upgrade nodemailer to greater than 6.4.16 (jannyHou)
|
||||
|
||||
* chore: sync LoopBack 4 with Node.js v14 EOL (Rifa Achrinza)
|
||||
|
||||
* chore: add Node.js 14 to travis (Diana Lau)
|
||||
|
||||
* Remove "major" and "p1" from stalebot (Miroslav Bajtoš)
|
||||
|
||||
|
||||
2020-03-06, Version 3.27.0
|
||||
==========================
|
||||
|
||||
|
|
15
README.md
15
README.md
|
@ -4,8 +4,13 @@
|
|||
[](http://github.com/CloudNativeJS/ModuleLTS)
|
||||
[](http://ibm.biz/node-support)
|
||||
|
||||
**⚠️ LoopBack 3 is in Maintenance LTS mode, only critical bugs and critical
|
||||
security fixes will be provided. (See
|
||||
**⚠️ LoopBack 3 has reached end of life. We are no longer accepting pull requests or providing
|
||||
support for community users. The only exception is fixes for critical bugs and security
|
||||
vulnerabilities provided as part of support for IBM API Connect customers.
|
||||
We urge all LoopBack 3 users to migrate their applications to LoopBack 4 as soon as possible.
|
||||
Learn more about
|
||||
<a href="https://loopback.io/doc/en/contrib/Long-term-support.html">LoopBack's long term support policy.</a>
|
||||
will be provided or accepted. (See
|
||||
[Module Long Term Support Policy](#module-long-term-support-policy) below.)**
|
||||
|
||||
We urge all LoopBack 3 users to migrate their applications to LoopBack 4 as
|
||||
|
@ -38,14 +43,14 @@ For more details, see [https://loopback.io/](https://loopback.io/).
|
|||
|
||||
## Module Long Term Support Policy
|
||||
|
||||
LoopBack 3.x is now in Active LTS.
|
||||
LoopBack 3.x has reached End-of-Life.
|
||||
|
||||
This module adopts the [Module Long Term Support (LTS)](http://github.com/CloudNativeJS/ModuleLTS) policy, with the following End Of Life (EOL) dates:
|
||||
|
||||
| Version | Status | Published | EOL |
|
||||
| ---------- | --------------- | --------- | -------------------- |
|
||||
| LoopBack 4 | Current | Oct 2018 | Apr 2022 _(minimum)_ |
|
||||
| LoopBack 3 | Maintenance LTS | Dec 2016 | Dec 2020 |
|
||||
| LoopBack 4 | Current | Oct 2018 | Apr 2023 _(minimum)_ |
|
||||
| LoopBack 3 | End-of-Life | Dec 2016 | Dec 2020 |
|
||||
| LoopBack 2 | End-of-Life | Jul 2014 | Apr 2019 |
|
||||
|
||||
Learn more about our LTS plan in [docs](https://loopback.io/doc/en/contrib/Long-term-support.html).
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "loopback",
|
||||
"version": "3.27.0",
|
||||
"version": "3.28.0",
|
||||
"description": "LoopBack: Open Source Framework for Node.js",
|
||||
"homepage": "http://loopback.io",
|
||||
"keywords": [
|
||||
|
@ -52,7 +52,7 @@
|
|||
"loopback-datasource-juggler": "^3.28.0",
|
||||
"loopback-filters": "^1.0.0",
|
||||
"loopback-phase": "^3.0.0",
|
||||
"nodemailer": "^4.0.1",
|
||||
"nodemailer": "^6.4.16",
|
||||
"nodemailer-direct-transport": "^3.3.2",
|
||||
"nodemailer-stub-transport": "^1.1.0",
|
||||
"serve-favicon": "^2.2.0",
|
||||
|
|
Loading…
Reference in New Issue