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: drop support for node 4 and 9 #780

Merged
merged 1 commit into from
Jul 9, 2018
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
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