Skip to content

Commit

Permalink
chore: drop support for node 4 and 9 (#780)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This commit drops support for Node 4 and 9.
  • Loading branch information
kjin authored Jul 9, 2018
1 parent 7025083 commit e4cfb1b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 28 deletions.
24 changes: 0 additions & 24 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,44 +91,28 @@ workflows:
only:
- master
jobs:
- node4
- node6
- node8
- node9
- node10
tests:
jobs:
- node4:
filters: *release_tags
- node6:
filters: *release_tags
- node8:
filters: *release_tags
- node9:
filters: *release_tags
- node10:
filters: *release_tags
- publish_npm:
requires:
- node4
- node6
- node8
- node9
- node10
filters:
branches:
ignore: /.*/
<<: *release_tags

jobs:
node4:
docker:
- image: node:4
- *mongo_service
- *redis_service
- *postgres_service
- *mysql_service
<<: *unit_tests
node6:
docker:
- image: node:6
Expand All @@ -145,14 +129,6 @@ jobs:
- *postgres_service
- *mysql_service
<<: *unit_tests
node9:
docker:
- image: node:9
- *mongo_service
- *redis_service
- *postgres_service
- *mysql_service
<<: *unit_tests
node10:
docker:
- image: node:10
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This module provides automatic tracing for Node.js applications with Stackdriver

## Usage

The Trace Agent supports Node 4+.
The Trace Agent supports Node 6+.

> **Note**: Using the Trace Agent requires a Google Cloud Project with the [Stackdriver Trace API enabled](https://console.cloud.google.com/flows/enableapi?apiid=cloudtrace) and associated credentials. These values are auto-detected if the application is running on Google Cloud Platform. If your application is not running on GCP, you will need to specify the project ID and credentials either through the configuration object, or with environment variables. See [Setting Up Stackdriver Trace for Node.js][setting-up-stackdriver-trace] for more details.
Expand Down
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
environment:
matrix:
# node.js
- nodejs_version: "4"
- nodejs_version: "6"
- nodejs_version: "8"
# - nodejs_version: "10"
- nodejs_version: "10"

cache:
- src/plugins/types -> src/plugins/types/index.d.ts
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"author": "Google Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=4"
"node": ">=6"
},
"devDependencies": {
"@types/builtin-modules": "^2.0.0",
Expand Down

0 comments on commit e4cfb1b

Please sign in to comment.