-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add min version in TAV matrix (#3531)
Update the format of `tav.json` file and changed the workflow actions to have more control on how to generate the job matrix for testing. --------- Co-authored-by: Trent Mick <[email protected]>
- Loading branch information
1 parent
22584db
commit 8b006ab
Showing
5 changed files
with
139 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,42 @@ | ||
{ | ||
"// todo": "We want versions=['20','19','18','16','14','12','10','8'], but versions*modules needs to be <256 for the GH Actions jobs limit", | ||
"versions": [ "20", "18", "16", "14", "12", "10", "8" ], | ||
"versions": [ 20, 19, 18, 16, 14, 12, 10, 8 ], | ||
"// modules": [ | ||
"List of instrumented modules with the min Node version supported.", | ||
"minVersion for each module should be kept in sync with .tav.yml" | ||
], | ||
"modules": [ | ||
"@apollo/server", | ||
"@aws-sdk/client-s3", | ||
"@elastic/elasticsearch", | ||
"@hapi/hapi", | ||
"@opentelemetry/api", | ||
"@opentelemetry/sdk-metrics", | ||
"apollo-server-express", | ||
"aws-sdk", | ||
"cassandra-driver", | ||
"elasticsearch", | ||
"express", | ||
"express-queue", | ||
"fastify", | ||
"finalhandler", | ||
"generic-pool", | ||
"graphql", | ||
"ioredis", | ||
"knex", | ||
"memcached", | ||
"mongodb", | ||
"mongodb-core", | ||
"mysql", | ||
"mysql2", | ||
"next", | ||
"pg", | ||
"redis", | ||
"restify", | ||
"tedious", | ||
"undici", | ||
"ws", | ||
"@koa/router,koa-router", | ||
"handlebars,pug", | ||
"bluebird,got" | ||
{ "name": "@apollo/server", "minVersion": 14 }, | ||
{ "name": "@aws-sdk/client-s3", "minVersion": 14 }, | ||
{ "name": "@elastic/elasticsearch", "minVersion": 10 }, | ||
{ "name": "@hapi/hapi", "minVersion": 8 }, | ||
{ "name": "@opentelemetry/api", "minVersion": 14 }, | ||
{ "name": "@opentelemetry/sdk-metrics", "minVersion": 14 }, | ||
{ "name": "apollo-server-express", "minVersion": 8 }, | ||
{ "name": "aws-sdk", "minVersion": 8 }, | ||
{ "name": "cassandra-driver", "minVersion": 8 }, | ||
{ "name": "elasticsearch", "minVersion": 8 }, | ||
{ "name": "express", "minVersion": 8 }, | ||
{ "name": "express-queue", "minVersion": 8 }, | ||
{ "name": "fastify", "minVersion": 8 }, | ||
{ "name": "finalhandler", "minVersion": 8 }, | ||
{ "name": "generic-pool", "minVersion": 8 }, | ||
{ "name": "graphql", "minVersion": 8 }, | ||
{ "name": "ioredis", "minVersion": 8 }, | ||
{ "name": "knex", "minVersion": 8 }, | ||
{ "name": "memcached", "minVersion": 8 }, | ||
{ "name": "mongodb", "minVersion": 8 }, | ||
{ "name": "mongodb-core", "minVersion": 8 }, | ||
{ "name": "mysql", "minVersion": 8 }, | ||
{ "name": "mysql2", "minVersion": 8 }, | ||
{ "name": "next", "minVersion": 14 }, | ||
{ "name": "pg", "minVersion": 8 }, | ||
{ "name": "redis", "minVersion": 8 }, | ||
{ "name": "restify", "minVersion": 14 }, | ||
{ "name": "tedious", "minVersion": 8 }, | ||
{ "name": "undici", "minVersion": 8 }, | ||
{ "name": "ws", "minVersion": 8 }, | ||
{ "name": "@koa/router,koa-router", "minVersion": 8 }, | ||
{ "name": "handlebars,pug", "minVersion": 8 }, | ||
{ "name": "bluebird,got", "minVersion": 8 } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters