Skip to content

Commit 68544c8

Browse files
authored
Merge pull request #135 from balassy/feature/update-node
Update NodeJs in cI
2 parents b40cc55 + 9cd264b commit 68544c8

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ language: node_js
22

33
node_js:
44
- "lts/*"
5-
- "8"
5+
- "node"
66

77
before_install:
8-
- npm install -g npm@6
98
- npm install -g serverless
109
- npm install -g greenkeeper-lockfile@1
1110

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## Unreleased
77

8+
## [2.0.0]
9+
10+
- BREAKING CHANGE: Dropping support for NodeJS v6, CI pipelines are running on the current LTS version (now 10.15.0) and the latest version available on the CI platform. This change enables keeping third-party dependencies up-to-date.
11+
812
## [1.0.2]
913

1014
- The `aws-sdk` dependency is updated to `^2.312.0`.

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
environment:
22
matrix:
3-
- nodejs_version: '8'
4-
- nodejs_version: '6'
3+
- nodejs_version: 'LTS'
4+
- nodejs_version: 'Current'
55

66
install:
7+
- node --version
8+
- npm --version
79
- ps: Install-Product node $env:nodejs_version
810
- set CI=true
911
- npm install --global npm@latest

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambda-typescript",
3-
"version": "1.0.2",
3+
"version": "2.0.0",
44
"description": "A sample to create AWS Lambda functions in TypeScript with Serverless.",
55
"main": "handler.js",
66
"scripts": {

0 commit comments

Comments
 (0)