Stop testing on Node 8, start testing on Node 13 (#4156)

Resolves #3736.
This commit is contained in:
Luke Hoban 2020-03-23 14:57:03 -07:00 committed by GitHub
parent ab080c0c5d
commit 1d4a75674b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -8,7 +8,7 @@ matrix:
env: NODE_VERSION=v10.15.3
- if: type = cron
os: linux
env: NODE_VERSION=v8.16.0
env: NODE_VERSION=v13.11.0
language: go
go: 1.13.x
sudo: true

View file

@ -4,11 +4,16 @@ CHANGELOG
## HEAD (unreleased)
- Move to a multi-module repo to enable modules for the Go SDK
[#4109](https://github.com/pulumi/pulumi/pull/4109)
- Report compile time errors for Go programs during plugin acquisition.
[#4141](https://github.com/pulumi/pulumi/pull/4141)
- Add missing builtin `MapArray` to Go SDK.
[#4144](https://github.com/pulumi/pulumi/pull/4144)
- Discontinue testing on Node 8 (which has been end-of-life since January 2020), and start testing on Node 13.
[#4156](https://github.com/pulumi/pulumi/pull/4156)
## 1.13.0 (2020-03-18)
- Add support for plugin acquisition for Go programs
[#4060](https://github.com/pulumi/pulumi/pull/4060)